@zenky/storefront-api 0.0.29 → 0.0.31
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.d.ts +3 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -445,8 +445,9 @@ export interface City {
|
|
|
445
445
|
name: string | null;
|
|
446
446
|
timezone: string;
|
|
447
447
|
coordinates: GeoLocation | null;
|
|
448
|
-
stocks
|
|
449
|
-
delivery_zones
|
|
448
|
+
stocks?: Stock[];
|
|
449
|
+
delivery_zones?: DeliveryZone[];
|
|
450
|
+
phones?: Phone[];
|
|
450
451
|
}
|
|
451
452
|
export interface StoreSettings {
|
|
452
453
|
country: string;
|