devtools-protocol 0.0.1094278 → 0.0.1096014
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.
@@ -2496,7 +2496,7 @@
|
|
2496
2496
|
},
|
2497
2497
|
{
|
2498
2498
|
"name": "delta",
|
2499
|
-
"description": "If true, retrieve delta since last call.",
|
2499
|
+
"description": "If true, retrieve delta since last delta call.",
|
2500
2500
|
"optional": true,
|
2501
2501
|
"type": "boolean"
|
2502
2502
|
}
|
@@ -2524,7 +2524,7 @@
|
|
2524
2524
|
},
|
2525
2525
|
{
|
2526
2526
|
"name": "delta",
|
2527
|
-
"description": "If true, retrieve delta since last call.",
|
2527
|
+
"description": "If true, retrieve delta since last delta call.",
|
2528
2528
|
"optional": true,
|
2529
2529
|
"type": "boolean"
|
2530
2530
|
}
|
@@ -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
@@ -1273,7 +1273,7 @@ domain Browser
|
|
1273
1273
|
# substring in their name are extracted. An empty or absent query returns
|
1274
1274
|
# all histograms.
|
1275
1275
|
optional string query
|
1276
|
-
# If true, retrieve delta since last call.
|
1276
|
+
# If true, retrieve delta since last delta call.
|
1277
1277
|
optional boolean delta
|
1278
1278
|
|
1279
1279
|
returns
|
@@ -1285,7 +1285,7 @@ domain Browser
|
|
1285
1285
|
parameters
|
1286
1286
|
# Requested histogram name.
|
1287
1287
|
string name
|
1288
|
-
# If true, retrieve delta since last call.
|
1288
|
+
# If true, retrieve delta since last delta call.
|
1289
1289
|
optional boolean delta
|
1290
1290
|
returns
|
1291
1291
|
# Histogram.
|
@@ -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
@@ -3916,7 +3916,7 @@ export namespace Protocol {
|
|
3916
3916
|
*/
|
3917
3917
|
query?: string;
|
3918
3918
|
/**
|
3919
|
-
* If true, retrieve delta since last call.
|
3919
|
+
* If true, retrieve delta since last delta call.
|
3920
3920
|
*/
|
3921
3921
|
delta?: boolean;
|
3922
3922
|
}
|
@@ -3934,7 +3934,7 @@ export namespace Protocol {
|
|
3934
3934
|
*/
|
3935
3935
|
name: string;
|
3936
3936
|
/**
|
3937
|
-
* If true, retrieve delta since last call.
|
3937
|
+
* If true, retrieve delta since last delta call.
|
3938
3938
|
*/
|
3939
3939
|
delta?: boolean;
|
3940
3940
|
}
|
@@ -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');
|