devtools-protocol 0.0.1250650 → 0.0.1253004

Sign up to get free protection for your applications and to get access to all the features.
@@ -20239,6 +20239,18 @@
20239
20239
  "configResolved"
20240
20240
  ]
20241
20241
  },
20242
+ {
20243
+ "id": "InterestGroupAuctionFetchType",
20244
+ "description": "Enum of network fetches auctions can do.",
20245
+ "type": "string",
20246
+ "enum": [
20247
+ "bidderJs",
20248
+ "bidderWasm",
20249
+ "sellerJs",
20250
+ "bidderTrustedSignals",
20251
+ "sellerTrustedSignals"
20252
+ ]
20253
+ },
20242
20254
  {
20243
20255
  "id": "InterestGroupAd",
20244
20256
  "description": "Ad advertising element inside an interest group.",
@@ -21274,7 +21286,7 @@
21274
21286
  },
21275
21287
  {
21276
21288
  "name": "setInterestGroupAuctionTracking",
21277
- "description": "Enables/Disables issuing of interestGroupAuctionEvent events.",
21289
+ "description": "Enables/Disables issuing of interestGroupAuctionEventOccurred and\ninterestGroupAuctionNetworkRequestCreated.",
21278
21290
  "experimental": true,
21279
21291
  "parameters": [
21280
21292
  {
@@ -21632,6 +21644,28 @@
21632
21644
  }
21633
21645
  ]
21634
21646
  },
21647
+ {
21648
+ "name": "interestGroupAuctionNetworkRequestCreated",
21649
+ "description": "Specifies which auctions a particular network fetch may be related to, and\nin what role. Note that it is not ordered with respect to\nNetwork.requestWillBeSent (but will happen before loadingFinished\nloadingFailed).",
21650
+ "parameters": [
21651
+ {
21652
+ "name": "type",
21653
+ "$ref": "InterestGroupAuctionFetchType"
21654
+ },
21655
+ {
21656
+ "name": "requestId",
21657
+ "$ref": "Network.RequestId"
21658
+ },
21659
+ {
21660
+ "name": "auctions",
21661
+ "description": "This is the set of the auctions using the worklet that issued this\nrequest. In the case of trusted signals, it's possible that only some of\nthem actually care about the keys being queried.",
21662
+ "type": "array",
21663
+ "items": {
21664
+ "$ref": "InterestGroupAuctionId"
21665
+ }
21666
+ }
21667
+ ]
21668
+ },
21635
21669
  {
21636
21670
  "name": "sharedStorageAccessed",
21637
21671
  "description": "Shared storage was accessed by the associated page.\nThe following parameters are included in all events.",
@@ -22688,7 +22722,6 @@
22688
22722
  },
22689
22723
  {
22690
22724
  "domain": "Tracing",
22691
- "experimental": true,
22692
22725
  "dependencies": [
22693
22726
  "IO"
22694
22727
  ],
@@ -22696,6 +22729,7 @@
22696
22729
  {
22697
22730
  "id": "MemoryDumpConfig",
22698
22731
  "description": "Configuration for memory dump. Used only when \"memory-infra\" category is enabled.",
22732
+ "experimental": true,
22699
22733
  "type": "object"
22700
22734
  },
22701
22735
  {
@@ -22705,6 +22739,7 @@
22705
22739
  {
22706
22740
  "name": "recordMode",
22707
22741
  "description": "Controls how the trace buffer stores data.",
22742
+ "experimental": true,
22708
22743
  "optional": true,
22709
22744
  "type": "string",
22710
22745
  "enum": [
@@ -22717,24 +22752,28 @@
22717
22752
  {
22718
22753
  "name": "traceBufferSizeInKb",
22719
22754
  "description": "Size of the trace buffer in kilobytes. If not specified or zero is passed, a default value\nof 200 MB would be used.",
22755
+ "experimental": true,
22720
22756
  "optional": true,
22721
22757
  "type": "number"
22722
22758
  },
22723
22759
  {
22724
22760
  "name": "enableSampling",
22725
22761
  "description": "Turns on JavaScript stack sampling.",
22762
+ "experimental": true,
22726
22763
  "optional": true,
22727
22764
  "type": "boolean"
22728
22765
  },
22729
22766
  {
22730
22767
  "name": "enableSystrace",
22731
22768
  "description": "Turns on system tracing.",
22769
+ "experimental": true,
22732
22770
  "optional": true,
22733
22771
  "type": "boolean"
22734
22772
  },
22735
22773
  {
22736
22774
  "name": "enableArgumentFilter",
22737
22775
  "description": "Turns on argument filter.",
22776
+ "experimental": true,
22738
22777
  "optional": true,
22739
22778
  "type": "boolean"
22740
22779
  },
@@ -22759,6 +22798,7 @@
22759
22798
  {
22760
22799
  "name": "syntheticDelays",
22761
22800
  "description": "Configuration to synthesize the delays in tracing.",
22801
+ "experimental": true,
22762
22802
  "optional": true,
22763
22803
  "type": "array",
22764
22804
  "items": {
@@ -22768,6 +22808,7 @@
22768
22808
  {
22769
22809
  "name": "memoryDumpConfig",
22770
22810
  "description": "Configuration for memory dump triggers. Used only when \"memory-infra\" category is enabled.",
22811
+ "experimental": true,
22771
22812
  "optional": true,
22772
22813
  "$ref": "MemoryDumpConfig"
22773
22814
  }
@@ -22776,6 +22817,7 @@
22776
22817
  {
22777
22818
  "id": "StreamFormat",
22778
22819
  "description": "Data format of a trace. Can be either the legacy JSON format or the\nprotocol buffer format. Note that the JSON format will be deprecated soon.",
22820
+ "experimental": true,
22779
22821
  "type": "string",
22780
22822
  "enum": [
22781
22823
  "json",
@@ -22785,6 +22827,7 @@
22785
22827
  {
22786
22828
  "id": "StreamCompression",
22787
22829
  "description": "Compression type to use for traces returned via streams.",
22830
+ "experimental": true,
22788
22831
  "type": "string",
22789
22832
  "enum": [
22790
22833
  "none",
@@ -22794,6 +22837,7 @@
22794
22837
  {
22795
22838
  "id": "MemoryDumpLevelOfDetail",
22796
22839
  "description": "Details exposed when memory request explicitly declared.\nKeep consistent with memory_dump_request_args.h and\nmemory_instrumentation.mojom",
22840
+ "experimental": true,
22797
22841
  "type": "string",
22798
22842
  "enum": [
22799
22843
  "background",
@@ -22804,6 +22848,7 @@
22804
22848
  {
22805
22849
  "id": "TracingBackend",
22806
22850
  "description": "Backend type to use for tracing. `chrome` uses the Chrome-integrated\ntracing service and is supported on all platforms. `system` is only\nsupported on Chrome OS and uses the Perfetto system tracing service.\n`auto` chooses `system` when the perfettoConfig provided to Tracing.start\nspecifies at least one non-Chrome data source; otherwise uses `chrome`.",
22851
+ "experimental": true,
22807
22852
  "type": "string",
22808
22853
  "enum": [
22809
22854
  "auto",
@@ -22820,6 +22865,7 @@
22820
22865
  {
22821
22866
  "name": "getCategories",
22822
22867
  "description": "Gets supported tracing categories.",
22868
+ "experimental": true,
22823
22869
  "returns": [
22824
22870
  {
22825
22871
  "name": "categories",
@@ -22834,6 +22880,7 @@
22834
22880
  {
22835
22881
  "name": "recordClockSyncMarker",
22836
22882
  "description": "Record a clock sync marker in the trace.",
22883
+ "experimental": true,
22837
22884
  "parameters": [
22838
22885
  {
22839
22886
  "name": "syncId",
@@ -22845,6 +22892,7 @@
22845
22892
  {
22846
22893
  "name": "requestMemoryDump",
22847
22894
  "description": "Request a global memory dump.",
22895
+ "experimental": true,
22848
22896
  "parameters": [
22849
22897
  {
22850
22898
  "name": "deterministic",
@@ -22879,6 +22927,7 @@
22879
22927
  {
22880
22928
  "name": "categories",
22881
22929
  "description": "Category/tag filter",
22930
+ "experimental": true,
22882
22931
  "deprecated": true,
22883
22932
  "optional": true,
22884
22933
  "type": "string"
@@ -22886,6 +22935,7 @@
22886
22935
  {
22887
22936
  "name": "options",
22888
22937
  "description": "Tracing options",
22938
+ "experimental": true,
22889
22939
  "deprecated": true,
22890
22940
  "optional": true,
22891
22941
  "type": "string"
@@ -22893,6 +22943,7 @@
22893
22943
  {
22894
22944
  "name": "bufferUsageReportingInterval",
22895
22945
  "description": "If set, the agent will issue bufferUsage events at this interval, specified in milliseconds",
22946
+ "experimental": true,
22896
22947
  "optional": true,
22897
22948
  "type": "number"
22898
22949
  },
@@ -22915,6 +22966,7 @@
22915
22966
  {
22916
22967
  "name": "streamCompression",
22917
22968
  "description": "Compression format to use. This only applies when using `ReturnAsStream`\ntransfer mode (defaults to `none`)",
22969
+ "experimental": true,
22918
22970
  "optional": true,
22919
22971
  "$ref": "StreamCompression"
22920
22972
  },
@@ -22926,12 +22978,14 @@
22926
22978
  {
22927
22979
  "name": "perfettoConfig",
22928
22980
  "description": "Base64-encoded serialized perfetto.protos.TraceConfig protobuf message\nWhen specified, the parameters `categories`, `options`, `traceConfig`\nare ignored. (Encoded as a base64 string when passed over JSON)",
22981
+ "experimental": true,
22929
22982
  "optional": true,
22930
22983
  "type": "string"
22931
22984
  },
22932
22985
  {
22933
22986
  "name": "tracingBackend",
22934
22987
  "description": "Backend type (defaults to `auto`)",
22988
+ "experimental": true,
22935
22989
  "optional": true,
22936
22990
  "$ref": "TracingBackend"
22937
22991
  }
@@ -22941,6 +22995,7 @@
22941
22995
  "events": [
22942
22996
  {
22943
22997
  "name": "bufferUsage",
22998
+ "experimental": true,
22944
22999
  "parameters": [
22945
23000
  {
22946
23001
  "name": "percentFull",
@@ -22965,6 +23020,7 @@
22965
23020
  {
22966
23021
  "name": "dataCollected",
22967
23022
  "description": "Contains a bucket of collected trace events. When tracing is stopped collected events will be\nsent as a sequence of dataCollected events followed by tracingComplete event.",
23023
+ "experimental": true,
22968
23024
  "parameters": [
22969
23025
  {
22970
23026
  "name": "value",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1250650",
3
+ "version": "0.0.1253004",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -9546,6 +9546,15 @@ experimental domain Storage
9546
9546
  started
9547
9547
  configResolved
9548
9548
 
9549
+ # Enum of network fetches auctions can do.
9550
+ type InterestGroupAuctionFetchType extends string
9551
+ enum
9552
+ bidderJs
9553
+ bidderWasm
9554
+ sellerJs
9555
+ bidderTrustedSignals
9556
+ sellerTrustedSignals
9557
+
9549
9558
  # Ad advertising element inside an interest group.
9550
9559
  type InterestGroupAd extends object
9551
9560
  properties
@@ -9825,7 +9834,8 @@ experimental domain Storage
9825
9834
  parameters
9826
9835
  boolean enable
9827
9836
 
9828
- # Enables/Disables issuing of interestGroupAuctionEvent events.
9837
+ # Enables/Disables issuing of interestGroupAuctionEventOccurred and
9838
+ # interestGroupAuctionNetworkRequestCreated.
9829
9839
  experimental command setInterestGroupAuctionTracking
9830
9840
  parameters
9831
9841
  boolean enable
@@ -9966,6 +9976,19 @@ experimental domain Storage
9966
9976
  # Set for started and configResolved
9967
9977
  optional object auctionConfig
9968
9978
 
9979
+ # Specifies which auctions a particular network fetch may be related to, and
9980
+ # in what role. Note that it is not ordered with respect to
9981
+ # Network.requestWillBeSent (but will happen before loadingFinished
9982
+ # loadingFailed).
9983
+ event interestGroupAuctionNetworkRequestCreated
9984
+ parameters
9985
+ InterestGroupAuctionFetchType type
9986
+ Network.RequestId requestId
9987
+ # This is the set of the auctions using the worklet that issued this
9988
+ # request. In the case of trusted signals, it's possible that only some of
9989
+ # them actually care about the keys being queried.
9990
+ array of InterestGroupAuctionId auctions
9991
+
9969
9992
  # Shared storage was accessed by the associated page.
9970
9993
  # The following parameters are included in all events.
9971
9994
  event sharedStorageAccessed
@@ -10626,47 +10649,47 @@ experimental domain Tethering
10626
10649
  # Connection id to be used.
10627
10650
  string connectionId
10628
10651
 
10629
- experimental domain Tracing
10652
+ domain Tracing
10630
10653
  depends on IO
10631
10654
 
10632
10655
  # Configuration for memory dump. Used only when "memory-infra" category is enabled.
10633
- type MemoryDumpConfig extends object
10656
+ experimental type MemoryDumpConfig extends object
10634
10657
 
10635
10658
  type TraceConfig extends object
10636
10659
  properties
10637
10660
  # Controls how the trace buffer stores data.
10638
- optional enum recordMode
10661
+ experimental optional enum recordMode
10639
10662
  recordUntilFull
10640
10663
  recordContinuously
10641
10664
  recordAsMuchAsPossible
10642
10665
  echoToConsole
10643
10666
  # Size of the trace buffer in kilobytes. If not specified or zero is passed, a default value
10644
10667
  # of 200 MB would be used.
10645
- optional number traceBufferSizeInKb
10668
+ experimental optional number traceBufferSizeInKb
10646
10669
  # Turns on JavaScript stack sampling.
10647
- optional boolean enableSampling
10670
+ experimental optional boolean enableSampling
10648
10671
  # Turns on system tracing.
10649
- optional boolean enableSystrace
10672
+ experimental optional boolean enableSystrace
10650
10673
  # Turns on argument filter.
10651
- optional boolean enableArgumentFilter
10674
+ experimental optional boolean enableArgumentFilter
10652
10675
  # Included category filters.
10653
10676
  optional array of string includedCategories
10654
10677
  # Excluded category filters.
10655
10678
  optional array of string excludedCategories
10656
10679
  # Configuration to synthesize the delays in tracing.
10657
- optional array of string syntheticDelays
10680
+ experimental optional array of string syntheticDelays
10658
10681
  # Configuration for memory dump triggers. Used only when "memory-infra" category is enabled.
10659
- optional MemoryDumpConfig memoryDumpConfig
10682
+ experimental optional MemoryDumpConfig memoryDumpConfig
10660
10683
 
10661
10684
  # Data format of a trace. Can be either the legacy JSON format or the
10662
10685
  # protocol buffer format. Note that the JSON format will be deprecated soon.
10663
- type StreamFormat extends string
10686
+ experimental type StreamFormat extends string
10664
10687
  enum
10665
10688
  json
10666
10689
  proto
10667
10690
 
10668
10691
  # Compression type to use for traces returned via streams.
10669
- type StreamCompression extends string
10692
+ experimental type StreamCompression extends string
10670
10693
  enum
10671
10694
  none
10672
10695
  gzip
@@ -10674,7 +10697,7 @@ experimental domain Tracing
10674
10697
  # Details exposed when memory request explicitly declared.
10675
10698
  # Keep consistent with memory_dump_request_args.h and
10676
10699
  # memory_instrumentation.mojom
10677
- type MemoryDumpLevelOfDetail extends string
10700
+ experimental type MemoryDumpLevelOfDetail extends string
10678
10701
  enum
10679
10702
  background
10680
10703
  light
@@ -10685,7 +10708,7 @@ experimental domain Tracing
10685
10708
  # supported on Chrome OS and uses the Perfetto system tracing service.
10686
10709
  # `auto` chooses `system` when the perfettoConfig provided to Tracing.start
10687
10710
  # specifies at least one non-Chrome data source; otherwise uses `chrome`.
10688
- type TracingBackend extends string
10711
+ experimental type TracingBackend extends string
10689
10712
  enum
10690
10713
  auto
10691
10714
  chrome
@@ -10695,19 +10718,19 @@ experimental domain Tracing
10695
10718
  command end
10696
10719
 
10697
10720
  # Gets supported tracing categories.
10698
- command getCategories
10721
+ experimental command getCategories
10699
10722
  returns
10700
10723
  # A list of supported tracing categories.
10701
10724
  array of string categories
10702
10725
 
10703
10726
  # Record a clock sync marker in the trace.
10704
- command recordClockSyncMarker
10727
+ experimental command recordClockSyncMarker
10705
10728
  parameters
10706
10729
  # The ID of this clock sync marker
10707
10730
  string syncId
10708
10731
 
10709
10732
  # Request a global memory dump.
10710
- command requestMemoryDump
10733
+ experimental command requestMemoryDump
10711
10734
  parameters
10712
10735
  # Enables more deterministic results by forcing garbage collection
10713
10736
  optional boolean deterministic
@@ -10723,11 +10746,11 @@ experimental domain Tracing
10723
10746
  command start
10724
10747
  parameters
10725
10748
  # Category/tag filter
10726
- deprecated optional string categories
10749
+ experimental deprecated optional string categories
10727
10750
  # Tracing options
10728
- deprecated optional string options
10751
+ experimental deprecated optional string options
10729
10752
  # If set, the agent will issue bufferUsage events at this interval, specified in milliseconds
10730
- optional number bufferUsageReportingInterval
10753
+ experimental optional number bufferUsageReportingInterval
10731
10754
  # Whether to report trace events as series of dataCollected events or to save trace to a
10732
10755
  # stream (defaults to `ReportEvents`).
10733
10756
  optional enum transferMode
@@ -10738,16 +10761,16 @@ experimental domain Tracing
10738
10761
  optional StreamFormat streamFormat
10739
10762
  # Compression format to use. This only applies when using `ReturnAsStream`
10740
10763
  # transfer mode (defaults to `none`)
10741
- optional StreamCompression streamCompression
10764
+ experimental optional StreamCompression streamCompression
10742
10765
  optional TraceConfig traceConfig
10743
10766
  # Base64-encoded serialized perfetto.protos.TraceConfig protobuf message
10744
10767
  # When specified, the parameters `categories`, `options`, `traceConfig`
10745
10768
  # are ignored.
10746
- optional binary perfettoConfig
10769
+ experimental optional binary perfettoConfig
10747
10770
  # Backend type (defaults to `auto`)
10748
- optional TracingBackend tracingBackend
10771
+ experimental optional TracingBackend tracingBackend
10749
10772
 
10750
- event bufferUsage
10773
+ experimental event bufferUsage
10751
10774
  parameters
10752
10775
  # A number in range [0..1] that indicates the used size of event buffer as a fraction of its
10753
10776
  # total size.
@@ -10760,7 +10783,7 @@ experimental domain Tracing
10760
10783
 
10761
10784
  # Contains a bucket of collected trace events. When tracing is stopped collected events will be
10762
10785
  # sent as a sequence of dataCollected events followed by tracingComplete event.
10763
- event dataCollected
10786
+ experimental event dataCollected
10764
10787
  parameters
10765
10788
  array of object value
10766
10789
 
@@ -561,6 +561,13 @@ export namespace ProtocolMapping {
561
561
  * target-specific.
562
562
  */
563
563
  'Storage.interestGroupAuctionEventOccurred': [Protocol.Storage.InterestGroupAuctionEventOccurredEvent];
564
+ /**
565
+ * Specifies which auctions a particular network fetch may be related to, and
566
+ * in what role. Note that it is not ordered with respect to
567
+ * Network.requestWillBeSent (but will happen before loadingFinished
568
+ * loadingFailed).
569
+ */
570
+ 'Storage.interestGroupAuctionNetworkRequestCreated': [Protocol.Storage.InterestGroupAuctionNetworkRequestCreatedEvent];
564
571
  /**
565
572
  * Shared storage was accessed by the associated page.
566
573
  * The following parameters are included in all events.
@@ -4285,7 +4292,8 @@ export namespace ProtocolMapping {
4285
4292
  returnType: void;
4286
4293
  };
4287
4294
  /**
4288
- * Enables/Disables issuing of interestGroupAuctionEvent events.
4295
+ * Enables/Disables issuing of interestGroupAuctionEventOccurred and
4296
+ * interestGroupAuctionNetworkRequestCreated.
4289
4297
  */
4290
4298
  'Storage.setInterestGroupAuctionTracking': {
4291
4299
  paramsType: [Protocol.Storage.SetInterestGroupAuctionTrackingRequest];
@@ -3421,7 +3421,8 @@ export namespace ProtocolProxyApi {
3421
3421
  setInterestGroupTracking(params: Protocol.Storage.SetInterestGroupTrackingRequest): Promise<void>;
3422
3422
 
3423
3423
  /**
3424
- * Enables/Disables issuing of interestGroupAuctionEvent events.
3424
+ * Enables/Disables issuing of interestGroupAuctionEventOccurred and
3425
+ * interestGroupAuctionNetworkRequestCreated.
3425
3426
  */
3426
3427
  setInterestGroupAuctionTracking(params: Protocol.Storage.SetInterestGroupAuctionTrackingRequest): Promise<void>;
3427
3428
 
@@ -3517,6 +3518,14 @@ export namespace ProtocolProxyApi {
3517
3518
  */
3518
3519
  on(event: 'interestGroupAuctionEventOccurred', listener: (params: Protocol.Storage.InterestGroupAuctionEventOccurredEvent) => void): void;
3519
3520
 
3521
+ /**
3522
+ * Specifies which auctions a particular network fetch may be related to, and
3523
+ * in what role. Note that it is not ordered with respect to
3524
+ * Network.requestWillBeSent (but will happen before loadingFinished
3525
+ * loadingFailed).
3526
+ */
3527
+ on(event: 'interestGroupAuctionNetworkRequestCreated', listener: (params: Protocol.Storage.InterestGroupAuctionNetworkRequestCreatedEvent) => void): void;
3528
+
3520
3529
  /**
3521
3530
  * Shared storage was accessed by the associated page.
3522
3531
  * The following parameters are included in all events.
@@ -3693,7 +3693,8 @@ export namespace ProtocolTestsProxyApi {
3693
3693
  setInterestGroupTracking(params: Protocol.Storage.SetInterestGroupTrackingRequest): Promise<void>;
3694
3694
 
3695
3695
  /**
3696
- * Enables/Disables issuing of interestGroupAuctionEvent events.
3696
+ * Enables/Disables issuing of interestGroupAuctionEventOccurred and
3697
+ * interestGroupAuctionNetworkRequestCreated.
3697
3698
  */
3698
3699
  setInterestGroupAuctionTracking(params: Protocol.Storage.SetInterestGroupAuctionTrackingRequest): Promise<void>;
3699
3700
 
@@ -3801,6 +3802,16 @@ export namespace ProtocolTestsProxyApi {
3801
3802
  offInterestGroupAuctionEventOccurred(listener: (event: { params: Protocol.Storage.InterestGroupAuctionEventOccurredEvent }) => void): void;
3802
3803
  onceInterestGroupAuctionEventOccurred(eventMatcher?: (event: { params: Protocol.Storage.InterestGroupAuctionEventOccurredEvent }) => boolean): Promise<{ params: Protocol.Storage.InterestGroupAuctionEventOccurredEvent }>;
3803
3804
 
3805
+ /**
3806
+ * Specifies which auctions a particular network fetch may be related to, and
3807
+ * in what role. Note that it is not ordered with respect to
3808
+ * Network.requestWillBeSent (but will happen before loadingFinished
3809
+ * loadingFailed).
3810
+ */
3811
+ onInterestGroupAuctionNetworkRequestCreated(listener: (event: { params: Protocol.Storage.InterestGroupAuctionNetworkRequestCreatedEvent }) => void): void;
3812
+ offInterestGroupAuctionNetworkRequestCreated(listener: (event: { params: Protocol.Storage.InterestGroupAuctionNetworkRequestCreatedEvent }) => void): void;
3813
+ onceInterestGroupAuctionNetworkRequestCreated(eventMatcher?: (event: { params: Protocol.Storage.InterestGroupAuctionNetworkRequestCreatedEvent }) => boolean): Promise<{ params: Protocol.Storage.InterestGroupAuctionNetworkRequestCreatedEvent }>;
3814
+
3804
3815
  /**
3805
3816
  * Shared storage was accessed by the associated page.
3806
3817
  * The following parameters are included in all events.
@@ -15231,6 +15231,11 @@ export namespace Protocol {
15231
15231
  */
15232
15232
  export type InterestGroupAuctionEventType = ('started' | 'configResolved');
15233
15233
 
15234
+ /**
15235
+ * Enum of network fetches auctions can do.
15236
+ */
15237
+ export type InterestGroupAuctionFetchType = ('bidderJs' | 'bidderWasm' | 'sellerJs' | 'bidderTrustedSignals' | 'sellerTrustedSignals');
15238
+
15234
15239
  /**
15235
15240
  * Ad advertising element inside an interest group.
15236
15241
  */
@@ -15889,6 +15894,23 @@ export namespace Protocol {
15889
15894
  auctionConfig?: any;
15890
15895
  }
15891
15896
 
15897
+ /**
15898
+ * Specifies which auctions a particular network fetch may be related to, and
15899
+ * in what role. Note that it is not ordered with respect to
15900
+ * Network.requestWillBeSent (but will happen before loadingFinished
15901
+ * loadingFailed).
15902
+ */
15903
+ export interface InterestGroupAuctionNetworkRequestCreatedEvent {
15904
+ type: InterestGroupAuctionFetchType;
15905
+ requestId: Network.RequestId;
15906
+ /**
15907
+ * This is the set of the auctions using the worklet that issued this
15908
+ * request. In the case of trusted signals, it's possible that only some of
15909
+ * them actually care about the keys being queried.
15910
+ */
15911
+ auctions: InterestGroupAuctionId[];
15912
+ }
15913
+
15892
15914
  /**
15893
15915
  * Shared storage was accessed by the associated page.
15894
15916
  * The following parameters are included in all events.