devtools-protocol 0.0.1001754 → 0.0.1002782

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.
@@ -1441,7 +1441,8 @@
1441
1441
  "enum": [
1442
1442
  "PermissionPolicyDisabled",
1443
1443
  "AttributionSourceUntrustworthyOrigin",
1444
- "AttributionUntrustworthyOrigin"
1444
+ "AttributionUntrustworthyOrigin",
1445
+ "InvalidHeader"
1445
1446
  ]
1446
1447
  },
1447
1448
  {
@@ -16079,7 +16080,39 @@
16079
16080
  "description": "List of FinalStatus reasons for Prerender2.",
16080
16081
  "type": "string",
16081
16082
  "enum": [
16082
- "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"
16083
16116
  ]
16084
16117
  }
16085
16118
  ],
@@ -21459,7 +21492,15 @@
21459
21492
  "commands": [
21460
21493
  {
21461
21494
  "name": "enable",
21462
- "description": "Enable the WebAuthn domain and start intercepting credential storage and\nretrieval with a virtual authenticator."
21495
+ "description": "Enable the WebAuthn domain and start intercepting credential storage and\nretrieval with a virtual authenticator.",
21496
+ "parameters": [
21497
+ {
21498
+ "name": "enableUI",
21499
+ "description": "Whether to enable the WebAuthn user interface. Enabling the UI is\nrecommended for debugging and demo purposes, as it is closer to the real\nexperience. Disabling the UI is recommended for automated testing.\nSupported at the embedder's discretion if UI is available.\nDefaults to false.",
21500
+ "optional": true,
21501
+ "type": "boolean"
21502
+ }
21503
+ ]
21463
21504
  },
21464
21505
  {
21465
21506
  "name": "disable",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1001754",
3
+ "version": "0.0.1002782",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -699,6 +699,7 @@ experimental domain Audits
699
699
  PermissionPolicyDisabled
700
700
  AttributionSourceUntrustworthyOrigin
701
701
  AttributionUntrustworthyOrigin
702
+ InvalidHeader
702
703
 
703
704
  # Details for issues around "Attribution Reporting API" usage.
704
705
  # Explainer: https://github.com/WICG/conversion-measurement-api
@@ -8318,6 +8319,38 @@ domain Page
8318
8319
  type PrerenderFinalStatus extends string
8319
8320
  enum
8320
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
8321
8354
 
8322
8355
  # Fired when a prerender attempt is completed.
8323
8356
  event prerenderAttemptCompleted
@@ -10087,6 +10120,13 @@ experimental domain WebAuthn
10087
10120
  # Enable the WebAuthn domain and start intercepting credential storage and
10088
10121
  # retrieval with a virtual authenticator.
10089
10122
  command enable
10123
+ parameters
10124
+ # Whether to enable the WebAuthn user interface. Enabling the UI is
10125
+ # recommended for debugging and demo purposes, as it is closer to the real
10126
+ # experience. Disabling the UI is recommended for automated testing.
10127
+ # Supported at the embedder's discretion if UI is available.
10128
+ # Defaults to false.
10129
+ optional boolean enableUI
10090
10130
 
10091
10131
  # Disable the WebAuthn domain.
10092
10132
  command disable
@@ -4339,7 +4339,7 @@ export namespace ProtocolMapping {
4339
4339
  * retrieval with a virtual authenticator.
4340
4340
  */
4341
4341
  'WebAuthn.enable': {
4342
- paramsType: [];
4342
+ paramsType: [Protocol.WebAuthn.EnableRequest?];
4343
4343
  returnType: void;
4344
4344
  };
4345
4345
  /**
@@ -3677,7 +3677,7 @@ export namespace ProtocolProxyApi {
3677
3677
  * Enable the WebAuthn domain and start intercepting credential storage and
3678
3678
  * retrieval with a virtual authenticator.
3679
3679
  */
3680
- enable(): Promise<void>;
3680
+ enable(params: Protocol.WebAuthn.EnableRequest): Promise<void>;
3681
3681
 
3682
3682
  /**
3683
3683
  * Disable the WebAuthn domain.
@@ -3330,7 +3330,7 @@ export namespace Protocol {
3330
3330
  clientSecurityState?: Network.ClientSecurityState;
3331
3331
  }
3332
3332
 
3333
- export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'AttributionSourceUntrustworthyOrigin' | 'AttributionUntrustworthyOrigin');
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;
@@ -15995,6 +15995,17 @@ export namespace Protocol {
15995
15995
  largeBlob?: string;
15996
15996
  }
15997
15997
 
15998
+ export interface EnableRequest {
15999
+ /**
16000
+ * Whether to enable the WebAuthn user interface. Enabling the UI is
16001
+ * recommended for debugging and demo purposes, as it is closer to the real
16002
+ * experience. Disabling the UI is recommended for automated testing.
16003
+ * Supported at the embedder's discretion if UI is available.
16004
+ * Defaults to false.
16005
+ */
16006
+ enableUI?: boolean;
16007
+ }
16008
+
15998
16009
  export interface AddVirtualAuthenticatorRequest {
15999
16010
  options: VirtualAuthenticatorOptions;
16000
16011
  }