devtools-protocol 0.0.1099658 → 0.0.1100832

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,9 @@
1541
1541
  "FormAutocompleteAttributeEmptyError",
1542
1542
  "FormEmptyIdAndNameAttributesForInputError",
1543
1543
  "FormAriaLabelledByToNonExistingId",
1544
- "FormInputAssignedAutocompleteValueToIdOrNameAttributeError"
1544
+ "FormInputAssignedAutocompleteValueToIdOrNameAttributeError",
1545
+ "FormLabelHasNeitherForNorNestedInput",
1546
+ "FormLabelForMatchesNonExistingIdError"
1545
1547
  ]
1546
1548
  },
1547
1549
  {
@@ -19736,24 +19738,6 @@
19736
19738
  }
19737
19739
  ]
19738
19740
  },
19739
- {
19740
- "name": "clearTrustTokens",
19741
- "description": "Removes all Trust Tokens issued by the provided issuerOrigin.\nLeaves other stored data, including the issuer's Redemption Records, intact.",
19742
- "experimental": true,
19743
- "parameters": [
19744
- {
19745
- "name": "issuerOrigin",
19746
- "type": "string"
19747
- }
19748
- ],
19749
- "returns": [
19750
- {
19751
- "name": "didDeleteTokens",
19752
- "description": "True if any tokens were deleted, false otherwise.",
19753
- "type": "boolean"
19754
- }
19755
- ]
19756
- },
19757
19741
  {
19758
19742
  "name": "getInterestGroupDetails",
19759
19743
  "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.1099658",
3
+ "version": "0.0.1100832",
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,8 @@ experimental domain Audits
750
750
  FormEmptyIdAndNameAttributesForInputError
751
751
  FormAriaLabelledByToNonExistingId
752
752
  FormInputAssignedAutocompleteValueToIdOrNameAttributeError
753
+ FormLabelHasNeitherForNorNestedInput
754
+ FormLabelForMatchesNonExistingIdError
753
755
 
754
756
  # Depending on the concrete errorType, different properties are set.
755
757
  type GenericIssueDetails extends object
@@ -9356,15 +9358,6 @@ experimental domain Storage
9356
9358
  returns
9357
9359
  array of TrustTokens tokens
9358
9360
 
9359
- # Removes all Trust Tokens issued by the provided issuerOrigin.
9360
- # Leaves other stored data, including the issuer's Redemption Records, intact.
9361
- experimental command clearTrustTokens
9362
- parameters
9363
- string issuerOrigin
9364
- returns
9365
- # True if any tokens were deleted, false otherwise.
9366
- boolean didDeleteTokens
9367
-
9368
9361
  # Gets details for a named interest group.
9369
9362
  experimental command getInterestGroupDetails
9370
9363
  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' | 'FormLabelForMatchesNonExistingIdError');
3446
3446
 
3447
3447
  /**
3448
3448
  * Depending on the concrete errorType, different properties are set.
@@ -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;