devtools-protocol 0.0.1212569 → 0.0.1213968

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.
@@ -20459,6 +20459,15 @@
20459
20459
  }
20460
20460
  ]
20461
20461
  },
20462
+ {
20463
+ "id": "AttributionReportingTriggerDataMatching",
20464
+ "experimental": true,
20465
+ "type": "string",
20466
+ "enum": [
20467
+ "exact",
20468
+ "modulus"
20469
+ ]
20470
+ },
20462
20471
  {
20463
20472
  "id": "AttributionReportingSourceRegistration",
20464
20473
  "experimental": true,
@@ -20527,6 +20536,10 @@
20527
20536
  "name": "debugKey",
20528
20537
  "optional": true,
20529
20538
  "$ref": "UnsignedInt64AsBase10"
20539
+ },
20540
+ {
20541
+ "name": "triggerDataMatching",
20542
+ "$ref": "AttributionReportingTriggerDataMatching"
20530
20543
  }
20531
20544
  ]
20532
20545
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1212569",
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",
@@ -9927,6 +9927,11 @@ experimental domain Storage
9927
9927
  # duration in seconds
9928
9928
  array of integer ends
9929
9929
 
9930
+ experimental type AttributionReportingTriggerDataMatching extends string
9931
+ enum
9932
+ exact
9933
+ modulus
9934
+
9930
9935
  experimental type AttributionReportingSourceRegistration extends object
9931
9936
  properties
9932
9937
  Network.TimeSinceEpoch time
@@ -9944,6 +9949,7 @@ experimental domain Storage
9944
9949
  array of AttributionReportingFilterDataEntry filterData
9945
9950
  array of AttributionReportingAggregationKeysEntry aggregationKeys
9946
9951
  optional UnsignedInt64AsBase10 debugKey
9952
+ AttributionReportingTriggerDataMatching triggerDataMatching
9947
9953
 
9948
9954
  experimental type AttributionReportingSourceRegistrationResult extends string
9949
9955
  enum
@@ -15304,6 +15304,8 @@ export namespace Protocol {
15304
15304
  ends: integer[];
15305
15305
  }
15306
15306
 
15307
+ export type AttributionReportingTriggerDataMatching = ('exact' | 'modulus');
15308
+
15307
15309
  export interface AttributionReportingSourceRegistration {
15308
15310
  time: Network.TimeSinceEpoch;
15309
15311
  /**
@@ -15324,6 +15326,7 @@ export namespace Protocol {
15324
15326
  filterData: AttributionReportingFilterDataEntry[];
15325
15327
  aggregationKeys: AttributionReportingAggregationKeysEntry[];
15326
15328
  debugKey?: UnsignedInt64AsBase10;
15329
+ triggerDataMatching: AttributionReportingTriggerDataMatching;
15327
15330
  }
15328
15331
 
15329
15332
  export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached' | 'exceedsMaxChannelCapacity');