devtools-protocol 0.0.1028580 → 0.0.1029085

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.
@@ -1446,12 +1446,11 @@
1446
1446
  "type": "string",
1447
1447
  "enum": [
1448
1448
  "PermissionPolicyDisabled",
1449
- "AttributionSourceUntrustworthyOrigin",
1450
- "AttributionUntrustworthyOrigin",
1451
1449
  "UntrustworthyReportingOrigin",
1452
1450
  "InsecureContext",
1453
1451
  "InvalidHeader",
1454
- "InvalidRegisterTriggerHeader"
1452
+ "InvalidRegisterTriggerHeader",
1453
+ "InvalidEligibleHeader"
1455
1454
  ]
1456
1455
  },
1457
1456
  {
@@ -1463,12 +1462,6 @@
1463
1462
  "name": "violationType",
1464
1463
  "$ref": "AttributionReportingIssueType"
1465
1464
  },
1466
- {
1467
- "name": "frame",
1468
- "description": "TODO(apaseltiner): Remove this once it is no longer referenced by the frontend.",
1469
- "optional": true,
1470
- "$ref": "AffectedFrame"
1471
- },
1472
1465
  {
1473
1466
  "name": "request",
1474
1467
  "optional": true,
@@ -8992,7 +8985,14 @@
8992
8985
  "parameters": [
8993
8986
  {
8994
8987
  "name": "securityOrigin",
8995
- "description": "Security origin.",
8988
+ "description": "At least and at most one of securityOrigin, storageKey must be specified.\nSecurity origin.",
8989
+ "optional": true,
8990
+ "type": "string"
8991
+ },
8992
+ {
8993
+ "name": "storageKey",
8994
+ "description": "Storage key.",
8995
+ "optional": true,
8996
8996
  "type": "string"
8997
8997
  },
8998
8998
  {
@@ -9089,7 +9089,14 @@
9089
9089
  "parameters": [
9090
9090
  {
9091
9091
  "name": "securityOrigin",
9092
- "description": "Security origin.",
9092
+ "description": "At least and at most one of securityOrigin, storageKey must be specified.\nSecurity origin.",
9093
+ "optional": true,
9094
+ "type": "string"
9095
+ },
9096
+ {
9097
+ "name": "storageKey",
9098
+ "description": "Storage key.",
9099
+ "optional": true,
9093
9100
  "type": "string"
9094
9101
  },
9095
9102
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1028580",
3
+ "version": "0.0.1029085",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -699,23 +699,18 @@ experimental domain Audits
699
699
  type AttributionReportingIssueType extends string
700
700
  enum
701
701
  PermissionPolicyDisabled
702
- # TODO(apaseltiner): Remove this once it is no longer referenced by the frontend.
703
- AttributionSourceUntrustworthyOrigin
704
- # TODO(apaseltiner): Remove this once it is no longer referenced by the frontend.
705
- AttributionUntrustworthyOrigin
706
702
  UntrustworthyReportingOrigin
707
703
  InsecureContext
708
704
  # TODO(apaseltiner): Rename this to InvalidRegisterSourceHeader
709
705
  InvalidHeader
710
706
  InvalidRegisterTriggerHeader
707
+ InvalidEligibleHeader
711
708
 
712
709
  # Details for issues around "Attribution Reporting API" usage.
713
710
  # Explainer: https://github.com/WICG/attribution-reporting-api
714
711
  type AttributionReportingIssueDetails extends object
715
712
  properties
716
713
  AttributionReportingIssueType violationType
717
- # TODO(apaseltiner): Remove this once it is no longer referenced by the frontend.
718
- optional AffectedFrame frame
719
714
  optional AffectedRequest request
720
715
  optional DOM.BackendNodeId violatingNodeId
721
716
  optional string invalidParameter
@@ -4125,8 +4120,11 @@ experimental domain IndexedDB
4125
4120
  # Requests data from object store or index.
4126
4121
  command requestData
4127
4122
  parameters
4123
+ # At least and at most one of securityOrigin, storageKey must be specified.
4128
4124
  # Security origin.
4129
- string securityOrigin
4125
+ optional string securityOrigin
4126
+ # Storage key.
4127
+ optional string storageKey
4130
4128
  # Database name.
4131
4129
  string databaseName
4132
4130
  # Object store name.
@@ -4168,8 +4166,11 @@ experimental domain IndexedDB
4168
4166
  # Requests database with given name in given frame.
4169
4167
  command requestDatabase
4170
4168
  parameters
4169
+ # At least and at most one of securityOrigin, storageKey must be specified.
4171
4170
  # Security origin.
4172
- string securityOrigin
4171
+ optional string securityOrigin
4172
+ # Storage key.
4173
+ optional string storageKey
4173
4174
  # Database name.
4174
4175
  string databaseName
4175
4176
  returns
@@ -3423,7 +3423,7 @@ export namespace Protocol {
3423
3423
  clientSecurityState?: Network.ClientSecurityState;
3424
3424
  }
3425
3425
 
3426
- export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'AttributionSourceUntrustworthyOrigin' | 'AttributionUntrustworthyOrigin' | 'UntrustworthyReportingOrigin' | 'InsecureContext' | 'InvalidHeader' | 'InvalidRegisterTriggerHeader');
3426
+ export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'UntrustworthyReportingOrigin' | 'InsecureContext' | 'InvalidHeader' | 'InvalidRegisterTriggerHeader' | 'InvalidEligibleHeader');
3427
3427
 
3428
3428
  /**
3429
3429
  * Details for issues around "Attribution Reporting API" usage.
@@ -3431,10 +3431,6 @@ export namespace Protocol {
3431
3431
  */
3432
3432
  export interface AttributionReportingIssueDetails {
3433
3433
  violationType: AttributionReportingIssueType;
3434
- /**
3435
- * TODO(apaseltiner): Remove this once it is no longer referenced by the frontend.
3436
- */
3437
- frame?: AffectedFrame;
3438
3434
  request?: AffectedRequest;
3439
3435
  violatingNodeId?: DOM.BackendNodeId;
3440
3436
  invalidParameter?: string;
@@ -8163,9 +8159,14 @@ export namespace Protocol {
8163
8159
 
8164
8160
  export interface RequestDataRequest {
8165
8161
  /**
8162
+ * At least and at most one of securityOrigin, storageKey must be specified.
8166
8163
  * Security origin.
8167
8164
  */
8168
- securityOrigin: string;
8165
+ securityOrigin?: string;
8166
+ /**
8167
+ * Storage key.
8168
+ */
8169
+ storageKey?: string;
8169
8170
  /**
8170
8171
  * Database name.
8171
8172
  */
@@ -8238,9 +8239,14 @@ export namespace Protocol {
8238
8239
 
8239
8240
  export interface RequestDatabaseRequest {
8240
8241
  /**
8242
+ * At least and at most one of securityOrigin, storageKey must be specified.
8241
8243
  * Security origin.
8242
8244
  */
8243
- securityOrigin: string;
8245
+ securityOrigin?: string;
8246
+ /**
8247
+ * Storage key.
8248
+ */
8249
+ storageKey?: string;
8244
8250
  /**
8245
8251
  * Database name.
8246
8252
  */