devtools-protocol 0.0.977795 → 0.0.979918
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.
@@ -1567,13 +1567,15 @@
|
|
1567
1567
|
},
|
1568
1568
|
{
|
1569
1569
|
"name": "message",
|
1570
|
-
"description": "The content of
|
1570
|
+
"description": "The content of an untranslated deprecation issue,\ne.g. \"window.inefficientLegacyStorageMethod will be removed in M97,\naround January 2022. Please use Web Storage or Indexed Database\ninstead. This standard was abandoned in January, 1970. See\nhttps://www.chromestatus.com/feature/5684870116278272 for more details.\"",
|
1571
1571
|
"deprecated": true,
|
1572
1572
|
"optional": true,
|
1573
1573
|
"type": "string"
|
1574
1574
|
},
|
1575
1575
|
{
|
1576
1576
|
"name": "deprecationType",
|
1577
|
+
"description": "The id of an untranslated deprecation issue e.g. PrefixedStorageInfo.",
|
1578
|
+
"deprecated": true,
|
1577
1579
|
"type": "string"
|
1578
1580
|
}
|
1579
1581
|
]
|
@@ -1610,6 +1612,7 @@
|
|
1610
1612
|
"ClientMetadataNoResponse",
|
1611
1613
|
"ClientMetadataInvalidResponse",
|
1612
1614
|
"ClientMetadataMissingPrivacyPolicyUrl",
|
1615
|
+
"DisabledInSettings",
|
1613
1616
|
"ErrorFetchingSignin",
|
1614
1617
|
"InvalidSigninResponse",
|
1615
1618
|
"AccountsHttpNotFound",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -756,13 +756,14 @@ experimental domain Audits
|
|
756
756
|
properties
|
757
757
|
optional AffectedFrame affectedFrame
|
758
758
|
SourceCodeLocation sourceCodeLocation
|
759
|
-
# The content of
|
759
|
+
# The content of an untranslated deprecation issue,
|
760
760
|
# e.g. "window.inefficientLegacyStorageMethod will be removed in M97,
|
761
761
|
# around January 2022. Please use Web Storage or Indexed Database
|
762
762
|
# instead. This standard was abandoned in January, 1970. See
|
763
763
|
# https://www.chromestatus.com/feature/5684870116278272 for more details."
|
764
764
|
deprecated optional string message
|
765
|
-
|
765
|
+
# The id of an untranslated deprecation issue e.g. PrefixedStorageInfo.
|
766
|
+
deprecated string deprecationType
|
766
767
|
|
767
768
|
type ClientHintIssueReason extends string
|
768
769
|
enum
|
@@ -792,6 +793,7 @@ experimental domain Audits
|
|
792
793
|
ClientMetadataNoResponse
|
793
794
|
ClientMetadataInvalidResponse
|
794
795
|
ClientMetadataMissingPrivacyPolicyUrl
|
796
|
+
DisabledInSettings
|
795
797
|
ErrorFetchingSignin
|
796
798
|
InvalidSigninResponse
|
797
799
|
AccountsHttpNotFound
|
package/types/protocol.d.ts
CHANGED
@@ -3316,13 +3316,16 @@ export namespace Protocol {
|
|
3316
3316
|
affectedFrame?: AffectedFrame;
|
3317
3317
|
sourceCodeLocation: SourceCodeLocation;
|
3318
3318
|
/**
|
3319
|
-
* The content of
|
3319
|
+
* The content of an untranslated deprecation issue,
|
3320
3320
|
* e.g. "window.inefficientLegacyStorageMethod will be removed in M97,
|
3321
3321
|
* around January 2022. Please use Web Storage or Indexed Database
|
3322
3322
|
* instead. This standard was abandoned in January, 1970. See
|
3323
3323
|
* https://www.chromestatus.com/feature/5684870116278272 for more details."
|
3324
3324
|
*/
|
3325
3325
|
message?: string;
|
3326
|
+
/**
|
3327
|
+
* The id of an untranslated deprecation issue e.g. PrefixedStorageInfo.
|
3328
|
+
*/
|
3326
3329
|
deprecationType: string;
|
3327
3330
|
}
|
3328
3331
|
|
@@ -3338,7 +3341,7 @@ export namespace Protocol {
|
|
3338
3341
|
* third_party/blink/public/mojom/devtools/inspector_issue.mojom to include
|
3339
3342
|
* all cases except for success.
|
3340
3343
|
*/
|
3341
|
-
export type FederatedAuthRequestIssueReason = ('ApprovalDeclined' | 'TooManyRequests' | 'ManifestHttpNotFound' | 'ManifestNoResponse' | 'ManifestInvalidResponse' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'ClientMetadataMissingPrivacyPolicyUrl' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenInvalidRequest' | 'ErrorIdToken' | 'Canceled');
|
3344
|
+
export type FederatedAuthRequestIssueReason = ('ApprovalDeclined' | 'TooManyRequests' | 'ManifestHttpNotFound' | 'ManifestNoResponse' | 'ManifestInvalidResponse' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'ClientMetadataMissingPrivacyPolicyUrl' | 'DisabledInSettings' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenInvalidRequest' | 'ErrorIdToken' | 'Canceled');
|
3342
3345
|
|
3343
3346
|
/**
|
3344
3347
|
* This issue tracks client hints related issues. It's used to deprecate old
|