devtools-protocol 0.0.1449119 → 0.0.1449749

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.
@@ -22842,6 +22842,21 @@
22842
22842
  }
22843
22843
  ]
22844
22844
  },
22845
+ {
22846
+ "id": "AttributionReportingNamedBudgetDef",
22847
+ "experimental": true,
22848
+ "type": "object",
22849
+ "properties": [
22850
+ {
22851
+ "name": "name",
22852
+ "type": "string"
22853
+ },
22854
+ {
22855
+ "name": "budget",
22856
+ "type": "integer"
22857
+ }
22858
+ ]
22859
+ },
22845
22860
  {
22846
22861
  "id": "AttributionReportingSourceRegistration",
22847
22862
  "experimental": true,
@@ -22934,6 +22949,13 @@
22934
22949
  {
22935
22950
  "name": "maxEventLevelReports",
22936
22951
  "type": "integer"
22952
+ },
22953
+ {
22954
+ "name": "namedBudgets",
22955
+ "type": "array",
22956
+ "items": {
22957
+ "$ref": "AttributionReportingNamedBudgetDef"
22958
+ }
22937
22959
  }
22938
22960
  ]
22939
22961
  },
@@ -23069,6 +23091,22 @@
23069
23091
  }
23070
23092
  ]
23071
23093
  },
23094
+ {
23095
+ "id": "AttributionReportingNamedBudgetCandidate",
23096
+ "experimental": true,
23097
+ "type": "object",
23098
+ "properties": [
23099
+ {
23100
+ "name": "name",
23101
+ "optional": true,
23102
+ "type": "string"
23103
+ },
23104
+ {
23105
+ "name": "filters",
23106
+ "$ref": "AttributionReportingFilterPair"
23107
+ }
23108
+ ]
23109
+ },
23072
23110
  {
23073
23111
  "id": "AttributionReportingTriggerRegistration",
23074
23112
  "experimental": true,
@@ -23143,6 +23181,13 @@
23143
23181
  "items": {
23144
23182
  "type": "string"
23145
23183
  }
23184
+ },
23185
+ {
23186
+ "name": "namedBudgets",
23187
+ "type": "array",
23188
+ "items": {
23189
+ "$ref": "AttributionReportingNamedBudgetCandidate"
23190
+ }
23146
23191
  }
23147
23192
  ]
23148
23193
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1449119",
3
+ "version": "0.0.1449749",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -11165,6 +11165,11 @@ experimental domain Storage
11165
11165
  number limit
11166
11166
  number maxEventStates
11167
11167
 
11168
+ experimental type AttributionReportingNamedBudgetDef extends object
11169
+ properties
11170
+ string name
11171
+ integer budget
11172
+
11168
11173
  experimental type AttributionReportingSourceRegistration extends object
11169
11174
  properties
11170
11175
  Network.TimeSinceEpoch time
@@ -11187,6 +11192,7 @@ experimental domain Storage
11187
11192
  AttributionReportingAggregatableDebugReportingConfig aggregatableDebugReportingConfig
11188
11193
  optional AttributionScopesData scopesData
11189
11194
  integer maxEventLevelReports
11195
+ array of AttributionReportingNamedBudgetDef namedBudgets
11190
11196
 
11191
11197
  experimental type AttributionReportingSourceRegistrationResult extends string
11192
11198
  enum
@@ -11249,6 +11255,11 @@ experimental domain Storage
11249
11255
  optional UnsignedInt64AsBase10 dedupKey
11250
11256
  AttributionReportingFilterPair filters
11251
11257
 
11258
+ experimental type AttributionReportingNamedBudgetCandidate extends object
11259
+ properties
11260
+ optional string name
11261
+ AttributionReportingFilterPair filters
11262
+
11252
11263
  experimental type AttributionReportingTriggerRegistration extends object
11253
11264
  properties
11254
11265
  AttributionReportingFilterPair filters
@@ -11264,6 +11275,7 @@ experimental domain Storage
11264
11275
  optional string triggerContextId
11265
11276
  AttributionReportingAggregatableDebugReportingConfig aggregatableDebugReportingConfig
11266
11277
  array of string scopes
11278
+ array of AttributionReportingNamedBudgetCandidate namedBudgets
11267
11279
 
11268
11280
  experimental type AttributionReportingEventLevelResult extends string
11269
11281
  enum
@@ -16646,6 +16646,11 @@ export namespace Protocol {
16646
16646
  maxEventStates: number;
16647
16647
  }
16648
16648
 
16649
+ export interface AttributionReportingNamedBudgetDef {
16650
+ name: string;
16651
+ budget: integer;
16652
+ }
16653
+
16649
16654
  export interface AttributionReportingSourceRegistration {
16650
16655
  time: Network.TimeSinceEpoch;
16651
16656
  /**
@@ -16671,6 +16676,7 @@ export namespace Protocol {
16671
16676
  aggregatableDebugReportingConfig: AttributionReportingAggregatableDebugReportingConfig;
16672
16677
  scopesData?: AttributionScopesData;
16673
16678
  maxEventLevelReports: integer;
16679
+ namedBudgets: AttributionReportingNamedBudgetDef[];
16674
16680
  }
16675
16681
 
16676
16682
  export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached' | 'exceedsMaxChannelCapacity' | 'exceedsMaxScopesChannelCapacity' | 'exceedsMaxTriggerStateCardinality' | 'exceedsMaxEventStatesLimit' | 'destinationPerDayReportingLimitReached');
@@ -16710,6 +16716,11 @@ export namespace Protocol {
16710
16716
  filters: AttributionReportingFilterPair;
16711
16717
  }
16712
16718
 
16719
+ export interface AttributionReportingNamedBudgetCandidate {
16720
+ name?: string;
16721
+ filters: AttributionReportingFilterPair;
16722
+ }
16723
+
16713
16724
  export interface AttributionReportingTriggerRegistration {
16714
16725
  filters: AttributionReportingFilterPair;
16715
16726
  debugKey?: UnsignedInt64AsBase10;
@@ -16724,6 +16735,7 @@ export namespace Protocol {
16724
16735
  triggerContextId?: string;
16725
16736
  aggregatableDebugReportingConfig: AttributionReportingAggregatableDebugReportingConfig;
16726
16737
  scopes: string[];
16738
+ namedBudgets: AttributionReportingNamedBudgetCandidate[];
16727
16739
  }
16728
16740
 
16729
16741
  export type AttributionReportingEventLevelResult = ('success' | 'successDroppedLowerPriority' | 'internalError' | 'noCapacityForAttributionDestination' | 'noMatchingSources' | 'deduplicated' | 'excessiveAttributions' | 'priorityTooLow' | 'neverAttributedSource' | 'excessiveReportingOrigins' | 'noMatchingSourceFilterData' | 'prohibitedByBrowserPolicy' | 'noMatchingConfigurations' | 'excessiveReports' | 'falselyAttributedSource' | 'reportWindowPassed' | 'notRegistered' | 'reportWindowNotStarted' | 'noMatchingTriggerData');