@shopby/shop-sdk 1.57.4 → 1.57.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.57.5](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.57.4...v1.57.5) (2023-04-07)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * /order-configs 응답 타입 수정 반영 ([#249](https://gitlab.e-ncp.com/ncp-client/shop-sdk/issues/249)) ([a0dc3c4](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/a0dc3c477ec7b56d6ccda2dc37aefa49a4416794))
11
+
5
12
  ### [1.57.4](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.57.3...v1.57.4) (2023-04-05)
6
13
 
7
14
 
@@ -165,10 +165,19 @@ export interface PostGuestOrdersOrderNoRequest {
165
165
  * path: /order-configs
166
166
  */
167
167
  export interface GetOrderConfigsResponse {
168
- naverPay?: OrderConfigsNaverPay;
168
+ naverPay: Nullable<OrderConfigsNaverPay>;
169
+ pgType: PgType;
170
+ mallTransferYmdt: DateYmdt;
171
+ useRecurrentPayment: boolean;
172
+ escrow: OrderConfigsEscrow;
173
+ }
174
+ export interface OrderConfigsEscrow {
175
+ escrowInfoKey: Nullable<string>;
176
+ logo: Nullable<string>;
177
+ exposeLogo: boolean;
169
178
  }
170
179
  export interface OrderConfigsNaverPay {
171
- buttonKey?: string;
180
+ buttonKey: string;
172
181
  }
173
182
  /**
174
183
  * path: /order-sheets
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopby/shop-sdk",
3
- "version": "1.57.4",
3
+ "version": "1.57.5",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "types": "build/types/index.d.ts",