devtools-protocol 0.0.1001785 → 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.
@@ -16080,7 +16080,39 @@
16080
16080
  "description": "List of FinalStatus reasons for Prerender2.",
16081
16081
  "type": "string",
16082
16082
  "enum": [
16083
- "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"
16084
16116
  ]
16085
16117
  }
16086
16118
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1001785",
3
+ "version": "0.0.1001819",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -8319,6 +8319,38 @@ domain Page
8319
8319
  type PrerenderFinalStatus extends string
8320
8320
  enum
8321
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
8322
8354
 
8323
8355
  # Fired when a prerender attempt is completed.
8324
8356
  event prerenderAttemptCompleted
@@ -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;