@shopby/shop-sdk 1.42.3 → 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,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.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
|
+
|
|
12
|
+
### [1.42.4](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.42.3...v1.42.4) (2023-02-16)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* termstype 응답값 수정 ([03691a8](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/03691a8235476f0665b1b5f58c2a927130fe5d40))
|
|
18
|
+
|
|
5
19
|
### [1.42.3](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.42.2...v1.42.3) (2023-02-15)
|
|
6
20
|
|
|
7
21
|
|
|
@@ -482,7 +482,7 @@ export interface GetTermsRequest extends RequestConfig {
|
|
|
482
482
|
};
|
|
483
483
|
}
|
|
484
484
|
export declare type GetTermsResponse = {
|
|
485
|
-
[key in TermsType]: TermsKey;
|
|
485
|
+
[key in Lowercase<TermsType>]: TermsKey;
|
|
486
486
|
};
|
|
487
487
|
export interface TermsKey {
|
|
488
488
|
contents: string;
|
|
@@ -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 {
|