Skip to content

Commit 7ff7b8c

Browse files
🤖 Update core dependencies (#1988)
Co-authored-by: saschanaz <[email protected]>
1 parent 652339e commit 7ff7b8c

8 files changed

+121
-7
lines changed

baselines/dom.generated.d.ts

+38
Original file line numberDiff line numberDiff line change
@@ -3737,6 +3737,43 @@ declare var CDATASection: {
37373737
new(): CDATASection;
37383738
};
37393739

3740+
/**
3741+
* The `CSPViolationReportBody` interface is an extension of the Reporting API that represents the body of a Content Security Policy (CSP) violation report.
3742+
*
3743+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody)
3744+
*/
3745+
interface CSPViolationReportBody extends ReportBody {
3746+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/blockedURL) */
3747+
readonly blockedURL: string | null;
3748+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/columnNumber) */
3749+
readonly columnNumber: number | null;
3750+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/disposition) */
3751+
readonly disposition: SecurityPolicyViolationEventDisposition;
3752+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/documentURL) */
3753+
readonly documentURL: string;
3754+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/effectiveDirective) */
3755+
readonly effectiveDirective: string;
3756+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/lineNumber) */
3757+
readonly lineNumber: number | null;
3758+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/originalPolicy) */
3759+
readonly originalPolicy: string;
3760+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/referrer) */
3761+
readonly referrer: string | null;
3762+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/sample) */
3763+
readonly sample: string | null;
3764+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/sourceFile) */
3765+
readonly sourceFile: string | null;
3766+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/statusCode) */
3767+
readonly statusCode: number;
3768+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/toJSON) */
3769+
toJSON(): any;
3770+
}
3771+
3772+
declare var CSPViolationReportBody: {
3773+
prototype: CSPViolationReportBody;
3774+
new(): CSPViolationReportBody;
3775+
};
3776+
37403777
/**
37413778
* The **`CSSAnimation`** interface of the Web Animations API represents an Animation object.
37423779
*
@@ -12569,6 +12606,7 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
1256912606
hreflang: string;
1257012607
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/imageSizes) */
1257112608
imageSizes: string;
12609+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/imageSrcset) */
1257212610
imageSrcset: string;
1257312611
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/integrity) */
1257412612
integrity: string;

baselines/ts5.5/dom.generated.d.ts

+38
Original file line numberDiff line numberDiff line change
@@ -3737,6 +3737,43 @@ declare var CDATASection: {
37373737
new(): CDATASection;
37383738
};
37393739

3740+
/**
3741+
* The `CSPViolationReportBody` interface is an extension of the Reporting API that represents the body of a Content Security Policy (CSP) violation report.
3742+
*
3743+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody)
3744+
*/
3745+
interface CSPViolationReportBody extends ReportBody {
3746+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/blockedURL) */
3747+
readonly blockedURL: string | null;
3748+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/columnNumber) */
3749+
readonly columnNumber: number | null;
3750+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/disposition) */
3751+
readonly disposition: SecurityPolicyViolationEventDisposition;
3752+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/documentURL) */
3753+
readonly documentURL: string;
3754+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/effectiveDirective) */
3755+
readonly effectiveDirective: string;
3756+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/lineNumber) */
3757+
readonly lineNumber: number | null;
3758+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/originalPolicy) */
3759+
readonly originalPolicy: string;
3760+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/referrer) */
3761+
readonly referrer: string | null;
3762+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/sample) */
3763+
readonly sample: string | null;
3764+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/sourceFile) */
3765+
readonly sourceFile: string | null;
3766+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/statusCode) */
3767+
readonly statusCode: number;
3768+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/toJSON) */
3769+
toJSON(): any;
3770+
}
3771+
3772+
declare var CSPViolationReportBody: {
3773+
prototype: CSPViolationReportBody;
3774+
new(): CSPViolationReportBody;
3775+
};
3776+
37403777
/**
37413778
* The **`CSSAnimation`** interface of the Web Animations API represents an Animation object.
37423779
*
@@ -12554,6 +12591,7 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
1255412591
hreflang: string;
1255512592
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/imageSizes) */
1255612593
imageSizes: string;
12594+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/imageSrcset) */
1255712595
imageSrcset: string;
1255812596
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/integrity) */
1255912597
integrity: string;

baselines/ts5.5/webworker.generated.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4588,7 +4588,7 @@ declare var MediaSourceHandle: {
45884588
};
45894589

45904590
/**
4591-
* The **`MediaStreamTrackProcessor`** interface of the Insertable Streams for MediaStreamTrack API consumes a video MediaStreamTrack object's source and generates a stream of VideoFrames.
4591+
* The **`MediaStreamTrackProcessor`** interface of the Insertable Streams for MediaStreamTrack API consumes a video MediaStreamTrack object's source and generates a stream of VideoFrame objects.
45924592
*
45934593
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrackProcessor)
45944594
*/

baselines/ts5.6/dom.generated.d.ts

+38
Original file line numberDiff line numberDiff line change
@@ -3737,6 +3737,43 @@ declare var CDATASection: {
37373737
new(): CDATASection;
37383738
};
37393739

3740+
/**
3741+
* The `CSPViolationReportBody` interface is an extension of the Reporting API that represents the body of a Content Security Policy (CSP) violation report.
3742+
*
3743+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody)
3744+
*/
3745+
interface CSPViolationReportBody extends ReportBody {
3746+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/blockedURL) */
3747+
readonly blockedURL: string | null;
3748+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/columnNumber) */
3749+
readonly columnNumber: number | null;
3750+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/disposition) */
3751+
readonly disposition: SecurityPolicyViolationEventDisposition;
3752+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/documentURL) */
3753+
readonly documentURL: string;
3754+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/effectiveDirective) */
3755+
readonly effectiveDirective: string;
3756+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/lineNumber) */
3757+
readonly lineNumber: number | null;
3758+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/originalPolicy) */
3759+
readonly originalPolicy: string;
3760+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/referrer) */
3761+
readonly referrer: string | null;
3762+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/sample) */
3763+
readonly sample: string | null;
3764+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/sourceFile) */
3765+
readonly sourceFile: string | null;
3766+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/statusCode) */
3767+
readonly statusCode: number;
3768+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/toJSON) */
3769+
toJSON(): any;
3770+
}
3771+
3772+
declare var CSPViolationReportBody: {
3773+
prototype: CSPViolationReportBody;
3774+
new(): CSPViolationReportBody;
3775+
};
3776+
37403777
/**
37413778
* The **`CSSAnimation`** interface of the Web Animations API represents an Animation object.
37423779
*
@@ -12569,6 +12606,7 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
1256912606
hreflang: string;
1257012607
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/imageSizes) */
1257112608
imageSizes: string;
12609+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/imageSrcset) */
1257212610
imageSrcset: string;
1257312611
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/integrity) */
1257412612
integrity: string;

baselines/ts5.6/webworker.generated.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4588,7 +4588,7 @@ declare var MediaSourceHandle: {
45884588
};
45894589

45904590
/**
4591-
* The **`MediaStreamTrackProcessor`** interface of the Insertable Streams for MediaStreamTrack API consumes a video MediaStreamTrack object's source and generates a stream of VideoFrames.
4591+
* The **`MediaStreamTrackProcessor`** interface of the Insertable Streams for MediaStreamTrack API consumes a video MediaStreamTrack object's source and generates a stream of VideoFrame objects.
45924592
*
45934593
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrackProcessor)
45944594
*/

baselines/webworker.generated.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4588,7 +4588,7 @@ declare var MediaSourceHandle: {
45884588
};
45894589

45904590
/**
4591-
* The **`MediaStreamTrackProcessor`** interface of the Insertable Streams for MediaStreamTrack API consumes a video MediaStreamTrack object's source and generates a stream of VideoFrames.
4591+
* The **`MediaStreamTrackProcessor`** interface of the Insertable Streams for MediaStreamTrack API consumes a video MediaStreamTrack object's source and generates a stream of VideoFrame objects.
45924592
*
45934593
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrackProcessor)
45944594
*/

inputfiles/mdn

Submodule mdn updated 51 files

package-lock.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)