devtools-protocol 0.0.1660672 → 0.0.1663043
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.
- package/json/browser_protocol.json +29 -301
- package/package.json +1 -1
- package/pdl/domains/Audits.pdl +12 -37
- package/pdl/domains/Browser.pdl +0 -18
- package/pdl/domains/Page.pdl +0 -1
- package/pdl/domains/Storage.pdl +0 -104
- package/types/protocol-mapping.d.ts +0 -56
- package/types/protocol-proxy-api.d.ts +0 -49
- package/types/protocol-tests-proxy-api.d.ts +0 -55
- package/types/protocol.d.ts +23 -143
|
@@ -1325,7 +1325,6 @@
|
|
|
1325
1325
|
"id": "MixedContentResourceType",
|
|
1326
1326
|
"type": "string",
|
|
1327
1327
|
"enum": [
|
|
1328
|
-
"AttributionSrc",
|
|
1329
1328
|
"Audio",
|
|
1330
1329
|
"Beacon",
|
|
1331
1330
|
"CSPReport",
|
|
@@ -1615,33 +1614,6 @@
|
|
|
1615
1614
|
}
|
|
1616
1615
|
]
|
|
1617
1616
|
},
|
|
1618
|
-
{
|
|
1619
|
-
"id": "AttributionReportingIssueType",
|
|
1620
|
-
"type": "string",
|
|
1621
|
-
"enum": [
|
|
1622
|
-
"PermissionPolicyDisabled",
|
|
1623
|
-
"UntrustworthyReportingOrigin",
|
|
1624
|
-
"InsecureContext",
|
|
1625
|
-
"InvalidHeader",
|
|
1626
|
-
"InvalidRegisterTriggerHeader",
|
|
1627
|
-
"SourceAndTriggerHeaders",
|
|
1628
|
-
"SourceIgnored",
|
|
1629
|
-
"TriggerIgnored",
|
|
1630
|
-
"OsSourceIgnored",
|
|
1631
|
-
"OsTriggerIgnored",
|
|
1632
|
-
"InvalidRegisterOsSourceHeader",
|
|
1633
|
-
"InvalidRegisterOsTriggerHeader",
|
|
1634
|
-
"WebAndOsHeaders",
|
|
1635
|
-
"NoWebOrOsSupport",
|
|
1636
|
-
"NavigationRegistrationWithoutTransientUserActivation",
|
|
1637
|
-
"InvalidInfoHeader",
|
|
1638
|
-
"NoRegisterSourceHeader",
|
|
1639
|
-
"NoRegisterTriggerHeader",
|
|
1640
|
-
"NoRegisterOsSourceHeader",
|
|
1641
|
-
"NoRegisterOsTriggerHeader",
|
|
1642
|
-
"NavigationRegistrationUniqueScopeAlreadySet"
|
|
1643
|
-
]
|
|
1644
|
-
},
|
|
1645
1617
|
{
|
|
1646
1618
|
"id": "SharedDictionaryError",
|
|
1647
1619
|
"type": "string",
|
|
@@ -1727,32 +1699,6 @@
|
|
|
1727
1699
|
"InvalidUrlPattern"
|
|
1728
1700
|
]
|
|
1729
1701
|
},
|
|
1730
|
-
{
|
|
1731
|
-
"id": "AttributionReportingIssueDetails",
|
|
1732
|
-
"description": "Details for issues around \"Attribution Reporting API\" usage.\nExplainer: https://github.com/WICG/attribution-reporting-api",
|
|
1733
|
-
"type": "object",
|
|
1734
|
-
"properties": [
|
|
1735
|
-
{
|
|
1736
|
-
"name": "violationType",
|
|
1737
|
-
"$ref": "AttributionReportingIssueType"
|
|
1738
|
-
},
|
|
1739
|
-
{
|
|
1740
|
-
"name": "request",
|
|
1741
|
-
"optional": true,
|
|
1742
|
-
"$ref": "AffectedRequest"
|
|
1743
|
-
},
|
|
1744
|
-
{
|
|
1745
|
-
"name": "violatingNodeId",
|
|
1746
|
-
"optional": true,
|
|
1747
|
-
"$ref": "DOM.BackendNodeId"
|
|
1748
|
-
},
|
|
1749
|
-
{
|
|
1750
|
-
"name": "invalidParameter",
|
|
1751
|
-
"optional": true,
|
|
1752
|
-
"type": "string"
|
|
1753
|
-
}
|
|
1754
|
-
]
|
|
1755
|
-
},
|
|
1756
1702
|
{
|
|
1757
1703
|
"id": "QuirksModeIssueDetails",
|
|
1758
1704
|
"description": "Details for issues about documents in Quirks Mode\nor Limited Quirks Mode that affects page layouting.",
|
|
@@ -2443,6 +2389,28 @@
|
|
|
2443
2389
|
}
|
|
2444
2390
|
]
|
|
2445
2391
|
},
|
|
2392
|
+
{
|
|
2393
|
+
"id": "LazyLoadImageIssueDetails",
|
|
2394
|
+
"description": "Details for issues about lazy-loaded images without explicit dimensions.",
|
|
2395
|
+
"type": "object",
|
|
2396
|
+
"properties": [
|
|
2397
|
+
{
|
|
2398
|
+
"name": "nodeId",
|
|
2399
|
+
"description": "DOM node of the problematic HTMLImageElement.",
|
|
2400
|
+
"$ref": "DOM.BackendNodeId"
|
|
2401
|
+
},
|
|
2402
|
+
{
|
|
2403
|
+
"name": "url",
|
|
2404
|
+
"description": "URL or src attribute of the image.",
|
|
2405
|
+
"type": "string"
|
|
2406
|
+
},
|
|
2407
|
+
{
|
|
2408
|
+
"name": "frameId",
|
|
2409
|
+
"description": "Frame containing the image.",
|
|
2410
|
+
"$ref": "Page.FrameId"
|
|
2411
|
+
}
|
|
2412
|
+
]
|
|
2413
|
+
},
|
|
2446
2414
|
{
|
|
2447
2415
|
"id": "InspectorIssueCode",
|
|
2448
2416
|
"description": "A unique identifier for the type of issue. Each type may use one of the\noptional fields in InspectorIssueDetails to convey more specific\ninformation about the kind of issue.",
|
|
@@ -2455,7 +2423,6 @@
|
|
|
2455
2423
|
"ContentSecurityPolicyIssue",
|
|
2456
2424
|
"SharedArrayBufferIssue",
|
|
2457
2425
|
"CorsIssue",
|
|
2458
|
-
"AttributionReportingIssue",
|
|
2459
2426
|
"QuirksModeIssue",
|
|
2460
2427
|
"PartitioningBlobURLIssue",
|
|
2461
2428
|
"NavigatorUserAgentIssue",
|
|
@@ -2477,7 +2444,8 @@
|
|
|
2477
2444
|
"PermissionElementIssue",
|
|
2478
2445
|
"PerformanceIssue",
|
|
2479
2446
|
"SelectivePermissionsInterventionIssue",
|
|
2480
|
-
"EmailVerificationRequestIssue"
|
|
2447
|
+
"EmailVerificationRequestIssue",
|
|
2448
|
+
"LazyLoadImageIssue"
|
|
2481
2449
|
]
|
|
2482
2450
|
},
|
|
2483
2451
|
{
|
|
@@ -2520,11 +2488,6 @@
|
|
|
2520
2488
|
"optional": true,
|
|
2521
2489
|
"$ref": "CorsIssueDetails"
|
|
2522
2490
|
},
|
|
2523
|
-
{
|
|
2524
|
-
"name": "attributionReportingIssueDetails",
|
|
2525
|
-
"optional": true,
|
|
2526
|
-
"$ref": "AttributionReportingIssueDetails"
|
|
2527
|
-
},
|
|
2528
2491
|
{
|
|
2529
2492
|
"name": "quirksModeIssueDetails",
|
|
2530
2493
|
"optional": true,
|
|
@@ -2635,6 +2598,11 @@
|
|
|
2635
2598
|
"name": "emailVerificationRequestIssueDetails",
|
|
2636
2599
|
"optional": true,
|
|
2637
2600
|
"$ref": "EmailVerificationRequestIssueDetails"
|
|
2601
|
+
},
|
|
2602
|
+
{
|
|
2603
|
+
"name": "lazyLoadImageIssueDetails",
|
|
2604
|
+
"optional": true,
|
|
2605
|
+
"$ref": "LazyLoadImageIssueDetails"
|
|
2638
2606
|
}
|
|
2639
2607
|
]
|
|
2640
2608
|
},
|
|
@@ -3840,15 +3808,6 @@
|
|
|
3840
3808
|
}
|
|
3841
3809
|
}
|
|
3842
3810
|
]
|
|
3843
|
-
},
|
|
3844
|
-
{
|
|
3845
|
-
"id": "PrivacySandboxAPI",
|
|
3846
|
-
"experimental": true,
|
|
3847
|
-
"type": "string",
|
|
3848
|
-
"enum": [
|
|
3849
|
-
"BiddingAndAuctionServices",
|
|
3850
|
-
"TrustedKeyValue"
|
|
3851
|
-
]
|
|
3852
3811
|
}
|
|
3853
3812
|
],
|
|
3854
3813
|
"commands": [
|
|
@@ -4217,30 +4176,6 @@
|
|
|
4217
4176
|
"type": "string"
|
|
4218
4177
|
}
|
|
4219
4178
|
]
|
|
4220
|
-
},
|
|
4221
|
-
{
|
|
4222
|
-
"name": "addPrivacySandboxCoordinatorKeyConfig",
|
|
4223
|
-
"description": "Configures encryption keys used with a given privacy sandbox API to talk\nto a trusted coordinator. Since this is intended for test automation only,\ncoordinatorOrigin must be a .test domain. No existing coordinator\nconfiguration for the origin may exist.",
|
|
4224
|
-
"parameters": [
|
|
4225
|
-
{
|
|
4226
|
-
"name": "api",
|
|
4227
|
-
"$ref": "PrivacySandboxAPI"
|
|
4228
|
-
},
|
|
4229
|
-
{
|
|
4230
|
-
"name": "coordinatorOrigin",
|
|
4231
|
-
"type": "string"
|
|
4232
|
-
},
|
|
4233
|
-
{
|
|
4234
|
-
"name": "keyConfig",
|
|
4235
|
-
"type": "string"
|
|
4236
|
-
},
|
|
4237
|
-
{
|
|
4238
|
-
"name": "browserContextId",
|
|
4239
|
-
"description": "BrowserContext to perform the action in. When omitted, default browser\ncontext is used.",
|
|
4240
|
-
"optional": true,
|
|
4241
|
-
"$ref": "BrowserContextID"
|
|
4242
|
-
}
|
|
4243
|
-
]
|
|
4244
4179
|
}
|
|
4245
4180
|
],
|
|
4246
4181
|
"events": [
|
|
@@ -21999,7 +21934,6 @@
|
|
|
21999
21934
|
"all-screens-capture",
|
|
22000
21935
|
"ambient-light-sensor",
|
|
22001
21936
|
"aria-notify",
|
|
22002
|
-
"attribution-reporting",
|
|
22003
21937
|
"autofill",
|
|
22004
21938
|
"autoplay",
|
|
22005
21939
|
"bluetooth",
|
|
@@ -27543,50 +27477,6 @@
|
|
|
27543
27477
|
}
|
|
27544
27478
|
]
|
|
27545
27479
|
},
|
|
27546
|
-
{
|
|
27547
|
-
"id": "InterestGroupAuctionId",
|
|
27548
|
-
"description": "Protected audience interest group auction identifier.",
|
|
27549
|
-
"type": "string"
|
|
27550
|
-
},
|
|
27551
|
-
{
|
|
27552
|
-
"id": "InterestGroupAccessType",
|
|
27553
|
-
"description": "Enum of interest group access types.",
|
|
27554
|
-
"type": "string",
|
|
27555
|
-
"enum": [
|
|
27556
|
-
"join",
|
|
27557
|
-
"leave",
|
|
27558
|
-
"update",
|
|
27559
|
-
"loaded",
|
|
27560
|
-
"bid",
|
|
27561
|
-
"win",
|
|
27562
|
-
"additionalBid",
|
|
27563
|
-
"additionalBidWin",
|
|
27564
|
-
"topLevelBid",
|
|
27565
|
-
"topLevelAdditionalBid",
|
|
27566
|
-
"clear"
|
|
27567
|
-
]
|
|
27568
|
-
},
|
|
27569
|
-
{
|
|
27570
|
-
"id": "InterestGroupAuctionEventType",
|
|
27571
|
-
"description": "Enum of auction events.",
|
|
27572
|
-
"type": "string",
|
|
27573
|
-
"enum": [
|
|
27574
|
-
"started",
|
|
27575
|
-
"configResolved"
|
|
27576
|
-
]
|
|
27577
|
-
},
|
|
27578
|
-
{
|
|
27579
|
-
"id": "InterestGroupAuctionFetchType",
|
|
27580
|
-
"description": "Enum of network fetches auctions can do.",
|
|
27581
|
-
"type": "string",
|
|
27582
|
-
"enum": [
|
|
27583
|
-
"bidderJs",
|
|
27584
|
-
"bidderWasm",
|
|
27585
|
-
"sellerJs",
|
|
27586
|
-
"bidderTrustedSignals",
|
|
27587
|
-
"sellerTrustedSignals"
|
|
27588
|
-
]
|
|
27589
|
-
},
|
|
27590
27480
|
{
|
|
27591
27481
|
"id": "SharedStorageAccessScope",
|
|
27592
27482
|
"description": "Enum of shared storage access scopes.",
|
|
@@ -27594,7 +27484,6 @@
|
|
|
27594
27484
|
"enum": [
|
|
27595
27485
|
"window",
|
|
27596
27486
|
"sharedStorageWorklet",
|
|
27597
|
-
"protectedAudienceWorklet",
|
|
27598
27487
|
"header"
|
|
27599
27488
|
]
|
|
27600
27489
|
},
|
|
@@ -28223,50 +28112,6 @@
|
|
|
28223
28112
|
}
|
|
28224
28113
|
]
|
|
28225
28114
|
},
|
|
28226
|
-
{
|
|
28227
|
-
"name": "getInterestGroupDetails",
|
|
28228
|
-
"description": "Gets details for a named interest group.",
|
|
28229
|
-
"experimental": true,
|
|
28230
|
-
"parameters": [
|
|
28231
|
-
{
|
|
28232
|
-
"name": "ownerOrigin",
|
|
28233
|
-
"type": "string"
|
|
28234
|
-
},
|
|
28235
|
-
{
|
|
28236
|
-
"name": "name",
|
|
28237
|
-
"type": "string"
|
|
28238
|
-
}
|
|
28239
|
-
],
|
|
28240
|
-
"returns": [
|
|
28241
|
-
{
|
|
28242
|
-
"name": "details",
|
|
28243
|
-
"description": "This largely corresponds to:\nhttps://wicg.github.io/turtledove/#dictdef-generatebidinterestgroup\nbut has absolute expirationTime instead of relative lifetimeMs and\nalso adds joiningOrigin.",
|
|
28244
|
-
"type": "object"
|
|
28245
|
-
}
|
|
28246
|
-
]
|
|
28247
|
-
},
|
|
28248
|
-
{
|
|
28249
|
-
"name": "setInterestGroupTracking",
|
|
28250
|
-
"description": "Enables/Disables issuing of interestGroupAccessed events.",
|
|
28251
|
-
"experimental": true,
|
|
28252
|
-
"parameters": [
|
|
28253
|
-
{
|
|
28254
|
-
"name": "enable",
|
|
28255
|
-
"type": "boolean"
|
|
28256
|
-
}
|
|
28257
|
-
]
|
|
28258
|
-
},
|
|
28259
|
-
{
|
|
28260
|
-
"name": "setInterestGroupAuctionTracking",
|
|
28261
|
-
"description": "Enables/Disables issuing of interestGroupAuctionEventOccurred and\ninterestGroupAuctionNetworkRequestCreated.",
|
|
28262
|
-
"experimental": true,
|
|
28263
|
-
"parameters": [
|
|
28264
|
-
{
|
|
28265
|
-
"name": "enable",
|
|
28266
|
-
"type": "boolean"
|
|
28267
|
-
}
|
|
28268
|
-
]
|
|
28269
|
-
},
|
|
28270
28115
|
{
|
|
28271
28116
|
"name": "getSharedStorageMetadata",
|
|
28272
28117
|
"description": "Gets metadata for an origin's shared storage.",
|
|
@@ -28430,26 +28275,6 @@
|
|
|
28430
28275
|
}
|
|
28431
28276
|
}
|
|
28432
28277
|
]
|
|
28433
|
-
},
|
|
28434
|
-
{
|
|
28435
|
-
"name": "setProtectedAudienceKAnonymity",
|
|
28436
|
-
"parameters": [
|
|
28437
|
-
{
|
|
28438
|
-
"name": "owner",
|
|
28439
|
-
"type": "string"
|
|
28440
|
-
},
|
|
28441
|
-
{
|
|
28442
|
-
"name": "name",
|
|
28443
|
-
"type": "string"
|
|
28444
|
-
},
|
|
28445
|
-
{
|
|
28446
|
-
"name": "hashes",
|
|
28447
|
-
"type": "array",
|
|
28448
|
-
"items": {
|
|
28449
|
-
"type": "string"
|
|
28450
|
-
}
|
|
28451
|
-
}
|
|
28452
|
-
]
|
|
28453
28278
|
}
|
|
28454
28279
|
],
|
|
28455
28280
|
"events": [
|
|
@@ -28552,103 +28377,6 @@
|
|
|
28552
28377
|
}
|
|
28553
28378
|
]
|
|
28554
28379
|
},
|
|
28555
|
-
{
|
|
28556
|
-
"name": "interestGroupAccessed",
|
|
28557
|
-
"description": "One of the interest groups was accessed. Note that these events are global\nto all targets sharing an interest group store.",
|
|
28558
|
-
"parameters": [
|
|
28559
|
-
{
|
|
28560
|
-
"name": "accessTime",
|
|
28561
|
-
"$ref": "Network.TimeSinceEpoch"
|
|
28562
|
-
},
|
|
28563
|
-
{
|
|
28564
|
-
"name": "type",
|
|
28565
|
-
"$ref": "InterestGroupAccessType"
|
|
28566
|
-
},
|
|
28567
|
-
{
|
|
28568
|
-
"name": "ownerOrigin",
|
|
28569
|
-
"type": "string"
|
|
28570
|
-
},
|
|
28571
|
-
{
|
|
28572
|
-
"name": "name",
|
|
28573
|
-
"type": "string"
|
|
28574
|
-
},
|
|
28575
|
-
{
|
|
28576
|
-
"name": "componentSellerOrigin",
|
|
28577
|
-
"description": "For topLevelBid/topLevelAdditionalBid, and when appropriate,\nwin and additionalBidWin",
|
|
28578
|
-
"optional": true,
|
|
28579
|
-
"type": "string"
|
|
28580
|
-
},
|
|
28581
|
-
{
|
|
28582
|
-
"name": "bid",
|
|
28583
|
-
"description": "For bid or somethingBid event, if done locally and not on a server.",
|
|
28584
|
-
"optional": true,
|
|
28585
|
-
"type": "number"
|
|
28586
|
-
},
|
|
28587
|
-
{
|
|
28588
|
-
"name": "bidCurrency",
|
|
28589
|
-
"optional": true,
|
|
28590
|
-
"type": "string"
|
|
28591
|
-
},
|
|
28592
|
-
{
|
|
28593
|
-
"name": "uniqueAuctionId",
|
|
28594
|
-
"description": "For non-global events --- links to interestGroupAuctionEvent",
|
|
28595
|
-
"optional": true,
|
|
28596
|
-
"$ref": "InterestGroupAuctionId"
|
|
28597
|
-
}
|
|
28598
|
-
]
|
|
28599
|
-
},
|
|
28600
|
-
{
|
|
28601
|
-
"name": "interestGroupAuctionEventOccurred",
|
|
28602
|
-
"description": "An auction involving interest groups is taking place. These events are\ntarget-specific.",
|
|
28603
|
-
"parameters": [
|
|
28604
|
-
{
|
|
28605
|
-
"name": "eventTime",
|
|
28606
|
-
"$ref": "Network.TimeSinceEpoch"
|
|
28607
|
-
},
|
|
28608
|
-
{
|
|
28609
|
-
"name": "type",
|
|
28610
|
-
"$ref": "InterestGroupAuctionEventType"
|
|
28611
|
-
},
|
|
28612
|
-
{
|
|
28613
|
-
"name": "uniqueAuctionId",
|
|
28614
|
-
"$ref": "InterestGroupAuctionId"
|
|
28615
|
-
},
|
|
28616
|
-
{
|
|
28617
|
-
"name": "parentAuctionId",
|
|
28618
|
-
"description": "Set for child auctions.",
|
|
28619
|
-
"optional": true,
|
|
28620
|
-
"$ref": "InterestGroupAuctionId"
|
|
28621
|
-
},
|
|
28622
|
-
{
|
|
28623
|
-
"name": "auctionConfig",
|
|
28624
|
-
"description": "Set for started and configResolved",
|
|
28625
|
-
"optional": true,
|
|
28626
|
-
"type": "object"
|
|
28627
|
-
}
|
|
28628
|
-
]
|
|
28629
|
-
},
|
|
28630
|
-
{
|
|
28631
|
-
"name": "interestGroupAuctionNetworkRequestCreated",
|
|
28632
|
-
"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).",
|
|
28633
|
-
"parameters": [
|
|
28634
|
-
{
|
|
28635
|
-
"name": "type",
|
|
28636
|
-
"$ref": "InterestGroupAuctionFetchType"
|
|
28637
|
-
},
|
|
28638
|
-
{
|
|
28639
|
-
"name": "requestId",
|
|
28640
|
-
"$ref": "Network.RequestId"
|
|
28641
|
-
},
|
|
28642
|
-
{
|
|
28643
|
-
"name": "auctions",
|
|
28644
|
-
"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.",
|
|
28645
|
-
"type": "array",
|
|
28646
|
-
"items": {
|
|
28647
|
-
"$ref": "InterestGroupAuctionId"
|
|
28648
|
-
}
|
|
28649
|
-
}
|
|
28650
|
-
]
|
|
28651
|
-
},
|
|
28652
28380
|
{
|
|
28653
28381
|
"name": "sharedStorageAccessed",
|
|
28654
28382
|
"description": "Shared storage was accessed by the associated page.\nThe following parameters are included in all events.",
|
package/package.json
CHANGED
package/pdl/domains/Audits.pdl
CHANGED
|
@@ -124,7 +124,6 @@ experimental domain Audits
|
|
|
124
124
|
|
|
125
125
|
type MixedContentResourceType extends string
|
|
126
126
|
enum
|
|
127
|
-
AttributionSrc
|
|
128
127
|
Audio
|
|
129
128
|
Beacon
|
|
130
129
|
CSPReport
|
|
@@ -270,31 +269,6 @@ experimental domain Audits
|
|
|
270
269
|
optional Network.IPAddressSpace resourceIPAddressSpace
|
|
271
270
|
optional Network.ClientSecurityState clientSecurityState
|
|
272
271
|
|
|
273
|
-
type AttributionReportingIssueType extends string
|
|
274
|
-
enum
|
|
275
|
-
PermissionPolicyDisabled
|
|
276
|
-
UntrustworthyReportingOrigin
|
|
277
|
-
InsecureContext
|
|
278
|
-
# TODO(apaseltiner): Rename this to InvalidRegisterSourceHeader
|
|
279
|
-
InvalidHeader
|
|
280
|
-
InvalidRegisterTriggerHeader
|
|
281
|
-
SourceAndTriggerHeaders
|
|
282
|
-
SourceIgnored
|
|
283
|
-
TriggerIgnored
|
|
284
|
-
OsSourceIgnored
|
|
285
|
-
OsTriggerIgnored
|
|
286
|
-
InvalidRegisterOsSourceHeader
|
|
287
|
-
InvalidRegisterOsTriggerHeader
|
|
288
|
-
WebAndOsHeaders
|
|
289
|
-
NoWebOrOsSupport
|
|
290
|
-
NavigationRegistrationWithoutTransientUserActivation
|
|
291
|
-
InvalidInfoHeader
|
|
292
|
-
NoRegisterSourceHeader
|
|
293
|
-
NoRegisterTriggerHeader
|
|
294
|
-
NoRegisterOsSourceHeader
|
|
295
|
-
NoRegisterOsTriggerHeader
|
|
296
|
-
NavigationRegistrationUniqueScopeAlreadySet
|
|
297
|
-
|
|
298
272
|
type SharedDictionaryError extends string
|
|
299
273
|
enum
|
|
300
274
|
UseErrorCrossOriginNoCorsRequest
|
|
@@ -368,15 +342,6 @@ experimental domain Audits
|
|
|
368
342
|
ReportingEndpointNotToken
|
|
369
343
|
InvalidUrlPattern
|
|
370
344
|
|
|
371
|
-
# Details for issues around "Attribution Reporting API" usage.
|
|
372
|
-
# Explainer: https://github.com/WICG/attribution-reporting-api
|
|
373
|
-
type AttributionReportingIssueDetails extends object
|
|
374
|
-
properties
|
|
375
|
-
AttributionReportingIssueType violationType
|
|
376
|
-
optional AffectedRequest request
|
|
377
|
-
optional DOM.BackendNodeId violatingNodeId
|
|
378
|
-
optional string invalidParameter
|
|
379
|
-
|
|
380
345
|
# Details for issues about documents in Quirks Mode
|
|
381
346
|
# or Limited Quirks Mode that affects page layouting.
|
|
382
347
|
type QuirksModeIssueDetails extends object
|
|
@@ -778,6 +743,16 @@ experimental domain Audits
|
|
|
778
743
|
# The stack trace at the time of the intervention.
|
|
779
744
|
optional Runtime.StackTrace stackTrace
|
|
780
745
|
|
|
746
|
+
# Details for issues about lazy-loaded images without explicit dimensions.
|
|
747
|
+
type LazyLoadImageIssueDetails extends object
|
|
748
|
+
properties
|
|
749
|
+
# DOM node of the problematic HTMLImageElement.
|
|
750
|
+
DOM.BackendNodeId nodeId
|
|
751
|
+
# URL or src attribute of the image.
|
|
752
|
+
string url
|
|
753
|
+
# Frame containing the image.
|
|
754
|
+
Page.FrameId frameId
|
|
755
|
+
|
|
781
756
|
# A unique identifier for the type of issue. Each type may use one of the
|
|
782
757
|
# optional fields in InspectorIssueDetails to convey more specific
|
|
783
758
|
# information about the kind of issue.
|
|
@@ -790,7 +765,6 @@ experimental domain Audits
|
|
|
790
765
|
ContentSecurityPolicyIssue
|
|
791
766
|
SharedArrayBufferIssue
|
|
792
767
|
CorsIssue
|
|
793
|
-
AttributionReportingIssue
|
|
794
768
|
QuirksModeIssue
|
|
795
769
|
PartitioningBlobURLIssue
|
|
796
770
|
# Deprecated
|
|
@@ -814,6 +788,7 @@ experimental domain Audits
|
|
|
814
788
|
PerformanceIssue
|
|
815
789
|
SelectivePermissionsInterventionIssue
|
|
816
790
|
EmailVerificationRequestIssue
|
|
791
|
+
LazyLoadImageIssue
|
|
817
792
|
|
|
818
793
|
# This struct holds a list of optional fields with additional information
|
|
819
794
|
# specific to the kind of issue. When adding a new issue code, please also
|
|
@@ -827,7 +802,6 @@ experimental domain Audits
|
|
|
827
802
|
optional ContentSecurityPolicyIssueDetails contentSecurityPolicyIssueDetails
|
|
828
803
|
optional SharedArrayBufferIssueDetails sharedArrayBufferIssueDetails
|
|
829
804
|
optional CorsIssueDetails corsIssueDetails
|
|
830
|
-
optional AttributionReportingIssueDetails attributionReportingIssueDetails
|
|
831
805
|
optional QuirksModeIssueDetails quirksModeIssueDetails
|
|
832
806
|
optional PartitioningBlobURLIssueDetails partitioningBlobURLIssueDetails
|
|
833
807
|
deprecated optional NavigatorUserAgentIssueDetails navigatorUserAgentIssueDetails
|
|
@@ -850,6 +824,7 @@ experimental domain Audits
|
|
|
850
824
|
optional PerformanceIssueDetails performanceIssueDetails
|
|
851
825
|
optional SelectivePermissionsInterventionIssueDetails selectivePermissionsInterventionIssueDetails
|
|
852
826
|
optional EmailVerificationRequestIssueDetails emailVerificationRequestIssueDetails
|
|
827
|
+
optional LazyLoadImageIssueDetails lazyLoadImageIssueDetails
|
|
853
828
|
|
|
854
829
|
# A unique id for a DevTools inspector issue. Allows other entities (e.g.
|
|
855
830
|
# exceptions, CDP message, console messages, etc.) to reference an issue.
|
package/pdl/domains/Browser.pdl
CHANGED
|
@@ -332,21 +332,3 @@ domain Browser
|
|
|
332
332
|
command addPrivacySandboxEnrollmentOverride
|
|
333
333
|
parameters
|
|
334
334
|
string url
|
|
335
|
-
|
|
336
|
-
experimental type PrivacySandboxAPI extends string
|
|
337
|
-
enum
|
|
338
|
-
BiddingAndAuctionServices
|
|
339
|
-
TrustedKeyValue
|
|
340
|
-
|
|
341
|
-
# Configures encryption keys used with a given privacy sandbox API to talk
|
|
342
|
-
# to a trusted coordinator. Since this is intended for test automation only,
|
|
343
|
-
# coordinatorOrigin must be a .test domain. No existing coordinator
|
|
344
|
-
# configuration for the origin may exist.
|
|
345
|
-
command addPrivacySandboxCoordinatorKeyConfig
|
|
346
|
-
parameters
|
|
347
|
-
PrivacySandboxAPI api
|
|
348
|
-
string coordinatorOrigin
|
|
349
|
-
string keyConfig
|
|
350
|
-
# BrowserContext to perform the action in. When omitted, default browser
|
|
351
|
-
# context is used.
|
|
352
|
-
optional BrowserContextID browserContextId
|
package/pdl/domains/Page.pdl
CHANGED
package/pdl/domains/Storage.pdl
CHANGED
|
@@ -42,45 +42,12 @@ experimental domain Storage
|
|
|
42
42
|
string issuerOrigin
|
|
43
43
|
number count
|
|
44
44
|
|
|
45
|
-
# Protected audience interest group auction identifier.
|
|
46
|
-
type InterestGroupAuctionId extends string
|
|
47
|
-
|
|
48
|
-
# Enum of interest group access types.
|
|
49
|
-
type InterestGroupAccessType extends string
|
|
50
|
-
enum
|
|
51
|
-
join
|
|
52
|
-
leave
|
|
53
|
-
update
|
|
54
|
-
loaded
|
|
55
|
-
bid
|
|
56
|
-
win
|
|
57
|
-
additionalBid
|
|
58
|
-
additionalBidWin
|
|
59
|
-
topLevelBid
|
|
60
|
-
topLevelAdditionalBid
|
|
61
|
-
clear
|
|
62
|
-
|
|
63
|
-
# Enum of auction events.
|
|
64
|
-
type InterestGroupAuctionEventType extends string
|
|
65
|
-
enum
|
|
66
|
-
started
|
|
67
|
-
configResolved
|
|
68
|
-
|
|
69
|
-
# Enum of network fetches auctions can do.
|
|
70
|
-
type InterestGroupAuctionFetchType extends string
|
|
71
|
-
enum
|
|
72
|
-
bidderJs
|
|
73
|
-
bidderWasm
|
|
74
|
-
sellerJs
|
|
75
|
-
bidderTrustedSignals
|
|
76
|
-
sellerTrustedSignals
|
|
77
45
|
|
|
78
46
|
# Enum of shared storage access scopes.
|
|
79
47
|
type SharedStorageAccessScope extends string
|
|
80
48
|
enum
|
|
81
49
|
window
|
|
82
50
|
sharedStorageWorklet
|
|
83
|
-
protectedAudienceWorklet
|
|
84
51
|
header
|
|
85
52
|
|
|
86
53
|
# Enum of shared storage access methods.
|
|
@@ -385,29 +352,6 @@ experimental domain Storage
|
|
|
385
352
|
# True if any tokens were deleted, false otherwise.
|
|
386
353
|
boolean didDeleteTokens
|
|
387
354
|
|
|
388
|
-
# Gets details for a named interest group.
|
|
389
|
-
experimental command getInterestGroupDetails
|
|
390
|
-
parameters
|
|
391
|
-
string ownerOrigin
|
|
392
|
-
string name
|
|
393
|
-
returns
|
|
394
|
-
# This largely corresponds to:
|
|
395
|
-
# https://wicg.github.io/turtledove/#dictdef-generatebidinterestgroup
|
|
396
|
-
# but has absolute expirationTime instead of relative lifetimeMs and
|
|
397
|
-
# also adds joiningOrigin.
|
|
398
|
-
object details
|
|
399
|
-
|
|
400
|
-
# Enables/Disables issuing of interestGroupAccessed events.
|
|
401
|
-
experimental command setInterestGroupTracking
|
|
402
|
-
parameters
|
|
403
|
-
boolean enable
|
|
404
|
-
|
|
405
|
-
# Enables/Disables issuing of interestGroupAuctionEventOccurred and
|
|
406
|
-
# interestGroupAuctionNetworkRequestCreated.
|
|
407
|
-
experimental command setInterestGroupAuctionTracking
|
|
408
|
-
parameters
|
|
409
|
-
boolean enable
|
|
410
|
-
|
|
411
355
|
# Gets metadata for an origin's shared storage.
|
|
412
356
|
experimental command getSharedStorageMetadata
|
|
413
357
|
parameters
|
|
@@ -515,48 +459,6 @@ experimental domain Storage
|
|
|
515
459
|
# Storage bucket to update.
|
|
516
460
|
string bucketId
|
|
517
461
|
|
|
518
|
-
# One of the interest groups was accessed. Note that these events are global
|
|
519
|
-
# to all targets sharing an interest group store.
|
|
520
|
-
event interestGroupAccessed
|
|
521
|
-
parameters
|
|
522
|
-
Network.TimeSinceEpoch accessTime
|
|
523
|
-
InterestGroupAccessType type
|
|
524
|
-
string ownerOrigin
|
|
525
|
-
string name
|
|
526
|
-
# For topLevelBid/topLevelAdditionalBid, and when appropriate,
|
|
527
|
-
# win and additionalBidWin
|
|
528
|
-
optional string componentSellerOrigin
|
|
529
|
-
# For bid or somethingBid event, if done locally and not on a server.
|
|
530
|
-
optional number bid
|
|
531
|
-
optional string bidCurrency
|
|
532
|
-
# For non-global events --- links to interestGroupAuctionEvent
|
|
533
|
-
optional InterestGroupAuctionId uniqueAuctionId
|
|
534
|
-
|
|
535
|
-
# An auction involving interest groups is taking place. These events are
|
|
536
|
-
# target-specific.
|
|
537
|
-
event interestGroupAuctionEventOccurred
|
|
538
|
-
parameters
|
|
539
|
-
Network.TimeSinceEpoch eventTime
|
|
540
|
-
InterestGroupAuctionEventType type
|
|
541
|
-
InterestGroupAuctionId uniqueAuctionId
|
|
542
|
-
# Set for child auctions.
|
|
543
|
-
optional InterestGroupAuctionId parentAuctionId
|
|
544
|
-
# Set for started and configResolved
|
|
545
|
-
optional object auctionConfig
|
|
546
|
-
|
|
547
|
-
# Specifies which auctions a particular network fetch may be related to, and
|
|
548
|
-
# in what role. Note that it is not ordered with respect to
|
|
549
|
-
# Network.requestWillBeSent (but will happen before loadingFinished
|
|
550
|
-
# loadingFailed).
|
|
551
|
-
event interestGroupAuctionNetworkRequestCreated
|
|
552
|
-
parameters
|
|
553
|
-
InterestGroupAuctionFetchType type
|
|
554
|
-
Network.RequestId requestId
|
|
555
|
-
# This is the set of the auctions using the worklet that issued this
|
|
556
|
-
# request. In the case of trusted signals, it's possible that only some of
|
|
557
|
-
# them actually care about the keys being queried.
|
|
558
|
-
array of InterestGroupAuctionId auctions
|
|
559
|
-
|
|
560
462
|
# Shared storage was accessed by the associated page.
|
|
561
463
|
# The following parameters are included in all events.
|
|
562
464
|
event sharedStorageAccessed
|
|
@@ -621,9 +523,3 @@ experimental domain Storage
|
|
|
621
523
|
experimental command getRelatedWebsiteSets
|
|
622
524
|
returns
|
|
623
525
|
array of RelatedWebsiteSet sets
|
|
624
|
-
|
|
625
|
-
command setProtectedAudienceKAnonymity
|
|
626
|
-
parameters
|
|
627
|
-
string owner
|
|
628
|
-
string name
|
|
629
|
-
array of binary hashes
|
|
@@ -947,23 +947,6 @@ export namespace ProtocolMapping {
|
|
|
947
947
|
* The origin's IndexedDB database list has been modified.
|
|
948
948
|
*/
|
|
949
949
|
'Storage.indexedDBListUpdated': [Protocol.Storage.IndexedDBListUpdatedEvent];
|
|
950
|
-
/**
|
|
951
|
-
* One of the interest groups was accessed. Note that these events are global
|
|
952
|
-
* to all targets sharing an interest group store.
|
|
953
|
-
*/
|
|
954
|
-
'Storage.interestGroupAccessed': [Protocol.Storage.InterestGroupAccessedEvent];
|
|
955
|
-
/**
|
|
956
|
-
* An auction involving interest groups is taking place. These events are
|
|
957
|
-
* target-specific.
|
|
958
|
-
*/
|
|
959
|
-
'Storage.interestGroupAuctionEventOccurred': [Protocol.Storage.InterestGroupAuctionEventOccurredEvent];
|
|
960
|
-
/**
|
|
961
|
-
* Specifies which auctions a particular network fetch may be related to, and
|
|
962
|
-
* in what role. Note that it is not ordered with respect to
|
|
963
|
-
* Network.requestWillBeSent (but will happen before loadingFinished
|
|
964
|
-
* loadingFailed).
|
|
965
|
-
*/
|
|
966
|
-
'Storage.interestGroupAuctionNetworkRequestCreated': [Protocol.Storage.InterestGroupAuctionNetworkRequestCreatedEvent];
|
|
967
950
|
/**
|
|
968
951
|
* Shared storage was accessed by the associated page.
|
|
969
952
|
* The following parameters are included in all events.
|
|
@@ -2216,16 +2199,6 @@ export namespace ProtocolMapping {
|
|
|
2216
2199
|
paramsType: [Protocol.Browser.AddPrivacySandboxEnrollmentOverrideRequest];
|
|
2217
2200
|
returnType: void;
|
|
2218
2201
|
};
|
|
2219
|
-
/**
|
|
2220
|
-
* Configures encryption keys used with a given privacy sandbox API to talk
|
|
2221
|
-
* to a trusted coordinator. Since this is intended for test automation only,
|
|
2222
|
-
* coordinatorOrigin must be a .test domain. No existing coordinator
|
|
2223
|
-
* configuration for the origin may exist.
|
|
2224
|
-
*/
|
|
2225
|
-
'Browser.addPrivacySandboxCoordinatorKeyConfig': {
|
|
2226
|
-
paramsType: [Protocol.Browser.AddPrivacySandboxCoordinatorKeyConfigRequest];
|
|
2227
|
-
returnType: void;
|
|
2228
|
-
};
|
|
2229
2202
|
/**
|
|
2230
2203
|
* Inserts a new rule with the given `ruleText` in a stylesheet with given `styleSheetId`, at the
|
|
2231
2204
|
* position specified by `location`.
|
|
@@ -5828,31 +5801,6 @@ export namespace ProtocolMapping {
|
|
|
5828
5801
|
paramsType: [Protocol.Storage.ClearTrustTokensRequest];
|
|
5829
5802
|
returnType: Protocol.Storage.ClearTrustTokensResponse;
|
|
5830
5803
|
};
|
|
5831
|
-
/**
|
|
5832
|
-
* Gets details for a named interest group.
|
|
5833
|
-
* @experimental
|
|
5834
|
-
*/
|
|
5835
|
-
'Storage.getInterestGroupDetails': {
|
|
5836
|
-
paramsType: [Protocol.Storage.GetInterestGroupDetailsRequest];
|
|
5837
|
-
returnType: Protocol.Storage.GetInterestGroupDetailsResponse;
|
|
5838
|
-
};
|
|
5839
|
-
/**
|
|
5840
|
-
* Enables/Disables issuing of interestGroupAccessed events.
|
|
5841
|
-
* @experimental
|
|
5842
|
-
*/
|
|
5843
|
-
'Storage.setInterestGroupTracking': {
|
|
5844
|
-
paramsType: [Protocol.Storage.SetInterestGroupTrackingRequest];
|
|
5845
|
-
returnType: void;
|
|
5846
|
-
};
|
|
5847
|
-
/**
|
|
5848
|
-
* Enables/Disables issuing of interestGroupAuctionEventOccurred and
|
|
5849
|
-
* interestGroupAuctionNetworkRequestCreated.
|
|
5850
|
-
* @experimental
|
|
5851
|
-
*/
|
|
5852
|
-
'Storage.setInterestGroupAuctionTracking': {
|
|
5853
|
-
paramsType: [Protocol.Storage.SetInterestGroupAuctionTrackingRequest];
|
|
5854
|
-
returnType: void;
|
|
5855
|
-
};
|
|
5856
5804
|
/**
|
|
5857
5805
|
* Gets metadata for an origin's shared storage.
|
|
5858
5806
|
* @experimental
|
|
@@ -5942,10 +5890,6 @@ export namespace ProtocolMapping {
|
|
|
5942
5890
|
paramsType: [];
|
|
5943
5891
|
returnType: Protocol.Storage.GetRelatedWebsiteSetsResponse;
|
|
5944
5892
|
};
|
|
5945
|
-
'Storage.setProtectedAudienceKAnonymity': {
|
|
5946
|
-
paramsType: [Protocol.Storage.SetProtectedAudienceKAnonymityRequest];
|
|
5947
|
-
returnType: void;
|
|
5948
|
-
};
|
|
5949
5893
|
/**
|
|
5950
5894
|
* Returns information about the system.
|
|
5951
5895
|
*/
|
|
@@ -1160,14 +1160,6 @@ export namespace ProtocolProxyApi {
|
|
|
1160
1160
|
*/
|
|
1161
1161
|
addPrivacySandboxEnrollmentOverride(params: Protocol.Browser.AddPrivacySandboxEnrollmentOverrideRequest): Promise<void>;
|
|
1162
1162
|
|
|
1163
|
-
/**
|
|
1164
|
-
* Configures encryption keys used with a given privacy sandbox API to talk
|
|
1165
|
-
* to a trusted coordinator. Since this is intended for test automation only,
|
|
1166
|
-
* coordinatorOrigin must be a .test domain. No existing coordinator
|
|
1167
|
-
* configuration for the origin may exist.
|
|
1168
|
-
*/
|
|
1169
|
-
addPrivacySandboxCoordinatorKeyConfig(params: Protocol.Browser.AddPrivacySandboxCoordinatorKeyConfigRequest): Promise<void>;
|
|
1170
|
-
|
|
1171
1163
|
/**
|
|
1172
1164
|
* Fired when page is about to start a download.
|
|
1173
1165
|
* @experimental
|
|
@@ -4897,25 +4889,6 @@ export namespace ProtocolProxyApi {
|
|
|
4897
4889
|
*/
|
|
4898
4890
|
clearTrustTokens(params: Protocol.Storage.ClearTrustTokensRequest): Promise<Protocol.Storage.ClearTrustTokensResponse>;
|
|
4899
4891
|
|
|
4900
|
-
/**
|
|
4901
|
-
* Gets details for a named interest group.
|
|
4902
|
-
* @experimental
|
|
4903
|
-
*/
|
|
4904
|
-
getInterestGroupDetails(params: Protocol.Storage.GetInterestGroupDetailsRequest): Promise<Protocol.Storage.GetInterestGroupDetailsResponse>;
|
|
4905
|
-
|
|
4906
|
-
/**
|
|
4907
|
-
* Enables/Disables issuing of interestGroupAccessed events.
|
|
4908
|
-
* @experimental
|
|
4909
|
-
*/
|
|
4910
|
-
setInterestGroupTracking(params: Protocol.Storage.SetInterestGroupTrackingRequest): Promise<void>;
|
|
4911
|
-
|
|
4912
|
-
/**
|
|
4913
|
-
* Enables/Disables issuing of interestGroupAuctionEventOccurred and
|
|
4914
|
-
* interestGroupAuctionNetworkRequestCreated.
|
|
4915
|
-
* @experimental
|
|
4916
|
-
*/
|
|
4917
|
-
setInterestGroupAuctionTracking(params: Protocol.Storage.SetInterestGroupAuctionTrackingRequest): Promise<void>;
|
|
4918
|
-
|
|
4919
4892
|
/**
|
|
4920
4893
|
* Gets metadata for an origin's shared storage.
|
|
4921
4894
|
* @experimental
|
|
@@ -4983,8 +4956,6 @@ export namespace ProtocolProxyApi {
|
|
|
4983
4956
|
*/
|
|
4984
4957
|
getRelatedWebsiteSets(): Promise<Protocol.Storage.GetRelatedWebsiteSetsResponse>;
|
|
4985
4958
|
|
|
4986
|
-
setProtectedAudienceKAnonymity(params: Protocol.Storage.SetProtectedAudienceKAnonymityRequest): Promise<void>;
|
|
4987
|
-
|
|
4988
4959
|
/**
|
|
4989
4960
|
* A cache's contents have been modified.
|
|
4990
4961
|
*/
|
|
@@ -5005,26 +4976,6 @@ export namespace ProtocolProxyApi {
|
|
|
5005
4976
|
*/
|
|
5006
4977
|
on(event: 'indexedDBListUpdated', listener: (params: Protocol.Storage.IndexedDBListUpdatedEvent) => void): void;
|
|
5007
4978
|
|
|
5008
|
-
/**
|
|
5009
|
-
* One of the interest groups was accessed. Note that these events are global
|
|
5010
|
-
* to all targets sharing an interest group store.
|
|
5011
|
-
*/
|
|
5012
|
-
on(event: 'interestGroupAccessed', listener: (params: Protocol.Storage.InterestGroupAccessedEvent) => void): void;
|
|
5013
|
-
|
|
5014
|
-
/**
|
|
5015
|
-
* An auction involving interest groups is taking place. These events are
|
|
5016
|
-
* target-specific.
|
|
5017
|
-
*/
|
|
5018
|
-
on(event: 'interestGroupAuctionEventOccurred', listener: (params: Protocol.Storage.InterestGroupAuctionEventOccurredEvent) => void): void;
|
|
5019
|
-
|
|
5020
|
-
/**
|
|
5021
|
-
* Specifies which auctions a particular network fetch may be related to, and
|
|
5022
|
-
* in what role. Note that it is not ordered with respect to
|
|
5023
|
-
* Network.requestWillBeSent (but will happen before loadingFinished
|
|
5024
|
-
* loadingFailed).
|
|
5025
|
-
*/
|
|
5026
|
-
on(event: 'interestGroupAuctionNetworkRequestCreated', listener: (params: Protocol.Storage.InterestGroupAuctionNetworkRequestCreatedEvent) => void): void;
|
|
5027
|
-
|
|
5028
4979
|
/**
|
|
5029
4980
|
* Shared storage was accessed by the associated page.
|
|
5030
4981
|
* The following parameters are included in all events.
|
|
@@ -1230,14 +1230,6 @@ export namespace ProtocolTestsProxyApi {
|
|
|
1230
1230
|
*/
|
|
1231
1231
|
addPrivacySandboxEnrollmentOverride(params: Protocol.Browser.AddPrivacySandboxEnrollmentOverrideRequest): Promise<{id: number, result: void, sessionId: string}>;
|
|
1232
1232
|
|
|
1233
|
-
/**
|
|
1234
|
-
* Configures encryption keys used with a given privacy sandbox API to talk
|
|
1235
|
-
* to a trusted coordinator. Since this is intended for test automation only,
|
|
1236
|
-
* coordinatorOrigin must be a .test domain. No existing coordinator
|
|
1237
|
-
* configuration for the origin may exist.
|
|
1238
|
-
*/
|
|
1239
|
-
addPrivacySandboxCoordinatorKeyConfig(params: Protocol.Browser.AddPrivacySandboxCoordinatorKeyConfigRequest): Promise<{id: number, result: void, sessionId: string}>;
|
|
1240
|
-
|
|
1241
1233
|
/**
|
|
1242
1234
|
* Fired when page is about to start a download.
|
|
1243
1235
|
* @experimental
|
|
@@ -5285,25 +5277,6 @@ export namespace ProtocolTestsProxyApi {
|
|
|
5285
5277
|
*/
|
|
5286
5278
|
clearTrustTokens(params: Protocol.Storage.ClearTrustTokensRequest): Promise<{id: number, result: Protocol.Storage.ClearTrustTokensResponse, sessionId: string}>;
|
|
5287
5279
|
|
|
5288
|
-
/**
|
|
5289
|
-
* Gets details for a named interest group.
|
|
5290
|
-
* @experimental
|
|
5291
|
-
*/
|
|
5292
|
-
getInterestGroupDetails(params: Protocol.Storage.GetInterestGroupDetailsRequest): Promise<{id: number, result: Protocol.Storage.GetInterestGroupDetailsResponse, sessionId: string}>;
|
|
5293
|
-
|
|
5294
|
-
/**
|
|
5295
|
-
* Enables/Disables issuing of interestGroupAccessed events.
|
|
5296
|
-
* @experimental
|
|
5297
|
-
*/
|
|
5298
|
-
setInterestGroupTracking(params: Protocol.Storage.SetInterestGroupTrackingRequest): Promise<{id: number, result: void, sessionId: string}>;
|
|
5299
|
-
|
|
5300
|
-
/**
|
|
5301
|
-
* Enables/Disables issuing of interestGroupAuctionEventOccurred and
|
|
5302
|
-
* interestGroupAuctionNetworkRequestCreated.
|
|
5303
|
-
* @experimental
|
|
5304
|
-
*/
|
|
5305
|
-
setInterestGroupAuctionTracking(params: Protocol.Storage.SetInterestGroupAuctionTrackingRequest): Promise<{id: number, result: void, sessionId: string}>;
|
|
5306
|
-
|
|
5307
5280
|
/**
|
|
5308
5281
|
* Gets metadata for an origin's shared storage.
|
|
5309
5282
|
* @experimental
|
|
@@ -5371,8 +5344,6 @@ export namespace ProtocolTestsProxyApi {
|
|
|
5371
5344
|
*/
|
|
5372
5345
|
getRelatedWebsiteSets(): Promise<{id: number, result: Protocol.Storage.GetRelatedWebsiteSetsResponse, sessionId: string}>;
|
|
5373
5346
|
|
|
5374
|
-
setProtectedAudienceKAnonymity(params: Protocol.Storage.SetProtectedAudienceKAnonymityRequest): Promise<{id: number, result: void, sessionId: string}>;
|
|
5375
|
-
|
|
5376
5347
|
/**
|
|
5377
5348
|
* A cache's contents have been modified.
|
|
5378
5349
|
*/
|
|
@@ -5401,32 +5372,6 @@ export namespace ProtocolTestsProxyApi {
|
|
|
5401
5372
|
offIndexedDBListUpdated(listener: (event: { params: Protocol.Storage.IndexedDBListUpdatedEvent }) => void): void;
|
|
5402
5373
|
onceIndexedDBListUpdated(eventMatcher?: (event: { params: Protocol.Storage.IndexedDBListUpdatedEvent }) => boolean): Promise<{ params: Protocol.Storage.IndexedDBListUpdatedEvent }>;
|
|
5403
5374
|
|
|
5404
|
-
/**
|
|
5405
|
-
* One of the interest groups was accessed. Note that these events are global
|
|
5406
|
-
* to all targets sharing an interest group store.
|
|
5407
|
-
*/
|
|
5408
|
-
onInterestGroupAccessed(listener: (event: { params: Protocol.Storage.InterestGroupAccessedEvent }) => void): void;
|
|
5409
|
-
offInterestGroupAccessed(listener: (event: { params: Protocol.Storage.InterestGroupAccessedEvent }) => void): void;
|
|
5410
|
-
onceInterestGroupAccessed(eventMatcher?: (event: { params: Protocol.Storage.InterestGroupAccessedEvent }) => boolean): Promise<{ params: Protocol.Storage.InterestGroupAccessedEvent }>;
|
|
5411
|
-
|
|
5412
|
-
/**
|
|
5413
|
-
* An auction involving interest groups is taking place. These events are
|
|
5414
|
-
* target-specific.
|
|
5415
|
-
*/
|
|
5416
|
-
onInterestGroupAuctionEventOccurred(listener: (event: { params: Protocol.Storage.InterestGroupAuctionEventOccurredEvent }) => void): void;
|
|
5417
|
-
offInterestGroupAuctionEventOccurred(listener: (event: { params: Protocol.Storage.InterestGroupAuctionEventOccurredEvent }) => void): void;
|
|
5418
|
-
onceInterestGroupAuctionEventOccurred(eventMatcher?: (event: { params: Protocol.Storage.InterestGroupAuctionEventOccurredEvent }) => boolean): Promise<{ params: Protocol.Storage.InterestGroupAuctionEventOccurredEvent }>;
|
|
5419
|
-
|
|
5420
|
-
/**
|
|
5421
|
-
* Specifies which auctions a particular network fetch may be related to, and
|
|
5422
|
-
* in what role. Note that it is not ordered with respect to
|
|
5423
|
-
* Network.requestWillBeSent (but will happen before loadingFinished
|
|
5424
|
-
* loadingFailed).
|
|
5425
|
-
*/
|
|
5426
|
-
onInterestGroupAuctionNetworkRequestCreated(listener: (event: { params: Protocol.Storage.InterestGroupAuctionNetworkRequestCreatedEvent }) => void): void;
|
|
5427
|
-
offInterestGroupAuctionNetworkRequestCreated(listener: (event: { params: Protocol.Storage.InterestGroupAuctionNetworkRequestCreatedEvent }) => void): void;
|
|
5428
|
-
onceInterestGroupAuctionNetworkRequestCreated(eventMatcher?: (event: { params: Protocol.Storage.InterestGroupAuctionNetworkRequestCreatedEvent }) => boolean): Promise<{ params: Protocol.Storage.InterestGroupAuctionNetworkRequestCreatedEvent }>;
|
|
5429
|
-
|
|
5430
5375
|
/**
|
|
5431
5376
|
* Shared storage was accessed by the associated page.
|
|
5432
5377
|
* The following parameters are included in all events.
|
package/types/protocol.d.ts
CHANGED
|
@@ -3592,7 +3592,7 @@ export namespace Protocol {
|
|
|
3592
3592
|
|
|
3593
3593
|
export type MixedContentResolutionStatus = ('MixedContentBlocked' | 'MixedContentAutomaticallyUpgraded' | 'MixedContentWarning');
|
|
3594
3594
|
|
|
3595
|
-
export type MixedContentResourceType = ('
|
|
3595
|
+
export type MixedContentResourceType = ('Audio' | 'Beacon' | 'CSPReport' | 'Download' | 'EventSource' | 'Favicon' | 'Font' | 'Form' | 'Frame' | 'Image' | 'Import' | 'JSON' | 'Manifest' | 'Ping' | 'PluginData' | 'PluginResource' | 'Prefetch' | 'Resource' | 'Script' | 'ServiceWorker' | 'SharedWorker' | 'SpeculationRules' | 'Stylesheet' | 'Track' | 'Video' | 'Worker' | 'XMLHttpRequest' | 'XSLT');
|
|
3596
3596
|
|
|
3597
3597
|
export interface MixedContentIssueDetails {
|
|
3598
3598
|
/**
|
|
@@ -3713,8 +3713,6 @@ export namespace Protocol {
|
|
|
3713
3713
|
clientSecurityState?: Network.ClientSecurityState;
|
|
3714
3714
|
}
|
|
3715
3715
|
|
|
3716
|
-
export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'UntrustworthyReportingOrigin' | 'InsecureContext' | 'InvalidHeader' | 'InvalidRegisterTriggerHeader' | 'SourceAndTriggerHeaders' | 'SourceIgnored' | 'TriggerIgnored' | 'OsSourceIgnored' | 'OsTriggerIgnored' | 'InvalidRegisterOsSourceHeader' | 'InvalidRegisterOsTriggerHeader' | 'WebAndOsHeaders' | 'NoWebOrOsSupport' | 'NavigationRegistrationWithoutTransientUserActivation' | 'InvalidInfoHeader' | 'NoRegisterSourceHeader' | 'NoRegisterTriggerHeader' | 'NoRegisterOsSourceHeader' | 'NoRegisterOsTriggerHeader' | 'NavigationRegistrationUniqueScopeAlreadySet');
|
|
3717
|
-
|
|
3718
3716
|
export type SharedDictionaryError = ('UseErrorCrossOriginNoCorsRequest' | 'UseErrorDictionaryLoadFailure' | 'UseErrorMatchingDictionaryNotUsed' | 'UseErrorUnexpectedContentDictionaryHeader' | 'WriteErrorCossOriginNoCorsRequest' | 'WriteErrorDisallowedBySettings' | 'WriteErrorExpiredResponse' | 'WriteErrorFeatureDisabled' | 'WriteErrorInsufficientResources' | 'WriteErrorInvalidMatchField' | 'WriteErrorInvalidStructuredHeader' | 'WriteErrorInvalidTTLField' | 'WriteErrorNavigationRequest' | 'WriteErrorNoMatchField' | 'WriteErrorNonIntegerTTLField' | 'WriteErrorNonListMatchDestField' | 'WriteErrorNonSecureContext' | 'WriteErrorNonStringIdField' | 'WriteErrorNonStringInMatchDestList' | 'WriteErrorInvalidMatchDestList' | 'WriteErrorNonStringMatchField' | 'WriteErrorNonTokenTypeField' | 'WriteErrorRequestAborted' | 'WriteErrorShuttingDown' | 'WriteErrorTooLongIdField' | 'WriteErrorUnsupportedType');
|
|
3719
3717
|
|
|
3720
3718
|
export type SRIMessageSignatureError = ('MissingSignatureHeader' | 'MissingSignatureInputHeader' | 'InvalidSignatureHeader' | 'InvalidSignatureInputHeader' | 'SignatureHeaderValueIsNotByteSequence' | 'SignatureHeaderValueIsParameterized' | 'SignatureHeaderValueIsIncorrectLength' | 'SignatureInputHeaderMissingLabel' | 'SignatureInputHeaderValueNotInnerList' | 'SignatureInputHeaderValueMissingComponents' | 'SignatureInputHeaderInvalidComponentType' | 'SignatureInputHeaderInvalidComponentName' | 'SignatureInputHeaderInvalidHeaderComponentParameter' | 'SignatureInputHeaderInvalidDerivedComponentParameter' | 'SignatureInputHeaderKeyIdLength' | 'SignatureInputHeaderInvalidParameter' | 'SignatureInputHeaderMissingRequiredParameters' | 'ValidationFailedSignatureExpired' | 'ValidationFailedInvalidLength' | 'ValidationFailedSignatureMismatch' | 'ValidationFailedIntegrityMismatch' | 'SignatureBaseUnknownDerivedComponent' | 'SignatureBaseMissingHeader' | 'SignatureBaseInvalidUnencodedDigest' | 'SignatureBaseUnsupportedComponent');
|
|
@@ -3723,17 +3721,6 @@ export namespace Protocol {
|
|
|
3723
3721
|
|
|
3724
3722
|
export type ConnectionAllowlistError = ('InvalidHeader' | 'MoreThanOneList' | 'ItemNotInnerList' | 'InvalidAllowlistItemType' | 'ReportingEndpointNotToken' | 'InvalidUrlPattern');
|
|
3725
3723
|
|
|
3726
|
-
/**
|
|
3727
|
-
* Details for issues around "Attribution Reporting API" usage.
|
|
3728
|
-
* Explainer: https://github.com/WICG/attribution-reporting-api
|
|
3729
|
-
*/
|
|
3730
|
-
export interface AttributionReportingIssueDetails {
|
|
3731
|
-
violationType: AttributionReportingIssueType;
|
|
3732
|
-
request?: AffectedRequest;
|
|
3733
|
-
violatingNodeId?: DOM.BackendNodeId;
|
|
3734
|
-
invalidParameter?: string;
|
|
3735
|
-
}
|
|
3736
|
-
|
|
3737
3724
|
/**
|
|
3738
3725
|
* Details for issues about documents in Quirks Mode
|
|
3739
3726
|
* or Limited Quirks Mode that affects page layouting.
|
|
@@ -4031,12 +4018,30 @@ export namespace Protocol {
|
|
|
4031
4018
|
stackTrace?: Runtime.StackTrace;
|
|
4032
4019
|
}
|
|
4033
4020
|
|
|
4021
|
+
/**
|
|
4022
|
+
* Details for issues about lazy-loaded images without explicit dimensions.
|
|
4023
|
+
*/
|
|
4024
|
+
export interface LazyLoadImageIssueDetails {
|
|
4025
|
+
/**
|
|
4026
|
+
* DOM node of the problematic HTMLImageElement.
|
|
4027
|
+
*/
|
|
4028
|
+
nodeId: DOM.BackendNodeId;
|
|
4029
|
+
/**
|
|
4030
|
+
* URL or src attribute of the image.
|
|
4031
|
+
*/
|
|
4032
|
+
url: string;
|
|
4033
|
+
/**
|
|
4034
|
+
* Frame containing the image.
|
|
4035
|
+
*/
|
|
4036
|
+
frameId: Page.FrameId;
|
|
4037
|
+
}
|
|
4038
|
+
|
|
4034
4039
|
/**
|
|
4035
4040
|
* A unique identifier for the type of issue. Each type may use one of the
|
|
4036
4041
|
* optional fields in InspectorIssueDetails to convey more specific
|
|
4037
4042
|
* information about the kind of issue.
|
|
4038
4043
|
*/
|
|
4039
|
-
export type InspectorIssueCode = ('CookieIssue' | 'MixedContentIssue' | 'BlockedByResponseIssue' | 'HeavyAdIssue' | 'ContentSecurityPolicyIssue' | 'SharedArrayBufferIssue' | 'CorsIssue' | '
|
|
4044
|
+
export type InspectorIssueCode = ('CookieIssue' | 'MixedContentIssue' | 'BlockedByResponseIssue' | 'HeavyAdIssue' | 'ContentSecurityPolicyIssue' | 'SharedArrayBufferIssue' | 'CorsIssue' | 'QuirksModeIssue' | 'PartitioningBlobURLIssue' | 'NavigatorUserAgentIssue' | 'GenericIssue' | 'DeprecationIssue' | 'ClientHintIssue' | 'FederatedAuthRequestIssue' | 'BounceTrackingIssue' | 'CookieDeprecationMetadataIssue' | 'StylesheetLoadingIssue' | 'FederatedAuthUserInfoRequestIssue' | 'PropertyRuleIssue' | 'SharedDictionaryIssue' | 'ElementAccessibilityIssue' | 'SRIMessageSignatureIssue' | 'UnencodedDigestIssue' | 'ConnectionAllowlistIssue' | 'UserReidentificationIssue' | 'PermissionElementIssue' | 'PerformanceIssue' | 'SelectivePermissionsInterventionIssue' | 'EmailVerificationRequestIssue' | 'LazyLoadImageIssue');
|
|
4040
4045
|
|
|
4041
4046
|
/**
|
|
4042
4047
|
* This struct holds a list of optional fields with additional information
|
|
@@ -4051,7 +4056,6 @@ export namespace Protocol {
|
|
|
4051
4056
|
contentSecurityPolicyIssueDetails?: ContentSecurityPolicyIssueDetails;
|
|
4052
4057
|
sharedArrayBufferIssueDetails?: SharedArrayBufferIssueDetails;
|
|
4053
4058
|
corsIssueDetails?: CorsIssueDetails;
|
|
4054
|
-
attributionReportingIssueDetails?: AttributionReportingIssueDetails;
|
|
4055
4059
|
quirksModeIssueDetails?: QuirksModeIssueDetails;
|
|
4056
4060
|
partitioningBlobURLIssueDetails?: PartitioningBlobURLIssueDetails;
|
|
4057
4061
|
/**
|
|
@@ -4077,6 +4081,7 @@ export namespace Protocol {
|
|
|
4077
4081
|
performanceIssueDetails?: PerformanceIssueDetails;
|
|
4078
4082
|
selectivePermissionsInterventionIssueDetails?: SelectivePermissionsInterventionIssueDetails;
|
|
4079
4083
|
emailVerificationRequestIssueDetails?: EmailVerificationRequestIssueDetails;
|
|
4084
|
+
lazyLoadImageIssueDetails?: LazyLoadImageIssueDetails;
|
|
4080
4085
|
}
|
|
4081
4086
|
|
|
4082
4087
|
/**
|
|
@@ -4756,11 +4761,6 @@ export namespace Protocol {
|
|
|
4756
4761
|
buckets: Bucket[];
|
|
4757
4762
|
}
|
|
4758
4763
|
|
|
4759
|
-
/**
|
|
4760
|
-
* @experimental
|
|
4761
|
-
*/
|
|
4762
|
-
export type PrivacySandboxAPI = ('BiddingAndAuctionServices' | 'TrustedKeyValue');
|
|
4763
|
-
|
|
4764
4764
|
export interface SetPermissionRequest {
|
|
4765
4765
|
/**
|
|
4766
4766
|
* Descriptor of permission to override.
|
|
@@ -4992,17 +4992,6 @@ export namespace Protocol {
|
|
|
4992
4992
|
url: string;
|
|
4993
4993
|
}
|
|
4994
4994
|
|
|
4995
|
-
export interface AddPrivacySandboxCoordinatorKeyConfigRequest {
|
|
4996
|
-
api: PrivacySandboxAPI;
|
|
4997
|
-
coordinatorOrigin: string;
|
|
4998
|
-
keyConfig: string;
|
|
4999
|
-
/**
|
|
5000
|
-
* BrowserContext to perform the action in. When omitted, default browser
|
|
5001
|
-
* context is used.
|
|
5002
|
-
*/
|
|
5003
|
-
browserContextId?: BrowserContextID;
|
|
5004
|
-
}
|
|
5005
|
-
|
|
5006
4995
|
/**
|
|
5007
4996
|
* Fired when page is about to start a download.
|
|
5008
4997
|
* @experimental
|
|
@@ -16796,7 +16785,7 @@ export namespace Protocol {
|
|
|
16796
16785
|
* in services/network/public/cpp/permissions_policy/permissions_policy_features.json5.
|
|
16797
16786
|
* @experimental
|
|
16798
16787
|
*/
|
|
16799
|
-
export type PermissionsPolicyFeature = ('accelerometer' | 'all-screens-capture' | 'ambient-light-sensor' | 'aria-notify' | '
|
|
16788
|
+
export type PermissionsPolicyFeature = ('accelerometer' | 'all-screens-capture' | 'ambient-light-sensor' | 'aria-notify' | 'autofill' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'captured-surface-control' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | 'ch-prefers-reduced-transparency' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-high-entropy-values' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-form-factors' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'compute-pressure' | 'controlled-frame' | 'cross-origin-isolated' | 'deferred-fetch' | 'deferred-fetch-minimal' | 'device-attributes' | 'digital-credentials-create' | 'digital-credentials-get' | 'direct-sockets' | 'direct-sockets-multicast' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'identity-credentials-get' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'language-detector' | 'language-model' | 'local-fonts' | 'local-network' | 'local-network-access' | 'loopback-network' | 'magnetometer' | 'manual-text' | 'media-playback-while-not-visible' | 'microphone' | 'midi' | 'on-device-speech-recognition' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'private-aggregation' | 'private-state-token-issuance' | 'private-state-token-redemption' | 'publickey-credentials-create' | 'publickey-credentials-get' | 'record-ad-auction-events' | 'rewriter' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'speaker-selection' | 'storage-access' | 'sub-apps' | 'summarizer' | 'sync-xhr' | 'tools' | 'translator' | 'unload' | 'usb' | 'usb-unrestricted' | 'vertical-scroll' | 'web-app-installation' | 'webnn' | 'web-printing' | 'web-share' | 'window-management' | 'writer' | 'xr-spatial-tracking');
|
|
16800
16789
|
|
|
16801
16790
|
/**
|
|
16802
16791
|
* Reason for a permissions policy feature to be disabled.
|
|
@@ -20009,30 +19998,10 @@ export namespace Protocol {
|
|
|
20009
19998
|
count: number;
|
|
20010
19999
|
}
|
|
20011
20000
|
|
|
20012
|
-
/**
|
|
20013
|
-
* Protected audience interest group auction identifier.
|
|
20014
|
-
*/
|
|
20015
|
-
export type InterestGroupAuctionId = string;
|
|
20016
|
-
|
|
20017
|
-
/**
|
|
20018
|
-
* Enum of interest group access types.
|
|
20019
|
-
*/
|
|
20020
|
-
export type InterestGroupAccessType = ('join' | 'leave' | 'update' | 'loaded' | 'bid' | 'win' | 'additionalBid' | 'additionalBidWin' | 'topLevelBid' | 'topLevelAdditionalBid' | 'clear');
|
|
20021
|
-
|
|
20022
|
-
/**
|
|
20023
|
-
* Enum of auction events.
|
|
20024
|
-
*/
|
|
20025
|
-
export type InterestGroupAuctionEventType = ('started' | 'configResolved');
|
|
20026
|
-
|
|
20027
|
-
/**
|
|
20028
|
-
* Enum of network fetches auctions can do.
|
|
20029
|
-
*/
|
|
20030
|
-
export type InterestGroupAuctionFetchType = ('bidderJs' | 'bidderWasm' | 'sellerJs' | 'bidderTrustedSignals' | 'sellerTrustedSignals');
|
|
20031
|
-
|
|
20032
20001
|
/**
|
|
20033
20002
|
* Enum of shared storage access scopes.
|
|
20034
20003
|
*/
|
|
20035
|
-
export type SharedStorageAccessScope = ('window' | 'sharedStorageWorklet' | '
|
|
20004
|
+
export type SharedStorageAccessScope = ('window' | 'sharedStorageWorklet' | 'header');
|
|
20036
20005
|
|
|
20037
20006
|
/**
|
|
20038
20007
|
* Enum of shared storage access methods.
|
|
@@ -20445,29 +20414,6 @@ export namespace Protocol {
|
|
|
20445
20414
|
didDeleteTokens: boolean;
|
|
20446
20415
|
}
|
|
20447
20416
|
|
|
20448
|
-
export interface GetInterestGroupDetailsRequest {
|
|
20449
|
-
ownerOrigin: string;
|
|
20450
|
-
name: string;
|
|
20451
|
-
}
|
|
20452
|
-
|
|
20453
|
-
export interface GetInterestGroupDetailsResponse {
|
|
20454
|
-
/**
|
|
20455
|
-
* This largely corresponds to:
|
|
20456
|
-
* https://wicg.github.io/turtledove/#dictdef-generatebidinterestgroup
|
|
20457
|
-
* but has absolute expirationTime instead of relative lifetimeMs and
|
|
20458
|
-
* also adds joiningOrigin.
|
|
20459
|
-
*/
|
|
20460
|
-
details: any;
|
|
20461
|
-
}
|
|
20462
|
-
|
|
20463
|
-
export interface SetInterestGroupTrackingRequest {
|
|
20464
|
-
enable: boolean;
|
|
20465
|
-
}
|
|
20466
|
-
|
|
20467
|
-
export interface SetInterestGroupAuctionTrackingRequest {
|
|
20468
|
-
enable: boolean;
|
|
20469
|
-
}
|
|
20470
|
-
|
|
20471
20417
|
export interface GetSharedStorageMetadataRequest {
|
|
20472
20418
|
ownerOrigin: string;
|
|
20473
20419
|
}
|
|
@@ -20529,12 +20475,6 @@ export namespace Protocol {
|
|
|
20529
20475
|
sets: RelatedWebsiteSet[];
|
|
20530
20476
|
}
|
|
20531
20477
|
|
|
20532
|
-
export interface SetProtectedAudienceKAnonymityRequest {
|
|
20533
|
-
owner: string;
|
|
20534
|
-
name: string;
|
|
20535
|
-
hashes: string[];
|
|
20536
|
-
}
|
|
20537
|
-
|
|
20538
20478
|
/**
|
|
20539
20479
|
* A cache's contents have been modified.
|
|
20540
20480
|
*/
|
|
@@ -20619,66 +20559,6 @@ export namespace Protocol {
|
|
|
20619
20559
|
bucketId: string;
|
|
20620
20560
|
}
|
|
20621
20561
|
|
|
20622
|
-
/**
|
|
20623
|
-
* One of the interest groups was accessed. Note that these events are global
|
|
20624
|
-
* to all targets sharing an interest group store.
|
|
20625
|
-
*/
|
|
20626
|
-
export interface InterestGroupAccessedEvent {
|
|
20627
|
-
accessTime: Network.TimeSinceEpoch;
|
|
20628
|
-
type: InterestGroupAccessType;
|
|
20629
|
-
ownerOrigin: string;
|
|
20630
|
-
name: string;
|
|
20631
|
-
/**
|
|
20632
|
-
* For topLevelBid/topLevelAdditionalBid, and when appropriate,
|
|
20633
|
-
* win and additionalBidWin
|
|
20634
|
-
*/
|
|
20635
|
-
componentSellerOrigin?: string;
|
|
20636
|
-
/**
|
|
20637
|
-
* For bid or somethingBid event, if done locally and not on a server.
|
|
20638
|
-
*/
|
|
20639
|
-
bid?: number;
|
|
20640
|
-
bidCurrency?: string;
|
|
20641
|
-
/**
|
|
20642
|
-
* For non-global events --- links to interestGroupAuctionEvent
|
|
20643
|
-
*/
|
|
20644
|
-
uniqueAuctionId?: InterestGroupAuctionId;
|
|
20645
|
-
}
|
|
20646
|
-
|
|
20647
|
-
/**
|
|
20648
|
-
* An auction involving interest groups is taking place. These events are
|
|
20649
|
-
* target-specific.
|
|
20650
|
-
*/
|
|
20651
|
-
export interface InterestGroupAuctionEventOccurredEvent {
|
|
20652
|
-
eventTime: Network.TimeSinceEpoch;
|
|
20653
|
-
type: InterestGroupAuctionEventType;
|
|
20654
|
-
uniqueAuctionId: InterestGroupAuctionId;
|
|
20655
|
-
/**
|
|
20656
|
-
* Set for child auctions.
|
|
20657
|
-
*/
|
|
20658
|
-
parentAuctionId?: InterestGroupAuctionId;
|
|
20659
|
-
/**
|
|
20660
|
-
* Set for started and configResolved
|
|
20661
|
-
*/
|
|
20662
|
-
auctionConfig?: any;
|
|
20663
|
-
}
|
|
20664
|
-
|
|
20665
|
-
/**
|
|
20666
|
-
* Specifies which auctions a particular network fetch may be related to, and
|
|
20667
|
-
* in what role. Note that it is not ordered with respect to
|
|
20668
|
-
* Network.requestWillBeSent (but will happen before loadingFinished
|
|
20669
|
-
* loadingFailed).
|
|
20670
|
-
*/
|
|
20671
|
-
export interface InterestGroupAuctionNetworkRequestCreatedEvent {
|
|
20672
|
-
type: InterestGroupAuctionFetchType;
|
|
20673
|
-
requestId: Network.RequestId;
|
|
20674
|
-
/**
|
|
20675
|
-
* This is the set of the auctions using the worklet that issued this
|
|
20676
|
-
* request. In the case of trusted signals, it's possible that only some of
|
|
20677
|
-
* them actually care about the keys being queried.
|
|
20678
|
-
*/
|
|
20679
|
-
auctions: InterestGroupAuctionId[];
|
|
20680
|
-
}
|
|
20681
|
-
|
|
20682
20562
|
/**
|
|
20683
20563
|
* Shared storage was accessed by the associated page.
|
|
20684
20564
|
* The following parameters are included in all events.
|