Skip to content

Commit

Permalink
Fix rotateApplicationClientSecret scope name
Browse files Browse the repository at this point in the history
  • Loading branch information
jlevers committed Nov 10, 2024
1 parent 5b412ee commit 7d92f78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/metadata/scopes.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"/applications/2023-11-30/clientSecret": {
"post": "sellingpartnerapi::client_credentials:rotation"
"post": "sellingpartnerapi::client_credential:rotation"
},
"/authorization/v1/authorizationCode": {
"get": "sellingpartnerapi::migration"
Expand Down
2 changes: 1 addition & 1 deletion src/Enums/GrantlessScope.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ enum GrantlessScope: string

case NOTIFICATIONS = 'sellingpartnerapi::notifications';
case TOKEN_MIGRATION = 'sellingpartnerapi::migration';
case ROTATE_TOKEN = 'sellingpartnerapi::client_credentials:rotation';
case ROTATE_TOKEN = 'sellingpartnerapi::client_credential:rotation';
}

0 comments on commit 7d92f78

Please sign in to comment.