@shopby/shop-sdk 1.3.2 → 1.3.5
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/types/admin.d.ts
CHANGED
|
@@ -98,13 +98,6 @@ export interface MallsCategories1 {
|
|
|
98
98
|
categoryNo?: number;
|
|
99
99
|
label?: string;
|
|
100
100
|
}
|
|
101
|
-
export interface MallsCategoriesChildren {
|
|
102
|
-
depth?: number;
|
|
103
|
-
icon?: string;
|
|
104
|
-
categoryNo?: number;
|
|
105
|
-
label?: string;
|
|
106
|
-
content?: string;
|
|
107
|
-
}
|
|
108
101
|
export interface MallsCategoriesFlatCategories {
|
|
109
102
|
depth5CategoryNo?: number;
|
|
110
103
|
depth2DisplayOrder?: number;
|
|
@@ -135,7 +128,7 @@ export interface MallsCategoriesFlatCategories {
|
|
|
135
128
|
}
|
|
136
129
|
export interface MallsCategoriesMultiLevelCategories {
|
|
137
130
|
depth?: number;
|
|
138
|
-
children?:
|
|
131
|
+
children?: MallsCategoriesMultiLevelCategories[];
|
|
139
132
|
icon?: string;
|
|
140
133
|
categoryNo?: number;
|
|
141
134
|
label?: string;
|
|
@@ -299,3 +292,6 @@ export interface MallsSslResponse {
|
|
|
299
292
|
domain: string;
|
|
300
293
|
trustSeal: string;
|
|
301
294
|
}
|
|
295
|
+
export interface TestTT {
|
|
296
|
+
imtest: string;
|
|
297
|
+
}
|
package/build/types/display.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BannerGroupCode, OrderByType, RequestConfig, SaleStatusType } from "./root";
|
|
1
|
+
import { BannerGroupCode, OrderByType, RequestConfig, SaleStatusType, SectionDisplayType } from "./root";
|
|
2
2
|
export interface GetCategoriesRequest extends RequestConfig {
|
|
3
3
|
queryString: {
|
|
4
4
|
keyword?: string;
|
|
@@ -318,7 +318,7 @@ export interface GetDisplaySectionsIdsSectionIdResponse {
|
|
|
318
318
|
}
|
|
319
319
|
export interface DisplaySectionsIdsSectionIdDisplayConfig {
|
|
320
320
|
displayHeight?: number;
|
|
321
|
-
displayType?:
|
|
321
|
+
displayType?: SectionDisplayType;
|
|
322
322
|
displayWidth?: number;
|
|
323
323
|
}
|
|
324
324
|
export interface DisplaySectionsIdsSectionIdRecommendedProducts {
|
package/build/types/enum.d.ts
CHANGED
|
@@ -4,3 +4,4 @@ export declare type DirectionTypes = 'ASC' | 'DESC';
|
|
|
4
4
|
export declare type OrderByType = 'ADMIN_SETTING' | 'SALE' | 'LOW_PRICE' | 'HIGH_PRICE' | 'REVIEW' | 'REGISTER';
|
|
5
5
|
export declare type SaleStatusType = 'READY_ONSALE' | 'ONSALE' | 'RESERVATION_AND_ONSALE';
|
|
6
6
|
export declare type BannerGroupCode = 'LOGO0001' | 'BANNER01' | 'BANNER02' | 'BANNER03' | 'BANNER04' | 'BANNER05' | 'BANNER06' | 'BANNER07';
|
|
7
|
+
export declare type SectionDisplayType = 'LIST' | 'GALLERY' | 'SWIPE' | 'CART' | 'SIMPLE_IMAGE' | 'PRODUCT_MOVE';
|