@shopby/shop-sdk 1.42.4 → 1.42.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/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.42.5](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.42.4...v1.42.5) (2023-02-16)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* domain/order CartOptionInput 관련 명칭 수정 ([7846e37](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/7846e37ea7fe5ef53fcbd65d7cbe18e73674ea7d))
|
|
11
|
+
|
|
5
12
|
### [1.42.4](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.42.3...v1.42.4) (2023-02-16)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -83,11 +83,11 @@ export interface PostCartRequest extends OptionalAccessTokenRequest {
|
|
|
83
83
|
export interface CartLoad {
|
|
84
84
|
orderCnt: number;
|
|
85
85
|
channelType?: OrderChannelType;
|
|
86
|
-
optionInputs?:
|
|
86
|
+
optionInputs?: CartOptionInput[];
|
|
87
87
|
optionNo: number;
|
|
88
88
|
productNo: number;
|
|
89
89
|
}
|
|
90
|
-
export interface
|
|
90
|
+
export interface CartOptionInput {
|
|
91
91
|
inputValue: string;
|
|
92
92
|
inputLabel: string;
|
|
93
93
|
}
|
|
@@ -107,7 +107,7 @@ export interface PutCartRequest extends OptionalAccessTokenRequest {
|
|
|
107
107
|
}
|
|
108
108
|
export interface CartPayload {
|
|
109
109
|
orderCnt: number;
|
|
110
|
-
optionInputs?:
|
|
110
|
+
optionInputs?: CartOptionInput[];
|
|
111
111
|
cartNo: number;
|
|
112
112
|
}
|
|
113
113
|
export interface GetCartCalculateRequest extends OptionalAccessTokenRequest {
|