devtools-protocol 0.0.1099658 → 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
|
{
|
@@ -19736,24 +19737,6 @@
|
|
19736
19737
|
}
|
19737
19738
|
]
|
19738
19739
|
},
|
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
19740
|
{
|
19758
19741
|
"name": "getInterestGroupDetails",
|
19759
19742
|
"description": "Gets details for a named interest group.",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -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
|
@@ -9356,15 +9357,6 @@ experimental domain Storage
|
|
9356
9357
|
returns
|
9357
9358
|
array of TrustTokens tokens
|
9358
9359
|
|
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
9360
|
# Gets details for a named interest group.
|
9369
9361
|
experimental command getInterestGroupDetails
|
9370
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
|
*/
|
package/types/protocol.d.ts
CHANGED
@@ -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.
|
@@ -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;
|