@shopby/shop-sdk 1.70.0 → 1.70.1

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.70.1](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.70.0...v1.70.1) (2024-03-26)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * address detail 인터페이스에 shippingEtcInfo 타입 추가 ([33a5134](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/33a5134e01b9fff79149d8b07867ad96676c3b0e))
11
+
5
12
  ## [1.70.0](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.69.1...v1.70.0) (2024-03-25)
6
13
 
7
14
 
@@ -1182,6 +1182,11 @@ export interface AddressPayload {
1182
1182
  receiverLastName?: string;
1183
1183
  orderAdditionalInfo?: string;
1184
1184
  }
1185
+ export interface ShippingEtcInfo {
1186
+ orderAdditionalInfo: Nullable<string>;
1187
+ receiverFirstName: string;
1188
+ receiverLastName: string;
1189
+ }
1185
1190
  export interface AddressDetail {
1186
1191
  lastName: Nullable<string>;
1187
1192
  receiverJibunAddress?: string;
@@ -1205,6 +1210,7 @@ export interface AddressDetail {
1205
1210
  receiverContact1: string;
1206
1211
  receiverContact2: Nullable<string>;
1207
1212
  registerYmdt: Nullable<string>;
1213
+ shippingEtcInfo?: Nullable<ShippingEtcInfo>;
1208
1214
  }
1209
1215
  /**
1210
1216
  * path: /profile/shipping-addresses/recent
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopby/shop-sdk",
3
- "version": "1.70.0",
3
+ "version": "1.70.1",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "types": "build/types/index.d.ts",