@shopby/shop-sdk 1.3.3 → 1.3.4
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/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';
|