devtools-protocol 0.0.960912 → 0.0.963043
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.
- package/json/browser_protocol.json +6 -30
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +3 -11
- package/types/protocol.d.ts +4 -11
|
@@ -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,
|
|
@@ -8986,7 +8958,7 @@
|
|
|
8986
8958
|
},
|
|
8987
8959
|
{
|
|
8988
8960
|
"name": "commands",
|
|
8989
|
-
"description": "Editing commands to send with the key event (e.g., 'selectAll') (default: []).\nThese are related to but not equal the command names used in `document.execCommand` and NSStandardKeyBindingResponding.\nSee https://source.chromium.org/chromium/chromium/src/+/
|
|
8961
|
+
"description": "Editing commands to send with the key event (e.g., 'selectAll') (default: []).\nThese are related to but not equal the command names used in `document.execCommand` and NSStandardKeyBindingResponding.\nSee https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/core/editing/commands/editor_command_names.h for valid command names.",
|
|
8990
8962
|
"experimental": true,
|
|
8991
8963
|
"optional": true,
|
|
8992
8964
|
"type": "array",
|
|
@@ -18517,7 +18489,7 @@
|
|
|
18517
18489
|
},
|
|
18518
18490
|
{
|
|
18519
18491
|
"name": "expirationTime",
|
|
18520
|
-
"
|
|
18492
|
+
"$ref": "Network.TimeSinceEpoch"
|
|
18521
18493
|
},
|
|
18522
18494
|
{
|
|
18523
18495
|
"name": "joiningOrigin",
|
|
@@ -18870,6 +18842,10 @@
|
|
|
18870
18842
|
"name": "interestGroupAccessed",
|
|
18871
18843
|
"description": "One of the interest groups was accessed by the associated page.",
|
|
18872
18844
|
"parameters": [
|
|
18845
|
+
{
|
|
18846
|
+
"name": "accessTime",
|
|
18847
|
+
"$ref": "Network.TimeSinceEpoch"
|
|
18848
|
+
},
|
|
18873
18849
|
{
|
|
18874
18850
|
"name": "type",
|
|
18875
18851
|
"$ref": "InterestGroupAccessType"
|
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
|
|
@@ -4083,7 +4074,7 @@ domain Input
|
|
|
4083
4074
|
optional integer location
|
|
4084
4075
|
# Editing commands to send with the key event (e.g., 'selectAll') (default: []).
|
|
4085
4076
|
# These are related to but not equal the command names used in `document.execCommand` and NSStandardKeyBindingResponding.
|
|
4086
|
-
# See https://source.chromium.org/chromium/chromium/src/+/
|
|
4077
|
+
# See https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/core/editing/commands/editor_command_names.h for valid command names.
|
|
4087
4078
|
experimental optional array of string commands
|
|
4088
4079
|
|
|
4089
4080
|
# This method emulates inserting text that doesn't come from a key press,
|
|
@@ -8667,7 +8658,7 @@ experimental domain Storage
|
|
|
8667
8658
|
properties
|
|
8668
8659
|
string ownerOrigin
|
|
8669
8660
|
string name
|
|
8670
|
-
|
|
8661
|
+
Network.TimeSinceEpoch expirationTime
|
|
8671
8662
|
string joiningOrigin
|
|
8672
8663
|
optional string biddingUrl
|
|
8673
8664
|
optional string biddingWasmHelperUrl
|
|
@@ -8823,6 +8814,7 @@ experimental domain Storage
|
|
|
8823
8814
|
# One of the interest groups was accessed by the associated page.
|
|
8824
8815
|
event interestGroupAccessed
|
|
8825
8816
|
parameters
|
|
8817
|
+
Network.TimeSinceEpoch accessTime
|
|
8826
8818
|
InterestGroupAccessType type
|
|
8827
8819
|
string ownerOrigin
|
|
8828
8820
|
string name
|
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;
|
|
@@ -8076,7 +8068,7 @@ export namespace Protocol {
|
|
|
8076
8068
|
/**
|
|
8077
8069
|
* Editing commands to send with the key event (e.g., 'selectAll') (default: []).
|
|
8078
8070
|
* These are related to but not equal the command names used in `document.execCommand` and NSStandardKeyBindingResponding.
|
|
8079
|
-
* See https://source.chromium.org/chromium/chromium/src/+/
|
|
8071
|
+
* See https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/core/editing/commands/editor_command_names.h for valid command names.
|
|
8080
8072
|
*/
|
|
8081
8073
|
commands?: string[];
|
|
8082
8074
|
}
|
|
@@ -14109,7 +14101,7 @@ export namespace Protocol {
|
|
|
14109
14101
|
export interface InterestGroupDetails {
|
|
14110
14102
|
ownerOrigin: string;
|
|
14111
14103
|
name: string;
|
|
14112
|
-
expirationTime:
|
|
14104
|
+
expirationTime: Network.TimeSinceEpoch;
|
|
14113
14105
|
joiningOrigin: string;
|
|
14114
14106
|
biddingUrl?: string;
|
|
14115
14107
|
biddingWasmHelperUrl?: string;
|
|
@@ -14319,6 +14311,7 @@ export namespace Protocol {
|
|
|
14319
14311
|
* One of the interest groups was accessed by the associated page.
|
|
14320
14312
|
*/
|
|
14321
14313
|
export interface InterestGroupAccessedEvent {
|
|
14314
|
+
accessTime: Network.TimeSinceEpoch;
|
|
14322
14315
|
type: InterestGroupAccessType;
|
|
14323
14316
|
ownerOrigin: string;
|
|
14324
14317
|
name: string;
|