devtools-protocol 0.0.1094278 → 0.0.1094867
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.
@@ -11388,12 +11388,12 @@
|
|
11388
11388
|
"type": "object",
|
11389
11389
|
"properties": [
|
11390
11390
|
{
|
11391
|
-
"name": "
|
11391
|
+
"name": "operation",
|
11392
11392
|
"$ref": "TrustTokenOperationType"
|
11393
11393
|
},
|
11394
11394
|
{
|
11395
11395
|
"name": "refreshPolicy",
|
11396
|
-
"description": "Only set for \"token-redemption\"
|
11396
|
+
"description": "Only set for \"token-redemption\" operation and determine whether\nto request a fresh SRR or use a still valid cached SRR.",
|
11397
11397
|
"type": "string",
|
11398
11398
|
"enum": [
|
11399
11399
|
"UseCached",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -5271,9 +5271,9 @@ domain Network
|
|
5271
5271
|
# are specified in third_party/blink/renderer/core/fetch/trust_token.idl.
|
5272
5272
|
experimental type TrustTokenParams extends object
|
5273
5273
|
properties
|
5274
|
-
TrustTokenOperationType
|
5274
|
+
TrustTokenOperationType operation
|
5275
5275
|
|
5276
|
-
# Only set for "token-redemption"
|
5276
|
+
# Only set for "token-redemption" operation and determine whether
|
5277
5277
|
# to request a fresh SRR or use a still valid cached SRR.
|
5278
5278
|
enum refreshPolicy
|
5279
5279
|
UseCached
|
package/types/protocol.d.ts
CHANGED
@@ -9712,9 +9712,9 @@ export namespace Protocol {
|
|
9712
9712
|
* are specified in third_party/blink/renderer/core/fetch/trust_token.idl.
|
9713
9713
|
*/
|
9714
9714
|
export interface TrustTokenParams {
|
9715
|
-
|
9715
|
+
operation: TrustTokenOperationType;
|
9716
9716
|
/**
|
9717
|
-
* Only set for "token-redemption"
|
9717
|
+
* Only set for "token-redemption" operation and determine whether
|
9718
9718
|
* to request a fresh SRR or use a still valid cached SRR. (TrustTokenParamsRefreshPolicy enum)
|
9719
9719
|
*/
|
9720
9720
|
refreshPolicy: ('UseCached' | 'Refresh');
|