Skip to content

Commit f88a7cc

Browse files
authored
🤖 Update core dependencies
1 parent 88e92f4 commit f88a7cc

File tree

3 files changed

+1012
-291
lines changed

3 files changed

+1012
-291
lines changed

baselines/audioworklet.generated.d.ts

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,69 @@ declare var CustomEvent: {
262262
new<T>(type: string, eventInitDict?: CustomEventInit<T>): CustomEvent<T>;
263263
};
264264

265+
/** An abnormal event (called an exception) which occurs as a result of calling a method or accessing a property of a web API. */
266+
interface DOMException extends Error {
267+
/** @deprecated */
268+
readonly code: number;
269+
readonly message: string;
270+
readonly name: string;
271+
readonly ABORT_ERR: number;
272+
readonly DATA_CLONE_ERR: number;
273+
readonly DOMSTRING_SIZE_ERR: number;
274+
readonly HIERARCHY_REQUEST_ERR: number;
275+
readonly INDEX_SIZE_ERR: number;
276+
readonly INUSE_ATTRIBUTE_ERR: number;
277+
readonly INVALID_ACCESS_ERR: number;
278+
readonly INVALID_CHARACTER_ERR: number;
279+
readonly INVALID_MODIFICATION_ERR: number;
280+
readonly INVALID_NODE_TYPE_ERR: number;
281+
readonly INVALID_STATE_ERR: number;
282+
readonly NAMESPACE_ERR: number;
283+
readonly NETWORK_ERR: number;
284+
readonly NOT_FOUND_ERR: number;
285+
readonly NOT_SUPPORTED_ERR: number;
286+
readonly NO_DATA_ALLOWED_ERR: number;
287+
readonly NO_MODIFICATION_ALLOWED_ERR: number;
288+
readonly QUOTA_EXCEEDED_ERR: number;
289+
readonly SECURITY_ERR: number;
290+
readonly SYNTAX_ERR: number;
291+
readonly TIMEOUT_ERR: number;
292+
readonly TYPE_MISMATCH_ERR: number;
293+
readonly URL_MISMATCH_ERR: number;
294+
readonly VALIDATION_ERR: number;
295+
readonly WRONG_DOCUMENT_ERR: number;
296+
}
297+
298+
declare var DOMException: {
299+
prototype: DOMException;
300+
new(message?: string, name?: string): DOMException;
301+
readonly ABORT_ERR: number;
302+
readonly DATA_CLONE_ERR: number;
303+
readonly DOMSTRING_SIZE_ERR: number;
304+
readonly HIERARCHY_REQUEST_ERR: number;
305+
readonly INDEX_SIZE_ERR: number;
306+
readonly INUSE_ATTRIBUTE_ERR: number;
307+
readonly INVALID_ACCESS_ERR: number;
308+
readonly INVALID_CHARACTER_ERR: number;
309+
readonly INVALID_MODIFICATION_ERR: number;
310+
readonly INVALID_NODE_TYPE_ERR: number;
311+
readonly INVALID_STATE_ERR: number;
312+
readonly NAMESPACE_ERR: number;
313+
readonly NETWORK_ERR: number;
314+
readonly NOT_FOUND_ERR: number;
315+
readonly NOT_SUPPORTED_ERR: number;
316+
readonly NO_DATA_ALLOWED_ERR: number;
317+
readonly NO_MODIFICATION_ALLOWED_ERR: number;
318+
readonly QUOTA_EXCEEDED_ERR: number;
319+
readonly SECURITY_ERR: number;
320+
readonly SYNTAX_ERR: number;
321+
readonly TIMEOUT_ERR: number;
322+
readonly TYPE_MISMATCH_ERR: number;
323+
readonly URL_MISMATCH_ERR: number;
324+
readonly VALIDATION_ERR: number;
325+
readonly WRONG_DOCUMENT_ERR: number;
326+
};
327+
265328
/** Events providing information related to errors in scripts or in files. */
266329
interface ErrorEvent extends Event {
267330
readonly colno: number;

baselines/dom.generated.d.ts

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,12 +116,21 @@ interface AudioWorkletNodeOptions extends AudioNodeOptions {
116116

117117
interface AuthenticationExtensionsClientInputs {
118118
appid?: string;
119+
credBlob?: ArrayBuffer;
119120
credProps?: boolean;
121+
credentialProtectionPolicy?: string;
122+
enforceCredentialProtectionPolicy?: boolean;
123+
getCredBlob?: boolean;
124+
hmacCreateSecret?: boolean;
125+
hmacGetSecret?: HMACGetSecretInput;
126+
minPinLength?: boolean;
120127
}
121128

122129
interface AuthenticationExtensionsClientOutputs {
123130
appid?: boolean;
124131
credProps?: CredentialPropertiesOutput;
132+
hmacCreateSecret?: boolean;
133+
hmacGetSecret?: HMACGetSecretOutput;
125134
}
126135

127136
interface AuthenticatorSelectionCriteria {
@@ -526,6 +535,16 @@ interface GetRootNodeOptions {
526535
composed?: boolean;
527536
}
528537

538+
interface HMACGetSecretInput {
539+
salt1: ArrayBuffer;
540+
salt2?: ArrayBuffer;
541+
}
542+
543+
interface HMACGetSecretOutput {
544+
output1: ArrayBuffer;
545+
output2?: ArrayBuffer;
546+
}
547+
529548
interface HashChangeEventInit extends EventInit {
530549
newURL?: string;
531550
oldURL?: string;
@@ -1336,6 +1355,7 @@ interface RTCInboundRtpStreamStats extends RTCReceivedRtpStreamStats {
13361355
nackCount?: number;
13371356
packetsDiscarded?: number;
13381357
pliCount?: number;
1358+
powerEfficientDecoder?: boolean;
13391359
qpSum?: number;
13401360
remoteId?: string;
13411361
removedSamplesForAcceleration?: number;
@@ -1375,6 +1395,7 @@ interface RTCOutboundRtpStreamStats extends RTCSentRtpStreamStats {
13751395
mediaSourceId?: string;
13761396
nackCount?: number;
13771397
pliCount?: number;
1398+
powerEfficientEncoder?: boolean;
13781399
qpSum?: number;
13791400
qualityLimitationResolutionChanges?: number;
13801401
remoteId?: string;
@@ -3101,6 +3122,7 @@ interface CSSStyleDeclaration {
31013122
outlineWidth: string;
31023123
overflow: string;
31033124
overflowAnchor: string;
3125+
overflowClipMargin: string;
31043126
overflowWrap: string;
31053127
overflowX: string;
31063128
overflowY: string;
@@ -9061,6 +9083,7 @@ interface InnerHTML {
90619083
innerHTML: string;
90629084
}
90639085

9086+
/** Available only in secure contexts. */
90649087
interface InputDeviceInfo extends MediaDeviceInfo {
90659088
}
90669089

0 commit comments

Comments
 (0)