devtools-protocol 0.0.1272579 → 0.0.1273771

Sign up to get free protection for your applications and to get access to all the features.
@@ -4062,6 +4062,7 @@
4062
4062
  {
4063
4063
  "id": "CSSPositionFallbackRule",
4064
4064
  "description": "CSS position-fallback rule representation.",
4065
+ "deprecated": true,
4065
4066
  "type": "object",
4066
4067
  "properties": [
4067
4068
  {
@@ -4078,6 +4079,34 @@
4078
4079
  }
4079
4080
  ]
4080
4081
  },
4082
+ {
4083
+ "id": "CSSPositionTryRule",
4084
+ "description": "CSS @position-try rule representation.",
4085
+ "type": "object",
4086
+ "properties": [
4087
+ {
4088
+ "name": "name",
4089
+ "description": "The prelude dashed-ident name",
4090
+ "$ref": "Value"
4091
+ },
4092
+ {
4093
+ "name": "styleSheetId",
4094
+ "description": "The css style sheet identifier (absent for user agent stylesheet and user-specified\nstylesheet rules) this rule came from.",
4095
+ "optional": true,
4096
+ "$ref": "StyleSheetId"
4097
+ },
4098
+ {
4099
+ "name": "origin",
4100
+ "description": "Parent stylesheet's origin.",
4101
+ "$ref": "StyleSheetOrigin"
4102
+ },
4103
+ {
4104
+ "name": "style",
4105
+ "description": "Associated style declaration.",
4106
+ "$ref": "CSSStyle"
4107
+ }
4108
+ ]
4109
+ },
4081
4110
  {
4082
4111
  "id": "CSSKeyframesRule",
4083
4112
  "description": "CSS keyframes rule representation.",
@@ -4477,12 +4506,22 @@
4477
4506
  {
4478
4507
  "name": "cssPositionFallbackRules",
4479
4508
  "description": "A list of CSS position fallbacks matching this node.",
4509
+ "deprecated": true,
4480
4510
  "optional": true,
4481
4511
  "type": "array",
4482
4512
  "items": {
4483
4513
  "$ref": "CSSPositionFallbackRule"
4484
4514
  }
4485
4515
  },
4516
+ {
4517
+ "name": "cssPositionTryRules",
4518
+ "description": "A list of CSS @position-try rules matching this node, based on the position-try-options property.",
4519
+ "optional": true,
4520
+ "type": "array",
4521
+ "items": {
4522
+ "$ref": "CSSPositionTryRule"
4523
+ }
4524
+ },
4486
4525
  {
4487
4526
  "name": "cssPropertyRules",
4488
4527
  "description": "A list of CSS at-property rules matching this node.",
@@ -12029,7 +12068,8 @@
12029
12068
  },
12030
12069
  {
12031
12070
  "name": "postData",
12032
- "description": "HTTP POST request data.",
12071
+ "description": "HTTP POST request data.\nUse postDataEntries instead.",
12072
+ "deprecated": true,
12033
12073
  "optional": true,
12034
12074
  "type": "string"
12035
12075
  },
@@ -12041,7 +12081,7 @@
12041
12081
  },
12042
12082
  {
12043
12083
  "name": "postDataEntries",
12044
- "description": "Request body elements. This will be converted from base64 to binary",
12084
+ "description": "Request body elements (post data broken into individual entries).",
12045
12085
  "experimental": true,
12046
12086
  "optional": true,
12047
12087
  "type": "array",
@@ -20444,6 +20484,7 @@
20444
20484
  "documentAppend",
20445
20485
  "documentDelete",
20446
20486
  "documentClear",
20487
+ "documentGet",
20447
20488
  "workletSet",
20448
20489
  "workletAppend",
20449
20490
  "workletDelete",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1272579",
3
+ "version": "0.0.1273771",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1944,12 +1944,25 @@ experimental domain CSS
1944
1944
  CSSStyle style
1945
1945
 
1946
1946
  # CSS position-fallback rule representation.
1947
- type CSSPositionFallbackRule extends object
1947
+ deprecated type CSSPositionFallbackRule extends object
1948
1948
  properties
1949
1949
  Value name
1950
1950
  # List of keyframes.
1951
1951
  array of CSSTryRule tryRules
1952
1952
 
1953
+ # CSS @position-try rule representation.
1954
+ type CSSPositionTryRule extends object
1955
+ properties
1956
+ # The prelude dashed-ident name
1957
+ Value name
1958
+ # The css style sheet identifier (absent for user agent stylesheet and user-specified
1959
+ # stylesheet rules) this rule came from.
1960
+ optional StyleSheetId styleSheetId
1961
+ # Parent stylesheet's origin.
1962
+ StyleSheetOrigin origin
1963
+ # Associated style declaration.
1964
+ CSSStyle style
1965
+
1953
1966
  # CSS keyframes rule representation.
1954
1967
  type CSSKeyframesRule extends object
1955
1968
  properties
@@ -2123,7 +2136,9 @@ experimental domain CSS
2123
2136
  # A list of CSS keyframed animations matching this node.
2124
2137
  optional array of CSSKeyframesRule cssKeyframesRules
2125
2138
  # A list of CSS position fallbacks matching this node.
2126
- optional array of CSSPositionFallbackRule cssPositionFallbackRules
2139
+ deprecated optional array of CSSPositionFallbackRule cssPositionFallbackRules
2140
+ # A list of CSS @position-try rules matching this node, based on the position-try-options property.
2141
+ optional array of CSSPositionTryRule cssPositionTryRules
2127
2142
  # A list of CSS at-property rules matching this node.
2128
2143
  optional array of CSSPropertyRule cssPropertyRules
2129
2144
  # A list of CSS property registrations matching this node.
@@ -5524,10 +5539,11 @@ domain Network
5524
5539
  # HTTP request headers.
5525
5540
  Headers headers
5526
5541
  # HTTP POST request data.
5527
- optional string postData
5542
+ # Use postDataEntries instead.
5543
+ deprecated optional string postData
5528
5544
  # True when the request has POST data. Note that postData might still be omitted when this flag is true when the data is too long.
5529
5545
  optional boolean hasPostData
5530
- # Request body elements. This will be converted from base64 to binary
5546
+ # Request body elements (post data broken into individual entries).
5531
5547
  experimental optional array of PostDataEntry postDataEntries
5532
5548
  # The mixed content type of the request.
5533
5549
  optional Security.MixedContentType mixedContentType
@@ -9674,6 +9690,7 @@ experimental domain Storage
9674
9690
  documentAppend
9675
9691
  documentDelete
9676
9692
  documentClear
9693
+ documentGet
9677
9694
  workletSet
9678
9695
  workletAppend
9679
9696
  workletDelete
@@ -5086,6 +5086,29 @@ export namespace Protocol {
5086
5086
  tryRules: CSSTryRule[];
5087
5087
  }
5088
5088
 
5089
+ /**
5090
+ * CSS @position-try rule representation.
5091
+ */
5092
+ export interface CSSPositionTryRule {
5093
+ /**
5094
+ * The prelude dashed-ident name
5095
+ */
5096
+ name: Value;
5097
+ /**
5098
+ * The css style sheet identifier (absent for user agent stylesheet and user-specified
5099
+ * stylesheet rules) this rule came from.
5100
+ */
5101
+ styleSheetId?: StyleSheetId;
5102
+ /**
5103
+ * Parent stylesheet's origin.
5104
+ */
5105
+ origin: StyleSheetOrigin;
5106
+ /**
5107
+ * Associated style declaration.
5108
+ */
5109
+ style: CSSStyle;
5110
+ }
5111
+
5089
5112
  /**
5090
5113
  * CSS keyframes rule representation.
5091
5114
  */
@@ -5351,6 +5374,10 @@ export namespace Protocol {
5351
5374
  * A list of CSS position fallbacks matching this node.
5352
5375
  */
5353
5376
  cssPositionFallbackRules?: CSSPositionFallbackRule[];
5377
+ /**
5378
+ * A list of CSS @position-try rules matching this node, based on the position-try-options property.
5379
+ */
5380
+ cssPositionTryRules?: CSSPositionTryRule[];
5354
5381
  /**
5355
5382
  * A list of CSS at-property rules matching this node.
5356
5383
  */
@@ -10130,6 +10157,7 @@ export namespace Protocol {
10130
10157
  headers: Headers;
10131
10158
  /**
10132
10159
  * HTTP POST request data.
10160
+ * Use postDataEntries instead.
10133
10161
  */
10134
10162
  postData?: string;
10135
10163
  /**
@@ -10137,7 +10165,7 @@ export namespace Protocol {
10137
10165
  */
10138
10166
  hasPostData?: boolean;
10139
10167
  /**
10140
- * Request body elements. This will be converted from base64 to binary
10168
+ * Request body elements (post data broken into individual entries).
10141
10169
  */
10142
10170
  postDataEntries?: PostDataEntry[];
10143
10171
  /**
@@ -15352,7 +15380,7 @@ export namespace Protocol {
15352
15380
  /**
15353
15381
  * Enum of shared storage access types.
15354
15382
  */
15355
- export type SharedStorageAccessType = ('documentAddModule' | 'documentSelectURL' | 'documentRun' | 'documentSet' | 'documentAppend' | 'documentDelete' | 'documentClear' | 'workletSet' | 'workletAppend' | 'workletDelete' | 'workletClear' | 'workletGet' | 'workletKeys' | 'workletEntries' | 'workletLength' | 'workletRemainingBudget' | 'headerSet' | 'headerAppend' | 'headerDelete' | 'headerClear');
15383
+ export type SharedStorageAccessType = ('documentAddModule' | 'documentSelectURL' | 'documentRun' | 'documentSet' | 'documentAppend' | 'documentDelete' | 'documentClear' | 'documentGet' | 'workletSet' | 'workletAppend' | 'workletDelete' | 'workletClear' | 'workletGet' | 'workletKeys' | 'workletEntries' | 'workletLength' | 'workletRemainingBudget' | 'headerSet' | 'headerAppend' | 'headerDelete' | 'headerClear');
15356
15384
 
15357
15385
  /**
15358
15386
  * Struct for a single key-value pair in an origin's shared storage.