Skip to content

Commit 6f8abaf

Browse files
authored
Co-authored-by: saschanaz <[email protected]>
1 parent 8c4731e commit 6f8abaf

File tree

5 files changed

+98
-53
lines changed

5 files changed

+98
-53
lines changed

baselines/dom.generated.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ interface AuthenticationExtensionsClientInputs {
118118
appid?: string;
119119
credProps?: boolean;
120120
hmacCreateSecret?: boolean;
121+
minPinLength?: boolean;
121122
}
122123

123124
interface AuthenticationExtensionsClientOutputs {

baselines/serviceworker.generated.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4899,6 +4899,7 @@ interface ServiceWorkerGlobalScope extends WorkerGlobalScope {
48994899
onpushsubscriptionchange: ((this: ServiceWorkerGlobalScope, ev: Event) => any) | null;
49004900
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/registration) */
49014901
readonly registration: ServiceWorkerRegistration;
4902+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/serviceWorker) */
49024903
readonly serviceWorker: ServiceWorker;
49034904
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/skipWaiting) */
49044905
skipWaiting(): Promise<void>;
@@ -8429,6 +8430,7 @@ declare var onpush: ((this: ServiceWorkerGlobalScope, ev: PushEvent) => any) | n
84298430
declare var onpushsubscriptionchange: ((this: ServiceWorkerGlobalScope, ev: Event) => any) | null;
84308431
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/registration) */
84318432
declare var registration: ServiceWorkerRegistration;
8433+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/serviceWorker) */
84328434
declare var serviceWorker: ServiceWorker;
84338435
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/skipWaiting) */
84348436
declare function skipWaiting(): Promise<void>;

baselines/webworker.generated.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5221,6 +5221,7 @@ interface ServiceWorkerGlobalScope extends WorkerGlobalScope {
52215221
onpushsubscriptionchange: ((this: ServiceWorkerGlobalScope, ev: Event) => any) | null;
52225222
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/registration) */
52235223
readonly registration: ServiceWorkerRegistration;
5224+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/serviceWorker) */
52245225
readonly serviceWorker: ServiceWorker;
52255226
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/skipWaiting) */
52265227
skipWaiting(): Promise<void>;

inputfiles/removedTypes.jsonc

Lines changed: 40 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,19 @@
6060
},
6161
"interfaces": {
6262
"interface": {
63+
"Clipboard": {
64+
"methods": {
65+
"method": {
66+
"read": {
67+
"signature": {
68+
"0": {
69+
"param": ["formats"] // Blink-only as of 2023-11
70+
}
71+
}
72+
}
73+
}
74+
}
75+
},
6376
"CSSRule": {
6477
"constants": {
6578
"constant": {
@@ -84,7 +97,20 @@
8497
"complete": {
8598
"signature": {
8699
"0": {
87-
"param": ["details"]
100+
"param": ["details"] // WebKit-only as of 2023-11
101+
}
102+
}
103+
}
104+
}
105+
}
106+
},
107+
"ReadableStreamBYOBReader": {
108+
"methods": {
109+
"method": {
110+
"read": {
111+
"signature": {
112+
"0": {
113+
"param": ["options"] // No implementations as of 2023-11
88114
}
89115
}
90116
}
@@ -94,7 +120,7 @@
94120
"ServiceWorkerGlobalScope": {
95121
"properties": {
96122
"property": {
97-
"onsync": null
123+
"onsync": null // No implementations as of 2023-11
98124
}
99125
}
100126
},
@@ -166,14 +192,13 @@
166192
"appidExclude": null,
167193
"credBlob": null,
168194
"credentialProtectionPolicy": null,
169-
"devicePubKey": null,
170195
"enforceCredentialProtectionPolicy": null,
171196
"getCredBlob": null,
172-
"hmacGetSecret": null, // No implementation as of 2022-10
197+
"hmacGetSecret": null, // No implementation as of 2023-11
173198
"largeBlob": null,
174-
"minPinLength": null,
175199
"payment": null,
176200
"prf": null,
201+
"supplementalPubKeys": null, // No implementation as of 2023-11
177202
"uvm": null
178203
}
179204
}
@@ -182,11 +207,11 @@
182207
"members": {
183208
"member": {
184209
// (same as *Inputs)
185-
"appidExclude": null,
186-
"devicePubKey": null,
187-
"hmacGetSecret": null, // No implementation as of 2022-10
210+
"appidExclude": null, // No implementation as of 2023-11
211+
"hmacGetSecret": null, // No implementation as of 2023-11
188212
"largeBlob": null,
189213
"prf": null,
214+
"supplementalPubKeys": null, // No implementation as of 2023-11
190215
"uvm": null
191216
}
192217
}
@@ -689,6 +714,13 @@
689714
"xrCompatible": null
690715
}
691716
}
717+
},
718+
"WebTransportSendStreamOptions": {
719+
"members": {
720+
"member": {
721+
"waitUntilAvailable": null // No implementation as of 2023-11
722+
}
723+
}
692724
}
693725
}
694726
},

package-lock.json

Lines changed: 54 additions & 45 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)