@wix/auto_sdk_ecom_current-cart-v-2 1.0.9 → 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.
@@ -757,6 +757,11 @@ interface SelectedMembership {
757
757
  * @format GUID
758
758
  */
759
759
  appId?: string;
760
+ /**
761
+ * Name of the selected membership.
762
+ * @readonly
763
+ */
764
+ name?: TranslatableString;
760
765
  }
761
766
  declare enum ItemStatus {
762
767
  UNKNOWN_ITEM_STATUS = "UNKNOWN_ITEM_STATUS",
@@ -1207,6 +1212,8 @@ interface Address {
1207
1212
  * @maxLength 100
1208
1213
  */
1209
1214
  addressLine2?: string | null;
1215
+ /** Geocode object containing latitude and longitude coordinates. */
1216
+ geocode?: AddressLocation;
1210
1217
  /**
1211
1218
  * Country's full name.
1212
1219
  * @readonly
@@ -1224,6 +1231,12 @@ interface StreetAddress {
1224
1231
  /** Street name. */
1225
1232
  name?: string;
1226
1233
  }
1234
+ interface AddressLocation {
1235
+ /** Address latitude. */
1236
+ latitude?: number | null;
1237
+ /** Address longitude. */
1238
+ longitude?: number | null;
1239
+ }
1227
1240
  interface DeliveryMethod {
1228
1241
  /**
1229
1242
  * The carrier app id
@@ -1692,8 +1705,6 @@ interface Membership {
1692
1705
  * @maxLength 100
1693
1706
  */
1694
1707
  lineItemIds?: string[];
1695
- /** The name of this membership. */
1696
- name?: TranslatableString;
1697
1708
  }
1698
1709
  interface SubscriptionCharges {
1699
1710
  /**