@elasticpath/js-sdk 14.0.0 → 15.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +10 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -8532,7 +8532,16 @@ interface Location extends Identifiable, LocationBase {}
|
|
|
8532
8532
|
|
|
8533
8533
|
interface CreateLocationBody extends LocationAttributes {}
|
|
8534
8534
|
|
|
8535
|
-
interface UpdateLocationBody
|
|
8535
|
+
interface UpdateLocationBody
|
|
8536
|
+
extends Omit<
|
|
8537
|
+
LocationAttributes,
|
|
8538
|
+
'external_ref' | 'description' | 'address' | 'geolocation'
|
|
8539
|
+
> {
|
|
8540
|
+
external_ref?: string | null
|
|
8541
|
+
description?: string | null
|
|
8542
|
+
address?: string[] | null[]
|
|
8543
|
+
geolocation?: GeolocationDetails | null
|
|
8544
|
+
}
|
|
8536
8545
|
|
|
8537
8546
|
/**
|
|
8538
8547
|
* Location Endpoints
|
package/dist/index.esm.js
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED