devtools-protocol 0.0.1179426 → 0.0.1182435

Sign up to get free protection for your applications and to get access to all the features.
@@ -993,7 +993,8 @@
993
993
  "ExcludeInvalidSameParty",
994
994
  "ExcludeSamePartyCrossPartyContext",
995
995
  "ExcludeDomainNonASCII",
996
- "ExcludeThirdPartyCookieBlockedInFirstPartySet"
996
+ "ExcludeThirdPartyCookieBlockedInFirstPartySet",
997
+ "ExcludeThirdPartyPhaseout"
997
998
  ]
998
999
  },
999
1000
  {
@@ -3866,6 +3867,58 @@
3866
3867
  }
3867
3868
  ]
3868
3869
  },
3870
+ {
3871
+ "id": "CSSPropertyRegistration",
3872
+ "description": "Representation of a custom property registration through CSS.registerProperty",
3873
+ "type": "object",
3874
+ "properties": [
3875
+ {
3876
+ "name": "propertyName",
3877
+ "type": "string"
3878
+ },
3879
+ {
3880
+ "name": "initialValue",
3881
+ "optional": true,
3882
+ "$ref": "Value"
3883
+ },
3884
+ {
3885
+ "name": "inherits",
3886
+ "type": "boolean"
3887
+ },
3888
+ {
3889
+ "name": "syntax",
3890
+ "type": "string"
3891
+ }
3892
+ ]
3893
+ },
3894
+ {
3895
+ "id": "CSSPropertyRule",
3896
+ "description": "CSS property at-rule representation.",
3897
+ "type": "object",
3898
+ "properties": [
3899
+ {
3900
+ "name": "styleSheetId",
3901
+ "description": "The css style sheet identifier (absent for user agent stylesheet and user-specified\nstylesheet rules) this rule came from.",
3902
+ "optional": true,
3903
+ "$ref": "StyleSheetId"
3904
+ },
3905
+ {
3906
+ "name": "origin",
3907
+ "description": "Parent stylesheet's origin.",
3908
+ "$ref": "StyleSheetOrigin"
3909
+ },
3910
+ {
3911
+ "name": "propertyName",
3912
+ "description": "Associated property name.",
3913
+ "$ref": "Value"
3914
+ },
3915
+ {
3916
+ "name": "style",
3917
+ "description": "Associated style declaration.",
3918
+ "$ref": "CSSStyle"
3919
+ }
3920
+ ]
3921
+ },
3869
3922
  {
3870
3923
  "id": "CSSKeyframeRule",
3871
3924
  "description": "CSS keyframe rule representation.",
@@ -4164,6 +4217,24 @@
4164
4217
  "$ref": "CSSPositionFallbackRule"
4165
4218
  }
4166
4219
  },
4220
+ {
4221
+ "name": "cssPropertyRules",
4222
+ "description": "A list of CSS at-property rules matching this node.",
4223
+ "optional": true,
4224
+ "type": "array",
4225
+ "items": {
4226
+ "$ref": "CSSPropertyRule"
4227
+ }
4228
+ },
4229
+ {
4230
+ "name": "cssPropertyRegistrations",
4231
+ "description": "A list of CSS property registrations matching this node.",
4232
+ "optional": true,
4233
+ "type": "array",
4234
+ "items": {
4235
+ "$ref": "CSSPropertyRegistration"
4236
+ }
4237
+ },
4167
4238
  {
4168
4239
  "name": "parentLayoutNodeId",
4169
4240
  "description": "Id of the first parent element that does not have display: contents.",
@@ -23988,7 +24059,8 @@
23988
24059
  "type": "string",
23989
24060
  "enum": [
23990
24061
  "AccountChooser",
23991
- "AutoReauthn"
24062
+ "AutoReauthn",
24063
+ "ConfirmIdpSignin"
23992
24064
  ]
23993
24065
  },
23994
24066
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1179426",
3
+ "version": "0.0.1182435",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -483,6 +483,7 @@ experimental domain Audits
483
483
  ExcludeSamePartyCrossPartyContext
484
484
  ExcludeDomainNonASCII
485
485
  ExcludeThirdPartyCookieBlockedInFirstPartySet
486
+ ExcludeThirdPartyPhaseout
486
487
 
487
488
  type CookieWarningReason extends string
488
489
  enum
@@ -1829,6 +1830,28 @@ experimental domain CSS
1829
1830
  # List of keyframes.
1830
1831
  array of CSSKeyframeRule keyframes
1831
1832
 
1833
+ # Representation of a custom property registration through CSS.registerProperty
1834
+ type CSSPropertyRegistration extends object
1835
+ properties
1836
+ string propertyName
1837
+ optional Value initialValue
1838
+ boolean inherits
1839
+ string syntax
1840
+
1841
+
1842
+ # CSS property at-rule representation.
1843
+ type CSSPropertyRule extends object
1844
+ properties
1845
+ # The css style sheet identifier (absent for user agent stylesheet and user-specified
1846
+ # stylesheet rules) this rule came from.
1847
+ optional StyleSheetId styleSheetId
1848
+ # Parent stylesheet's origin.
1849
+ StyleSheetOrigin origin
1850
+ # Associated property name.
1851
+ Value propertyName
1852
+ # Associated style declaration.
1853
+ CSSStyle style
1854
+
1832
1855
  # CSS keyframe rule representation.
1833
1856
  type CSSKeyframeRule extends object
1834
1857
  properties
@@ -1956,6 +1979,10 @@ experimental domain CSS
1956
1979
  optional array of CSSKeyframesRule cssKeyframesRules
1957
1980
  # A list of CSS position fallbacks matching this node.
1958
1981
  optional array of CSSPositionFallbackRule cssPositionFallbackRules
1982
+ # A list of CSS at-property rules matching this node.
1983
+ optional array of CSSPropertyRule cssPropertyRules
1984
+ # A list of CSS property registrations matching this node.
1985
+ optional array of CSSPropertyRegistration cssPropertyRegistrations
1959
1986
  # Id of the first parent element that does not have display: contents.
1960
1987
  experimental optional DOM.NodeId parentLayoutNodeId
1961
1988
 
@@ -11371,6 +11398,7 @@ experimental domain FedCm
11371
11398
  enum
11372
11399
  AccountChooser
11373
11400
  AutoReauthn
11401
+ ConfirmIdpSignin
11374
11402
 
11375
11403
  # Corresponds to IdentityRequestAccount
11376
11404
  type Account extends object
@@ -3276,7 +3276,7 @@ export namespace Protocol {
3276
3276
  frameId: Page.FrameId;
3277
3277
  }
3278
3278
 
3279
- export type CookieExclusionReason = ('ExcludeSameSiteUnspecifiedTreatedAsLax' | 'ExcludeSameSiteNoneInsecure' | 'ExcludeSameSiteLax' | 'ExcludeSameSiteStrict' | 'ExcludeInvalidSameParty' | 'ExcludeSamePartyCrossPartyContext' | 'ExcludeDomainNonASCII' | 'ExcludeThirdPartyCookieBlockedInFirstPartySet');
3279
+ export type CookieExclusionReason = ('ExcludeSameSiteUnspecifiedTreatedAsLax' | 'ExcludeSameSiteNoneInsecure' | 'ExcludeSameSiteLax' | 'ExcludeSameSiteStrict' | 'ExcludeInvalidSameParty' | 'ExcludeSamePartyCrossPartyContext' | 'ExcludeDomainNonASCII' | 'ExcludeThirdPartyCookieBlockedInFirstPartySet' | 'ExcludeThirdPartyPhaseout');
3280
3280
 
3281
3281
  export type CookieWarningReason = ('WarnSameSiteUnspecifiedCrossSiteContext' | 'WarnSameSiteNoneInsecure' | 'WarnSameSiteUnspecifiedLaxAllowUnsafe' | 'WarnSameSiteStrictLaxDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeLax' | 'WarnSameSiteLaxCrossDowngradeStrict' | 'WarnSameSiteLaxCrossDowngradeLax' | 'WarnAttributeValueExceedsMaxSize' | 'WarnDomainNonASCII' | 'WarnThirdPartyPhaseout');
3282
3282
 
@@ -4963,6 +4963,39 @@ export namespace Protocol {
4963
4963
  keyframes: CSSKeyframeRule[];
4964
4964
  }
4965
4965
 
4966
+ /**
4967
+ * Representation of a custom property registration through CSS.registerProperty
4968
+ */
4969
+ export interface CSSPropertyRegistration {
4970
+ propertyName: string;
4971
+ initialValue?: Value;
4972
+ inherits: boolean;
4973
+ syntax: string;
4974
+ }
4975
+
4976
+ /**
4977
+ * CSS property at-rule representation.
4978
+ */
4979
+ export interface CSSPropertyRule {
4980
+ /**
4981
+ * The css style sheet identifier (absent for user agent stylesheet and user-specified
4982
+ * stylesheet rules) this rule came from.
4983
+ */
4984
+ styleSheetId?: StyleSheetId;
4985
+ /**
4986
+ * Parent stylesheet's origin.
4987
+ */
4988
+ origin: StyleSheetOrigin;
4989
+ /**
4990
+ * Associated property name.
4991
+ */
4992
+ propertyName: Value;
4993
+ /**
4994
+ * Associated style declaration.
4995
+ */
4996
+ style: CSSStyle;
4997
+ }
4998
+
4966
4999
  /**
4967
5000
  * CSS keyframe rule representation.
4968
5001
  */
@@ -5152,6 +5185,14 @@ export namespace Protocol {
5152
5185
  * A list of CSS position fallbacks matching this node.
5153
5186
  */
5154
5187
  cssPositionFallbackRules?: CSSPositionFallbackRule[];
5188
+ /**
5189
+ * A list of CSS at-property rules matching this node.
5190
+ */
5191
+ cssPropertyRules?: CSSPropertyRule[];
5192
+ /**
5193
+ * A list of CSS property registrations matching this node.
5194
+ */
5195
+ cssPropertyRegistrations?: CSSPropertyRegistration[];
5155
5196
  /**
5156
5197
  * Id of the first parent element that does not have display: contents.
5157
5198
  */
@@ -17487,7 +17528,7 @@ export namespace Protocol {
17487
17528
  /**
17488
17529
  * Whether the dialog shown is an account chooser or an auto re-authentication dialog.
17489
17530
  */
17490
- export type DialogType = ('AccountChooser' | 'AutoReauthn');
17531
+ export type DialogType = ('AccountChooser' | 'AutoReauthn' | 'ConfirmIdpSignin');
17491
17532
 
17492
17533
  /**
17493
17534
  * Corresponds to IdentityRequestAccount