devtools-protocol 0.0.1326544 → 0.0.1327118

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.
@@ -21603,6 +21603,58 @@
21603
21603
  "modulus"
21604
21604
  ]
21605
21605
  },
21606
+ {
21607
+ "id": "AttributionReportingAggregatableDebugReportingData",
21608
+ "experimental": true,
21609
+ "type": "object",
21610
+ "properties": [
21611
+ {
21612
+ "name": "keyPiece",
21613
+ "$ref": "UnsignedInt128AsBase16"
21614
+ },
21615
+ {
21616
+ "name": "value",
21617
+ "description": "number instead of integer because not all uint32 can be represented by\nint",
21618
+ "type": "number"
21619
+ },
21620
+ {
21621
+ "name": "types",
21622
+ "type": "array",
21623
+ "items": {
21624
+ "type": "string"
21625
+ }
21626
+ }
21627
+ ]
21628
+ },
21629
+ {
21630
+ "id": "AttributionReportingAggregatableDebugReportingConfig",
21631
+ "experimental": true,
21632
+ "type": "object",
21633
+ "properties": [
21634
+ {
21635
+ "name": "budget",
21636
+ "description": "number instead of integer because not all uint32 can be represented by\nint, only present for source registrations",
21637
+ "optional": true,
21638
+ "type": "number"
21639
+ },
21640
+ {
21641
+ "name": "keyPiece",
21642
+ "$ref": "UnsignedInt128AsBase16"
21643
+ },
21644
+ {
21645
+ "name": "debugData",
21646
+ "type": "array",
21647
+ "items": {
21648
+ "$ref": "AttributionReportingAggregatableDebugReportingData"
21649
+ }
21650
+ },
21651
+ {
21652
+ "name": "aggregationCoordinatorOrigin",
21653
+ "optional": true,
21654
+ "type": "string"
21655
+ }
21656
+ ]
21657
+ },
21606
21658
  {
21607
21659
  "id": "AttributionReportingSourceRegistration",
21608
21660
  "experimental": true,
@@ -21682,6 +21734,10 @@
21682
21734
  {
21683
21735
  "name": "destinationLimitPriority",
21684
21736
  "$ref": "SignedInt64AsBase10"
21737
+ },
21738
+ {
21739
+ "name": "aggregatableDebugReportingConfig",
21740
+ "$ref": "AttributionReportingAggregatableDebugReportingConfig"
21685
21741
  }
21686
21742
  ]
21687
21743
  },
@@ -21878,6 +21934,10 @@
21878
21934
  "name": "triggerContextId",
21879
21935
  "optional": true,
21880
21936
  "type": "string"
21937
+ },
21938
+ {
21939
+ "name": "aggregatableDebugReportingConfig",
21940
+ "$ref": "AttributionReportingAggregatableDebugReportingConfig"
21881
21941
  }
21882
21942
  ]
21883
21943
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1326544",
3
+ "version": "0.0.1327118",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -10523,6 +10523,23 @@ experimental domain Storage
10523
10523
  exact
10524
10524
  modulus
10525
10525
 
10526
+ experimental type AttributionReportingAggregatableDebugReportingData extends object
10527
+ properties
10528
+ UnsignedInt128AsBase16 keyPiece
10529
+ # number instead of integer because not all uint32 can be represented by
10530
+ # int
10531
+ number value
10532
+ array of string types
10533
+
10534
+ experimental type AttributionReportingAggregatableDebugReportingConfig extends object
10535
+ properties
10536
+ # number instead of integer because not all uint32 can be represented by
10537
+ # int, only present for source registrations
10538
+ optional number budget
10539
+ UnsignedInt128AsBase16 keyPiece
10540
+ array of AttributionReportingAggregatableDebugReportingData debugData
10541
+ optional string aggregationCoordinatorOrigin
10542
+
10526
10543
  experimental type AttributionReportingSourceRegistration extends object
10527
10544
  properties
10528
10545
  Network.TimeSinceEpoch time
@@ -10542,6 +10559,7 @@ experimental domain Storage
10542
10559
  optional UnsignedInt64AsBase10 debugKey
10543
10560
  AttributionReportingTriggerDataMatching triggerDataMatching
10544
10561
  SignedInt64AsBase10 destinationLimitPriority
10562
+ AttributionReportingAggregatableDebugReportingConfig aggregatableDebugReportingConfig
10545
10563
 
10546
10564
  experimental type AttributionReportingSourceRegistrationResult extends string
10547
10565
  enum
@@ -10615,6 +10633,7 @@ experimental domain Storage
10615
10633
  optional string aggregationCoordinatorOrigin
10616
10634
  AttributionReportingSourceRegistrationTimeConfig sourceRegistrationTimeConfig
10617
10635
  optional string triggerContextId
10636
+ AttributionReportingAggregatableDebugReportingConfig aggregatableDebugReportingConfig
10618
10637
 
10619
10638
  experimental type AttributionReportingEventLevelResult extends string
10620
10639
  enum
@@ -15921,6 +15921,27 @@ export namespace Protocol {
15921
15921
 
15922
15922
  export type AttributionReportingTriggerDataMatching = ('exact' | 'modulus');
15923
15923
 
15924
+ export interface AttributionReportingAggregatableDebugReportingData {
15925
+ keyPiece: UnsignedInt128AsBase16;
15926
+ /**
15927
+ * number instead of integer because not all uint32 can be represented by
15928
+ * int
15929
+ */
15930
+ value: number;
15931
+ types: string[];
15932
+ }
15933
+
15934
+ export interface AttributionReportingAggregatableDebugReportingConfig {
15935
+ /**
15936
+ * number instead of integer because not all uint32 can be represented by
15937
+ * int, only present for source registrations
15938
+ */
15939
+ budget?: number;
15940
+ keyPiece: UnsignedInt128AsBase16;
15941
+ debugData: AttributionReportingAggregatableDebugReportingData[];
15942
+ aggregationCoordinatorOrigin?: string;
15943
+ }
15944
+
15924
15945
  export interface AttributionReportingSourceRegistration {
15925
15946
  time: Network.TimeSinceEpoch;
15926
15947
  /**
@@ -15943,6 +15964,7 @@ export namespace Protocol {
15943
15964
  debugKey?: UnsignedInt64AsBase10;
15944
15965
  triggerDataMatching: AttributionReportingTriggerDataMatching;
15945
15966
  destinationLimitPriority: SignedInt64AsBase10;
15967
+ aggregatableDebugReportingConfig: AttributionReportingAggregatableDebugReportingConfig;
15946
15968
  }
15947
15969
 
15948
15970
  export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached' | 'exceedsMaxChannelCapacity' | 'exceedsMaxTriggerStateCardinality' | 'destinationPerDayReportingLimitReached');
@@ -15994,6 +16016,7 @@ export namespace Protocol {
15994
16016
  aggregationCoordinatorOrigin?: string;
15995
16017
  sourceRegistrationTimeConfig: AttributionReportingSourceRegistrationTimeConfig;
15996
16018
  triggerContextId?: string;
16019
+ aggregatableDebugReportingConfig: AttributionReportingAggregatableDebugReportingConfig;
15997
16020
  }
15998
16021
 
15999
16022
  export type AttributionReportingEventLevelResult = ('success' | 'successDroppedLowerPriority' | 'internalError' | 'noCapacityForAttributionDestination' | 'noMatchingSources' | 'deduplicated' | 'excessiveAttributions' | 'priorityTooLow' | 'neverAttributedSource' | 'excessiveReportingOrigins' | 'noMatchingSourceFilterData' | 'prohibitedByBrowserPolicy' | 'noMatchingConfigurations' | 'excessiveReports' | 'falselyAttributedSource' | 'reportWindowPassed' | 'notRegistered' | 'reportWindowNotStarted' | 'noMatchingTriggerData');