devtools-protocol 0.0.1258865 → 0.0.1259648

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.
@@ -20488,15 +20488,23 @@
20488
20488
  "properties": [
20489
20489
  {
20490
20490
  "name": "creationTime",
20491
+ "description": "Time when the origin's shared storage was last created.",
20491
20492
  "$ref": "Network.TimeSinceEpoch"
20492
20493
  },
20493
20494
  {
20494
20495
  "name": "length",
20496
+ "description": "Number of key-value pairs stored in origin's shared storage.",
20495
20497
  "type": "integer"
20496
20498
  },
20497
20499
  {
20498
20500
  "name": "remainingBudget",
20501
+ "description": "Current amount of bits of entropy remaining in the navigation budget.",
20499
20502
  "type": "number"
20503
+ },
20504
+ {
20505
+ "name": "bytesUsed",
20506
+ "description": "Total number of bytes stored as key-value pairs in origin's shared\nstorage.",
20507
+ "type": "integer"
20500
20508
  }
20501
20509
  ]
20502
20510
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1258865",
3
+ "version": "0.0.1259648",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -9679,9 +9679,15 @@ experimental domain Storage
9679
9679
  # Details for an origin's shared storage.
9680
9680
  type SharedStorageMetadata extends object
9681
9681
  properties
9682
+ # Time when the origin's shared storage was last created.
9682
9683
  Network.TimeSinceEpoch creationTime
9684
+ # Number of key-value pairs stored in origin's shared storage.
9683
9685
  integer length
9686
+ # Current amount of bits of entropy remaining in the navigation budget.
9684
9687
  number remainingBudget
9688
+ # Total number of bytes stored as key-value pairs in origin's shared
9689
+ # storage.
9690
+ integer bytesUsed
9685
9691
 
9686
9692
  # Pair of reporting metadata details for a candidate URL for `selectURL()`.
9687
9693
  type SharedStorageReportingMetadata extends object
@@ -15360,9 +15360,23 @@ export namespace Protocol {
15360
15360
  * Details for an origin's shared storage.
15361
15361
  */
15362
15362
  export interface SharedStorageMetadata {
15363
+ /**
15364
+ * Time when the origin's shared storage was last created.
15365
+ */
15363
15366
  creationTime: Network.TimeSinceEpoch;
15367
+ /**
15368
+ * Number of key-value pairs stored in origin's shared storage.
15369
+ */
15364
15370
  length: integer;
15371
+ /**
15372
+ * Current amount of bits of entropy remaining in the navigation budget.
15373
+ */
15365
15374
  remainingBudget: number;
15375
+ /**
15376
+ * Total number of bytes stored as key-value pairs in origin's shared
15377
+ * storage.
15378
+ */
15379
+ bytesUsed: integer;
15366
15380
  }
15367
15381
 
15368
15382
  /**