devtools-protocol 0.0.1119769 → 0.0.1120988

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.
@@ -1547,7 +1547,8 @@
1547
1547
  "FormAriaLabelledByToNonExistingId",
1548
1548
  "FormInputAssignedAutocompleteValueToIdOrNameAttributeError",
1549
1549
  "FormLabelHasNeitherForNorNestedInput",
1550
- "FormLabelForMatchesNonExistingIdError"
1550
+ "FormLabelForMatchesNonExistingIdError",
1551
+ "FormInputHasWrongButWellIntendedAutocompleteValueError"
1551
1552
  ]
1552
1553
  },
1553
1554
  {
@@ -22982,6 +22983,10 @@
22982
22983
  "name": "prerenderAttemptCompleted",
22983
22984
  "description": "Fired when a prerender attempt is completed.",
22984
22985
  "parameters": [
22986
+ {
22987
+ "name": "key",
22988
+ "$ref": "PreloadingAttemptKey"
22989
+ },
22985
22990
  {
22986
22991
  "name": "initiatingFrameId",
22987
22992
  "description": "The frame id of the frame initiating prerendering.",
@@ -23007,6 +23012,10 @@
23007
23012
  "name": "prefetchStatusUpdated",
23008
23013
  "description": "Fired when a prefetch attempt is updated.",
23009
23014
  "parameters": [
23015
+ {
23016
+ "name": "key",
23017
+ "$ref": "PreloadingAttemptKey"
23018
+ },
23010
23019
  {
23011
23020
  "name": "initiatingFrameId",
23012
23021
  "description": "The frame id of the frame initiating prefetch.",
@@ -23026,6 +23035,10 @@
23026
23035
  "name": "prerenderStatusUpdated",
23027
23036
  "description": "Fired when a prerender attempt is updated.",
23028
23037
  "parameters": [
23038
+ {
23039
+ "name": "key",
23040
+ "$ref": "PreloadingAttemptKey"
23041
+ },
23029
23042
  {
23030
23043
  "name": "initiatingFrameId",
23031
23044
  "description": "The frame id of the frame initiating prerender.",
@@ -23043,8 +23056,12 @@
23043
23056
  },
23044
23057
  {
23045
23058
  "name": "preloadingAttemptSourcesUpdated",
23046
- "description": "Send a list of sources for all preloading attempts.",
23059
+ "description": "Send a list of sources for all preloading attempts in a document.",
23047
23060
  "parameters": [
23061
+ {
23062
+ "name": "loaderId",
23063
+ "$ref": "Network.LoaderId"
23064
+ },
23048
23065
  {
23049
23066
  "name": "preloadingAttemptSources",
23050
23067
  "type": "array",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1119769",
3
+ "version": "0.0.1120988",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -756,6 +756,7 @@ experimental domain Audits
756
756
  FormInputAssignedAutocompleteValueToIdOrNameAttributeError
757
757
  FormLabelHasNeitherForNorNestedInput
758
758
  FormLabelForMatchesNonExistingIdError
759
+ FormInputHasWrongButWellIntendedAutocompleteValueError
759
760
 
760
761
  # Depending on the concrete errorType, different properties are set.
761
762
  type GenericIssueDetails extends object
@@ -10867,6 +10868,7 @@ experimental domain Preload
10867
10868
  # Fired when a prerender attempt is completed.
10868
10869
  event prerenderAttemptCompleted
10869
10870
  parameters
10871
+ PreloadingAttemptKey key
10870
10872
  # The frame id of the frame initiating prerendering.
10871
10873
  Page.FrameId initiatingFrameId
10872
10874
  string prerenderingUrl
@@ -10890,6 +10892,7 @@ experimental domain Preload
10890
10892
  # Fired when a prefetch attempt is updated.
10891
10893
  event prefetchStatusUpdated
10892
10894
  parameters
10895
+ PreloadingAttemptKey key
10893
10896
  # The frame id of the frame initiating prefetch.
10894
10897
  Page.FrameId initiatingFrameId
10895
10898
  string prefetchUrl
@@ -10898,14 +10901,16 @@ experimental domain Preload
10898
10901
  # Fired when a prerender attempt is updated.
10899
10902
  event prerenderStatusUpdated
10900
10903
  parameters
10904
+ PreloadingAttemptKey key
10901
10905
  # The frame id of the frame initiating prerender.
10902
10906
  Page.FrameId initiatingFrameId
10903
10907
  string prerenderingUrl
10904
10908
  PreloadingStatus status
10905
10909
 
10906
- # Send a list of sources for all preloading attempts.
10910
+ # Send a list of sources for all preloading attempts in a document.
10907
10911
  event preloadingAttemptSourcesUpdated
10908
10912
  parameters
10913
+ Network.LoaderId loaderId
10909
10914
  array of PreloadingAttemptSource preloadingAttemptSources
10910
10915
 
10911
10916
  # This domain allows interacting with the FedCM dialog.
@@ -723,7 +723,7 @@ export namespace ProtocolMapping {
723
723
  */
724
724
  'Preload.prerenderStatusUpdated': [Protocol.Preload.PrerenderStatusUpdatedEvent];
725
725
  /**
726
- * Send a list of sources for all preloading attempts.
726
+ * Send a list of sources for all preloading attempts in a document.
727
727
  */
728
728
  'Preload.preloadingAttemptSourcesUpdated': [Protocol.Preload.PreloadingAttemptSourcesUpdatedEvent];
729
729
  'FedCm.dialogShown': [Protocol.FedCm.DialogShownEvent];
@@ -3963,7 +3963,7 @@ export namespace ProtocolProxyApi {
3963
3963
  on(event: 'prerenderStatusUpdated', listener: (params: Protocol.Preload.PrerenderStatusUpdatedEvent) => void): void;
3964
3964
 
3965
3965
  /**
3966
- * Send a list of sources for all preloading attempts.
3966
+ * Send a list of sources for all preloading attempts in a document.
3967
3967
  */
3968
3968
  on(event: 'preloadingAttemptSourcesUpdated', listener: (params: Protocol.Preload.PreloadingAttemptSourcesUpdatedEvent) => void): void;
3969
3969
 
@@ -3443,7 +3443,7 @@ export namespace Protocol {
3443
3443
  location?: SourceCodeLocation;
3444
3444
  }
3445
3445
 
3446
- export type GenericIssueErrorType = ('CrossOriginPortalPostMessageError' | 'FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError' | 'FormAutocompleteAttributeEmptyError' | 'FormEmptyIdAndNameAttributesForInputError' | 'FormAriaLabelledByToNonExistingId' | 'FormInputAssignedAutocompleteValueToIdOrNameAttributeError' | 'FormLabelHasNeitherForNorNestedInput' | 'FormLabelForMatchesNonExistingIdError');
3446
+ export type GenericIssueErrorType = ('CrossOriginPortalPostMessageError' | 'FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError' | 'FormAutocompleteAttributeEmptyError' | 'FormEmptyIdAndNameAttributesForInputError' | 'FormAriaLabelledByToNonExistingId' | 'FormInputAssignedAutocompleteValueToIdOrNameAttributeError' | 'FormLabelHasNeitherForNorNestedInput' | 'FormLabelForMatchesNonExistingIdError' | 'FormInputHasWrongButWellIntendedAutocompleteValueError');
3447
3447
 
3448
3448
  /**
3449
3449
  * Depending on the concrete errorType, different properties are set.
@@ -16955,6 +16955,7 @@ export namespace Protocol {
16955
16955
  * Fired when a prerender attempt is completed.
16956
16956
  */
16957
16957
  export interface PrerenderAttemptCompletedEvent {
16958
+ key: PreloadingAttemptKey;
16958
16959
  /**
16959
16960
  * The frame id of the frame initiating prerendering.
16960
16961
  */
@@ -16972,6 +16973,7 @@ export namespace Protocol {
16972
16973
  * Fired when a prefetch attempt is updated.
16973
16974
  */
16974
16975
  export interface PrefetchStatusUpdatedEvent {
16976
+ key: PreloadingAttemptKey;
16975
16977
  /**
16976
16978
  * The frame id of the frame initiating prefetch.
16977
16979
  */
@@ -16984,6 +16986,7 @@ export namespace Protocol {
16984
16986
  * Fired when a prerender attempt is updated.
16985
16987
  */
16986
16988
  export interface PrerenderStatusUpdatedEvent {
16989
+ key: PreloadingAttemptKey;
16987
16990
  /**
16988
16991
  * The frame id of the frame initiating prerender.
16989
16992
  */
@@ -16993,9 +16996,10 @@ export namespace Protocol {
16993
16996
  }
16994
16997
 
16995
16998
  /**
16996
- * Send a list of sources for all preloading attempts.
16999
+ * Send a list of sources for all preloading attempts in a document.
16997
17000
  */
16998
17001
  export interface PreloadingAttemptSourcesUpdatedEvent {
17002
+ loaderId: Network.LoaderId;
16999
17003
  preloadingAttemptSources: PreloadingAttemptSource[];
17000
17004
  }
17001
17005
  }