devtools-protocol 0.0.1211954 → 0.0.1213968

Sign up to get free protection for your applications and to get access to all the features.
@@ -17236,6 +17236,35 @@
17236
17236
  "Circumstantial"
17237
17237
  ]
17238
17238
  },
17239
+ {
17240
+ "id": "BackForwardCacheBlockingDetails",
17241
+ "experimental": true,
17242
+ "type": "object",
17243
+ "properties": [
17244
+ {
17245
+ "name": "url",
17246
+ "description": "Url of the file where blockage happened. Optional because of tests.",
17247
+ "optional": true,
17248
+ "type": "string"
17249
+ },
17250
+ {
17251
+ "name": "function",
17252
+ "description": "Function name where blockage happened. Optional because of anonymous functions and tests.",
17253
+ "optional": true,
17254
+ "type": "string"
17255
+ },
17256
+ {
17257
+ "name": "lineNumber",
17258
+ "description": "Line number in the script (0-based).",
17259
+ "type": "integer"
17260
+ },
17261
+ {
17262
+ "name": "columnNumber",
17263
+ "description": "Column number in the script (0-based).",
17264
+ "type": "integer"
17265
+ }
17266
+ ]
17267
+ },
17239
17268
  {
17240
17269
  "id": "BackForwardCacheNotRestoredExplanation",
17241
17270
  "experimental": true,
@@ -17256,6 +17285,14 @@
17256
17285
  "description": "Context associated with the reason. The meaning of this context is\ndependent on the reason:\n- EmbedderExtensionSentMessageToCachedFrame: the extension ID.",
17257
17286
  "optional": true,
17258
17287
  "type": "string"
17288
+ },
17289
+ {
17290
+ "name": "details",
17291
+ "optional": true,
17292
+ "type": "array",
17293
+ "items": {
17294
+ "$ref": "BackForwardCacheBlockingDetails"
17295
+ }
17259
17296
  }
17260
17297
  ]
17261
17298
  },
@@ -20422,6 +20459,15 @@
20422
20459
  }
20423
20460
  ]
20424
20461
  },
20462
+ {
20463
+ "id": "AttributionReportingTriggerDataMatching",
20464
+ "experimental": true,
20465
+ "type": "string",
20466
+ "enum": [
20467
+ "exact",
20468
+ "modulus"
20469
+ ]
20470
+ },
20425
20471
  {
20426
20472
  "id": "AttributionReportingSourceRegistration",
20427
20473
  "experimental": true,
@@ -20490,6 +20536,10 @@
20490
20536
  "name": "debugKey",
20491
20537
  "optional": true,
20492
20538
  "$ref": "UnsignedInt64AsBase10"
20539
+ },
20540
+ {
20541
+ "name": "triggerDataMatching",
20542
+ "$ref": "AttributionReportingTriggerDataMatching"
20493
20543
  }
20494
20544
  ]
20495
20545
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1211954",
3
+ "version": "0.0.1213968",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -8886,6 +8886,17 @@ domain Page
8886
8886
  PageSupportNeeded
8887
8887
  Circumstantial
8888
8888
 
8889
+ experimental type BackForwardCacheBlockingDetails extends object
8890
+ properties
8891
+ # Url of the file where blockage happened. Optional because of tests.
8892
+ optional string url
8893
+ # Function name where blockage happened. Optional because of anonymous functions and tests.
8894
+ optional string function
8895
+ # Line number in the script (0-based).
8896
+ integer lineNumber
8897
+ # Column number in the script (0-based).
8898
+ integer columnNumber
8899
+
8889
8900
  experimental type BackForwardCacheNotRestoredExplanation extends object
8890
8901
  properties
8891
8902
  # Type of the reason
@@ -8897,6 +8908,7 @@ domain Page
8897
8908
  # - EmbedderExtensionSentMessageToCachedFrame: the extension ID.
8898
8909
  #
8899
8910
  optional string context
8911
+ optional array of BackForwardCacheBlockingDetails details
8900
8912
 
8901
8913
  experimental type BackForwardCacheNotRestoredExplanationTree extends object
8902
8914
  properties
@@ -9915,6 +9927,11 @@ experimental domain Storage
9915
9927
  # duration in seconds
9916
9928
  array of integer ends
9917
9929
 
9930
+ experimental type AttributionReportingTriggerDataMatching extends string
9931
+ enum
9932
+ exact
9933
+ modulus
9934
+
9918
9935
  experimental type AttributionReportingSourceRegistration extends object
9919
9936
  properties
9920
9937
  Network.TimeSinceEpoch time
@@ -9932,6 +9949,7 @@ experimental domain Storage
9932
9949
  array of AttributionReportingFilterDataEntry filterData
9933
9950
  array of AttributionReportingAggregationKeysEntry aggregationKeys
9934
9951
  optional UnsignedInt64AsBase10 debugKey
9952
+ AttributionReportingTriggerDataMatching triggerDataMatching
9935
9953
 
9936
9954
  experimental type AttributionReportingSourceRegistrationResult extends string
9937
9955
  enum
@@ -13371,6 +13371,25 @@ export namespace Protocol {
13371
13371
  */
13372
13372
  export type BackForwardCacheNotRestoredReasonType = ('SupportPending' | 'PageSupportNeeded' | 'Circumstantial');
13373
13373
 
13374
+ export interface BackForwardCacheBlockingDetails {
13375
+ /**
13376
+ * Url of the file where blockage happened. Optional because of tests.
13377
+ */
13378
+ url?: string;
13379
+ /**
13380
+ * Function name where blockage happened. Optional because of anonymous functions and tests.
13381
+ */
13382
+ function?: string;
13383
+ /**
13384
+ * Line number in the script (0-based).
13385
+ */
13386
+ lineNumber: integer;
13387
+ /**
13388
+ * Column number in the script (0-based).
13389
+ */
13390
+ columnNumber: integer;
13391
+ }
13392
+
13374
13393
  export interface BackForwardCacheNotRestoredExplanation {
13375
13394
  /**
13376
13395
  * Type of the reason
@@ -13386,6 +13405,7 @@ export namespace Protocol {
13386
13405
  * - EmbedderExtensionSentMessageToCachedFrame: the extension ID.
13387
13406
  */
13388
13407
  context?: string;
13408
+ details?: BackForwardCacheBlockingDetails[];
13389
13409
  }
13390
13410
 
13391
13411
  export interface BackForwardCacheNotRestoredExplanationTree {
@@ -15284,6 +15304,8 @@ export namespace Protocol {
15284
15304
  ends: integer[];
15285
15305
  }
15286
15306
 
15307
+ export type AttributionReportingTriggerDataMatching = ('exact' | 'modulus');
15308
+
15287
15309
  export interface AttributionReportingSourceRegistration {
15288
15310
  time: Network.TimeSinceEpoch;
15289
15311
  /**
@@ -15304,6 +15326,7 @@ export namespace Protocol {
15304
15326
  filterData: AttributionReportingFilterDataEntry[];
15305
15327
  aggregationKeys: AttributionReportingAggregationKeysEntry[];
15306
15328
  debugKey?: UnsignedInt64AsBase10;
15329
+ triggerDataMatching: AttributionReportingTriggerDataMatching;
15307
15330
  }
15308
15331
 
15309
15332
  export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached' | 'exceedsMaxChannelCapacity');