devtools-protocol 0.0.1089107 → 0.0.1090008
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.
@@ -1669,6 +1669,7 @@
|
|
1669
1669
|
"WellKnownHttpNotFound",
|
1670
1670
|
"WellKnownNoResponse",
|
1671
1671
|
"WellKnownInvalidResponse",
|
1672
|
+
"WellKnownListEmpty",
|
1672
1673
|
"ConfigNotInWellKnown",
|
1673
1674
|
"WellKnownTooBig",
|
1674
1675
|
"ConfigHttpNotFound",
|
@@ -1683,6 +1684,7 @@
|
|
1683
1684
|
"AccountsHttpNotFound",
|
1684
1685
|
"AccountsNoResponse",
|
1685
1686
|
"AccountsInvalidResponse",
|
1687
|
+
"AccountsListEmpty",
|
1686
1688
|
"IdTokenHttpNotFound",
|
1687
1689
|
"IdTokenNoResponse",
|
1688
1690
|
"IdTokenInvalidResponse",
|
package/json/js_protocol.json
CHANGED
@@ -3614,7 +3614,14 @@
|
|
3614
3614
|
{
|
3615
3615
|
"name": "executionContextId",
|
3616
3616
|
"description": "Id of the destroyed context",
|
3617
|
+
"deprecated": true,
|
3617
3618
|
"$ref": "ExecutionContextId"
|
3619
|
+
},
|
3620
|
+
{
|
3621
|
+
"name": "executionContextUniqueId",
|
3622
|
+
"description": "Unique Id of the destroyed context",
|
3623
|
+
"experimental": true,
|
3624
|
+
"type": "string"
|
3618
3625
|
}
|
3619
3626
|
]
|
3620
3627
|
},
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -843,6 +843,7 @@ experimental domain Audits
|
|
843
843
|
WellKnownHttpNotFound
|
844
844
|
WellKnownNoResponse
|
845
845
|
WellKnownInvalidResponse
|
846
|
+
WellKnownListEmpty
|
846
847
|
ConfigNotInWellKnown
|
847
848
|
WellKnownTooBig
|
848
849
|
ConfigHttpNotFound
|
@@ -857,6 +858,7 @@ experimental domain Audits
|
|
857
858
|
AccountsHttpNotFound
|
858
859
|
AccountsNoResponse
|
859
860
|
AccountsInvalidResponse
|
861
|
+
AccountsListEmpty
|
860
862
|
IdTokenHttpNotFound
|
861
863
|
IdTokenNoResponse
|
862
864
|
IdTokenInvalidResponse
|
package/pdl/js_protocol.pdl
CHANGED
@@ -1741,7 +1741,9 @@ domain Runtime
|
|
1741
1741
|
event executionContextDestroyed
|
1742
1742
|
parameters
|
1743
1743
|
# Id of the destroyed context
|
1744
|
-
ExecutionContextId executionContextId
|
1744
|
+
deprecated ExecutionContextId executionContextId
|
1745
|
+
# Unique Id of the destroyed context
|
1746
|
+
experimental string executionContextUniqueId
|
1745
1747
|
|
1746
1748
|
# Issued when all executionContexts were cleared in browser
|
1747
1749
|
event executionContextsCleared
|
package/types/protocol.d.ts
CHANGED
@@ -2573,6 +2573,10 @@ export namespace Protocol {
|
|
2573
2573
|
* Id of the destroyed context
|
2574
2574
|
*/
|
2575
2575
|
executionContextId: ExecutionContextId;
|
2576
|
+
/**
|
2577
|
+
* Unique Id of the destroyed context
|
2578
|
+
*/
|
2579
|
+
executionContextUniqueId: string;
|
2576
2580
|
}
|
2577
2581
|
|
2578
2582
|
/**
|
@@ -3476,7 +3480,7 @@ export namespace Protocol {
|
|
3476
3480
|
* third_party/blink/public/mojom/devtools/inspector_issue.mojom to include
|
3477
3481
|
* all cases except for success.
|
3478
3482
|
*/
|
3479
|
-
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');
|
3480
3484
|
|
3481
3485
|
/**
|
3482
3486
|
* This issue tracks client hints related issues. It's used to deprecate old
|