devtools-protocol 0.0.1306150 → 0.0.1308459

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.
@@ -15350,7 +15350,7 @@
15350
15350
  "FailedPrecondition",
15351
15351
  "ResourceExhausted",
15352
15352
  "AlreadyExists",
15353
- "Unavailable",
15353
+ "ResourceLimited",
15354
15354
  "Unauthorized",
15355
15355
  "BadResponse",
15356
15356
  "InternalError",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1306150",
3
+ "version": "0.0.1308459",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -7093,7 +7093,7 @@ domain Network
7093
7093
  FailedPrecondition
7094
7094
  ResourceExhausted
7095
7095
  AlreadyExists
7096
- Unavailable
7096
+ ResourceLimited
7097
7097
  Unauthorized
7098
7098
  BadResponse
7099
7099
  InternalError
@@ -12308,7 +12308,7 @@ export namespace Protocol {
12308
12308
  FailedPrecondition = 'FailedPrecondition',
12309
12309
  ResourceExhausted = 'ResourceExhausted',
12310
12310
  AlreadyExists = 'AlreadyExists',
12311
- Unavailable = 'Unavailable',
12311
+ ResourceLimited = 'ResourceLimited',
12312
12312
  Unauthorized = 'Unauthorized',
12313
12313
  BadResponse = 'BadResponse',
12314
12314
  InternalError = 'InternalError',
@@ -12329,7 +12329,7 @@ export namespace Protocol {
12329
12329
  * of the operation already exists und thus, the operation was abort
12330
12330
  * preemptively (e.g. a cache hit). (TrustTokenOperationDoneEventStatus enum)
12331
12331
  */
12332
- status: ('Ok' | 'InvalidArgument' | 'MissingIssuerKeys' | 'FailedPrecondition' | 'ResourceExhausted' | 'AlreadyExists' | 'Unavailable' | 'Unauthorized' | 'BadResponse' | 'InternalError' | 'UnknownError' | 'FulfilledLocally');
12332
+ status: ('Ok' | 'InvalidArgument' | 'MissingIssuerKeys' | 'FailedPrecondition' | 'ResourceExhausted' | 'AlreadyExists' | 'ResourceLimited' | 'Unauthorized' | 'BadResponse' | 'InternalError' | 'UnknownError' | 'FulfilledLocally');
12333
12333
  type: TrustTokenOperationType;
12334
12334
  requestId: RequestId;
12335
12335
  /**