diff --git a/CHANGELOG.md b/CHANGELOG.md index 18c04bd..b6bc7a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +### 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/node/resolvers/Routes/index.ts b/node/resolvers/Routes/index.ts index 3964768..57164c8 100644 --- a/node/resolvers/Routes/index.ts +++ b/node/resolvers/Routes/index.ts @@ -535,6 +535,7 @@ export const Routes = { address: { ...address, geoCoordinates: address.geoCoordinates ?? [], + isDisposable: true, }, clearAddressIfPostalCodeNotFound: false, })