@wix/auto_sdk_ecom_cart-v-2 1.0.10 → 1.0.11

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.
@@ -1211,6 +1211,8 @@ interface Address {
1211
1211
  * @maxLength 100
1212
1212
  */
1213
1213
  addressLine2?: string | null;
1214
+ /** Geocode object containing latitude and longitude coordinates. */
1215
+ geocode?: AddressLocation;
1214
1216
  /**
1215
1217
  * Country's full name.
1216
1218
  * @readonly
@@ -1228,6 +1230,12 @@ interface StreetAddress {
1228
1230
  /** Street name. */
1229
1231
  name?: string;
1230
1232
  }
1233
+ interface AddressLocation {
1234
+ /** Address latitude. */
1235
+ latitude?: number | null;
1236
+ /** Address longitude. */
1237
+ longitude?: number | null;
1238
+ }
1231
1239
  interface DeliveryMethod {
1232
1240
  /**
1233
1241
  * The carrier app id
@@ -1212,6 +1212,8 @@ interface Address {
1212
1212
  * @maxLength 100
1213
1213
  */
1214
1214
  addressLine2?: string | null;
1215
+ /** Geocode object containing latitude and longitude coordinates. */
1216
+ location?: AddressLocation;
1215
1217
  /**
1216
1218
  * Country's full name.
1217
1219
  * @readonly