devtools-protocol 0.0.1316850 → 0.0.1317765

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.
@@ -1754,7 +1754,9 @@
1754
1754
  "ClientMetadataNoResponse",
1755
1755
  "ClientMetadataInvalidResponse",
1756
1756
  "ClientMetadataInvalidContentType",
1757
+ "IdpNotPotentiallyTrustworthy",
1757
1758
  "DisabledInSettings",
1759
+ "DisabledInFlags",
1758
1760
  "ErrorFetchingSignin",
1759
1761
  "InvalidSigninResponse",
1760
1762
  "AccountsHttpNotFound",
@@ -1777,6 +1779,7 @@
1777
1779
  "NotSignedInWithIdp",
1778
1780
  "MissingTransientUserActivation",
1779
1781
  "ReplacedByButtonMode",
1782
+ "InvalidFieldsSpecified",
1780
1783
  "RelyingPartyOriginIsOpaque",
1781
1784
  "TypeNotMatching"
1782
1785
  ]
@@ -2711,6 +2714,12 @@
2711
2714
  "optional": true,
2712
2715
  "type": "boolean"
2713
2716
  },
2717
+ {
2718
+ "name": "allowWithoutGesture",
2719
+ "description": "For \"fullscreen\" permission, must specify allowWithoutGesture:true.",
2720
+ "optional": true,
2721
+ "type": "boolean"
2722
+ },
2714
2723
  {
2715
2724
  "name": "panTiltZoom",
2716
2725
  "description": "For \"camera\" permission, may specify panTiltZoom.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1316850",
3
+ "version": "0.0.1317765",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -892,7 +892,9 @@ experimental domain Audits
892
892
  ClientMetadataNoResponse
893
893
  ClientMetadataInvalidResponse
894
894
  ClientMetadataInvalidContentType
895
+ IdpNotPotentiallyTrustworthy
895
896
  DisabledInSettings
897
+ DisabledInFlags
896
898
  ErrorFetchingSignin
897
899
  InvalidSigninResponse
898
900
  AccountsHttpNotFound
@@ -915,6 +917,7 @@ experimental domain Audits
915
917
  NotSignedInWithIdp
916
918
  MissingTransientUserActivation
917
919
  ReplacedByButtonMode
920
+ InvalidFieldsSpecified
918
921
  RelyingPartyOriginIsOpaque
919
922
  TypeNotMatching
920
923
 
@@ -1367,6 +1370,8 @@ domain Browser
1367
1370
  optional boolean userVisibleOnly
1368
1371
  # For "clipboard" permission, may specify allowWithoutSanitization.
1369
1372
  optional boolean allowWithoutSanitization
1373
+ # For "fullscreen" permission, must specify allowWithoutGesture:true.
1374
+ optional boolean allowWithoutGesture
1370
1375
  # For "camera" permission, may specify panTiltZoom.
1371
1376
  optional boolean panTiltZoom
1372
1377
 
@@ -3579,7 +3579,7 @@ export namespace Protocol {
3579
3579
  * third_party/blink/public/mojom/devtools/inspector_issue.mojom to include
3580
3580
  * all cases except for success.
3581
3581
  */
3582
- export type FederatedAuthRequestIssueReason = ('ShouldEmbargo' | 'TooManyRequests' | 'WellKnownHttpNotFound' | 'WellKnownNoResponse' | 'WellKnownInvalidResponse' | 'WellKnownListEmpty' | 'WellKnownInvalidContentType' | 'ConfigNotInWellKnown' | 'WellKnownTooBig' | 'ConfigHttpNotFound' | 'ConfigNoResponse' | 'ConfigInvalidResponse' | 'ConfigInvalidContentType' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'ClientMetadataInvalidContentType' | 'DisabledInSettings' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'AccountsListEmpty' | 'AccountsInvalidContentType' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenIdpErrorResponse' | 'IdTokenCrossSiteIdpErrorResponse' | 'IdTokenInvalidRequest' | 'IdTokenInvalidContentType' | 'ErrorIdToken' | 'Canceled' | 'RpPageNotVisible' | 'SilentMediationFailure' | 'ThirdPartyCookiesBlocked' | 'NotSignedInWithIdp' | 'MissingTransientUserActivation' | 'ReplacedByButtonMode' | 'RelyingPartyOriginIsOpaque' | 'TypeNotMatching');
3582
+ export type FederatedAuthRequestIssueReason = ('ShouldEmbargo' | 'TooManyRequests' | 'WellKnownHttpNotFound' | 'WellKnownNoResponse' | 'WellKnownInvalidResponse' | 'WellKnownListEmpty' | 'WellKnownInvalidContentType' | 'ConfigNotInWellKnown' | 'WellKnownTooBig' | 'ConfigHttpNotFound' | 'ConfigNoResponse' | 'ConfigInvalidResponse' | 'ConfigInvalidContentType' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'ClientMetadataInvalidContentType' | 'IdpNotPotentiallyTrustworthy' | 'DisabledInSettings' | 'DisabledInFlags' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'AccountsListEmpty' | 'AccountsInvalidContentType' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenIdpErrorResponse' | 'IdTokenCrossSiteIdpErrorResponse' | 'IdTokenInvalidRequest' | 'IdTokenInvalidContentType' | 'ErrorIdToken' | 'Canceled' | 'RpPageNotVisible' | 'SilentMediationFailure' | 'ThirdPartyCookiesBlocked' | 'NotSignedInWithIdp' | 'MissingTransientUserActivation' | 'ReplacedByButtonMode' | 'InvalidFieldsSpecified' | 'RelyingPartyOriginIsOpaque' | 'TypeNotMatching');
3583
3583
 
3584
3584
  export interface FederatedAuthUserInfoRequestIssueDetails {
3585
3585
  federatedAuthUserInfoRequestIssueReason: FederatedAuthUserInfoRequestIssueReason;
@@ -4087,6 +4087,10 @@ export namespace Protocol {
4087
4087
  * For "clipboard" permission, may specify allowWithoutSanitization.
4088
4088
  */
4089
4089
  allowWithoutSanitization?: boolean;
4090
+ /**
4091
+ * For "fullscreen" permission, must specify allowWithoutGesture:true.
4092
+ */
4093
+ allowWithoutGesture?: boolean;
4090
4094
  /**
4091
4095
  * For "camera" permission, may specify panTiltZoom.
4092
4096
  */