@ikas/storefront 1.0.14 → 1.0.15-alpha.1
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/__generated__/global-types.d.ts +6 -1
- package/build/api/blog/__generated__/getBlog.d.ts +15 -13
- package/build/api/blog/__generated__/listBlog.d.ts +15 -13
- package/build/api/blog/__generated__/listBlogCategory.d.ts +15 -13
- package/build/api/blog/__generated__/listBlogMetaData.d.ts +15 -13
- package/build/api/brand/__generated__/listProductBrand.d.ts +3 -3
- package/build/api/category/__generated__/listCategory.d.ts +3 -3
- package/build/api/checkout/__generated__/getOrder.d.ts +3 -3
- package/build/api/checkout/__generated__/listCheckoutSettings.d.ts +1 -1
- package/build/api/customer/__generated__/createOrderRefundRequest.d.ts +3 -3
- package/build/api/customer/__generated__/customerLogin.d.ts +11 -3
- package/build/api/customer/__generated__/getCustomerOrders.d.ts +3 -3
- package/build/api/customer/__generated__/getMyCustomer.d.ts +3 -3
- package/build/api/customer/__generated__/registerCustomer.d.ts +11 -3
- package/build/api/customer/__generated__/saveMyCustomer.d.ts +11 -3
- package/build/api/customer-review/__generated__/listCustomerReviews.d.ts +15 -13
- package/build/api/variant-type/__generated__/listVariantType.d.ts +3 -3
- package/build/index.es.js +1196 -9
- package/build/index.js +1196 -8
- package/build/models/data/checkout-settings/index.d.ts +1 -1
- package/build/models/data/customer/address/index.d.ts +2 -1
- package/build/models/data/order/address/index.d.ts +2 -1
- package/build/utils/helper.d.ts +1 -0
- package/build/utils/postalCodes.d.ts +16 -0
- package/package.json +1 -1
|
@@ -33,6 +33,7 @@ export declare enum CancelledReasonEnum {
|
|
|
33
33
|
*/
|
|
34
34
|
export declare enum CartStatusEnum {
|
|
35
35
|
ACTIVE = "ACTIVE",
|
|
36
|
+
FREEZE = "FREEZE",
|
|
36
37
|
PASSIVE = "PASSIVE"
|
|
37
38
|
}
|
|
38
39
|
/**
|
|
@@ -199,7 +200,8 @@ export declare enum PaymentMethodEnum {
|
|
|
199
200
|
CREDIT_CARD_ON_DELIVERY = "CREDIT_CARD_ON_DELIVERY",
|
|
200
201
|
GIFT_CARD = "GIFT_CARD",
|
|
201
202
|
MONEY_ORDER = "MONEY_ORDER",
|
|
202
|
-
OTHER = "OTHER"
|
|
203
|
+
OTHER = "OTHER",
|
|
204
|
+
WALLET = "WALLET"
|
|
203
205
|
}
|
|
204
206
|
/**
|
|
205
207
|
* ProductAttribute Types
|
|
@@ -241,6 +243,7 @@ export declare enum ProductFilterSortTypeEnum {
|
|
|
241
243
|
*/
|
|
242
244
|
export declare enum ProductFilterTypeEnum {
|
|
243
245
|
ATTRIBUTE = "ATTRIBUTE",
|
|
246
|
+
AVAILABLE_VARIANT_VALUE = "AVAILABLE_VARIANT_VALUE",
|
|
244
247
|
BRAND = "BRAND",
|
|
245
248
|
DISCOUNT_RATIO = "DISCOUNT_RATIO",
|
|
246
249
|
PRICE = "PRICE",
|
|
@@ -404,6 +407,8 @@ export interface CustomerAddressCityInput {
|
|
|
404
407
|
export interface CustomerAddressCountryInput {
|
|
405
408
|
code?: string | null;
|
|
406
409
|
id?: string | null;
|
|
410
|
+
iso2?: string | null;
|
|
411
|
+
iso3?: string | null;
|
|
407
412
|
name: string;
|
|
408
413
|
}
|
|
409
414
|
export interface CustomerAddressDistrictInput {
|
|
@@ -68,9 +68,9 @@ export interface getBlog_listBlog_data {
|
|
|
68
68
|
export interface getBlog_listBlog {
|
|
69
69
|
__typename: "BlogPaginationResponse";
|
|
70
70
|
/**
|
|
71
|
-
* Returns the first three records of each page in the records returned as a
|
|
72
|
-
*
|
|
73
|
-
* records that will return as a response are the records
|
|
71
|
+
* Returns the first three records of each page in the records returned as a response.
|
|
72
|
+
* For example, **let's say page = 3, limit = 30, count = 3.**
|
|
73
|
+
* The records that will return as a response are the records **between 60-62.**
|
|
74
74
|
*/
|
|
75
75
|
count: number;
|
|
76
76
|
data: getBlog_listBlog_data[];
|
|
@@ -78,23 +78,25 @@ export interface getBlog_listBlog {
|
|
|
78
78
|
* In the records returned as Response, it shows whether there are any more
|
|
79
79
|
* records or not. For example, let's say our page field is three and our limit
|
|
80
80
|
* field is thirty. Records between 60 and 90 will be returned. If hasNext is
|
|
81
|
-
*
|
|
82
|
-
*
|
|
81
|
+
* `true` despite these records, **it means there are more records.** If hasNext
|
|
82
|
+
* is `false`, it means there are a total of **90 records.**
|
|
83
83
|
*/
|
|
84
84
|
hasNext: boolean;
|
|
85
85
|
/**
|
|
86
|
-
* The maximum number of data you want to see on a page in the records returned
|
|
87
|
-
*
|
|
88
|
-
*
|
|
89
|
-
* given. If no value is entered, default 50 is accepted
|
|
86
|
+
* The maximum number of data you want to see on a page in the records returned as a response.
|
|
87
|
+
* For example, if the limit is **20**, the data will be displayed ** as 20 each. **
|
|
88
|
+
* :::note
|
|
89
|
+
* min 1, max 200 values can be given. If no value is entered, default 50 is accepted.
|
|
90
|
+
* :::
|
|
90
91
|
*/
|
|
91
92
|
limit: number;
|
|
92
93
|
/**
|
|
93
94
|
* The number of the page you want to see in the records that return as response.
|
|
94
|
-
* For example: We entered the page field as
|
|
95
|
-
*
|
|
96
|
-
*
|
|
97
|
-
*
|
|
95
|
+
* For example: We entered the page field as **3**.And let our limit field be **30**.
|
|
96
|
+
* The records that will return as a response are the records **between 60-90.**
|
|
97
|
+
* :::note
|
|
98
|
+
* If no value is entered, default 1 is accepted.
|
|
99
|
+
* :::
|
|
98
100
|
*/
|
|
99
101
|
page: number;
|
|
100
102
|
}
|
|
@@ -68,9 +68,9 @@ export interface listBlog_listBlog_data {
|
|
|
68
68
|
export interface listBlog_listBlog {
|
|
69
69
|
__typename: "BlogPaginationResponse";
|
|
70
70
|
/**
|
|
71
|
-
* Returns the first three records of each page in the records returned as a
|
|
72
|
-
*
|
|
73
|
-
* records that will return as a response are the records
|
|
71
|
+
* Returns the first three records of each page in the records returned as a response.
|
|
72
|
+
* For example, **let's say page = 3, limit = 30, count = 3.**
|
|
73
|
+
* The records that will return as a response are the records **between 60-62.**
|
|
74
74
|
*/
|
|
75
75
|
count: number;
|
|
76
76
|
data: listBlog_listBlog_data[];
|
|
@@ -78,23 +78,25 @@ export interface listBlog_listBlog {
|
|
|
78
78
|
* In the records returned as Response, it shows whether there are any more
|
|
79
79
|
* records or not. For example, let's say our page field is three and our limit
|
|
80
80
|
* field is thirty. Records between 60 and 90 will be returned. If hasNext is
|
|
81
|
-
*
|
|
82
|
-
*
|
|
81
|
+
* `true` despite these records, **it means there are more records.** If hasNext
|
|
82
|
+
* is `false`, it means there are a total of **90 records.**
|
|
83
83
|
*/
|
|
84
84
|
hasNext: boolean;
|
|
85
85
|
/**
|
|
86
|
-
* The maximum number of data you want to see on a page in the records returned
|
|
87
|
-
*
|
|
88
|
-
*
|
|
89
|
-
* given. If no value is entered, default 50 is accepted
|
|
86
|
+
* The maximum number of data you want to see on a page in the records returned as a response.
|
|
87
|
+
* For example, if the limit is **20**, the data will be displayed ** as 20 each. **
|
|
88
|
+
* :::note
|
|
89
|
+
* min 1, max 200 values can be given. If no value is entered, default 50 is accepted.
|
|
90
|
+
* :::
|
|
90
91
|
*/
|
|
91
92
|
limit: number;
|
|
92
93
|
/**
|
|
93
94
|
* The number of the page you want to see in the records that return as response.
|
|
94
|
-
* For example: We entered the page field as
|
|
95
|
-
*
|
|
96
|
-
*
|
|
97
|
-
*
|
|
95
|
+
* For example: We entered the page field as **3**.And let our limit field be **30**.
|
|
96
|
+
* The records that will return as a response are the records **between 60-90.**
|
|
97
|
+
* :::note
|
|
98
|
+
* If no value is entered, default 1 is accepted.
|
|
99
|
+
* :::
|
|
98
100
|
*/
|
|
99
101
|
page: number;
|
|
100
102
|
}
|
|
@@ -24,9 +24,9 @@ export interface listBlogCategory_listBlogCategory_data {
|
|
|
24
24
|
export interface listBlogCategory_listBlogCategory {
|
|
25
25
|
__typename: "BlogCategoryPaginationResponse";
|
|
26
26
|
/**
|
|
27
|
-
* Returns the first three records of each page in the records returned as a
|
|
28
|
-
*
|
|
29
|
-
* records that will return as a response are the records
|
|
27
|
+
* Returns the first three records of each page in the records returned as a response.
|
|
28
|
+
* For example, **let's say page = 3, limit = 30, count = 3.**
|
|
29
|
+
* The records that will return as a response are the records **between 60-62.**
|
|
30
30
|
*/
|
|
31
31
|
count: number;
|
|
32
32
|
data: listBlogCategory_listBlogCategory_data[];
|
|
@@ -34,23 +34,25 @@ export interface listBlogCategory_listBlogCategory {
|
|
|
34
34
|
* In the records returned as Response, it shows whether there are any more
|
|
35
35
|
* records or not. For example, let's say our page field is three and our limit
|
|
36
36
|
* field is thirty. Records between 60 and 90 will be returned. If hasNext is
|
|
37
|
-
*
|
|
38
|
-
*
|
|
37
|
+
* `true` despite these records, **it means there are more records.** If hasNext
|
|
38
|
+
* is `false`, it means there are a total of **90 records.**
|
|
39
39
|
*/
|
|
40
40
|
hasNext: boolean;
|
|
41
41
|
/**
|
|
42
|
-
* The maximum number of data you want to see on a page in the records returned
|
|
43
|
-
*
|
|
44
|
-
*
|
|
45
|
-
* given. If no value is entered, default 50 is accepted
|
|
42
|
+
* The maximum number of data you want to see on a page in the records returned as a response.
|
|
43
|
+
* For example, if the limit is **20**, the data will be displayed ** as 20 each. **
|
|
44
|
+
* :::note
|
|
45
|
+
* min 1, max 200 values can be given. If no value is entered, default 50 is accepted.
|
|
46
|
+
* :::
|
|
46
47
|
*/
|
|
47
48
|
limit: number;
|
|
48
49
|
/**
|
|
49
50
|
* The number of the page you want to see in the records that return as response.
|
|
50
|
-
* For example: We entered the page field as
|
|
51
|
-
*
|
|
52
|
-
*
|
|
53
|
-
*
|
|
51
|
+
* For example: We entered the page field as **3**.And let our limit field be **30**.
|
|
52
|
+
* The records that will return as a response are the records **between 60-90.**
|
|
53
|
+
* :::note
|
|
54
|
+
* If no value is entered, default 1 is accepted.
|
|
55
|
+
* :::
|
|
54
56
|
*/
|
|
55
57
|
page: number;
|
|
56
58
|
}
|
|
@@ -14,9 +14,9 @@ export interface listBlogMetaData_listBlogMetadata_data {
|
|
|
14
14
|
export interface listBlogMetaData_listBlogMetadata {
|
|
15
15
|
__typename: "BlogMetadataPaginationResponse";
|
|
16
16
|
/**
|
|
17
|
-
* Returns the first three records of each page in the records returned as a
|
|
18
|
-
*
|
|
19
|
-
* records that will return as a response are the records
|
|
17
|
+
* Returns the first three records of each page in the records returned as a response.
|
|
18
|
+
* For example, **let's say page = 3, limit = 30, count = 3.**
|
|
19
|
+
* The records that will return as a response are the records **between 60-62.**
|
|
20
20
|
*/
|
|
21
21
|
count: number;
|
|
22
22
|
data: listBlogMetaData_listBlogMetadata_data[];
|
|
@@ -24,23 +24,25 @@ export interface listBlogMetaData_listBlogMetadata {
|
|
|
24
24
|
* In the records returned as Response, it shows whether there are any more
|
|
25
25
|
* records or not. For example, let's say our page field is three and our limit
|
|
26
26
|
* field is thirty. Records between 60 and 90 will be returned. If hasNext is
|
|
27
|
-
*
|
|
28
|
-
*
|
|
27
|
+
* `true` despite these records, **it means there are more records.** If hasNext
|
|
28
|
+
* is `false`, it means there are a total of **90 records.**
|
|
29
29
|
*/
|
|
30
30
|
hasNext: boolean;
|
|
31
31
|
/**
|
|
32
|
-
* The maximum number of data you want to see on a page in the records returned
|
|
33
|
-
*
|
|
34
|
-
*
|
|
35
|
-
* given. If no value is entered, default 50 is accepted
|
|
32
|
+
* The maximum number of data you want to see on a page in the records returned as a response.
|
|
33
|
+
* For example, if the limit is **20**, the data will be displayed ** as 20 each. **
|
|
34
|
+
* :::note
|
|
35
|
+
* min 1, max 200 values can be given. If no value is entered, default 50 is accepted.
|
|
36
|
+
* :::
|
|
36
37
|
*/
|
|
37
38
|
limit: number;
|
|
38
39
|
/**
|
|
39
40
|
* The number of the page you want to see in the records that return as response.
|
|
40
|
-
* For example: We entered the page field as
|
|
41
|
-
*
|
|
42
|
-
*
|
|
43
|
-
*
|
|
41
|
+
* For example: We entered the page field as **3**.And let our limit field be **30**.
|
|
42
|
+
* The records that will return as a response are the records **between 60-90.**
|
|
43
|
+
* :::note
|
|
44
|
+
* If no value is entered, default 1 is accepted.
|
|
45
|
+
* :::
|
|
44
46
|
*/
|
|
45
47
|
page: number;
|
|
46
48
|
}
|
|
@@ -71,9 +71,9 @@ export interface listProductBrand_listProductBrand {
|
|
|
71
71
|
__typename: "ProductBrandPaginationResponse";
|
|
72
72
|
data: listProductBrand_listProductBrand_data[];
|
|
73
73
|
/**
|
|
74
|
-
* Returns the first three records of each page in the records returned as a
|
|
75
|
-
*
|
|
76
|
-
* records that will return as a response are the records
|
|
74
|
+
* Returns the first three records of each page in the records returned as a response.
|
|
75
|
+
* For example, **let's say page = 3, limit = 30, count = 3.**
|
|
76
|
+
* The records that will return as a response are the records **between 60-62.**
|
|
77
77
|
*/
|
|
78
78
|
count: number;
|
|
79
79
|
}
|
|
@@ -82,9 +82,9 @@ export interface listCategory_listCategory {
|
|
|
82
82
|
__typename: "CategoryPaginationResponse";
|
|
83
83
|
data: listCategory_listCategory_data[];
|
|
84
84
|
/**
|
|
85
|
-
* Returns the first three records of each page in the records returned as a
|
|
86
|
-
*
|
|
87
|
-
* records that will return as a response are the records
|
|
85
|
+
* Returns the first three records of each page in the records returned as a response.
|
|
86
|
+
* For example, **let's say page = 3, limit = 30, count = 3.**
|
|
87
|
+
* The records that will return as a response are the records **between 60-62.**
|
|
88
88
|
*/
|
|
89
89
|
count: number;
|
|
90
90
|
}
|
|
@@ -332,7 +332,7 @@ export interface getOrder_getOrder_orderPackages_trackingInfo {
|
|
|
332
332
|
trackingLink: string | null;
|
|
333
333
|
/**
|
|
334
334
|
* Indicates whether the notification is sent to the customer after the cargo is
|
|
335
|
-
* delivered.
|
|
335
|
+
* delivered. **isSendNotification** returns true if the notification is sent.
|
|
336
336
|
*/
|
|
337
337
|
isSendNotification: boolean | null;
|
|
338
338
|
/**
|
|
@@ -602,8 +602,8 @@ export interface getOrder_getOrder {
|
|
|
602
602
|
taxLines: getOrder_getOrder_taxLines[] | null;
|
|
603
603
|
/**
|
|
604
604
|
* The total final price of the order resulting from the apply of
|
|
605
|
-
*
|
|
606
|
-
*
|
|
605
|
+
* `orderAdjustments` , `shippingLines`, and `giftPackageLines` pricing to the
|
|
606
|
+
* order total price.
|
|
607
607
|
*/
|
|
608
608
|
totalFinalPrice: number;
|
|
609
609
|
/**
|
|
@@ -24,7 +24,7 @@ export interface listCheckoutSettings_listCheckoutSettings {
|
|
|
24
24
|
updatedAt: any | null;
|
|
25
25
|
isGiftPackageEnabled: boolean | null;
|
|
26
26
|
giftPackagePriceList: listCheckoutSettings_listCheckoutSettings_giftPackagePriceList[] | null;
|
|
27
|
-
|
|
27
|
+
postalCodeRequirement: CheckoutRequirementEnum | null;
|
|
28
28
|
}
|
|
29
29
|
export interface listCheckoutSettings {
|
|
30
30
|
listCheckoutSettings: listCheckoutSettings_listCheckoutSettings[];
|
|
@@ -302,7 +302,7 @@ export interface createOrderRefundRequest_createOrderRefundRequest_orderPackages
|
|
|
302
302
|
trackingLink: string | null;
|
|
303
303
|
/**
|
|
304
304
|
* Indicates whether the notification is sent to the customer after the cargo is
|
|
305
|
-
* delivered.
|
|
305
|
+
* delivered. **isSendNotification** returns true if the notification is sent.
|
|
306
306
|
*/
|
|
307
307
|
isSendNotification: boolean | null;
|
|
308
308
|
/**
|
|
@@ -572,8 +572,8 @@ export interface createOrderRefundRequest_createOrderRefundRequest {
|
|
|
572
572
|
taxLines: createOrderRefundRequest_createOrderRefundRequest_taxLines[] | null;
|
|
573
573
|
/**
|
|
574
574
|
* The total final price of the order resulting from the apply of
|
|
575
|
-
*
|
|
576
|
-
*
|
|
575
|
+
* `orderAdjustments` , `shippingLines`, and `giftPackageLines` pricing to the
|
|
576
|
+
* order total price.
|
|
577
577
|
*/
|
|
578
578
|
totalFinalPrice: number;
|
|
579
579
|
/**
|
|
@@ -22,6 +22,14 @@ export interface customerLogin_customerLogin_customer_addresses_country {
|
|
|
22
22
|
* The customer's normalized country name.
|
|
23
23
|
*/
|
|
24
24
|
name: string;
|
|
25
|
+
/**
|
|
26
|
+
* The two-letter country code corresponding to the customer's country.
|
|
27
|
+
*/
|
|
28
|
+
iso2: string | null;
|
|
29
|
+
/**
|
|
30
|
+
* The two-letter country code corresponding to the customer's country.
|
|
31
|
+
*/
|
|
32
|
+
iso3: string | null;
|
|
25
33
|
}
|
|
26
34
|
export interface customerLogin_customerLogin_customer_addresses_district {
|
|
27
35
|
__typename: "CustomerAddressDistrict";
|
|
@@ -77,7 +85,7 @@ export interface customerLogin_customerLogin_customer_addresses {
|
|
|
77
85
|
*/
|
|
78
86
|
firstName: string;
|
|
79
87
|
/**
|
|
80
|
-
* Whether this address is the default address for the customer. Returns
|
|
88
|
+
* Whether this address is the default address for the customer. Returns `true` for each default address.
|
|
81
89
|
*/
|
|
82
90
|
isDefault: boolean | null;
|
|
83
91
|
/**
|
|
@@ -103,11 +111,11 @@ export interface customerLogin_customerLogin_customer {
|
|
|
103
111
|
__typename: "Customer";
|
|
104
112
|
id: string;
|
|
105
113
|
/**
|
|
106
|
-
* Email verification status.
|
|
114
|
+
* Email verification status. **isEmailVerified** returns `true` if the email is verified.
|
|
107
115
|
*/
|
|
108
116
|
isEmailVerified: boolean | null;
|
|
109
117
|
/**
|
|
110
|
-
* Phone verification status.
|
|
118
|
+
* Phone verification status. **isPhoneVerified** returns `true` if the email is verified.
|
|
111
119
|
*/
|
|
112
120
|
isPhoneVerified: boolean | null;
|
|
113
121
|
/**
|
|
@@ -332,7 +332,7 @@ export interface getCustomerOrders_getCustomerOrders_orderPackages_trackingInfo
|
|
|
332
332
|
trackingLink: string | null;
|
|
333
333
|
/**
|
|
334
334
|
* Indicates whether the notification is sent to the customer after the cargo is
|
|
335
|
-
* delivered.
|
|
335
|
+
* delivered. **isSendNotification** returns true if the notification is sent.
|
|
336
336
|
*/
|
|
337
337
|
isSendNotification: boolean | null;
|
|
338
338
|
/**
|
|
@@ -602,8 +602,8 @@ export interface getCustomerOrders_getCustomerOrders {
|
|
|
602
602
|
taxLines: getCustomerOrders_getCustomerOrders_taxLines[] | null;
|
|
603
603
|
/**
|
|
604
604
|
* The total final price of the order resulting from the apply of
|
|
605
|
-
*
|
|
606
|
-
*
|
|
605
|
+
* `orderAdjustments` , `shippingLines`, and `giftPackageLines` pricing to the
|
|
606
|
+
* order total price.
|
|
607
607
|
*/
|
|
608
608
|
totalFinalPrice: number;
|
|
609
609
|
/**
|
|
@@ -73,7 +73,7 @@ export interface getMyCustomer_getMyCustomer_addresses {
|
|
|
73
73
|
*/
|
|
74
74
|
firstName: string;
|
|
75
75
|
/**
|
|
76
|
-
* Whether this address is the default address for the customer. Returns
|
|
76
|
+
* Whether this address is the default address for the customer. Returns `true` for each default address.
|
|
77
77
|
*/
|
|
78
78
|
isDefault: boolean | null;
|
|
79
79
|
/**
|
|
@@ -103,11 +103,11 @@ export interface getMyCustomer_getMyCustomer {
|
|
|
103
103
|
__typename: "Customer";
|
|
104
104
|
id: string;
|
|
105
105
|
/**
|
|
106
|
-
* Email verification status.
|
|
106
|
+
* Email verification status. **isEmailVerified** returns `true` if the email is verified.
|
|
107
107
|
*/
|
|
108
108
|
isEmailVerified: boolean | null;
|
|
109
109
|
/**
|
|
110
|
-
* Phone verification status.
|
|
110
|
+
* Phone verification status. **isPhoneVerified** returns `true` if the email is verified.
|
|
111
111
|
*/
|
|
112
112
|
isPhoneVerified: boolean | null;
|
|
113
113
|
/**
|
|
@@ -22,6 +22,14 @@ export interface registerCustomer_registerCustomer_customer_addresses_country {
|
|
|
22
22
|
* The customer's normalized country name.
|
|
23
23
|
*/
|
|
24
24
|
name: string;
|
|
25
|
+
/**
|
|
26
|
+
* The two-letter country code corresponding to the customer's country.
|
|
27
|
+
*/
|
|
28
|
+
iso2: string | null;
|
|
29
|
+
/**
|
|
30
|
+
* The two-letter country code corresponding to the customer's country.
|
|
31
|
+
*/
|
|
32
|
+
iso3: string | null;
|
|
25
33
|
}
|
|
26
34
|
export interface registerCustomer_registerCustomer_customer_addresses_district {
|
|
27
35
|
__typename: "CustomerAddressDistrict";
|
|
@@ -73,7 +81,7 @@ export interface registerCustomer_registerCustomer_customer_addresses {
|
|
|
73
81
|
*/
|
|
74
82
|
firstName: string;
|
|
75
83
|
/**
|
|
76
|
-
* Whether this address is the default address for the customer. Returns
|
|
84
|
+
* Whether this address is the default address for the customer. Returns `true` for each default address.
|
|
77
85
|
*/
|
|
78
86
|
isDefault: boolean | null;
|
|
79
87
|
/**
|
|
@@ -99,11 +107,11 @@ export interface registerCustomer_registerCustomer_customer {
|
|
|
99
107
|
__typename: "Customer";
|
|
100
108
|
id: string;
|
|
101
109
|
/**
|
|
102
|
-
* Email verification status.
|
|
110
|
+
* Email verification status. **isEmailVerified** returns `true` if the email is verified.
|
|
103
111
|
*/
|
|
104
112
|
isEmailVerified: boolean | null;
|
|
105
113
|
/**
|
|
106
|
-
* Phone verification status.
|
|
114
|
+
* Phone verification status. **isPhoneVerified** returns `true` if the email is verified.
|
|
107
115
|
*/
|
|
108
116
|
isPhoneVerified: boolean | null;
|
|
109
117
|
/**
|
|
@@ -22,6 +22,14 @@ export interface saveMyCustomer_saveMyCustomer_addresses_country {
|
|
|
22
22
|
* The customer's normalized country name.
|
|
23
23
|
*/
|
|
24
24
|
name: string;
|
|
25
|
+
/**
|
|
26
|
+
* The two-letter country code corresponding to the customer's country.
|
|
27
|
+
*/
|
|
28
|
+
iso2: string | null;
|
|
29
|
+
/**
|
|
30
|
+
* The two-letter country code corresponding to the customer's country.
|
|
31
|
+
*/
|
|
32
|
+
iso3: string | null;
|
|
25
33
|
}
|
|
26
34
|
export interface saveMyCustomer_saveMyCustomer_addresses_district {
|
|
27
35
|
__typename: "CustomerAddressDistrict";
|
|
@@ -73,7 +81,7 @@ export interface saveMyCustomer_saveMyCustomer_addresses {
|
|
|
73
81
|
*/
|
|
74
82
|
firstName: string;
|
|
75
83
|
/**
|
|
76
|
-
* Whether this address is the default address for the customer. Returns
|
|
84
|
+
* Whether this address is the default address for the customer. Returns `true` for each default address.
|
|
77
85
|
*/
|
|
78
86
|
isDefault: boolean | null;
|
|
79
87
|
/**
|
|
@@ -107,11 +115,11 @@ export interface saveMyCustomer_saveMyCustomer {
|
|
|
107
115
|
__typename: "Customer";
|
|
108
116
|
id: string;
|
|
109
117
|
/**
|
|
110
|
-
* Email verification status.
|
|
118
|
+
* Email verification status. **isEmailVerified** returns `true` if the email is verified.
|
|
111
119
|
*/
|
|
112
120
|
isEmailVerified: boolean | null;
|
|
113
121
|
/**
|
|
114
|
-
* Phone verification status.
|
|
122
|
+
* Phone verification status. **isPhoneVerified** returns `true` if the email is verified.
|
|
115
123
|
*/
|
|
116
124
|
isPhoneVerified: boolean | null;
|
|
117
125
|
/**
|
|
@@ -10,9 +10,9 @@ export interface listCustomerReviews_listCustomerReviews_data {
|
|
|
10
10
|
export interface listCustomerReviews_listCustomerReviews {
|
|
11
11
|
__typename: "CustomerReviewSFPaginationResponse";
|
|
12
12
|
/**
|
|
13
|
-
* Returns the first three records of each page in the records returned as a
|
|
14
|
-
*
|
|
15
|
-
* records that will return as a response are the records
|
|
13
|
+
* Returns the first three records of each page in the records returned as a response.
|
|
14
|
+
* For example, **let's say page = 3, limit = 30, count = 3.**
|
|
15
|
+
* The records that will return as a response are the records **between 60-62.**
|
|
16
16
|
*/
|
|
17
17
|
count: number;
|
|
18
18
|
data: listCustomerReviews_listCustomerReviews_data[];
|
|
@@ -20,23 +20,25 @@ export interface listCustomerReviews_listCustomerReviews {
|
|
|
20
20
|
* In the records returned as Response, it shows whether there are any more
|
|
21
21
|
* records or not. For example, let's say our page field is three and our limit
|
|
22
22
|
* field is thirty. Records between 60 and 90 will be returned. If hasNext is
|
|
23
|
-
*
|
|
24
|
-
*
|
|
23
|
+
* `true` despite these records, **it means there are more records.** If hasNext
|
|
24
|
+
* is `false`, it means there are a total of **90 records.**
|
|
25
25
|
*/
|
|
26
26
|
hasNext: boolean;
|
|
27
27
|
/**
|
|
28
|
-
* The maximum number of data you want to see on a page in the records returned
|
|
29
|
-
*
|
|
30
|
-
*
|
|
31
|
-
* given. If no value is entered, default 50 is accepted
|
|
28
|
+
* The maximum number of data you want to see on a page in the records returned as a response.
|
|
29
|
+
* For example, if the limit is **20**, the data will be displayed ** as 20 each. **
|
|
30
|
+
* :::note
|
|
31
|
+
* min 1, max 200 values can be given. If no value is entered, default 50 is accepted.
|
|
32
|
+
* :::
|
|
32
33
|
*/
|
|
33
34
|
limit: number;
|
|
34
35
|
/**
|
|
35
36
|
* The number of the page you want to see in the records that return as response.
|
|
36
|
-
* For example: We entered the page field as
|
|
37
|
-
*
|
|
38
|
-
*
|
|
39
|
-
*
|
|
37
|
+
* For example: We entered the page field as **3**.And let our limit field be **30**.
|
|
38
|
+
* The records that will return as a response are the records **between 60-90.**
|
|
39
|
+
* :::note
|
|
40
|
+
* If no value is entered, default 1 is accepted.
|
|
41
|
+
* :::
|
|
40
42
|
*/
|
|
41
43
|
page: number;
|
|
42
44
|
}
|
|
@@ -50,7 +50,7 @@ export interface listVariantType_listVariantType {
|
|
|
50
50
|
updatedAt: any | null;
|
|
51
51
|
deleted: boolean | null;
|
|
52
52
|
/**
|
|
53
|
-
* Product variant type name information.
|
|
53
|
+
* Product variant type name information. **For example: Size, Color, Number etc.**.It can be a maximum of 100 characters.
|
|
54
54
|
*/
|
|
55
55
|
name: string;
|
|
56
56
|
/**
|
|
@@ -58,8 +58,8 @@ export interface listVariantType_listVariantType {
|
|
|
58
58
|
*/
|
|
59
59
|
selectionType: VariantSelectionTypeEnum;
|
|
60
60
|
/**
|
|
61
|
-
* Variant values used in Variant type.
|
|
62
|
-
* Variant values can be thought of as S, M, L, XL.
|
|
61
|
+
* Variant values used in Variant type. ** For example, variant type: Size.
|
|
62
|
+
* Variant values can be thought of as S, M, L, XL. **It is unique according to
|
|
63
63
|
* the value name.Values array size must have at least one element.
|
|
64
64
|
*/
|
|
65
65
|
values: listVariantType_listVariantType_values[];
|