devtools-protocol 0.0.1188743 → 0.0.1193409
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 +26 -2
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +9 -3
- package/types/protocol.d.ts +14 -1
@@ -20108,6 +20108,26 @@
|
|
20108
20108
|
}
|
20109
20109
|
]
|
20110
20110
|
},
|
20111
|
+
{
|
20112
|
+
"id": "AttributionReportingEventReportWindows",
|
20113
|
+
"experimental": true,
|
20114
|
+
"type": "object",
|
20115
|
+
"properties": [
|
20116
|
+
{
|
20117
|
+
"name": "start",
|
20118
|
+
"description": "duration in seconds",
|
20119
|
+
"type": "integer"
|
20120
|
+
},
|
20121
|
+
{
|
20122
|
+
"name": "ends",
|
20123
|
+
"description": "duration in seconds",
|
20124
|
+
"type": "array",
|
20125
|
+
"items": {
|
20126
|
+
"type": "integer"
|
20127
|
+
}
|
20128
|
+
}
|
20129
|
+
]
|
20130
|
+
},
|
20111
20131
|
{
|
20112
20132
|
"id": "AttributionReportingSourceRegistration",
|
20113
20133
|
"experimental": true,
|
@@ -20125,10 +20145,15 @@
|
|
20125
20145
|
},
|
20126
20146
|
{
|
20127
20147
|
"name": "eventReportWindow",
|
20128
|
-
"description": "
|
20148
|
+
"description": "eventReportWindow and eventReportWindows are mutually exclusive\nduration in seconds",
|
20129
20149
|
"optional": true,
|
20130
20150
|
"type": "integer"
|
20131
20151
|
},
|
20152
|
+
{
|
20153
|
+
"name": "eventReportWindows",
|
20154
|
+
"optional": true,
|
20155
|
+
"$ref": "AttributionReportingEventReportWindows"
|
20156
|
+
},
|
20132
20157
|
{
|
20133
20158
|
"name": "aggregatableReportWindow",
|
20134
20159
|
"description": "duration in seconds",
|
@@ -23898,7 +23923,6 @@
|
|
23898
23923
|
"MixedContent",
|
23899
23924
|
"TriggerBackgrounded",
|
23900
23925
|
"MemoryLimitExceeded",
|
23901
|
-
"FailToGetMemoryUsage",
|
23902
23926
|
"DataSaverEnabled",
|
23903
23927
|
"HasEffectiveUrl",
|
23904
23928
|
"ActivatedBeforeStarted",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -9770,13 +9770,22 @@ experimental domain Storage
|
|
9770
9770
|
string key
|
9771
9771
|
UnsignedInt128AsBase16 value
|
9772
9772
|
|
9773
|
+
experimental type AttributionReportingEventReportWindows extends object
|
9774
|
+
properties
|
9775
|
+
# duration in seconds
|
9776
|
+
integer start
|
9777
|
+
# duration in seconds
|
9778
|
+
array of integer ends
|
9779
|
+
|
9773
9780
|
experimental type AttributionReportingSourceRegistration extends object
|
9774
9781
|
properties
|
9775
9782
|
Network.TimeSinceEpoch time
|
9776
9783
|
# duration in seconds
|
9777
9784
|
optional integer expiry
|
9785
|
+
# eventReportWindow and eventReportWindows are mutually exclusive
|
9778
9786
|
# duration in seconds
|
9779
9787
|
optional integer eventReportWindow
|
9788
|
+
optional AttributionReportingEventReportWindows eventReportWindows
|
9780
9789
|
# duration in seconds
|
9781
9790
|
optional integer aggregatableReportWindow
|
9782
9791
|
AttributionReportingSourceType type
|
@@ -11299,9 +11308,6 @@ experimental domain Preload
|
|
11299
11308
|
MixedContent
|
11300
11309
|
TriggerBackgrounded
|
11301
11310
|
MemoryLimitExceeded
|
11302
|
-
# Prerenders can be cancelled when Chrome uses excessive memory. This is
|
11303
|
-
# recorded when it fails to get the memory usage.
|
11304
|
-
FailToGetMemoryUsage
|
11305
11311
|
DataSaverEnabled
|
11306
11312
|
HasEffectiveUrl
|
11307
11313
|
ActivatedBeforeStarted
|
package/types/protocol.d.ts
CHANGED
@@ -15167,6 +15167,17 @@ export namespace Protocol {
|
|
15167
15167
|
value: UnsignedInt128AsBase16;
|
15168
15168
|
}
|
15169
15169
|
|
15170
|
+
export interface AttributionReportingEventReportWindows {
|
15171
|
+
/**
|
15172
|
+
* duration in seconds
|
15173
|
+
*/
|
15174
|
+
start: integer;
|
15175
|
+
/**
|
15176
|
+
* duration in seconds
|
15177
|
+
*/
|
15178
|
+
ends: integer[];
|
15179
|
+
}
|
15180
|
+
|
15170
15181
|
export interface AttributionReportingSourceRegistration {
|
15171
15182
|
time: Network.TimeSinceEpoch;
|
15172
15183
|
/**
|
@@ -15174,9 +15185,11 @@ export namespace Protocol {
|
|
15174
15185
|
*/
|
15175
15186
|
expiry?: integer;
|
15176
15187
|
/**
|
15188
|
+
* eventReportWindow and eventReportWindows are mutually exclusive
|
15177
15189
|
* duration in seconds
|
15178
15190
|
*/
|
15179
15191
|
eventReportWindow?: integer;
|
15192
|
+
eventReportWindows?: AttributionReportingEventReportWindows;
|
15180
15193
|
/**
|
15181
15194
|
* duration in seconds
|
15182
15195
|
*/
|
@@ -17492,7 +17505,7 @@ export namespace Protocol {
|
|
17492
17505
|
/**
|
17493
17506
|
* List of FinalStatus reasons for Prerender2.
|
17494
17507
|
*/
|
17495
|
-
export type PrerenderFinalStatus = ('Activated' | 'Destroyed' | 'LowEndDevice' | 'InvalidSchemeRedirect' | 'InvalidSchemeNavigation' | 'InProgressNavigation' | 'NavigationRequestBlockedByCsp' | 'MainFrameNavigation' | 'MojoBinderPolicy' | 'RendererProcessCrashed' | 'RendererProcessKilled' | 'Download' | 'TriggerDestroyed' | 'NavigationNotCommitted' | 'NavigationBadHttpStatus' | 'ClientCertRequested' | 'NavigationRequestNetworkError' | 'MaxNumOfRunningPrerendersExceeded' | 'CancelAllHostsForTesting' | 'DidFailLoad' | 'Stop' | 'SslCertificateError' | 'LoginAuthRequested' | 'UaChangeRequiresReload' | 'BlockedByClient' | 'AudioOutputDeviceRequested' | 'MixedContent' | 'TriggerBackgrounded' | 'MemoryLimitExceeded' | '
|
17508
|
+
export type PrerenderFinalStatus = ('Activated' | 'Destroyed' | 'LowEndDevice' | 'InvalidSchemeRedirect' | 'InvalidSchemeNavigation' | 'InProgressNavigation' | 'NavigationRequestBlockedByCsp' | 'MainFrameNavigation' | 'MojoBinderPolicy' | 'RendererProcessCrashed' | 'RendererProcessKilled' | 'Download' | 'TriggerDestroyed' | 'NavigationNotCommitted' | 'NavigationBadHttpStatus' | 'ClientCertRequested' | 'NavigationRequestNetworkError' | 'MaxNumOfRunningPrerendersExceeded' | 'CancelAllHostsForTesting' | 'DidFailLoad' | 'Stop' | 'SslCertificateError' | 'LoginAuthRequested' | 'UaChangeRequiresReload' | 'BlockedByClient' | 'AudioOutputDeviceRequested' | 'MixedContent' | 'TriggerBackgrounded' | 'MemoryLimitExceeded' | 'DataSaverEnabled' | 'HasEffectiveUrl' | 'ActivatedBeforeStarted' | 'InactivePageRestriction' | 'StartFailed' | 'TimeoutBackgrounded' | 'CrossSiteRedirectInInitialNavigation' | 'CrossSiteNavigationInInitialNavigation' | 'SameSiteCrossOriginRedirectNotOptInInInitialNavigation' | 'SameSiteCrossOriginNavigationNotOptInInInitialNavigation' | 'ActivationNavigationParameterMismatch' | 'ActivatedInBackground' | 'EmbedderHostDisallowed' | 'ActivationNavigationDestroyedBeforeSuccess' | 'TabClosedByUserGesture' | 'TabClosedWithoutUserGesture' | 'PrimaryMainFrameRendererProcessCrashed' | 'PrimaryMainFrameRendererProcessKilled' | 'ActivationFramePolicyNotCompatible' | 'PreloadingDisabled' | 'BatterySaverEnabled' | 'ActivatedDuringMainFrameNavigation' | 'PreloadingUnsupportedByWebContents' | 'CrossSiteRedirectInMainFrameNavigation' | 'CrossSiteNavigationInMainFrameNavigation' | 'SameSiteCrossOriginRedirectNotOptInInMainFrameNavigation' | 'SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation' | 'MemoryPressureOnTrigger' | 'MemoryPressureAfterTriggered' | 'PrerenderingDisabledByDevTools' | 'ResourceLoadBlockedByClient' | 'SpeculationRuleRemoved' | 'ActivatedWithAuxiliaryBrowsingContexts');
|
17496
17509
|
|
17497
17510
|
/**
|
17498
17511
|
* Preloading status values, see also PreloadingTriggeringOutcome. This
|