devtools-protocol 0.0.1247362 → 0.0.1249784

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.
@@ -552,9 +552,22 @@ export namespace ProtocolMapping {
552
552
  */
553
553
  'Storage.indexedDBListUpdated': [Protocol.Storage.IndexedDBListUpdatedEvent];
554
554
  /**
555
- * One of the interest groups was accessed by the associated page.
555
+ * One of the interest groups was accessed. Note that these events are global
556
+ * to all targets sharing an interest group store.
556
557
  */
557
558
  'Storage.interestGroupAccessed': [Protocol.Storage.InterestGroupAccessedEvent];
559
+ /**
560
+ * An auction involving interest groups is taking place. These events are
561
+ * target-specific.
562
+ */
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];
558
571
  /**
559
572
  * Shared storage was accessed by the associated page.
560
573
  * The following parameters are included in all events.
@@ -4278,6 +4291,14 @@ export namespace ProtocolMapping {
4278
4291
  paramsType: [Protocol.Storage.SetInterestGroupTrackingRequest];
4279
4292
  returnType: void;
4280
4293
  };
4294
+ /**
4295
+ * Enables/Disables issuing of interestGroupAuctionEventOccurred and
4296
+ * interestGroupAuctionNetworkRequestCreated.
4297
+ */
4298
+ 'Storage.setInterestGroupAuctionTracking': {
4299
+ paramsType: [Protocol.Storage.SetInterestGroupAuctionTrackingRequest];
4300
+ returnType: void;
4301
+ };
4281
4302
  /**
4282
4303
  * Gets metadata for an origin's shared storage.
4283
4304
  */
@@ -3420,6 +3420,12 @@ export namespace ProtocolProxyApi {
3420
3420
  */
3421
3421
  setInterestGroupTracking(params: Protocol.Storage.SetInterestGroupTrackingRequest): Promise<void>;
3422
3422
 
3423
+ /**
3424
+ * Enables/Disables issuing of interestGroupAuctionEventOccurred and
3425
+ * interestGroupAuctionNetworkRequestCreated.
3426
+ */
3427
+ setInterestGroupAuctionTracking(params: Protocol.Storage.SetInterestGroupAuctionTrackingRequest): Promise<void>;
3428
+
3423
3429
  /**
3424
3430
  * Gets metadata for an origin's shared storage.
3425
3431
  */
@@ -3501,10 +3507,25 @@ export namespace ProtocolProxyApi {
3501
3507
  on(event: 'indexedDBListUpdated', listener: (params: Protocol.Storage.IndexedDBListUpdatedEvent) => void): void;
3502
3508
 
3503
3509
  /**
3504
- * One of the interest groups was accessed by the associated page.
3510
+ * One of the interest groups was accessed. Note that these events are global
3511
+ * to all targets sharing an interest group store.
3505
3512
  */
3506
3513
  on(event: 'interestGroupAccessed', listener: (params: Protocol.Storage.InterestGroupAccessedEvent) => void): void;
3507
3514
 
3515
+ /**
3516
+ * An auction involving interest groups is taking place. These events are
3517
+ * target-specific.
3518
+ */
3519
+ on(event: 'interestGroupAuctionEventOccurred', listener: (params: Protocol.Storage.InterestGroupAuctionEventOccurredEvent) => void): void;
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
+
3508
3529
  /**
3509
3530
  * Shared storage was accessed by the associated page.
3510
3531
  * The following parameters are included in all events.