@shopby/shop-sdk 1.56.15 → 1.56.16
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
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
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.56.16](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.56.15...v1.56.16) (2023-03-30)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* domain/promotion 쿠폰번호 대상 조회 수정 ([18d1306](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/18d13065be629ab664924bff4446d77919db9f6c))
|
|
11
|
+
|
|
5
12
|
### [1.56.15](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.56.14...v1.56.15) (2023-03-30)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -188,13 +188,13 @@ export interface PostCouponsProductsProductNoDownloadResponse {
|
|
|
188
188
|
issueFailCoupons: Array<IssueFailCoupon>;
|
|
189
189
|
issuedCoupons: Array<IssuedCoupon>;
|
|
190
190
|
}
|
|
191
|
-
export interface GetCouponsCouponNoTargetsRequest
|
|
191
|
+
export interface GetCouponsCouponNoTargetsRequest {
|
|
192
192
|
pathVariable: {
|
|
193
|
-
couponNo:
|
|
193
|
+
couponNo: number;
|
|
194
194
|
};
|
|
195
195
|
queryString: {
|
|
196
|
-
pageNumber:
|
|
197
|
-
pageSize:
|
|
196
|
+
pageNumber: number;
|
|
197
|
+
pageSize: number;
|
|
198
198
|
};
|
|
199
199
|
}
|
|
200
200
|
export interface GetCouponsCouponNoTargetsResponse {
|
|
@@ -203,6 +203,6 @@ export interface GetCouponsCouponNoTargetsResponse {
|
|
|
203
203
|
}
|
|
204
204
|
export interface CouponTargetsItem {
|
|
205
205
|
targetName: string;
|
|
206
|
-
targetType:
|
|
206
|
+
targetType: PromotionCouponTargetType;
|
|
207
207
|
targetNo: number;
|
|
208
208
|
}
|