devtools-protocol 0.0.962425 → 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.
@@ -18489,7 +18489,7 @@
18489
18489
  },
18490
18490
  {
18491
18491
  "name": "expirationTime",
18492
- "type": "number"
18492
+ "$ref": "Network.TimeSinceEpoch"
18493
18493
  },
18494
18494
  {
18495
18495
  "name": "joiningOrigin",
@@ -18842,6 +18842,10 @@
18842
18842
  "name": "interestGroupAccessed",
18843
18843
  "description": "One of the interest groups was accessed by the associated page.",
18844
18844
  "parameters": [
18845
+ {
18846
+ "name": "accessTime",
18847
+ "$ref": "Network.TimeSinceEpoch"
18848
+ },
18845
18849
  {
18846
18850
  "name": "type",
18847
18851
  "$ref": "InterestGroupAccessType"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.962425",
3
+ "version": "0.0.963043",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -8658,7 +8658,7 @@ experimental domain Storage
8658
8658
  properties
8659
8659
  string ownerOrigin
8660
8660
  string name
8661
- number expirationTime
8661
+ Network.TimeSinceEpoch expirationTime
8662
8662
  string joiningOrigin
8663
8663
  optional string biddingUrl
8664
8664
  optional string biddingWasmHelperUrl
@@ -8814,6 +8814,7 @@ experimental domain Storage
8814
8814
  # One of the interest groups was accessed by the associated page.
8815
8815
  event interestGroupAccessed
8816
8816
  parameters
8817
+ Network.TimeSinceEpoch accessTime
8817
8818
  InterestGroupAccessType type
8818
8819
  string ownerOrigin
8819
8820
  string name
@@ -14101,7 +14101,7 @@ export namespace Protocol {
14101
14101
  export interface InterestGroupDetails {
14102
14102
  ownerOrigin: string;
14103
14103
  name: string;
14104
- expirationTime: number;
14104
+ expirationTime: Network.TimeSinceEpoch;
14105
14105
  joiningOrigin: string;
14106
14106
  biddingUrl?: string;
14107
14107
  biddingWasmHelperUrl?: string;
@@ -14311,6 +14311,7 @@ export namespace Protocol {
14311
14311
  * One of the interest groups was accessed by the associated page.
14312
14312
  */
14313
14313
  export interface InterestGroupAccessedEvent {
14314
+ accessTime: Network.TimeSinceEpoch;
14314
14315
  type: InterestGroupAccessType;
14315
14316
  ownerOrigin: string;
14316
14317
  name: string;