@ikas/storefront 0.1.24-alpha.5 → 0.1.24-alpha.7
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/build/api/checkout/__generated__/getCheckoutById.d.ts +4 -0
- package/build/api/checkout/__generated__/listPaymentGateway.d.ts +3 -1
- package/build/api/customer/__generated__/customerForgotPassword.d.ts +1 -0
- package/build/api/customer/__generated__/registerCustomer.d.ts +1 -0
- package/build/index.es.js +15476 -15290
- package/build/index.js +15385 -15198
- package/build/models/data/cart/index.d.ts +1 -0
- package/build/models/data/order/index.d.ts +1 -2
- package/build/models/data/order/line-item/index.d.ts +1 -0
- package/build/models/data/order-transaction/index.d.ts +1 -0
- package/build/models/data/product/variant/price/index.d.ts +1 -0
- package/build/utils/currency.d.ts +6 -0
- package/package.json +1 -1
|
@@ -18,6 +18,8 @@ export interface getCheckoutById_getCheckoutById_billingAddress_country {
|
|
|
18
18
|
code: string | null;
|
|
19
19
|
id: string | null;
|
|
20
20
|
name: string;
|
|
21
|
+
iso2: string | null;
|
|
22
|
+
iso3: string | null;
|
|
21
23
|
}
|
|
22
24
|
export interface getCheckoutById_getCheckoutById_billingAddress_district {
|
|
23
25
|
__typename: "OrderAddressDistrict";
|
|
@@ -69,6 +71,8 @@ export interface getCheckoutById_getCheckoutById_shippingAddress_country {
|
|
|
69
71
|
id: string | null;
|
|
70
72
|
code: string | null;
|
|
71
73
|
name: string;
|
|
74
|
+
iso2: string | null;
|
|
75
|
+
iso3: string | null;
|
|
72
76
|
}
|
|
73
77
|
export interface getCheckoutById_getCheckoutById_shippingAddress_district {
|
|
74
78
|
__typename: "OrderAddressDistrict";
|
|
@@ -14,7 +14,7 @@ export interface listPaymentGateway_listPaymentGateway_additionalPrices {
|
|
|
14
14
|
export interface listPaymentGateway_listPaymentGateway_translations {
|
|
15
15
|
__typename: "PaymentGatewayTranslation";
|
|
16
16
|
description: string | null;
|
|
17
|
-
locale: string;
|
|
17
|
+
locale: string | null;
|
|
18
18
|
name: string | null;
|
|
19
19
|
}
|
|
20
20
|
export interface listPaymentGateway_listPaymentGateway {
|
|
@@ -30,6 +30,8 @@ export interface listPaymentGateway_listPaymentGateway {
|
|
|
30
30
|
logoUrl: string | null;
|
|
31
31
|
additionalPrices: listPaymentGateway_listPaymentGateway_additionalPrices[] | null;
|
|
32
32
|
translations: listPaymentGateway_listPaymentGateway_translations[] | null;
|
|
33
|
+
supportedCurrencies: string[] | null;
|
|
34
|
+
availableCountries: string[] | null;
|
|
33
35
|
}
|
|
34
36
|
export interface listPaymentGateway {
|
|
35
37
|
listPaymentGateway: listPaymentGateway_listPaymentGateway[];
|