diff --git a/CHANGELOG.md b/CHANGELOG.md index 62e0e77..98c5827 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. - add directive to validate auth token for some operations +## [1.37.3] - 2023-12-07 + +### Fixed + +- Add 'isDisposable' property to create address requests, indicating whether the address is disposable to prevent duplicates. + ## [1.37.2] - 2023-11-10 ### Fixed diff --git a/manifest.json b/manifest.json index 62dd076..cfa112d 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "name": "storefront-permissions", "vendor": "vtex", - "version": "1.37.2", + "version": "1.37.3", "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 72fa722..cc0dc17 100644 --- a/node/package.json +++ b/node/package.json @@ -1,6 +1,6 @@ { "name": "vtex.checkout-ui-custom", - "version": "1.37.2", + "version": "1.37.3", "dependencies": { "@vtex/api": "6.45.19", "atob": "^2.1.2", diff --git a/node/resolvers/Routes/index.ts b/node/resolvers/Routes/index.ts index 5bbeac3..27a9d58 100644 --- a/node/resolvers/Routes/index.ts +++ b/node/resolvers/Routes/index.ts @@ -488,6 +488,7 @@ export const Routes = { address: { ...address, geoCoordinates: address.geoCoordinates ?? [], + isDisposable: true, }, clearAddressIfPostalCodeNotFound: false, })