@wix/auto_sdk_ecom_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.
@@ -756,6 +756,11 @@ interface SelectedMembership {
756
756
  * @format GUID
757
757
  */
758
758
  appId?: string;
759
+ /**
760
+ * Name of the selected membership.
761
+ * @readonly
762
+ */
763
+ name?: TranslatableString;
759
764
  }
760
765
  declare enum ItemStatus {
761
766
  UNKNOWN_ITEM_STATUS = "UNKNOWN_ITEM_STATUS",
@@ -1206,6 +1211,8 @@ interface Address {
1206
1211
  * @maxLength 100
1207
1212
  */
1208
1213
  addressLine2?: string | null;
1214
+ /** Geocode object containing latitude and longitude coordinates. */
1215
+ geocode?: AddressLocation;
1209
1216
  /**
1210
1217
  * Country's full name.
1211
1218
  * @readonly
@@ -1223,6 +1230,12 @@ interface StreetAddress {
1223
1230
  /** Street name. */
1224
1231
  name?: string;
1225
1232
  }
1233
+ interface AddressLocation {
1234
+ /** Address latitude. */
1235
+ latitude?: number | null;
1236
+ /** Address longitude. */
1237
+ longitude?: number | null;
1238
+ }
1226
1239
  interface DeliveryMethod {
1227
1240
  /**
1228
1241
  * The carrier app id
@@ -1691,8 +1704,6 @@ interface Membership {
1691
1704
  * @maxLength 100
1692
1705
  */
1693
1706
  lineItemIds?: string[];
1694
- /** The name of this membership. */
1695
- name?: TranslatableString;
1696
1707
  }
1697
1708
  interface SubscriptionCharges {
1698
1709
  /**
@@ -745,6 +745,11 @@ interface SelectedMembership {
745
745
  * @format GUID
746
746
  */
747
747
  appId?: string;
748
+ /**
749
+ * Name of the selected membership.
750
+ * @readonly
751
+ */
752
+ name?: TranslatableString;
748
753
  }
749
754
  declare enum ItemStatus {
750
755
  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
+ location?: AddressLocation;
1210
1217
  /**
1211
1218
  * Country's full name.
1212
1219
  * @readonly
@@ -1726,8 +1733,6 @@ interface Membership {
1726
1733
  * @maxLength 100
1727
1734
  */
1728
1735
  lineItemIds?: string[];
1729
- /** The name of this membership. */
1730
- name?: TranslatableString;
1731
1736
  }
1732
1737
  interface SubscriptionCharges {
1733
1738
  /**