devtools-protocol 0.0.1511308 → 0.0.1512837
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.
@@ -24021,6 +24021,12 @@
|
|
24021
24021
|
"deprecated": true,
|
24022
24022
|
"optional": true,
|
24023
24023
|
"type": "string"
|
24024
|
+
},
|
24025
|
+
{
|
24026
|
+
"name": "tag",
|
24027
|
+
"description": "For more details, see:\nhttps://github.com/WICG/nav-speculation/blob/main/speculation-rules-tags.md",
|
24028
|
+
"optional": true,
|
24029
|
+
"type": "string"
|
24024
24030
|
}
|
24025
24031
|
]
|
24026
24032
|
},
|
package/package.json
CHANGED
package/pdl/domains/Preload.pdl
CHANGED
@@ -40,6 +40,9 @@ experimental domain Preload
|
|
40
40
|
optional RuleSetErrorType errorType
|
41
41
|
# TODO(https://crbug.com/1425354): Replace this property with structured error.
|
42
42
|
deprecated optional string errorMessage
|
43
|
+
# For more details, see:
|
44
|
+
# https://github.com/WICG/nav-speculation/blob/main/speculation-rules-tags.md
|
45
|
+
optional string tag
|
43
46
|
|
44
47
|
type RuleSetErrorType extends string
|
45
48
|
enum
|
package/types/protocol.d.ts
CHANGED
@@ -17996,6 +17996,11 @@ export namespace Protocol {
|
|
17996
17996
|
* @deprecated
|
17997
17997
|
*/
|
17998
17998
|
errorMessage?: string;
|
17999
|
+
/**
|
18000
|
+
* For more details, see:
|
18001
|
+
* https://github.com/WICG/nav-speculation/blob/main/speculation-rules-tags.md
|
18002
|
+
*/
|
18003
|
+
tag?: string;
|
17999
18004
|
}
|
18000
18005
|
|
18001
18006
|
export type RuleSetErrorType = ('SourceIsNotJsonObject' | 'InvalidRulesSkipped' | 'InvalidRulesetLevelTag');
|