devtools-protocol 0.0.1099089 → 0.0.1100268

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.
@@ -1541,7 +1541,8 @@
1541
1541
  "FormAutocompleteAttributeEmptyError",
1542
1542
  "FormEmptyIdAndNameAttributesForInputError",
1543
1543
  "FormAriaLabelledByToNonExistingId",
1544
- "FormInputAssignedAutocompleteValueToIdOrNameAttributeError"
1544
+ "FormInputAssignedAutocompleteValueToIdOrNameAttributeError",
1545
+ "FormLabelHasNeitherForNorNestedInput"
1545
1546
  ]
1546
1547
  },
1547
1548
  {
@@ -16479,7 +16480,8 @@
16479
16480
  "PrimaryMainFrameRendererProcessKilled",
16480
16481
  "ActivationFramePolicyNotCompatible",
16481
16482
  "PreloadingDisabled",
16482
- "BatterySaverEnabled"
16483
+ "BatterySaverEnabled",
16484
+ "ActivatedDuringMainFrameNavigation"
16483
16485
  ]
16484
16486
  }
16485
16487
  ],
@@ -19735,24 +19737,6 @@
19735
19737
  }
19736
19738
  ]
19737
19739
  },
19738
- {
19739
- "name": "clearTrustTokens",
19740
- "description": "Removes all Trust Tokens issued by the provided issuerOrigin.\nLeaves other stored data, including the issuer's Redemption Records, intact.",
19741
- "experimental": true,
19742
- "parameters": [
19743
- {
19744
- "name": "issuerOrigin",
19745
- "type": "string"
19746
- }
19747
- ],
19748
- "returns": [
19749
- {
19750
- "name": "didDeleteTokens",
19751
- "description": "True if any tokens were deleted, false otherwise.",
19752
- "type": "boolean"
19753
- }
19754
- ]
19755
- },
19756
19740
  {
19757
19741
  "name": "getInterestGroupDetails",
19758
19742
  "description": "Gets details for a named interest group.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1099089",
3
+ "version": "0.0.1100268",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -750,6 +750,7 @@ experimental domain Audits
750
750
  FormEmptyIdAndNameAttributesForInputError
751
751
  FormAriaLabelledByToNonExistingId
752
752
  FormInputAssignedAutocompleteValueToIdOrNameAttributeError
753
+ FormLabelHasNeitherForNorNestedInput
753
754
 
754
755
  # Depending on the concrete errorType, different properties are set.
755
756
  type GenericIssueDetails extends object
@@ -8584,6 +8585,7 @@ domain Page
8584
8585
  ActivationFramePolicyNotCompatible
8585
8586
  PreloadingDisabled
8586
8587
  BatterySaverEnabled
8588
+ ActivatedDuringMainFrameNavigation
8587
8589
 
8588
8590
  # Fired when a prerender attempt is completed.
8589
8591
  experimental event prerenderAttemptCompleted
@@ -9355,15 +9357,6 @@ experimental domain Storage
9355
9357
  returns
9356
9358
  array of TrustTokens tokens
9357
9359
 
9358
- # Removes all Trust Tokens issued by the provided issuerOrigin.
9359
- # Leaves other stored data, including the issuer's Redemption Records, intact.
9360
- experimental command clearTrustTokens
9361
- parameters
9362
- string issuerOrigin
9363
- returns
9364
- # True if any tokens were deleted, false otherwise.
9365
- boolean didDeleteTokens
9366
-
9367
9360
  # Gets details for a named interest group.
9368
9361
  experimental command getInterestGroupDetails
9369
9362
  parameters
@@ -4095,14 +4095,6 @@ export namespace ProtocolMapping {
4095
4095
  paramsType: [];
4096
4096
  returnType: Protocol.Storage.GetTrustTokensResponse;
4097
4097
  };
4098
- /**
4099
- * Removes all Trust Tokens issued by the provided issuerOrigin.
4100
- * Leaves other stored data, including the issuer's Redemption Records, intact.
4101
- */
4102
- 'Storage.clearTrustTokens': {
4103
- paramsType: [Protocol.Storage.ClearTrustTokensRequest];
4104
- returnType: Protocol.Storage.ClearTrustTokensResponse;
4105
- };
4106
4098
  /**
4107
4099
  * Gets details for a named interest group.
4108
4100
  */
@@ -3303,12 +3303,6 @@ export namespace ProtocolProxyApi {
3303
3303
  */
3304
3304
  getTrustTokens(): Promise<Protocol.Storage.GetTrustTokensResponse>;
3305
3305
 
3306
- /**
3307
- * Removes all Trust Tokens issued by the provided issuerOrigin.
3308
- * Leaves other stored data, including the issuer's Redemption Records, intact.
3309
- */
3310
- clearTrustTokens(params: Protocol.Storage.ClearTrustTokensRequest): Promise<Protocol.Storage.ClearTrustTokensResponse>;
3311
-
3312
3306
  /**
3313
3307
  * Gets details for a named interest group.
3314
3308
  */
@@ -3442,7 +3442,7 @@ export namespace Protocol {
3442
3442
  location?: SourceCodeLocation;
3443
3443
  }
3444
3444
 
3445
- export type GenericIssueErrorType = ('CrossOriginPortalPostMessageError' | 'FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError' | 'FormAutocompleteAttributeEmptyError' | 'FormEmptyIdAndNameAttributesForInputError' | 'FormAriaLabelledByToNonExistingId' | 'FormInputAssignedAutocompleteValueToIdOrNameAttributeError');
3445
+ export type GenericIssueErrorType = ('CrossOriginPortalPostMessageError' | 'FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError' | 'FormAutocompleteAttributeEmptyError' | 'FormEmptyIdAndNameAttributesForInputError' | 'FormAriaLabelledByToNonExistingId' | 'FormInputAssignedAutocompleteValueToIdOrNameAttributeError' | 'FormLabelHasNeitherForNorNestedInput');
3446
3446
 
3447
3447
  /**
3448
3448
  * Depending on the concrete errorType, different properties are set.
@@ -12895,7 +12895,7 @@ export namespace Protocol {
12895
12895
  /**
12896
12896
  * List of FinalStatus reasons for Prerender2.
12897
12897
  */
12898
- export type PrerenderFinalStatus = ('Activated' | 'Destroyed' | 'LowEndDevice' | 'InvalidSchemeRedirect' | 'InvalidSchemeNavigation' | 'InProgressNavigation' | 'NavigationRequestBlockedByCsp' | 'MainFrameNavigation' | 'MojoBinderPolicy' | 'RendererProcessCrashed' | 'RendererProcessKilled' | 'Download' | 'TriggerDestroyed' | 'NavigationNotCommitted' | 'NavigationBadHttpStatus' | 'ClientCertRequested' | 'NavigationRequestNetworkError' | 'MaxNumOfRunningPrerendersExceeded' | 'CancelAllHostsForTesting' | 'DidFailLoad' | 'Stop' | 'SslCertificateError' | 'LoginAuthRequested' | 'UaChangeRequiresReload' | 'BlockedByClient' | 'AudioOutputDeviceRequested' | 'MixedContent' | 'TriggerBackgrounded' | 'EmbedderTriggeredAndCrossOriginRedirected' | 'MemoryLimitExceeded' | 'FailToGetMemoryUsage' | 'DataSaverEnabled' | 'HasEffectiveUrl' | 'ActivatedBeforeStarted' | 'InactivePageRestriction' | 'StartFailed' | 'TimeoutBackgrounded' | 'CrossSiteRedirect' | 'CrossSiteNavigation' | 'SameSiteCrossOriginRedirect' | 'SameSiteCrossOriginNavigation' | 'SameSiteCrossOriginRedirectNotOptIn' | 'SameSiteCrossOriginNavigationNotOptIn' | 'ActivationNavigationParameterMismatch' | 'ActivatedInBackground' | 'EmbedderHostDisallowed' | 'ActivationNavigationDestroyedBeforeSuccess' | 'TabClosedByUserGesture' | 'TabClosedWithoutUserGesture' | 'PrimaryMainFrameRendererProcessCrashed' | 'PrimaryMainFrameRendererProcessKilled' | 'ActivationFramePolicyNotCompatible' | 'PreloadingDisabled' | 'BatterySaverEnabled');
12898
+ export type PrerenderFinalStatus = ('Activated' | 'Destroyed' | 'LowEndDevice' | 'InvalidSchemeRedirect' | 'InvalidSchemeNavigation' | 'InProgressNavigation' | 'NavigationRequestBlockedByCsp' | 'MainFrameNavigation' | 'MojoBinderPolicy' | 'RendererProcessCrashed' | 'RendererProcessKilled' | 'Download' | 'TriggerDestroyed' | 'NavigationNotCommitted' | 'NavigationBadHttpStatus' | 'ClientCertRequested' | 'NavigationRequestNetworkError' | 'MaxNumOfRunningPrerendersExceeded' | 'CancelAllHostsForTesting' | 'DidFailLoad' | 'Stop' | 'SslCertificateError' | 'LoginAuthRequested' | 'UaChangeRequiresReload' | 'BlockedByClient' | 'AudioOutputDeviceRequested' | 'MixedContent' | 'TriggerBackgrounded' | 'EmbedderTriggeredAndCrossOriginRedirected' | 'MemoryLimitExceeded' | 'FailToGetMemoryUsage' | 'DataSaverEnabled' | 'HasEffectiveUrl' | 'ActivatedBeforeStarted' | 'InactivePageRestriction' | 'StartFailed' | 'TimeoutBackgrounded' | 'CrossSiteRedirect' | 'CrossSiteNavigation' | 'SameSiteCrossOriginRedirect' | 'SameSiteCrossOriginNavigation' | 'SameSiteCrossOriginRedirectNotOptIn' | 'SameSiteCrossOriginNavigationNotOptIn' | 'ActivationNavigationParameterMismatch' | 'ActivatedInBackground' | 'EmbedderHostDisallowed' | 'ActivationNavigationDestroyedBeforeSuccess' | 'TabClosedByUserGesture' | 'TabClosedWithoutUserGesture' | 'PrimaryMainFrameRendererProcessCrashed' | 'PrimaryMainFrameRendererProcessKilled' | 'ActivationFramePolicyNotCompatible' | 'PreloadingDisabled' | 'BatterySaverEnabled' | 'ActivatedDuringMainFrameNavigation');
12899
12899
 
12900
12900
  export interface AddScriptToEvaluateOnLoadRequest {
12901
12901
  scriptSource: string;
@@ -14902,17 +14902,6 @@ export namespace Protocol {
14902
14902
  tokens: TrustTokens[];
14903
14903
  }
14904
14904
 
14905
- export interface ClearTrustTokensRequest {
14906
- issuerOrigin: string;
14907
- }
14908
-
14909
- export interface ClearTrustTokensResponse {
14910
- /**
14911
- * True if any tokens were deleted, false otherwise.
14912
- */
14913
- didDeleteTokens: boolean;
14914
- }
14915
-
14916
14905
  export interface GetInterestGroupDetailsRequest {
14917
14906
  ownerOrigin: string;
14918
14907
  name: string;