devtools-protocol 0.0.1093722 → 0.0.1094867

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.
@@ -11388,12 +11388,12 @@
11388
11388
  "type": "object",
11389
11389
  "properties": [
11390
11390
  {
11391
- "name": "type",
11391
+ "name": "operation",
11392
11392
  "$ref": "TrustTokenOperationType"
11393
11393
  },
11394
11394
  {
11395
11395
  "name": "refreshPolicy",
11396
- "description": "Only set for \"token-redemption\" type and determine whether\nto request a fresh SRR or use a still valid cached SRR.",
11396
+ "description": "Only set for \"token-redemption\" operation and determine whether\nto request a fresh SRR or use a still valid cached SRR.",
11397
11397
  "type": "string",
11398
11398
  "enum": [
11399
11399
  "UseCached",
@@ -16457,7 +16457,10 @@
16457
16457
  "EmbedderHostDisallowed",
16458
16458
  "ActivationNavigationDestroyedBeforeSuccess",
16459
16459
  "TabClosedByUserGesture",
16460
- "TabClosedWithoutUserGesture"
16460
+ "TabClosedWithoutUserGesture",
16461
+ "PrimaryMainFrameRendererProcessCrashed",
16462
+ "PrimaryMainFrameRendererProcessKilled",
16463
+ "ActivationFramePolicyNotCompatible"
16461
16464
  ]
16462
16465
  }
16463
16466
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1093722",
3
+ "version": "0.0.1094867",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -5271,9 +5271,9 @@ domain Network
5271
5271
  # are specified in third_party/blink/renderer/core/fetch/trust_token.idl.
5272
5272
  experimental type TrustTokenParams extends object
5273
5273
  properties
5274
- TrustTokenOperationType type
5274
+ TrustTokenOperationType operation
5275
5275
 
5276
- # Only set for "token-redemption" type and determine whether
5276
+ # Only set for "token-redemption" operation and determine whether
5277
5277
  # to request a fresh SRR or use a still valid cached SRR.
5278
5278
  enum refreshPolicy
5279
5279
  UseCached
@@ -8569,6 +8569,9 @@ domain Page
8569
8569
  ActivationNavigationDestroyedBeforeSuccess
8570
8570
  TabClosedByUserGesture
8571
8571
  TabClosedWithoutUserGesture
8572
+ PrimaryMainFrameRendererProcessCrashed
8573
+ PrimaryMainFrameRendererProcessKilled
8574
+ ActivationFramePolicyNotCompatible
8572
8575
 
8573
8576
  # Fired when a prerender attempt is completed.
8574
8577
  experimental event prerenderAttemptCompleted
@@ -9712,9 +9712,9 @@ export namespace Protocol {
9712
9712
  * are specified in third_party/blink/renderer/core/fetch/trust_token.idl.
9713
9713
  */
9714
9714
  export interface TrustTokenParams {
9715
- type: TrustTokenOperationType;
9715
+ operation: TrustTokenOperationType;
9716
9716
  /**
9717
- * Only set for "token-redemption" type and determine whether
9717
+ * Only set for "token-redemption" operation and determine whether
9718
9718
  * to request a fresh SRR or use a still valid cached SRR. (TrustTokenParamsRefreshPolicy enum)
9719
9719
  */
9720
9720
  refreshPolicy: ('UseCached' | 'Refresh');
@@ -12886,7 +12886,7 @@ export namespace Protocol {
12886
12886
  /**
12887
12887
  * List of FinalStatus reasons for Prerender2.
12888
12888
  */
12889
- 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' | 'EmbedderTriggeredAndCrossOriginRedirected' | 'MemoryLimitExceeded' | 'FailToGetMemoryUsage' | 'DataSaverEnabled' | 'HasEffectiveUrl' | 'ActivatedBeforeStarted' | 'InactivePageRestriction' | 'StartFailed' | 'TimeoutBackgrounded' | 'CrossSiteRedirect' | 'CrossSiteNavigation' | 'SameSiteCrossOriginRedirect' | 'SameSiteCrossOriginNavigation' | 'SameSiteCrossOriginRedirectNotOptIn' | 'SameSiteCrossOriginNavigationNotOptIn' | 'ActivationNavigationParameterMismatch' | 'ActivatedInBackground' | 'EmbedderHostDisallowed' | 'ActivationNavigationDestroyedBeforeSuccess' | 'TabClosedByUserGesture' | 'TabClosedWithoutUserGesture');
12889
+ 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' | 'EmbedderTriggeredAndCrossOriginRedirected' | 'MemoryLimitExceeded' | 'FailToGetMemoryUsage' | 'DataSaverEnabled' | 'HasEffectiveUrl' | 'ActivatedBeforeStarted' | 'InactivePageRestriction' | 'StartFailed' | 'TimeoutBackgrounded' | 'CrossSiteRedirect' | 'CrossSiteNavigation' | 'SameSiteCrossOriginRedirect' | 'SameSiteCrossOriginNavigation' | 'SameSiteCrossOriginRedirectNotOptIn' | 'SameSiteCrossOriginNavigationNotOptIn' | 'ActivationNavigationParameterMismatch' | 'ActivatedInBackground' | 'EmbedderHostDisallowed' | 'ActivationNavigationDestroyedBeforeSuccess' | 'TabClosedByUserGesture' | 'TabClosedWithoutUserGesture' | 'PrimaryMainFrameRendererProcessCrashed' | 'PrimaryMainFrameRendererProcessKilled' | 'ActivationFramePolicyNotCompatible');
12890
12890
 
12891
12891
  export interface AddScriptToEvaluateOnLoadRequest {
12892
12892
  scriptSource: string;