@ikas/storefront 1.0.14-alpha.3 → 1.0.14
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 +0 -3
- package/build/api/blog/__generated__/getBlog.d.ts +16 -14
- package/build/api/blog/__generated__/listBlog.d.ts +16 -14
- package/build/api/blog/__generated__/listBlogCategory.d.ts +16 -14
- package/build/api/blog/__generated__/listBlogMetaData.d.ts +16 -14
- package/build/api/brand/__generated__/listProductBrand.d.ts +3 -3
- package/build/api/cart/__generated__/getCart.d.ts +4 -2
- package/build/api/cart/__generated__/saveItemToCart.d.ts +4 -2
- package/build/api/category/__generated__/listCategory.d.ts +3 -3
- package/build/api/checkout/__generated__/getCheckoutById.d.ts +4 -2
- package/build/api/checkout/__generated__/getOrder.d.ts +11 -5
- package/build/api/customer/__generated__/createOrderRefundRequest.d.ts +11 -5
- package/build/api/customer/__generated__/customerLogin.d.ts +5 -12
- package/build/api/customer/__generated__/getCustomerOrders.d.ts +11 -5
- package/build/api/customer/__generated__/getMyCustomer.d.ts +5 -4
- package/build/api/customer/__generated__/registerCustomer.d.ts +5 -12
- package/build/api/customer/__generated__/saveMyCustomer.d.ts +5 -12
- package/build/api/customer/index.d.ts +0 -5
- package/build/api/customer-review/__generated__/listCustomerReviews.d.ts +16 -14
- package/build/api/variant-type/__generated__/listVariantType.d.ts +7 -3
- package/build/index.es.js +60 -172
- package/build/index.js +60 -172
- package/build/store/customer.d.ts +0 -19
- package/build/storefront/index.d.ts +1 -3
- package/package.json +1 -1
- package/build/api/customer/__generated__/customerSocialLogin.d.ts +0 -161
|
@@ -10,31 +10,33 @@ 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
|
-
* For example,
|
|
15
|
-
*
|
|
13
|
+
* Returns the first three records of each page in the records returned as a
|
|
14
|
+
* response. For example, ***let's say page = 3, limit = 30, count = 3.*** The
|
|
15
|
+
* 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[];
|
|
19
19
|
/**
|
|
20
|
-
* In the records returned as Response, it shows whether there are any more
|
|
20
|
+
* In the records returned as Response, it shows whether there are any more
|
|
21
|
+
* records or not. For example, let's say our page field is three and our limit
|
|
22
|
+
* field is thirty. Records between 60 and 90 will be returned. If hasNext is
|
|
23
|
+
* ```true``` despite these records, ***it means there are more records.*** If
|
|
24
|
+
* hasNext is ```false```, it means there are a total of ***90 records.***
|
|
21
25
|
*/
|
|
22
26
|
hasNext: boolean;
|
|
23
27
|
/**
|
|
24
|
-
* The maximum number of data you want to see on a page in the records returned
|
|
25
|
-
* For example, if the limit is
|
|
26
|
-
*
|
|
27
|
-
*
|
|
28
|
-
* :::
|
|
28
|
+
* The maximum number of data you want to see on a page in the records returned
|
|
29
|
+
* as a response. For example, if the limit is ***20***, the data will be
|
|
30
|
+
* displayed ***as 20 each.***<br />:::note<br />min 1, max 200 values can be
|
|
31
|
+
* given. If no value is entered, default 50 is accepted.<br />:::
|
|
29
32
|
*/
|
|
30
33
|
limit: number;
|
|
31
34
|
/**
|
|
32
35
|
* The number of the page you want to see in the records that return as response.
|
|
33
|
-
* For example: We entered the page field as
|
|
34
|
-
* The records that will return as a response are the records
|
|
35
|
-
*
|
|
36
|
-
*
|
|
37
|
-
* :::
|
|
36
|
+
* For example: We entered the page field as ***3***.And let our limit field be
|
|
37
|
+
* ***30***. The records that will return as a response are the records
|
|
38
|
+
* ***between 60-90.***<br />:::note<br />If no value is entered, default 1 is
|
|
39
|
+
* accepted.<br /> :::
|
|
38
40
|
*/
|
|
39
41
|
page: number;
|
|
40
42
|
}
|
|
@@ -6,7 +6,9 @@ export interface listVariantType_listVariantType_values {
|
|
|
6
6
|
updatedAt: any | null;
|
|
7
7
|
deleted: boolean | null;
|
|
8
8
|
/**
|
|
9
|
-
* It is the name information of the values used in the Variant type. Value
|
|
9
|
+
* It is the name information of the values used in the Variant type. Value
|
|
10
|
+
* information of Variant type is unique according to name.It can be a maximum of
|
|
11
|
+
* 100 characters.
|
|
10
12
|
*/
|
|
11
13
|
name: string;
|
|
12
14
|
/**
|
|
@@ -48,7 +50,7 @@ export interface listVariantType_listVariantType {
|
|
|
48
50
|
updatedAt: any | null;
|
|
49
51
|
deleted: boolean | null;
|
|
50
52
|
/**
|
|
51
|
-
* 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.
|
|
52
54
|
*/
|
|
53
55
|
name: string;
|
|
54
56
|
/**
|
|
@@ -56,7 +58,9 @@ export interface listVariantType_listVariantType {
|
|
|
56
58
|
*/
|
|
57
59
|
selectionType: VariantSelectionTypeEnum;
|
|
58
60
|
/**
|
|
59
|
-
* Variant values used in Variant type.
|
|
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
|
+
* the value name.Values array size must have at least one element.
|
|
60
64
|
*/
|
|
61
65
|
values: listVariantType_listVariantType_values[];
|
|
62
66
|
/**
|