devtools-protocol 0.0.1130274 → 0.0.1132318

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.
@@ -1641,14 +1641,17 @@
1641
1641
  "WellKnownNoResponse",
1642
1642
  "WellKnownInvalidResponse",
1643
1643
  "WellKnownListEmpty",
1644
+ "WellKnownInvalidContentType",
1644
1645
  "ConfigNotInWellKnown",
1645
1646
  "WellKnownTooBig",
1646
1647
  "ConfigHttpNotFound",
1647
1648
  "ConfigNoResponse",
1648
1649
  "ConfigInvalidResponse",
1650
+ "ConfigInvalidContentType",
1649
1651
  "ClientMetadataHttpNotFound",
1650
1652
  "ClientMetadataNoResponse",
1651
1653
  "ClientMetadataInvalidResponse",
1654
+ "ClientMetadataInvalidContentType",
1652
1655
  "DisabledInSettings",
1653
1656
  "ErrorFetchingSignin",
1654
1657
  "InvalidSigninResponse",
@@ -1656,10 +1659,12 @@
1656
1659
  "AccountsNoResponse",
1657
1660
  "AccountsInvalidResponse",
1658
1661
  "AccountsListEmpty",
1662
+ "AccountsInvalidContentType",
1659
1663
  "IdTokenHttpNotFound",
1660
1664
  "IdTokenNoResponse",
1661
1665
  "IdTokenInvalidResponse",
1662
1666
  "IdTokenInvalidRequest",
1667
+ "IdTokenInvalidContentType",
1663
1668
  "ErrorIdToken",
1664
1669
  "Canceled",
1665
1670
  "RpPageNotVisible"
@@ -2900,6 +2905,13 @@
2900
2905
  "name": "endColumn",
2901
2906
  "description": "Column offset of the end of the stylesheet within the resource (zero based).",
2902
2907
  "type": "number"
2908
+ },
2909
+ {
2910
+ "name": "loadingFailed",
2911
+ "description": "If the style sheet was loaded from a network resource, this indicates when the resource failed to load",
2912
+ "experimental": true,
2913
+ "optional": true,
2914
+ "type": "boolean"
2903
2915
  }
2904
2916
  ]
2905
2917
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1130274",
3
+ "version": "0.0.1132318",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -809,14 +809,17 @@ experimental domain Audits
809
809
  WellKnownNoResponse
810
810
  WellKnownInvalidResponse
811
811
  WellKnownListEmpty
812
+ WellKnownInvalidContentType
812
813
  ConfigNotInWellKnown
813
814
  WellKnownTooBig
814
815
  ConfigHttpNotFound
815
816
  ConfigNoResponse
816
817
  ConfigInvalidResponse
818
+ ConfigInvalidContentType
817
819
  ClientMetadataHttpNotFound
818
820
  ClientMetadataNoResponse
819
821
  ClientMetadataInvalidResponse
822
+ ClientMetadataInvalidContentType
820
823
  DisabledInSettings
821
824
  ErrorFetchingSignin
822
825
  InvalidSigninResponse
@@ -824,10 +827,12 @@ experimental domain Audits
824
827
  AccountsNoResponse
825
828
  AccountsInvalidResponse
826
829
  AccountsListEmpty
830
+ AccountsInvalidContentType
827
831
  IdTokenHttpNotFound
828
832
  IdTokenNoResponse
829
833
  IdTokenInvalidResponse
830
834
  IdTokenInvalidRequest
835
+ IdTokenInvalidContentType
831
836
  ErrorIdToken
832
837
  Canceled
833
838
  RpPageNotVisible
@@ -1412,6 +1417,8 @@ experimental domain CSS
1412
1417
  number endLine
1413
1418
  # Column offset of the end of the stylesheet within the resource (zero based).
1414
1419
  number endColumn
1420
+ # If the style sheet was loaded from a network resource, this indicates when the resource failed to load
1421
+ experimental optional boolean loadingFailed
1415
1422
 
1416
1423
  # CSS rule representation.
1417
1424
  type CSSRule extends object
@@ -3495,7 +3495,7 @@ export namespace Protocol {
3495
3495
  * third_party/blink/public/mojom/devtools/inspector_issue.mojom to include
3496
3496
  * all cases except for success.
3497
3497
  */
3498
- export type FederatedAuthRequestIssueReason = ('ShouldEmbargo' | 'TooManyRequests' | 'WellKnownHttpNotFound' | 'WellKnownNoResponse' | 'WellKnownInvalidResponse' | 'WellKnownListEmpty' | 'ConfigNotInWellKnown' | 'WellKnownTooBig' | 'ConfigHttpNotFound' | 'ConfigNoResponse' | 'ConfigInvalidResponse' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'DisabledInSettings' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'AccountsListEmpty' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenInvalidRequest' | 'ErrorIdToken' | 'Canceled' | 'RpPageNotVisible');
3498
+ export type FederatedAuthRequestIssueReason = ('ShouldEmbargo' | 'TooManyRequests' | 'WellKnownHttpNotFound' | 'WellKnownNoResponse' | 'WellKnownInvalidResponse' | 'WellKnownListEmpty' | 'WellKnownInvalidContentType' | 'ConfigNotInWellKnown' | 'WellKnownTooBig' | 'ConfigHttpNotFound' | 'ConfigNoResponse' | 'ConfigInvalidResponse' | 'ConfigInvalidContentType' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'ClientMetadataInvalidContentType' | 'DisabledInSettings' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'AccountsListEmpty' | 'AccountsInvalidContentType' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenInvalidRequest' | 'IdTokenInvalidContentType' | 'ErrorIdToken' | 'Canceled' | 'RpPageNotVisible');
3499
3499
 
3500
3500
  /**
3501
3501
  * This issue tracks client hints related issues. It's used to deprecate old
@@ -4253,6 +4253,10 @@ export namespace Protocol {
4253
4253
  * Column offset of the end of the stylesheet within the resource (zero based).
4254
4254
  */
4255
4255
  endColumn: number;
4256
+ /**
4257
+ * If the style sheet was loaded from a network resource, this indicates when the resource failed to load
4258
+ */
4259
+ loadingFailed?: boolean;
4256
4260
  }
4257
4261
 
4258
4262
  /**