devtools-protocol 0.0.1030398 → 0.0.1030896

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.
@@ -991,7 +991,8 @@
991
991
  "ExcludeSameSiteLax",
992
992
  "ExcludeSameSiteStrict",
993
993
  "ExcludeInvalidSameParty",
994
- "ExcludeSamePartyCrossPartyContext"
994
+ "ExcludeSamePartyCrossPartyContext",
995
+ "ExcludeDomainNonASCII"
995
996
  ]
996
997
  },
997
998
  {
@@ -1006,7 +1007,8 @@
1006
1007
  "WarnSameSiteStrictCrossDowngradeLax",
1007
1008
  "WarnSameSiteLaxCrossDowngradeStrict",
1008
1009
  "WarnSameSiteLaxCrossDowngradeLax",
1009
- "WarnAttributeValueExceedsMaxSize"
1010
+ "WarnAttributeValueExceedsMaxSize",
1011
+ "WarnDomainNonASCII"
1010
1012
  ]
1011
1013
  },
1012
1014
  {
@@ -9120,7 +9122,14 @@
9120
9122
  "parameters": [
9121
9123
  {
9122
9124
  "name": "securityOrigin",
9123
- "description": "Security origin.",
9125
+ "description": "At least and at most one of securityOrigin, storageKey must be specified.\nSecurity origin.",
9126
+ "optional": true,
9127
+ "type": "string"
9128
+ },
9129
+ {
9130
+ "name": "storageKey",
9131
+ "description": "Storage key.",
9132
+ "optional": true,
9124
9133
  "type": "string"
9125
9134
  }
9126
9135
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1030398",
3
+ "version": "0.0.1030896",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -481,6 +481,7 @@ experimental domain Audits
481
481
  ExcludeSameSiteStrict
482
482
  ExcludeInvalidSameParty
483
483
  ExcludeSamePartyCrossPartyContext
484
+ ExcludeDomainNonASCII
484
485
 
485
486
  type CookieWarningReason extends string
486
487
  enum
@@ -493,6 +494,7 @@ experimental domain Audits
493
494
  WarnSameSiteLaxCrossDowngradeStrict
494
495
  WarnSameSiteLaxCrossDowngradeLax
495
496
  WarnAttributeValueExceedsMaxSize
497
+ WarnDomainNonASCII
496
498
 
497
499
  type CookieOperation extends string
498
500
  enum
@@ -4181,8 +4183,11 @@ experimental domain IndexedDB
4181
4183
  # Requests database names for given security origin.
4182
4184
  command requestDatabaseNames
4183
4185
  parameters
4186
+ # At least and at most one of securityOrigin, storageKey must be specified.
4184
4187
  # Security origin.
4185
- string securityOrigin
4188
+ optional string securityOrigin
4189
+ # Storage key.
4190
+ optional string storageKey
4186
4191
  returns
4187
4192
  # Database names for origin.
4188
4193
  array of string databaseNames
@@ -2740,7 +2740,7 @@ export namespace ProtocolMapping {
2740
2740
  * Requests database names for given security origin.
2741
2741
  */
2742
2742
  'IndexedDB.requestDatabaseNames': {
2743
- paramsType: [Protocol.IndexedDB.RequestDatabaseNamesRequest];
2743
+ paramsType: [Protocol.IndexedDB.RequestDatabaseNamesRequest?];
2744
2744
  returnType: Protocol.IndexedDB.RequestDatabaseNamesResponse;
2745
2745
  };
2746
2746
  /**
@@ -3237,9 +3237,9 @@ export namespace Protocol {
3237
3237
  frameId: Page.FrameId;
3238
3238
  }
3239
3239
 
3240
- export type CookieExclusionReason = ('ExcludeSameSiteUnspecifiedTreatedAsLax' | 'ExcludeSameSiteNoneInsecure' | 'ExcludeSameSiteLax' | 'ExcludeSameSiteStrict' | 'ExcludeInvalidSameParty' | 'ExcludeSamePartyCrossPartyContext');
3240
+ export type CookieExclusionReason = ('ExcludeSameSiteUnspecifiedTreatedAsLax' | 'ExcludeSameSiteNoneInsecure' | 'ExcludeSameSiteLax' | 'ExcludeSameSiteStrict' | 'ExcludeInvalidSameParty' | 'ExcludeSamePartyCrossPartyContext' | 'ExcludeDomainNonASCII');
3241
3241
 
3242
- export type CookieWarningReason = ('WarnSameSiteUnspecifiedCrossSiteContext' | 'WarnSameSiteNoneInsecure' | 'WarnSameSiteUnspecifiedLaxAllowUnsafe' | 'WarnSameSiteStrictLaxDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeLax' | 'WarnSameSiteLaxCrossDowngradeStrict' | 'WarnSameSiteLaxCrossDowngradeLax' | 'WarnAttributeValueExceedsMaxSize');
3242
+ export type CookieWarningReason = ('WarnSameSiteUnspecifiedCrossSiteContext' | 'WarnSameSiteNoneInsecure' | 'WarnSameSiteUnspecifiedLaxAllowUnsafe' | 'WarnSameSiteStrictLaxDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeLax' | 'WarnSameSiteLaxCrossDowngradeStrict' | 'WarnSameSiteLaxCrossDowngradeLax' | 'WarnAttributeValueExceedsMaxSize' | 'WarnDomainNonASCII');
3243
3243
 
3244
3244
  export type CookieOperation = ('SetCookie' | 'ReadCookie');
3245
3245
 
@@ -8262,9 +8262,14 @@ export namespace Protocol {
8262
8262
 
8263
8263
  export interface RequestDatabaseNamesRequest {
8264
8264
  /**
8265
+ * At least and at most one of securityOrigin, storageKey must be specified.
8265
8266
  * Security origin.
8266
8267
  */
8267
- securityOrigin: string;
8268
+ securityOrigin?: string;
8269
+ /**
8270
+ * Storage key.
8271
+ */
8272
+ storageKey?: string;
8268
8273
  }
8269
8274
 
8270
8275
  export interface RequestDatabaseNamesResponse {