@shopby/shop-sdk 1.35.2 → 1.35.3
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,14 @@
|
|
|
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.35.3](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.35.2...v1.35.3) (2023-02-03)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* countryCd 에 string 대신 CountryCode 타입 적용 ([#93](https://gitlab.e-ncp.com/ncp-client/shop-sdk/issues/93)) ([f8b8cbe](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/f8b8cbee5b4eb6e8e12c4375d6b74d53a92b191b))
|
|
11
|
+
* orderSheet api의 변경된 스키마에 맞춰 타입 수정 ([#93](https://gitlab.e-ncp.com/ncp-client/shop-sdk/issues/93)) ([4ef262d](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/4ef262de5c7f6fd73798de0670d3122dca259c3e))
|
|
12
|
+
|
|
5
13
|
### [1.35.2](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.35.1...v1.35.2) (2023-02-01)
|
|
6
14
|
|
|
7
15
|
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { CountryCode } from '../../../types/common';
|
|
1
2
|
export interface MemberGroup {
|
|
2
3
|
memberGroupNo: number;
|
|
3
4
|
memberGroupName: string;
|
|
@@ -44,7 +45,7 @@ export interface GetProfileResponse {
|
|
|
44
45
|
directMailAgreed: boolean;
|
|
45
46
|
directMailAgreeYmdt: string;
|
|
46
47
|
directMailDisagreeYmdt?: any;
|
|
47
|
-
countryCd:
|
|
48
|
+
countryCd: CountryCode;
|
|
48
49
|
oauthIdNo: string;
|
|
49
50
|
additionalInfo: string;
|
|
50
51
|
adultCertificated: boolean;
|
|
@@ -164,7 +165,7 @@ export interface PutProfileRequest {
|
|
|
164
165
|
export interface PutProfileResponse {
|
|
165
166
|
directMailDisagreeYmdt?: string;
|
|
166
167
|
businessName?: string;
|
|
167
|
-
countryCd:
|
|
168
|
+
countryCd: CountryCode;
|
|
168
169
|
zipCd?: string;
|
|
169
170
|
pushNotificationAgreed: boolean;
|
|
170
171
|
directMailAgreeYmdt?: string;
|
|
@@ -250,7 +251,7 @@ export interface PostProfileRequest {
|
|
|
250
251
|
export interface PostProfileResponse {
|
|
251
252
|
directMailDisagreeYmdt?: string;
|
|
252
253
|
businessName?: string;
|
|
253
|
-
countryCd:
|
|
254
|
+
countryCd: CountryCode;
|
|
254
255
|
zipCd?: string;
|
|
255
256
|
pushNotificationAgreed: boolean;
|
|
256
257
|
directMailAgreeYmdt?: string;
|
|
@@ -205,7 +205,7 @@ export interface GetOrderSheetsOrderSheetNoResponse {
|
|
|
205
205
|
agreementTypes: AgreementType[];
|
|
206
206
|
requireCustomsIdNumber: boolean;
|
|
207
207
|
lastPayType: PayType;
|
|
208
|
-
orderSheetPromotionSummary
|
|
208
|
+
orderSheetPromotionSummary: Nullable<OrderSheetPromotionSummary>;
|
|
209
209
|
applyCashReceiptForAccount: boolean;
|
|
210
210
|
orderSheetAddress: OrderSheetAddress;
|
|
211
211
|
paymentInfo: PaymentInfo;
|
|
@@ -268,9 +268,7 @@ export interface OrderSheetAddressAddressDetail {
|
|
|
268
268
|
receiverContact2: string;
|
|
269
269
|
}
|
|
270
270
|
export interface OrderSheetPromotionSummary {
|
|
271
|
-
usableDeliveryCouponCnt: number;
|
|
272
271
|
myAccumulationAmt: number;
|
|
273
|
-
myDeliveryCouponCnt: number;
|
|
274
272
|
usableCouponCnt: number;
|
|
275
273
|
myCouponCnt: number;
|
|
276
274
|
}
|