@shopby/shop-sdk 1.77.10 → 1.77.12
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/types/domain/order/index.d.ts +2 -0
- 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.77.12](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.77.11...v1.77.12) (2024-09-30)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* orderProductOption 에 isRequiredOption 항목 추가 ([48720ca](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/48720cac86202b98da174e62e5104a05e34a0d65))
|
|
11
|
+
|
|
12
|
+
### [1.77.11](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.77.10...v1.77.11) (2024-09-27)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* cart option product 타입에 isRequiredOption 타입 추가 ([6b99e46](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/6b99e4625b3de8409a48cf76f0f11021ae85b650))
|
|
18
|
+
|
|
5
19
|
### [1.77.10](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.77.9...v1.77.10) (2024-09-24)
|
|
6
20
|
|
|
7
21
|
|
|
@@ -65,6 +65,7 @@ export interface CartOrderProduct {
|
|
|
65
65
|
returnable: boolean;
|
|
66
66
|
hsCode: string;
|
|
67
67
|
brandNameEn: string;
|
|
68
|
+
isRequiredOption: boolean;
|
|
68
69
|
}
|
|
69
70
|
export interface CartPrice {
|
|
70
71
|
buyAmt: number;
|
|
@@ -427,6 +428,7 @@ export interface OrderProductOption {
|
|
|
427
428
|
optionManagementCd: string;
|
|
428
429
|
cartNo: number;
|
|
429
430
|
productNo: number;
|
|
431
|
+
isRequiredOption: boolean;
|
|
430
432
|
}
|
|
431
433
|
export interface SetOption {
|
|
432
434
|
usesOption: boolean;
|