devtools-protocol 0.0.1669207 → 0.0.1670834
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.
|
@@ -18156,7 +18156,7 @@
|
|
|
18156
18156
|
"properties": [
|
|
18157
18157
|
{
|
|
18158
18158
|
"name": "refreshResult",
|
|
18159
|
-
"description": "The result of a refresh.",
|
|
18159
|
+
"description": "The result of a refresh.\nLINT.IfChange(DeviceBoundSessionRefreshResult)",
|
|
18160
18160
|
"type": "string",
|
|
18161
18161
|
"enum": [
|
|
18162
18162
|
"Refreshed",
|
|
@@ -18166,12 +18166,13 @@
|
|
|
18166
18166
|
"FatalError",
|
|
18167
18167
|
"SigningQuotaExceeded",
|
|
18168
18168
|
"RefreshedAsWaiter",
|
|
18169
|
-
"TransientSigningError"
|
|
18169
|
+
"TransientSigningError",
|
|
18170
|
+
"InScopeRefreshNotYetNeeded"
|
|
18170
18171
|
]
|
|
18171
18172
|
},
|
|
18172
18173
|
{
|
|
18173
18174
|
"name": "fetchResult",
|
|
18174
|
-
"description": "
|
|
18175
|
+
"description": "LINT.ThenChange(//net/device_bound_sessions/refresh_result.h:DeviceBoundSessionRefreshResult,//content/browser/devtools/protocol/network_handler.cc:DeviceBoundSessionRefreshResult)\nIf there was a fetch attempt, the result of that.",
|
|
18175
18176
|
"optional": true,
|
|
18176
18177
|
"$ref": "DeviceBoundSessionFetchResult"
|
|
18177
18178
|
},
|
package/package.json
CHANGED
package/pdl/domains/Network.pdl
CHANGED
|
@@ -2258,6 +2258,7 @@ domain Network
|
|
|
2258
2258
|
experimental type RefreshEventDetails extends object
|
|
2259
2259
|
properties
|
|
2260
2260
|
# The result of a refresh.
|
|
2261
|
+
# LINT.IfChange(DeviceBoundSessionRefreshResult)
|
|
2261
2262
|
enum refreshResult
|
|
2262
2263
|
Refreshed
|
|
2263
2264
|
InitializedService
|
|
@@ -2267,6 +2268,8 @@ domain Network
|
|
|
2267
2268
|
SigningQuotaExceeded
|
|
2268
2269
|
RefreshedAsWaiter
|
|
2269
2270
|
TransientSigningError
|
|
2271
|
+
InScopeRefreshNotYetNeeded
|
|
2272
|
+
# LINT.ThenChange(//net/device_bound_sessions/refresh_result.h:DeviceBoundSessionRefreshResult,//content/browser/devtools/protocol/network_handler.cc:DeviceBoundSessionRefreshResult)
|
|
2270
2273
|
# If there was a fetch attempt, the result of that.
|
|
2271
2274
|
optional DeviceBoundSessionFetchResult fetchResult
|
|
2272
2275
|
# The session display if there was a newly created session. This is populated
|
package/types/protocol.d.ts
CHANGED
|
@@ -14223,6 +14223,7 @@ export namespace Protocol {
|
|
|
14223
14223
|
SigningQuotaExceeded = 'SigningQuotaExceeded',
|
|
14224
14224
|
RefreshedAsWaiter = 'RefreshedAsWaiter',
|
|
14225
14225
|
TransientSigningError = 'TransientSigningError',
|
|
14226
|
+
InScopeRefreshNotYetNeeded = 'InScopeRefreshNotYetNeeded',
|
|
14226
14227
|
}
|
|
14227
14228
|
|
|
14228
14229
|
/**
|
|
@@ -14233,7 +14234,7 @@ export namespace Protocol {
|
|
|
14233
14234
|
/**
|
|
14234
14235
|
* The result of a refresh.
|
|
14235
14236
|
*/
|
|
14236
|
-
refreshResult: ('Refreshed' | 'InitializedService' | 'Unreachable' | 'ServerError' | 'FatalError' | 'SigningQuotaExceeded' | 'RefreshedAsWaiter' | 'TransientSigningError');
|
|
14237
|
+
refreshResult: ('Refreshed' | 'InitializedService' | 'Unreachable' | 'ServerError' | 'FatalError' | 'SigningQuotaExceeded' | 'RefreshedAsWaiter' | 'TransientSigningError' | 'InScopeRefreshNotYetNeeded');
|
|
14237
14238
|
/**
|
|
14238
14239
|
* If there was a fetch attempt, the result of that.
|
|
14239
14240
|
*/
|