devtools-protocol 0.0.961751 → 0.0.961891
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1532,28 +1532,6 @@
|
|
|
1532
1532
|
}
|
|
1533
1533
|
]
|
|
1534
1534
|
},
|
|
1535
|
-
{
|
|
1536
|
-
"id": "WasmCrossOriginModuleSharingIssueDetails",
|
|
1537
|
-
"type": "object",
|
|
1538
|
-
"properties": [
|
|
1539
|
-
{
|
|
1540
|
-
"name": "wasmModuleUrl",
|
|
1541
|
-
"type": "string"
|
|
1542
|
-
},
|
|
1543
|
-
{
|
|
1544
|
-
"name": "sourceOrigin",
|
|
1545
|
-
"type": "string"
|
|
1546
|
-
},
|
|
1547
|
-
{
|
|
1548
|
-
"name": "targetOrigin",
|
|
1549
|
-
"type": "string"
|
|
1550
|
-
},
|
|
1551
|
-
{
|
|
1552
|
-
"name": "isWarning",
|
|
1553
|
-
"type": "boolean"
|
|
1554
|
-
}
|
|
1555
|
-
]
|
|
1556
|
-
},
|
|
1557
1535
|
{
|
|
1558
1536
|
"id": "GenericIssueErrorType",
|
|
1559
1537
|
"type": "string",
|
|
@@ -1645,7 +1623,6 @@
|
|
|
1645
1623
|
"AttributionReportingIssue",
|
|
1646
1624
|
"QuirksModeIssue",
|
|
1647
1625
|
"NavigatorUserAgentIssue",
|
|
1648
|
-
"WasmCrossOriginModuleSharingIssue",
|
|
1649
1626
|
"GenericIssue",
|
|
1650
1627
|
"DeprecationIssue",
|
|
1651
1628
|
"ClientHintIssue"
|
|
@@ -1716,11 +1693,6 @@
|
|
|
1716
1693
|
"optional": true,
|
|
1717
1694
|
"$ref": "NavigatorUserAgentIssueDetails"
|
|
1718
1695
|
},
|
|
1719
|
-
{
|
|
1720
|
-
"name": "wasmCrossOriginModuleSharingIssue",
|
|
1721
|
-
"optional": true,
|
|
1722
|
-
"$ref": "WasmCrossOriginModuleSharingIssueDetails"
|
|
1723
|
-
},
|
|
1724
1696
|
{
|
|
1725
1697
|
"name": "genericIssueDetails",
|
|
1726
1698
|
"optional": true,
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
|
@@ -736,13 +736,6 @@ experimental domain Audits
|
|
|
736
736
|
string url
|
|
737
737
|
optional SourceCodeLocation location
|
|
738
738
|
|
|
739
|
-
type WasmCrossOriginModuleSharingIssueDetails extends object
|
|
740
|
-
properties
|
|
741
|
-
string wasmModuleUrl
|
|
742
|
-
string sourceOrigin
|
|
743
|
-
string targetOrigin
|
|
744
|
-
boolean isWarning
|
|
745
|
-
|
|
746
739
|
type GenericIssueErrorType extends string
|
|
747
740
|
enum
|
|
748
741
|
CrossOriginPortalPostMessageError
|
|
@@ -804,7 +797,6 @@ experimental domain Audits
|
|
|
804
797
|
AttributionReportingIssue
|
|
805
798
|
QuirksModeIssue
|
|
806
799
|
NavigatorUserAgentIssue
|
|
807
|
-
WasmCrossOriginModuleSharingIssue
|
|
808
800
|
GenericIssue
|
|
809
801
|
DeprecationIssue
|
|
810
802
|
ClientHintIssue
|
|
@@ -826,7 +818,6 @@ experimental domain Audits
|
|
|
826
818
|
optional AttributionReportingIssueDetails attributionReportingIssueDetails
|
|
827
819
|
optional QuirksModeIssueDetails quirksModeIssueDetails
|
|
828
820
|
optional NavigatorUserAgentIssueDetails navigatorUserAgentIssueDetails
|
|
829
|
-
optional WasmCrossOriginModuleSharingIssueDetails wasmCrossOriginModuleSharingIssue
|
|
830
821
|
optional GenericIssueDetails genericIssueDetails
|
|
831
822
|
optional DeprecationIssueDetails deprecationIssueDetails
|
|
832
823
|
optional ClientHintIssueDetails clientHintIssueDetails
|
package/types/protocol.d.ts
CHANGED
|
@@ -3296,13 +3296,6 @@ export namespace Protocol {
|
|
|
3296
3296
|
location?: SourceCodeLocation;
|
|
3297
3297
|
}
|
|
3298
3298
|
|
|
3299
|
-
export interface WasmCrossOriginModuleSharingIssueDetails {
|
|
3300
|
-
wasmModuleUrl: string;
|
|
3301
|
-
sourceOrigin: string;
|
|
3302
|
-
targetOrigin: string;
|
|
3303
|
-
isWarning: boolean;
|
|
3304
|
-
}
|
|
3305
|
-
|
|
3306
3299
|
export type GenericIssueErrorType = ('CrossOriginPortalPostMessageError');
|
|
3307
3300
|
|
|
3308
3301
|
/**
|
|
@@ -3353,7 +3346,7 @@ export namespace Protocol {
|
|
|
3353
3346
|
* optional fields in InspectorIssueDetails to convey more specific
|
|
3354
3347
|
* information about the kind of issue.
|
|
3355
3348
|
*/
|
|
3356
|
-
export type InspectorIssueCode = ('SameSiteCookieIssue' | 'MixedContentIssue' | 'BlockedByResponseIssue' | 'HeavyAdIssue' | 'ContentSecurityPolicyIssue' | 'SharedArrayBufferIssue' | 'TrustedWebActivityIssue' | 'LowTextContrastIssue' | 'CorsIssue' | 'AttributionReportingIssue' | 'QuirksModeIssue' | 'NavigatorUserAgentIssue' | '
|
|
3349
|
+
export type InspectorIssueCode = ('SameSiteCookieIssue' | 'MixedContentIssue' | 'BlockedByResponseIssue' | 'HeavyAdIssue' | 'ContentSecurityPolicyIssue' | 'SharedArrayBufferIssue' | 'TrustedWebActivityIssue' | 'LowTextContrastIssue' | 'CorsIssue' | 'AttributionReportingIssue' | 'QuirksModeIssue' | 'NavigatorUserAgentIssue' | 'GenericIssue' | 'DeprecationIssue' | 'ClientHintIssue');
|
|
3357
3350
|
|
|
3358
3351
|
/**
|
|
3359
3352
|
* This struct holds a list of optional fields with additional information
|
|
@@ -3373,7 +3366,6 @@ export namespace Protocol {
|
|
|
3373
3366
|
attributionReportingIssueDetails?: AttributionReportingIssueDetails;
|
|
3374
3367
|
quirksModeIssueDetails?: QuirksModeIssueDetails;
|
|
3375
3368
|
navigatorUserAgentIssueDetails?: NavigatorUserAgentIssueDetails;
|
|
3376
|
-
wasmCrossOriginModuleSharingIssue?: WasmCrossOriginModuleSharingIssueDetails;
|
|
3377
3369
|
genericIssueDetails?: GenericIssueDetails;
|
|
3378
3370
|
deprecationIssueDetails?: DeprecationIssueDetails;
|
|
3379
3371
|
clientHintIssueDetails?: ClientHintIssueDetails;
|