devtools-protocol 0.0.1133601 → 0.0.1134390

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.
@@ -23138,7 +23138,9 @@
23138
23138
  "CrossSiteRedirectInMainFrameNavigation",
23139
23139
  "CrossSiteNavigationInMainFrameNavigation",
23140
23140
  "SameSiteCrossOriginRedirectNotOptInInMainFrameNavigation",
23141
- "SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation"
23141
+ "SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation",
23142
+ "MemoryPressureOnTrigger",
23143
+ "MemoryPressureAfterTriggered"
23142
23144
  ]
23143
23145
  },
23144
23146
  {
@@ -1294,7 +1294,7 @@
1294
1294
  },
1295
1295
  {
1296
1296
  "name": "executionContextAuxData",
1297
- "description": "Embedder-specific auxiliary data.",
1297
+ "description": "Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}",
1298
1298
  "optional": true,
1299
1299
  "type": "object"
1300
1300
  },
@@ -1398,7 +1398,7 @@
1398
1398
  },
1399
1399
  {
1400
1400
  "name": "executionContextAuxData",
1401
- "description": "Embedder-specific auxiliary data.",
1401
+ "description": "Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}",
1402
1402
  "optional": true,
1403
1403
  "type": "object"
1404
1404
  },
@@ -2668,7 +2668,7 @@
2668
2668
  },
2669
2669
  {
2670
2670
  "name": "auxData",
2671
- "description": "Embedder-specific auxiliary data.",
2671
+ "description": "Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}",
2672
2672
  "optional": true,
2673
2673
  "type": "object"
2674
2674
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1133601",
3
+ "version": "0.0.1134390",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -10950,6 +10950,8 @@ experimental domain Preload
10950
10950
  CrossSiteNavigationInMainFrameNavigation
10951
10951
  SameSiteCrossOriginRedirectNotOptInInMainFrameNavigation
10952
10952
  SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation
10953
+ MemoryPressureOnTrigger
10954
+ MemoryPressureAfterTriggered
10953
10955
 
10954
10956
  # Fired when a prerender attempt is completed.
10955
10957
  event prerenderAttemptCompleted
@@ -632,7 +632,7 @@ domain Debugger
632
632
  Runtime.ExecutionContextId executionContextId
633
633
  # Content hash of the script, SHA-256.
634
634
  string hash
635
- # Embedder-specific auxiliary data.
635
+ # Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
636
636
  optional object executionContextAuxData
637
637
  # URL of source map associated with script (if any).
638
638
  optional string sourceMapURL
@@ -671,7 +671,7 @@ domain Debugger
671
671
  Runtime.ExecutionContextId executionContextId
672
672
  # Content hash of the script, SHA-256.
673
673
  string hash
674
- # Embedder-specific auxiliary data.
674
+ # Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
675
675
  optional object executionContextAuxData
676
676
  # True, if this script is generated as a result of the live edit operation.
677
677
  experimental optional boolean isLiveEdit
@@ -1284,7 +1284,7 @@ domain Runtime
1284
1284
  # multiple processes, so can be reliably used to identify specific context while backend
1285
1285
  # performs a cross-process navigation.
1286
1286
  experimental string uniqueId
1287
- # Embedder-specific auxiliary data.
1287
+ # Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
1288
1288
  optional object auxData
1289
1289
 
1290
1290
  # Detailed information about exception (or error) that was thrown during script compilation or
@@ -912,7 +912,7 @@ export namespace Protocol {
912
912
  */
913
913
  hash: string;
914
914
  /**
915
- * Embedder-specific auxiliary data.
915
+ * Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
916
916
  */
917
917
  executionContextAuxData?: any;
918
918
  /**
@@ -987,7 +987,7 @@ export namespace Protocol {
987
987
  */
988
988
  hash: string;
989
989
  /**
990
- * Embedder-specific auxiliary data.
990
+ * Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
991
991
  */
992
992
  executionContextAuxData?: any;
993
993
  /**
@@ -1900,7 +1900,7 @@ export namespace Protocol {
1900
1900
  */
1901
1901
  uniqueId: string;
1902
1902
  /**
1903
- * Embedder-specific auxiliary data.
1903
+ * Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
1904
1904
  */
1905
1905
  auxData?: any;
1906
1906
  }
@@ -17029,7 +17029,7 @@ export namespace Protocol {
17029
17029
  /**
17030
17030
  * List of FinalStatus reasons for Prerender2.
17031
17031
  */
17032
- 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' | 'CrossSiteRedirectInInitialNavigation' | 'CrossSiteNavigationInInitialNavigation' | 'SameSiteCrossOriginRedirectNotOptInInInitialNavigation' | 'SameSiteCrossOriginNavigationNotOptInInInitialNavigation' | 'ActivationNavigationParameterMismatch' | 'ActivatedInBackground' | 'EmbedderHostDisallowed' | 'ActivationNavigationDestroyedBeforeSuccess' | 'TabClosedByUserGesture' | 'TabClosedWithoutUserGesture' | 'PrimaryMainFrameRendererProcessCrashed' | 'PrimaryMainFrameRendererProcessKilled' | 'ActivationFramePolicyNotCompatible' | 'PreloadingDisabled' | 'BatterySaverEnabled' | 'ActivatedDuringMainFrameNavigation' | 'PreloadingUnsupportedByWebContents' | 'CrossSiteRedirectInMainFrameNavigation' | 'CrossSiteNavigationInMainFrameNavigation' | 'SameSiteCrossOriginRedirectNotOptInInMainFrameNavigation' | 'SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation');
17032
+ 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' | 'CrossSiteRedirectInInitialNavigation' | 'CrossSiteNavigationInInitialNavigation' | 'SameSiteCrossOriginRedirectNotOptInInInitialNavigation' | 'SameSiteCrossOriginNavigationNotOptInInInitialNavigation' | 'ActivationNavigationParameterMismatch' | 'ActivatedInBackground' | 'EmbedderHostDisallowed' | 'ActivationNavigationDestroyedBeforeSuccess' | 'TabClosedByUserGesture' | 'TabClosedWithoutUserGesture' | 'PrimaryMainFrameRendererProcessCrashed' | 'PrimaryMainFrameRendererProcessKilled' | 'ActivationFramePolicyNotCompatible' | 'PreloadingDisabled' | 'BatterySaverEnabled' | 'ActivatedDuringMainFrameNavigation' | 'PreloadingUnsupportedByWebContents' | 'CrossSiteRedirectInMainFrameNavigation' | 'CrossSiteNavigationInMainFrameNavigation' | 'SameSiteCrossOriginRedirectNotOptInInMainFrameNavigation' | 'SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation' | 'MemoryPressureOnTrigger' | 'MemoryPressureAfterTriggered');
17033
17033
 
17034
17034
  export type PreloadEnabledState = ('Enabled' | 'DisabledByDataSaver' | 'DisabledByBatterySaver' | 'DisabledByPreference' | 'NotSupported');
17035
17035