devtools-protocol 0.0.971103 → 0.0.973088
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.
@@ -399,13 +399,6 @@
|
|
399
399
|
"optional": true,
|
400
400
|
"type": "integer"
|
401
401
|
},
|
402
|
-
{
|
403
|
-
"name": "max_depth",
|
404
|
-
"description": "Deprecated. This parameter has been renamed to `depth`. If depth is not provided, max_depth will be used.",
|
405
|
-
"deprecated": true,
|
406
|
-
"optional": true,
|
407
|
-
"type": "integer"
|
408
|
-
},
|
409
402
|
{
|
410
403
|
"name": "frameId",
|
411
404
|
"description": "The frame for whose document the AX tree should be retrieved.\nIf omited, the root frame is used.",
|
@@ -1082,6 +1075,7 @@
|
|
1082
1075
|
"id": "MixedContentResourceType",
|
1083
1076
|
"type": "string",
|
1084
1077
|
"enum": [
|
1078
|
+
"AttributionSrc",
|
1085
1079
|
"Audio",
|
1086
1080
|
"Beacon",
|
1087
1081
|
"CSPReport",
|
@@ -1603,7 +1597,7 @@
|
|
1603
1597
|
},
|
1604
1598
|
{
|
1605
1599
|
"id": "FederatedAuthRequestIssueReason",
|
1606
|
-
"description": "Represents the failure reason when a federated authentication reason fails.\nShould be updated alongside RequestIdTokenStatus in\nthird_party/blink/public/mojom/
|
1600
|
+
"description": "Represents the failure reason when a federated authentication reason fails.\nShould be updated alongside RequestIdTokenStatus in\nthird_party/blink/public/mojom/devtools/inspector_issue.mojom to include\nall cases except for success.",
|
1607
1601
|
"type": "string",
|
1608
1602
|
"enum": [
|
1609
1603
|
"ApprovalDeclined",
|
@@ -4435,10 +4429,11 @@
|
|
4435
4429
|
"scrollbar-corner",
|
4436
4430
|
"resizer",
|
4437
4431
|
"input-list-button",
|
4438
|
-
"transition",
|
4439
|
-
"transition-container",
|
4440
|
-
"transition-
|
4441
|
-
"transition-
|
4432
|
+
"page-transition",
|
4433
|
+
"page-transition-container",
|
4434
|
+
"page-transition-image-wrapper",
|
4435
|
+
"page-transition-outgoing-image",
|
4436
|
+
"page-transition-incoming-image"
|
4442
4437
|
]
|
4443
4438
|
},
|
4444
4439
|
{
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -214,8 +214,6 @@ experimental domain Accessibility
|
|
214
214
|
# The maximum depth at which descendants of the root node should be retrieved.
|
215
215
|
# If omitted, the full tree is returned.
|
216
216
|
optional integer depth
|
217
|
-
# Deprecated. This parameter has been renamed to `depth`. If depth is not provided, max_depth will be used.
|
218
|
-
deprecated optional integer max_depth
|
219
217
|
# The frame for whose document the AX tree should be retrieved.
|
220
218
|
# If omited, the root frame is used.
|
221
219
|
optional Page.FrameId frameId
|
@@ -526,6 +524,7 @@ experimental domain Audits
|
|
526
524
|
|
527
525
|
type MixedContentResourceType extends string
|
528
526
|
enum
|
527
|
+
AttributionSrc
|
529
528
|
Audio
|
530
529
|
Beacon
|
531
530
|
CSPReport
|
@@ -779,7 +778,7 @@ experimental domain Audits
|
|
779
778
|
|
780
779
|
# Represents the failure reason when a federated authentication reason fails.
|
781
780
|
# Should be updated alongside RequestIdTokenStatus in
|
782
|
-
# third_party/blink/public/mojom/
|
781
|
+
# third_party/blink/public/mojom/devtools/inspector_issue.mojom to include
|
783
782
|
# all cases except for success.
|
784
783
|
type FederatedAuthRequestIssueReason extends string
|
785
784
|
enum
|
@@ -2097,10 +2096,11 @@ domain DOM
|
|
2097
2096
|
scrollbar-corner
|
2098
2097
|
resizer
|
2099
2098
|
input-list-button
|
2100
|
-
transition
|
2101
|
-
transition-container
|
2102
|
-
transition-
|
2103
|
-
transition-
|
2099
|
+
page-transition
|
2100
|
+
page-transition-container
|
2101
|
+
page-transition-image-wrapper
|
2102
|
+
page-transition-outgoing-image
|
2103
|
+
page-transition-incoming-image
|
2104
2104
|
|
2105
2105
|
# Shadow root type.
|
2106
2106
|
type ShadowRootType extends string
|
package/types/protocol.d.ts
CHANGED
@@ -2682,10 +2682,6 @@ export namespace Protocol {
|
|
2682
2682
|
* If omitted, the full tree is returned.
|
2683
2683
|
*/
|
2684
2684
|
depth?: integer;
|
2685
|
-
/**
|
2686
|
-
* Deprecated. This parameter has been renamed to `depth`. If depth is not provided, max_depth will be used.
|
2687
|
-
*/
|
2688
|
-
max_depth?: integer;
|
2689
2685
|
/**
|
2690
2686
|
* The frame for whose document the AX tree should be retrieved.
|
2691
2687
|
* If omited, the root frame is used.
|
@@ -3109,7 +3105,7 @@ export namespace Protocol {
|
|
3109
3105
|
|
3110
3106
|
export type MixedContentResolutionStatus = ('MixedContentBlocked' | 'MixedContentAutomaticallyUpgraded' | 'MixedContentWarning');
|
3111
3107
|
|
3112
|
-
export type MixedContentResourceType = ('Audio' | 'Beacon' | 'CSPReport' | 'Download' | 'EventSource' | 'Favicon' | 'Font' | 'Form' | 'Frame' | 'Image' | 'Import' | 'Manifest' | 'Ping' | 'PluginData' | 'PluginResource' | 'Prefetch' | 'Resource' | 'Script' | 'ServiceWorker' | 'SharedWorker' | 'Stylesheet' | 'Track' | 'Video' | 'Worker' | 'XMLHttpRequest' | 'XSLT');
|
3108
|
+
export type MixedContentResourceType = ('AttributionSrc' | 'Audio' | 'Beacon' | 'CSPReport' | 'Download' | 'EventSource' | 'Favicon' | 'Font' | 'Form' | 'Frame' | 'Image' | 'Import' | 'Manifest' | 'Ping' | 'PluginData' | 'PluginResource' | 'Prefetch' | 'Resource' | 'Script' | 'ServiceWorker' | 'SharedWorker' | 'Stylesheet' | 'Track' | 'Video' | 'Worker' | 'XMLHttpRequest' | 'XSLT');
|
3113
3109
|
|
3114
3110
|
export interface MixedContentIssueDetails {
|
3115
3111
|
/**
|
@@ -3339,7 +3335,7 @@ export namespace Protocol {
|
|
3339
3335
|
/**
|
3340
3336
|
* Represents the failure reason when a federated authentication reason fails.
|
3341
3337
|
* Should be updated alongside RequestIdTokenStatus in
|
3342
|
-
* third_party/blink/public/mojom/
|
3338
|
+
* third_party/blink/public/mojom/devtools/inspector_issue.mojom to include
|
3343
3339
|
* all cases except for success.
|
3344
3340
|
*/
|
3345
3341
|
export type FederatedAuthRequestIssueReason = ('ApprovalDeclined' | 'TooManyRequests' | 'ManifestHttpNotFound' | 'ManifestNoResponse' | 'ManifestInvalidResponse' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenInvalidRequest' | 'ErrorIdToken' | 'Canceled');
|
@@ -5118,7 +5114,7 @@ export namespace Protocol {
|
|
5118
5114
|
/**
|
5119
5115
|
* Pseudo element type.
|
5120
5116
|
*/
|
5121
|
-
export type PseudoType = ('first-line' | 'first-letter' | 'before' | 'after' | 'marker' | 'backdrop' | 'selection' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scrollbar' | 'scrollbar-thumb' | 'scrollbar-button' | 'scrollbar-track' | 'scrollbar-track-piece' | 'scrollbar-corner' | 'resizer' | 'input-list-button' | 'transition' | 'transition-container' | 'transition-
|
5117
|
+
export type PseudoType = ('first-line' | 'first-letter' | 'before' | 'after' | 'marker' | 'backdrop' | 'selection' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scrollbar' | 'scrollbar-thumb' | 'scrollbar-button' | 'scrollbar-track' | 'scrollbar-track-piece' | 'scrollbar-corner' | 'resizer' | 'input-list-button' | 'page-transition' | 'page-transition-container' | 'page-transition-image-wrapper' | 'page-transition-outgoing-image' | 'page-transition-incoming-image');
|
5122
5118
|
|
5123
5119
|
/**
|
5124
5120
|
* Shadow root type.
|