devtools-protocol 0.0.1089613 → 0.0.1092232

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.
@@ -1535,7 +1535,8 @@
1535
1535
  "type": "string",
1536
1536
  "enum": [
1537
1537
  "CrossOriginPortalPostMessageError",
1538
- "FormLabelForNameError"
1538
+ "FormLabelForNameError",
1539
+ "FormDuplicateIdForInputError"
1539
1540
  ]
1540
1541
  },
1541
1542
  {
@@ -1669,6 +1670,7 @@
1669
1670
  "WellKnownHttpNotFound",
1670
1671
  "WellKnownNoResponse",
1671
1672
  "WellKnownInvalidResponse",
1673
+ "WellKnownListEmpty",
1672
1674
  "ConfigNotInWellKnown",
1673
1675
  "WellKnownTooBig",
1674
1676
  "ConfigHttpNotFound",
@@ -1683,6 +1685,7 @@
1683
1685
  "AccountsHttpNotFound",
1684
1686
  "AccountsNoResponse",
1685
1687
  "AccountsInvalidResponse",
1688
+ "AccountsListEmpty",
1686
1689
  "IdTokenHttpNotFound",
1687
1690
  "IdTokenNoResponse",
1688
1691
  "IdTokenInvalidResponse",
@@ -15390,6 +15393,7 @@
15390
15393
  "usb",
15391
15394
  "vertical-scroll",
15392
15395
  "web-share",
15396
+ "window-management",
15393
15397
  "window-placement",
15394
15398
  "xr-spatial-tracking"
15395
15399
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1089613",
3
+ "version": "0.0.1092232",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -744,6 +744,7 @@ experimental domain Audits
744
744
  enum
745
745
  CrossOriginPortalPostMessageError
746
746
  FormLabelForNameError
747
+ FormDuplicateIdForInputError
747
748
 
748
749
  # Depending on the concrete errorType, different properties are set.
749
750
  type GenericIssueDetails extends object
@@ -843,6 +844,7 @@ experimental domain Audits
843
844
  WellKnownHttpNotFound
844
845
  WellKnownNoResponse
845
846
  WellKnownInvalidResponse
847
+ WellKnownListEmpty
846
848
  ConfigNotInWellKnown
847
849
  WellKnownTooBig
848
850
  ConfigHttpNotFound
@@ -857,6 +859,7 @@ experimental domain Audits
857
859
  AccountsHttpNotFound
858
860
  AccountsNoResponse
859
861
  AccountsInvalidResponse
862
+ AccountsListEmpty
860
863
  IdTokenHttpNotFound
861
864
  IdTokenNoResponse
862
865
  IdTokenInvalidResponse
@@ -7234,6 +7237,8 @@ domain Page
7234
7237
  usb
7235
7238
  vertical-scroll
7236
7239
  web-share
7240
+ # Alias for 'window-placement' (crbug.com/1328581).
7241
+ window-management
7237
7242
  window-placement
7238
7243
  xr-spatial-tracking
7239
7244
 
@@ -3442,7 +3442,7 @@ export namespace Protocol {
3442
3442
  location?: SourceCodeLocation;
3443
3443
  }
3444
3444
 
3445
- export type GenericIssueErrorType = ('CrossOriginPortalPostMessageError' | 'FormLabelForNameError');
3445
+ export type GenericIssueErrorType = ('CrossOriginPortalPostMessageError' | 'FormLabelForNameError' | 'FormDuplicateIdForInputError');
3446
3446
 
3447
3447
  /**
3448
3448
  * Depending on the concrete errorType, different properties are set.
@@ -3480,7 +3480,7 @@ export namespace Protocol {
3480
3480
  * third_party/blink/public/mojom/devtools/inspector_issue.mojom to include
3481
3481
  * all cases except for success.
3482
3482
  */
3483
- export type FederatedAuthRequestIssueReason = ('ShouldEmbargo' | 'TooManyRequests' | 'WellKnownHttpNotFound' | 'WellKnownNoResponse' | 'WellKnownInvalidResponse' | 'ConfigNotInWellKnown' | 'WellKnownTooBig' | 'ConfigHttpNotFound' | 'ConfigNoResponse' | 'ConfigInvalidResponse' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'DisabledInSettings' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenInvalidRequest' | 'ErrorIdToken' | 'Canceled' | 'RpPageNotVisible');
3483
+ export type FederatedAuthRequestIssueReason = ('ShouldEmbargo' | 'TooManyRequests' | 'WellKnownHttpNotFound' | 'WellKnownNoResponse' | 'WellKnownInvalidResponse' | 'WellKnownListEmpty' | 'ConfigNotInWellKnown' | 'WellKnownTooBig' | 'ConfigHttpNotFound' | 'ConfigNoResponse' | 'ConfigInvalidResponse' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'DisabledInSettings' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'AccountsListEmpty' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenInvalidRequest' | 'ErrorIdToken' | 'Canceled' | 'RpPageNotVisible');
3484
3484
 
3485
3485
  /**
3486
3486
  * This issue tracks client hints related issues. It's used to deprecate old
@@ -12339,7 +12339,7 @@ export namespace Protocol {
12339
12339
  * All Permissions Policy features. This enum should match the one defined
12340
12340
  * in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
12341
12341
  */
12342
- export type PermissionsPolicyFeature = ('accelerometer' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-full' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-reduced' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'compute-pressure' | 'cross-origin-isolated' | 'direct-sockets' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'identity-credentials-get' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'local-fonts' | 'magnetometer' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'private-aggregation' | 'publickey-credentials-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'storage-access' | 'sync-xhr' | 'trust-token-redemption' | 'unload' | 'usb' | 'vertical-scroll' | 'web-share' | 'window-placement' | 'xr-spatial-tracking');
12342
+ export type PermissionsPolicyFeature = ('accelerometer' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-full' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-reduced' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'compute-pressure' | 'cross-origin-isolated' | 'direct-sockets' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'identity-credentials-get' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'local-fonts' | 'magnetometer' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'private-aggregation' | 'publickey-credentials-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'storage-access' | 'sync-xhr' | 'trust-token-redemption' | 'unload' | 'usb' | 'vertical-scroll' | 'web-share' | 'window-management' | 'window-placement' | 'xr-spatial-tracking');
12343
12343
 
12344
12344
  /**
12345
12345
  * Reason for a permissions policy feature to be disabled.