@shopby/shop-sdk 1.75.3 → 1.75.4

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.75.4](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.75.3...v1.75.4) (2024-07-08)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * 주문서 trackingKey, channelType 타입 nullable 적용 ([b9b2aa4](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/b9b2aa422c7d780f55110ee3f7c930eeca59f345))
11
+
5
12
  ### [1.75.3](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.75.2...v1.75.3) (2024-07-08)
6
13
 
7
14
 
@@ -189,9 +189,9 @@ export interface OrderConfigsNaverPay {
189
189
  export interface PostOrderSheetsRequest extends OptionalAccessTokenRequest {
190
190
  requestBody: {
191
191
  productCoupons?: ProductCoupon[];
192
- trackingKey?: string;
192
+ trackingKey?: Nullable<string>;
193
193
  cartNos?: number[];
194
- channelType?: string;
194
+ channelType?: Nullable<string>;
195
195
  products?: OrderSheetsProduct[];
196
196
  };
197
197
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopby/shop-sdk",
3
- "version": "1.75.3",
3
+ "version": "1.75.4",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "types": "build/types/index.d.ts",