@shopby/shop-sdk 1.78.21 → 1.78.22
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 +7 -0
- package/build/types/domain/order/index.d.ts +16 -1
- package/package.json +1 -1
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.78.22](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.78.21...v1.78.22) (2024-11-20)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* 주문설정값 조회 타입 최신화 ([fd59820](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/fd59820bdc09f575c5330e495ba4390c7aba838c))
|
|
11
|
+
|
|
5
12
|
### [1.78.21](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.78.20...v1.78.21) (2024-11-20)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -170,11 +170,17 @@ export interface PostGuestOrdersOrderNoRequest {
|
|
|
170
170
|
* path: /order-configs
|
|
171
171
|
*/
|
|
172
172
|
export interface GetOrderConfigsResponse {
|
|
173
|
+
shippingEmptyAutoCancel: ShippingEmptyAutoCancel;
|
|
173
174
|
naverPay: Nullable<OrderConfigsNaverPay>;
|
|
174
175
|
pgType: PgType;
|
|
175
176
|
mallTransferYmdt: DateYmdt;
|
|
176
|
-
|
|
177
|
+
useRecurringPayment: boolean;
|
|
178
|
+
useAppCard: boolean;
|
|
177
179
|
escrow: OrderConfigsEscrow;
|
|
180
|
+
recurringPaymentFreeGiftIssueType: string;
|
|
181
|
+
visibleReceiptBtn: VisibleReceiptBtn;
|
|
182
|
+
includesPreviousOrder: boolean;
|
|
183
|
+
cashReceipt: boolean;
|
|
178
184
|
}
|
|
179
185
|
export interface OrderConfigsEscrow {
|
|
180
186
|
escrowInfoKey: Nullable<string>;
|
|
@@ -184,6 +190,15 @@ export interface OrderConfigsEscrow {
|
|
|
184
190
|
export interface OrderConfigsNaverPay {
|
|
185
191
|
buttonKey: string;
|
|
186
192
|
}
|
|
193
|
+
export interface VisibleReceiptBtn {
|
|
194
|
+
pgReceipt: boolean;
|
|
195
|
+
specification: boolean;
|
|
196
|
+
specificationBrief: boolean;
|
|
197
|
+
}
|
|
198
|
+
export interface ShippingEmptyAutoCancel {
|
|
199
|
+
use: boolean;
|
|
200
|
+
cancelDays: number;
|
|
201
|
+
}
|
|
187
202
|
/**
|
|
188
203
|
* path: /order-sheets
|
|
189
204
|
*/
|