devtools-protocol 0.0.1001033 → 0.0.1001819
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 +34 -4
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +33 -3
- package/types/protocol.d.ts +2 -2
@@ -1440,11 +1440,9 @@
|
|
1440
1440
|
"type": "string",
|
1441
1441
|
"enum": [
|
1442
1442
|
"PermissionPolicyDisabled",
|
1443
|
-
"InvalidAttributionSourceEventId",
|
1444
1443
|
"AttributionSourceUntrustworthyOrigin",
|
1445
1444
|
"AttributionUntrustworthyOrigin",
|
1446
|
-
"
|
1447
|
-
"InvalidAttributionSourcePriority"
|
1445
|
+
"InvalidHeader"
|
1448
1446
|
]
|
1449
1447
|
},
|
1450
1448
|
{
|
@@ -16082,7 +16080,39 @@
|
|
16082
16080
|
"description": "List of FinalStatus reasons for Prerender2.",
|
16083
16081
|
"type": "string",
|
16084
16082
|
"enum": [
|
16085
|
-
"Activated"
|
16083
|
+
"Activated",
|
16084
|
+
"Destroyed",
|
16085
|
+
"LowEndDevice",
|
16086
|
+
"CrossOriginRedirect",
|
16087
|
+
"CrossOriginNavigation",
|
16088
|
+
"InvalidSchemeRedirect",
|
16089
|
+
"InvalidSchemeNavigation",
|
16090
|
+
"InProgressNavigation",
|
16091
|
+
"NavigationRequestBlockedByCsp",
|
16092
|
+
"MainFrameNavigation",
|
16093
|
+
"MojoBinderPolicy",
|
16094
|
+
"RendererProcessCrashed",
|
16095
|
+
"RendererProcessKilled",
|
16096
|
+
"Download",
|
16097
|
+
"TriggerDestroyed",
|
16098
|
+
"NavigationNotCommitted",
|
16099
|
+
"NavigationBadHttpStatus",
|
16100
|
+
"ClientCertRequested",
|
16101
|
+
"NavigationRequestNetworkError",
|
16102
|
+
"MaxNumOfRunningPrerendersExceeded",
|
16103
|
+
"CancelAllHostsForTesting",
|
16104
|
+
"DidFailLoad",
|
16105
|
+
"Stop",
|
16106
|
+
"SslCertificateError",
|
16107
|
+
"LoginAuthRequested",
|
16108
|
+
"UaChangeRequiresReload",
|
16109
|
+
"BlockedByClient",
|
16110
|
+
"AudioOutputDeviceRequested",
|
16111
|
+
"MixedContent",
|
16112
|
+
"TriggerBackgrounded",
|
16113
|
+
"EmbedderTriggeredAndSameOriginRedirected",
|
16114
|
+
"EmbedderTriggeredAndCrossOriginRedirected",
|
16115
|
+
"EmbedderTriggeredAndDestroyed"
|
16086
16116
|
]
|
16087
16117
|
}
|
16088
16118
|
],
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -697,11 +697,9 @@ experimental domain Audits
|
|
697
697
|
type AttributionReportingIssueType extends string
|
698
698
|
enum
|
699
699
|
PermissionPolicyDisabled
|
700
|
-
InvalidAttributionSourceEventId
|
701
700
|
AttributionSourceUntrustworthyOrigin
|
702
701
|
AttributionUntrustworthyOrigin
|
703
|
-
|
704
|
-
InvalidAttributionSourcePriority
|
702
|
+
InvalidHeader
|
705
703
|
|
706
704
|
# Details for issues around "Attribution Reporting API" usage.
|
707
705
|
# Explainer: https://github.com/WICG/conversion-measurement-api
|
@@ -8321,6 +8319,38 @@ domain Page
|
|
8321
8319
|
type PrerenderFinalStatus extends string
|
8322
8320
|
enum
|
8323
8321
|
Activated
|
8322
|
+
Destroyed
|
8323
|
+
LowEndDevice
|
8324
|
+
CrossOriginRedirect
|
8325
|
+
CrossOriginNavigation
|
8326
|
+
InvalidSchemeRedirect
|
8327
|
+
InvalidSchemeNavigation
|
8328
|
+
InProgressNavigation
|
8329
|
+
NavigationRequestBlockedByCsp
|
8330
|
+
MainFrameNavigation
|
8331
|
+
MojoBinderPolicy
|
8332
|
+
RendererProcessCrashed
|
8333
|
+
RendererProcessKilled
|
8334
|
+
Download
|
8335
|
+
TriggerDestroyed
|
8336
|
+
NavigationNotCommitted
|
8337
|
+
NavigationBadHttpStatus
|
8338
|
+
ClientCertRequested
|
8339
|
+
NavigationRequestNetworkError
|
8340
|
+
MaxNumOfRunningPrerendersExceeded
|
8341
|
+
CancelAllHostsForTesting
|
8342
|
+
DidFailLoad
|
8343
|
+
Stop
|
8344
|
+
SslCertificateError
|
8345
|
+
LoginAuthRequested
|
8346
|
+
UaChangeRequiresReload
|
8347
|
+
BlockedByClient
|
8348
|
+
AudioOutputDeviceRequested
|
8349
|
+
MixedContent
|
8350
|
+
TriggerBackgrounded
|
8351
|
+
EmbedderTriggeredAndSameOriginRedirected
|
8352
|
+
EmbedderTriggeredAndCrossOriginRedirected
|
8353
|
+
EmbedderTriggeredAndDestroyed
|
8324
8354
|
|
8325
8355
|
# Fired when a prerender attempt is completed.
|
8326
8356
|
event prerenderAttemptCompleted
|
package/types/protocol.d.ts
CHANGED
@@ -3330,7 +3330,7 @@ export namespace Protocol {
|
|
3330
3330
|
clientSecurityState?: Network.ClientSecurityState;
|
3331
3331
|
}
|
3332
3332
|
|
3333
|
-
export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | '
|
3333
|
+
export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'AttributionSourceUntrustworthyOrigin' | 'AttributionUntrustworthyOrigin' | 'InvalidHeader');
|
3334
3334
|
|
3335
3335
|
/**
|
3336
3336
|
* Details for issues around "Attribution Reporting API" usage.
|
@@ -12627,7 +12627,7 @@ export namespace Protocol {
|
|
12627
12627
|
/**
|
12628
12628
|
* List of FinalStatus reasons for Prerender2.
|
12629
12629
|
*/
|
12630
|
-
export type PrerenderFinalStatus = ('Activated');
|
12630
|
+
export type PrerenderFinalStatus = ('Activated' | 'Destroyed' | 'LowEndDevice' | 'CrossOriginRedirect' | 'CrossOriginNavigation' | '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' | 'EmbedderTriggeredAndSameOriginRedirected' | 'EmbedderTriggeredAndCrossOriginRedirected' | 'EmbedderTriggeredAndDestroyed');
|
12631
12631
|
|
12632
12632
|
export interface AddScriptToEvaluateOnLoadRequest {
|
12633
12633
|
scriptSource: string;
|