@shopby/shop-sdk 1.58.6 → 1.60.0
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/CHANGELOG.md +14 -0
- package/build/src/index.d.ts +2 -2
- package/build/types/domain/display/index.d.ts +1 -18
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [1.60.0](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.58.6...v1.60.0) (2023-04-26)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* 어드민 통합으로 디자인팝업 api 관련 응답값 동일한 인터페이스로 수정되어 반영함 ([bd4311f](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/bd4311fc9167fe21e1e9d8dd4f4076b80be17184))
|
|
11
|
+
|
|
12
|
+
## [1.59.0](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.58.6...v1.59.0) (2023-04-26)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* 어드민 통합으로 디자인팝업 api 관련 응답값 동일한 인터페이스로 수정되어 반영함 ([bd4311f](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/bd4311fc9167fe21e1e9d8dd4f4076b80be17184))
|
|
18
|
+
|
|
5
19
|
### [1.58.6](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.58.5...v1.58.6) (2023-04-26)
|
|
6
20
|
|
|
7
21
|
|
package/build/src/index.d.ts
CHANGED
|
@@ -83,8 +83,8 @@ export declare const create: ({ baseURL, headerOption, customHttpRequest, versio
|
|
|
83
83
|
getDisplayEventsSearchByNos(request: import("../types").GetDisplayEventsSearchByNosRequest): Promise<import("../types/http").ResponseData<import("../types").GetDisplayEventsSearchByNosResponse>>;
|
|
84
84
|
getDisplayEventsEventNo(request: import("../types").GetDisplayEventsEventNoRequest): Promise<import("../types/http").ResponseData<import("../types").DisplayEventsEventNo>>;
|
|
85
85
|
getDisplayEventsProductsProductNo(request: any): Promise<import("../types/http").ResponseData<any>>;
|
|
86
|
-
getDisplayPopups(request: import("../types").GetDisplayPopupsRequest): Promise<import("../types/http").ResponseData<import("../types").
|
|
87
|
-
getDisplayPopupsPopupNos(request: import("../types").GetDisplayPopupsPopupNosRequest): Promise<import("../types/http").ResponseData<import("../types").
|
|
86
|
+
getDisplayPopups(request: import("../types").GetDisplayPopupsRequest): Promise<import("../types/http").ResponseData<import("../types").PostDesignPopupsResponse>>;
|
|
87
|
+
getDisplayPopupsPopupNos(request: import("../types").GetDisplayPopupsPopupNosRequest): Promise<import("../types/http").ResponseData<import("../types").PostDesignPopupsResponse>>;
|
|
88
88
|
getDisplayBannersBannerSectionCodes(request: import("../types").GetDisplayBannersBannerSectionCodesRequest): Promise<import("../types/http").ResponseData<import("../types").GetDisplayBannersBannerSectionCodesResponse>>;
|
|
89
89
|
getDisplaySectionsSectionNos(request: any): Promise<import("../types/http").ResponseData<any>>;
|
|
90
90
|
getDisplaySectionsSectionNo(request: import("../types").GetDisplaySectionsSectionNoRequest): Promise<import("../types/http").ResponseData<import("../types").GetDisplaySectionsSectionNoResponse>>;
|
|
@@ -1500,24 +1500,7 @@ export interface GetDisplayPopupsRequest {
|
|
|
1500
1500
|
};
|
|
1501
1501
|
useAccessToken?: boolean;
|
|
1502
1502
|
}
|
|
1503
|
-
export
|
|
1504
|
-
pageInfos: {
|
|
1505
|
-
mallProductInfos: Array<number>;
|
|
1506
|
-
eventInfos: Array<number>;
|
|
1507
|
-
displayCategoryInfos: Array<number>;
|
|
1508
|
-
pageTypes: PopupPageType;
|
|
1509
|
-
};
|
|
1510
|
-
startYmdt: string;
|
|
1511
|
-
popupPosition: 'MIDDLE' | 'LEFT' | 'RIGHT' | 'MIDDLE_TOP' | 'LEFT_TOP' | 'RIGHT_TOP' | 'MIDDLE_BOTTOM' | 'LEFT_BOTTOM' | 'RIGHT_BOTTOM';
|
|
1512
|
-
width: number;
|
|
1513
|
-
displayTypes: PlatformType;
|
|
1514
|
-
popupNo: number;
|
|
1515
|
-
endYmdt: string;
|
|
1516
|
-
label: string;
|
|
1517
|
-
type: 'WINDOW' | 'LAYER' | 'MOVE';
|
|
1518
|
-
content: string;
|
|
1519
|
-
height: number;
|
|
1520
|
-
}
|
|
1503
|
+
export declare type GetDisplayPopupsResponse = PostDesignPopupsResponse;
|
|
1521
1504
|
export interface GetDisplayPopupsPopupNosRequest {
|
|
1522
1505
|
pathVariable: {
|
|
1523
1506
|
popupNos: string;
|