devtools-protocol 0.0.1543509 → 0.0.1546284

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.
@@ -1749,12 +1749,13 @@
1749
1749
  "FormInputWithNoLabelError",
1750
1750
  "FormAutocompleteAttributeEmptyError",
1751
1751
  "FormEmptyIdAndNameAttributesForInputError",
1752
- "FormAriaLabelledByToNonExistingId",
1752
+ "FormAriaLabelledByToNonExistingIdError",
1753
1753
  "FormInputAssignedAutocompleteValueToIdOrNameAttributeError",
1754
- "FormLabelHasNeitherForNorNestedInput",
1754
+ "FormLabelHasNeitherForNorNestedInputError",
1755
1755
  "FormLabelForMatchesNonExistingIdError",
1756
1756
  "FormInputHasWrongButWellIntendedAutocompleteValueError",
1757
- "ResponseWasBlockedByORB"
1757
+ "ResponseWasBlockedByORB",
1758
+ "NavigationEntryMarkedSkippable"
1758
1759
  ]
1759
1760
  },
1760
1761
  {
@@ -15472,21 +15473,6 @@
15472
15473
  "sri-message-signature-mismatch"
15473
15474
  ]
15474
15475
  },
15475
- {
15476
- "id": "IpProxyStatus",
15477
- "description": "Sets Controls for IP Proxy of requests.\nPage reload is required before the new behavior will be observed.",
15478
- "experimental": true,
15479
- "type": "string",
15480
- "enum": [
15481
- "Available",
15482
- "FeatureNotEnabled",
15483
- "MaskedDomainListNotEnabled",
15484
- "MaskedDomainListNotPopulated",
15485
- "AuthTokensUnavailable",
15486
- "Unavailable",
15487
- "BypassedByDevTools"
15488
- ]
15489
- },
15490
15476
  {
15491
15477
  "id": "CorsError",
15492
15478
  "description": "The reason why request was blocked.",
@@ -15807,13 +15793,6 @@
15807
15793
  "description": "Security details for the request.",
15808
15794
  "optional": true,
15809
15795
  "$ref": "SecurityDetails"
15810
- },
15811
- {
15812
- "name": "isIpProtectionUsed",
15813
- "description": "Indicates whether the request was sent through IP Protection proxies. If\nset to true, the request used the IP Protection privacy feature.",
15814
- "experimental": true,
15815
- "optional": true,
15816
- "type": "boolean"
15817
15796
  }
15818
15797
  ]
15819
15798
  },
@@ -17120,30 +17099,6 @@
17120
17099
  }
17121
17100
  ],
17122
17101
  "commands": [
17123
- {
17124
- "name": "getIPProtectionProxyStatus",
17125
- "description": "Returns enum representing if IP Proxy of requests is available\nor reason it is not active.",
17126
- "experimental": true,
17127
- "returns": [
17128
- {
17129
- "name": "status",
17130
- "description": "Whether IP proxy is available",
17131
- "$ref": "IpProxyStatus"
17132
- }
17133
- ]
17134
- },
17135
- {
17136
- "name": "setIPProtectionProxyBypassEnabled",
17137
- "description": "Sets bypass IP Protection Proxy boolean.",
17138
- "experimental": true,
17139
- "parameters": [
17140
- {
17141
- "name": "enabled",
17142
- "description": "Whether IP Proxy is being bypassed by devtools; false by default.",
17143
- "type": "boolean"
17144
- }
17145
- ]
17146
- },
17147
17102
  {
17148
17103
  "name": "setAcceptedEncodings",
17149
17104
  "description": "Sets a list of content encodings that will be accepted. Empty list means no encoding is accepted.",
@@ -28220,7 +28175,7 @@
28220
28175
  },
28221
28176
  {
28222
28177
  "name": "panelId",
28223
- "description": "The id of the panel we want DevTools to open initially. Currently\nsupported panels are elements, console, network, sources and resources.",
28178
+ "description": "The id of the panel we want DevTools to open initially. Currently\nsupported panels are elements, console, network, sources, resources\nand performance.",
28224
28179
  "optional": true,
28225
28180
  "type": "string"
28226
28181
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1543509",
3
+ "version": "0.0.1546284",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -405,12 +405,13 @@ experimental domain Audits
405
405
  FormInputWithNoLabelError
406
406
  FormAutocompleteAttributeEmptyError
407
407
  FormEmptyIdAndNameAttributesForInputError
408
- FormAriaLabelledByToNonExistingId
408
+ FormAriaLabelledByToNonExistingIdError
409
409
  FormInputAssignedAutocompleteValueToIdOrNameAttributeError
410
- FormLabelHasNeitherForNorNestedInput
410
+ FormLabelHasNeitherForNorNestedInputError
411
411
  FormLabelForMatchesNonExistingIdError
412
412
  FormInputHasWrongButWellIntendedAutocompleteValueError
413
413
  ResponseWasBlockedByORB
414
+ NavigationEntryMarkedSkippable
414
415
 
415
416
  # Depending on the concrete errorType, different properties are set.
416
417
  type GenericIssueDetails extends object
@@ -298,31 +298,6 @@ domain Network
298
298
  corp-not-same-site
299
299
  sri-message-signature-mismatch
300
300
 
301
- # Sets Controls for IP Proxy of requests.
302
- # Page reload is required before the new behavior will be observed.
303
- experimental type IpProxyStatus extends string
304
- enum
305
- Available
306
- FeatureNotEnabled
307
- MaskedDomainListNotEnabled
308
- MaskedDomainListNotPopulated
309
- AuthTokensUnavailable
310
- Unavailable
311
- BypassedByDevTools
312
-
313
- # Returns enum representing if IP Proxy of requests is available
314
- # or reason it is not active.
315
- experimental command getIPProtectionProxyStatus
316
- returns
317
- # Whether IP proxy is available
318
- IpProxyStatus status
319
-
320
- # Sets bypass IP Protection Proxy boolean.
321
- experimental command setIPProtectionProxyBypassEnabled
322
- parameters
323
- # Whether IP Proxy is being bypassed by devtools; false by default.
324
- boolean enabled
325
-
326
301
  # The reason why request was blocked.
327
302
  type CorsError extends string
328
303
  enum
@@ -527,9 +502,6 @@ domain Network
527
502
  Security.SecurityState securityState
528
503
  # Security details for the request.
529
504
  optional SecurityDetails securityDetails
530
- # Indicates whether the request was sent through IP Protection proxies. If
531
- # set to true, the request used the IP Protection privacy feature.
532
- experimental optional boolean isIpProtectionUsed
533
505
 
534
506
  # WebSocket request data.
535
507
  type WebSocketRequest extends object
@@ -323,7 +323,8 @@ domain Target
323
323
  # This can be the page or tab target ID.
324
324
  TargetID targetId
325
325
  # The id of the panel we want DevTools to open initially. Currently
326
- # supported panels are elements, console, network, sources and resources.
326
+ # supported panels are elements, console, network, sources, resources
327
+ # and performance.
327
328
  optional string panelId
328
329
  returns
329
330
  # The targetId of DevTools page target.
@@ -4050,23 +4050,6 @@ export namespace ProtocolMapping {
4050
4050
  paramsType: [];
4051
4051
  returnType: Protocol.Memory.GetSamplingProfileResponse;
4052
4052
  };
4053
- /**
4054
- * Returns enum representing if IP Proxy of requests is available
4055
- * or reason it is not active.
4056
- * @experimental
4057
- */
4058
- 'Network.getIPProtectionProxyStatus': {
4059
- paramsType: [];
4060
- returnType: Protocol.Network.GetIPProtectionProxyStatusResponse;
4061
- };
4062
- /**
4063
- * Sets bypass IP Protection Proxy boolean.
4064
- * @experimental
4065
- */
4066
- 'Network.setIPProtectionProxyBypassEnabled': {
4067
- paramsType: [Protocol.Network.SetIPProtectionProxyBypassEnabledRequest];
4068
- returnType: void;
4069
- };
4070
4053
  /**
4071
4054
  * Sets a list of content encodings that will be accepted. Empty list means no encoding is accepted.
4072
4055
  * @experimental
@@ -2963,19 +2963,6 @@ export namespace ProtocolProxyApi {
2963
2963
  }
2964
2964
 
2965
2965
  export interface NetworkApi {
2966
- /**
2967
- * Returns enum representing if IP Proxy of requests is available
2968
- * or reason it is not active.
2969
- * @experimental
2970
- */
2971
- getIPProtectionProxyStatus(): Promise<Protocol.Network.GetIPProtectionProxyStatusResponse>;
2972
-
2973
- /**
2974
- * Sets bypass IP Protection Proxy boolean.
2975
- * @experimental
2976
- */
2977
- setIPProtectionProxyBypassEnabled(params: Protocol.Network.SetIPProtectionProxyBypassEnabledRequest): Promise<void>;
2978
-
2979
2966
  /**
2980
2967
  * Sets a list of content encodings that will be accepted. Empty list means no encoding is accepted.
2981
2968
  * @experimental
@@ -3133,19 +3133,6 @@ export namespace ProtocolTestsProxyApi {
3133
3133
  }
3134
3134
 
3135
3135
  export interface NetworkApi {
3136
- /**
3137
- * Returns enum representing if IP Proxy of requests is available
3138
- * or reason it is not active.
3139
- * @experimental
3140
- */
3141
- getIPProtectionProxyStatus(): Promise<{id: number, result: Protocol.Network.GetIPProtectionProxyStatusResponse, sessionId: string}>;
3142
-
3143
- /**
3144
- * Sets bypass IP Protection Proxy boolean.
3145
- * @experimental
3146
- */
3147
- setIPProtectionProxyBypassEnabled(params: Protocol.Network.SetIPProtectionProxyBypassEnabledRequest): Promise<{id: number, result: void, sessionId: string}>;
3148
-
3149
3136
  /**
3150
3137
  * Sets a list of content encodings that will be accepted. Empty list means no encoding is accepted.
3151
3138
  * @experimental
@@ -3698,7 +3698,7 @@ export namespace Protocol {
3698
3698
  request: AffectedRequest;
3699
3699
  }
3700
3700
 
3701
- export type GenericIssueErrorType = ('FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError' | 'FormAutocompleteAttributeEmptyError' | 'FormEmptyIdAndNameAttributesForInputError' | 'FormAriaLabelledByToNonExistingId' | 'FormInputAssignedAutocompleteValueToIdOrNameAttributeError' | 'FormLabelHasNeitherForNorNestedInput' | 'FormLabelForMatchesNonExistingIdError' | 'FormInputHasWrongButWellIntendedAutocompleteValueError' | 'ResponseWasBlockedByORB');
3701
+ export type GenericIssueErrorType = ('FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError' | 'FormAutocompleteAttributeEmptyError' | 'FormEmptyIdAndNameAttributesForInputError' | 'FormAriaLabelledByToNonExistingIdError' | 'FormInputAssignedAutocompleteValueToIdOrNameAttributeError' | 'FormLabelHasNeitherForNorNestedInputError' | 'FormLabelForMatchesNonExistingIdError' | 'FormInputHasWrongButWellIntendedAutocompleteValueError' | 'ResponseWasBlockedByORB' | 'NavigationEntryMarkedSkippable');
3702
3702
 
3703
3703
  /**
3704
3704
  * Depending on the concrete errorType, different properties are set.
@@ -12438,13 +12438,6 @@ export namespace Protocol {
12438
12438
  */
12439
12439
  export type BlockedReason = ('other' | 'csp' | 'mixed-content' | 'origin' | 'inspector' | 'integrity' | 'subresource-filter' | 'content-type' | 'coep-frame-resource-needs-coep-header' | 'coop-sandboxed-iframe-cannot-navigate-to-coop-page' | 'corp-not-same-origin' | 'corp-not-same-origin-after-defaulted-to-same-origin-by-coep' | 'corp-not-same-origin-after-defaulted-to-same-origin-by-dip' | 'corp-not-same-origin-after-defaulted-to-same-origin-by-coep-and-dip' | 'corp-not-same-site' | 'sri-message-signature-mismatch');
12440
12440
 
12441
- /**
12442
- * Sets Controls for IP Proxy of requests.
12443
- * Page reload is required before the new behavior will be observed.
12444
- * @experimental
12445
- */
12446
- export type IpProxyStatus = ('Available' | 'FeatureNotEnabled' | 'MaskedDomainListNotEnabled' | 'MaskedDomainListNotPopulated' | 'AuthTokensUnavailable' | 'Unavailable' | 'BypassedByDevTools');
12447
-
12448
12441
  /**
12449
12442
  * The reason why request was blocked.
12450
12443
  */
@@ -12640,12 +12633,6 @@ export namespace Protocol {
12640
12633
  * Security details for the request.
12641
12634
  */
12642
12635
  securityDetails?: SecurityDetails;
12643
- /**
12644
- * Indicates whether the request was sent through IP Protection proxies. If
12645
- * set to true, the request used the IP Protection privacy feature.
12646
- * @experimental
12647
- */
12648
- isIpProtectionUsed?: boolean;
12649
12636
  }
12650
12637
 
12651
12638
  /**
@@ -13538,20 +13525,6 @@ export namespace Protocol {
13538
13525
  includeCredentials: boolean;
13539
13526
  }
13540
13527
 
13541
- export interface GetIPProtectionProxyStatusResponse {
13542
- /**
13543
- * Whether IP proxy is available
13544
- */
13545
- status: IpProxyStatus;
13546
- }
13547
-
13548
- export interface SetIPProtectionProxyBypassEnabledRequest {
13549
- /**
13550
- * Whether IP Proxy is being bypassed by devtools; false by default.
13551
- */
13552
- enabled: boolean;
13553
- }
13554
-
13555
13528
  export interface SetAcceptedEncodingsRequest {
13556
13529
  /**
13557
13530
  * List of accepted content encodings.
@@ -20388,7 +20361,8 @@ export namespace Protocol {
20388
20361
  targetId: TargetID;
20389
20362
  /**
20390
20363
  * The id of the panel we want DevTools to open initially. Currently
20391
- * supported panels are elements, console, network, sources and resources.
20364
+ * supported panels are elements, console, network, sources, resources
20365
+ * and performance.
20392
20366
  */
20393
20367
  panelId?: string;
20394
20368
  }