diff --git a/CHANGELOG.md b/CHANGELOG.md index e1129ea..28a49a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Change the way to check if the cost center is valid +## [1.45.0] - 2024-10-28 + +### Changed + +- Changed the token validation directive of the getUserByEmail operation + ## [1.44.13] - 2024-10-15 ### Fixed diff --git a/graphql/schema.graphql b/graphql/schema.graphql index 1ca7d69..dd7e1e1 100644 --- a/graphql/schema.graphql +++ b/graphql/schema.graphql @@ -31,7 +31,7 @@ type Query { getUserByEmail(email: String!): [User] @cacheControl(scope: PRIVATE) @withSender - @checkUserAccess + @validateStoreUserAccess listAllUsers: [User] @cacheControl(scope: PRIVATE, maxAge: SHORT) diff --git a/manifest.json b/manifest.json index 2e05f97..4b98057 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "name": "storefront-permissions", "vendor": "vtex", - "version": "1.44.13", + "version": "1.45.0", "title": "Storefront Permissions", "description": "Manage User's permissions on apps that relates to this app", "mustUpdateAt": "2022-08-28", diff --git a/node/package.json b/node/package.json index 9d3069b..9634fdf 100644 --- a/node/package.json +++ b/node/package.json @@ -1,6 +1,6 @@ { "name": "vtex.checkout-ui-custom", - "version": "1.44.13", + "version": "1.45.0", "dependencies": { "@vtex/api": "6.47.0", "atob": "^2.1.2",