Skip to content

Commit 5b1d093

Browse files
author
Jakub Kulhan
committed
autoupdated protocol.json & generated files
1 parent 886cc22 commit 5b1d093

File tree

8 files changed

+4
-178
lines changed

8 files changed

+4
-178
lines changed

gen-src/ChromeDevtoolsProtocol/Domain/StorageDomain.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010
use ChromeDevtoolsProtocol\Model\Storage\ClearDataForOriginRequest;
1111
use ChromeDevtoolsProtocol\Model\Storage\ClearDataForStorageKeyRequest;
1212
use ChromeDevtoolsProtocol\Model\Storage\ClearSharedStorageEntriesRequest;
13-
use ChromeDevtoolsProtocol\Model\Storage\ClearTrustTokensRequest;
14-
use ChromeDevtoolsProtocol\Model\Storage\ClearTrustTokensResponse;
1513
use ChromeDevtoolsProtocol\Model\Storage\DeleteSharedStorageEntryRequest;
1614
use ChromeDevtoolsProtocol\Model\Storage\GetCookiesRequest;
1715
use ChromeDevtoolsProtocol\Model\Storage\GetCookiesResponse;
@@ -82,13 +80,6 @@ public function clearSharedStorageEntries(ContextInterface $ctx, ClearSharedStor
8280
}
8381

8482

85-
public function clearTrustTokens(ContextInterface $ctx, ClearTrustTokensRequest $request): ClearTrustTokensResponse
86-
{
87-
$response = $this->internalClient->executeCommand($ctx, 'Storage.clearTrustTokens', $request);
88-
return ClearTrustTokensResponse::fromJson($response);
89-
}
90-
91-
9283
public function deleteSharedStorageEntry(ContextInterface $ctx, DeleteSharedStorageEntryRequest $request): void
9384
{
9485
$this->internalClient->executeCommand($ctx, 'Storage.deleteSharedStorageEntry', $request);

gen-src/ChromeDevtoolsProtocol/Domain/StorageDomainInterface.php

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
use ChromeDevtoolsProtocol\Model\Storage\ClearDataForOriginRequest;
1010
use ChromeDevtoolsProtocol\Model\Storage\ClearDataForStorageKeyRequest;
1111
use ChromeDevtoolsProtocol\Model\Storage\ClearSharedStorageEntriesRequest;
12-
use ChromeDevtoolsProtocol\Model\Storage\ClearTrustTokensRequest;
13-
use ChromeDevtoolsProtocol\Model\Storage\ClearTrustTokensResponse;
1412
use ChromeDevtoolsProtocol\Model\Storage\DeleteSharedStorageEntryRequest;
1513
use ChromeDevtoolsProtocol\Model\Storage\GetCookiesRequest;
1614
use ChromeDevtoolsProtocol\Model\Storage\GetCookiesResponse;
@@ -100,17 +98,6 @@ public function clearDataForStorageKey(ContextInterface $ctx, ClearDataForStorag
10098
public function clearSharedStorageEntries(ContextInterface $ctx, ClearSharedStorageEntriesRequest $request): void;
10199

102100

103-
/**
104-
* Removes all Trust Tokens issued by the provided issuerOrigin. Leaves other stored data, including the issuer's Redemption Records, intact.
105-
*
106-
* @param ContextInterface $ctx
107-
* @param ClearTrustTokensRequest $request
108-
*
109-
* @return ClearTrustTokensResponse
110-
*/
111-
public function clearTrustTokens(ContextInterface $ctx, ClearTrustTokensRequest $request): ClearTrustTokensResponse;
112-
113-
114101
/**
115102
* Deletes entry for `key` (if it exists) for a given origin's shared storage.
116103
*

gen-src/ChromeDevtoolsProtocol/Model/Audits/GenericIssueErrorTypeEnum.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,5 @@ final class GenericIssueErrorTypeEnum
1919
public const FORM_EMPTY_ID_AND_NAME_ATTRIBUTES_FOR_INPUT_ERROR = 'FormEmptyIdAndNameAttributesForInputError';
2020
public const FORM_ARIA_LABELLED_BY_TO_NON_EXISTING_ID = 'FormAriaLabelledByToNonExistingId';
2121
public const FORM_INPUT_ASSIGNED_AUTOCOMPLETE_VALUE_TO_ID_OR_NAME_ATTRIBUTE_ERROR = 'FormInputAssignedAutocompleteValueToIdOrNameAttributeError';
22+
public const FORM_LABEL_HAS_NEITHER_FOR_NOR_NESTED_INPUT = 'FormLabelHasNeitherForNorNestedInput';
2223
}

gen-src/ChromeDevtoolsProtocol/Model/Storage/ClearTrustTokensRequest.php

Lines changed: 0 additions & 51 deletions
This file was deleted.

gen-src/ChromeDevtoolsProtocol/Model/Storage/ClearTrustTokensRequestBuilder.php

Lines changed: 0 additions & 41 deletions
This file was deleted.

gen-src/ChromeDevtoolsProtocol/Model/Storage/ClearTrustTokensResponse.php

Lines changed: 0 additions & 44 deletions
This file was deleted.

protocol.json

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1541,7 +1541,8 @@
15411541
"FormAutocompleteAttributeEmptyError",
15421542
"FormEmptyIdAndNameAttributesForInputError",
15431543
"FormAriaLabelledByToNonExistingId",
1544-
"FormInputAssignedAutocompleteValueToIdOrNameAttributeError"
1544+
"FormInputAssignedAutocompleteValueToIdOrNameAttributeError",
1545+
"FormLabelHasNeitherForNorNestedInput"
15451546
]
15461547
},
15471548
{
@@ -23893,24 +23894,6 @@
2389323894
}
2389423895
]
2389523896
},
23896-
{
23897-
"name": "clearTrustTokens",
23898-
"description": "Removes all Trust Tokens issued by the provided issuerOrigin. Leaves other stored data, including the issuer's Redemption Records, intact.",
23899-
"experimental": true,
23900-
"parameters": [
23901-
{
23902-
"name": "issuerOrigin",
23903-
"type": "string"
23904-
}
23905-
],
23906-
"returns": [
23907-
{
23908-
"name": "didDeleteTokens",
23909-
"description": "True if any tokens were deleted, false otherwise.",
23910-
"type": "boolean"
23911-
}
23912-
]
23913-
},
2391423897
{
2391523898
"name": "deleteSharedStorageEntry",
2391623899
"description": "Deletes entry for `key` (if it exists) for a given origin's shared storage.",

protocol.json.md5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
c471f77932e2a4ac52e268b240b26238 protocol.json
1+
3f805332e04fa42653ab5efa2c248f90 protocol.json

0 commit comments

Comments
 (0)