@shopby/shop-sdk 1.63.11 → 1.63.14
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,27 @@
|
|
|
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.63.14](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.63.13...v1.63.14) (2023-09-06)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* 빌드 오류 수정 ([a484b0c](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/a484b0c6049e9bb4a701cd555f8bec380f04e118))
|
|
11
|
+
|
|
12
|
+
### [1.63.13](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.63.12...v1.63.13) (2023-09-06)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* 주문 예약하기 request에 약관 추가항목 추가 ([4e1b87d](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/4e1b87d27cfc65fcfc1bd02e692516a5f8f0efd2))
|
|
18
|
+
|
|
19
|
+
### [1.63.12](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.63.11...v1.63.12) (2023-09-04)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* 회원의 개인정보 추가 동의 항목 api 추가 ([937ee88](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/937ee882e2bec103a9d4eccbe4d82abebff2c4d3))
|
|
25
|
+
|
|
5
26
|
### [1.63.11](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.63.10...v1.63.11) (2023-08-31)
|
|
6
27
|
|
|
7
28
|
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { CountryCode } from '../../../types/common';
|
|
1
|
+
import { CountryCode, Nullable } from '../../../types/common';
|
|
2
|
+
import { TermsType } from '../manage';
|
|
2
3
|
import { ProfileStatusType, FindMethodType, IssueType, DiscountType, ReserveAutoSupplyingType } from '../member/unions';
|
|
3
4
|
export * from './unions';
|
|
4
5
|
export interface MemberGroup {
|
|
@@ -10,6 +11,11 @@ export interface AgreedTermsInfo {
|
|
|
10
11
|
termsType: string;
|
|
11
12
|
agreementYmdt: string;
|
|
12
13
|
}
|
|
14
|
+
export interface CustomTermsAgreement {
|
|
15
|
+
agreementYmdt: string;
|
|
16
|
+
customTermsNo: number;
|
|
17
|
+
termsType: TermsType[];
|
|
18
|
+
}
|
|
13
19
|
export interface GetProfileResponse {
|
|
14
20
|
mallName: string;
|
|
15
21
|
memberNo: number;
|
|
@@ -59,6 +65,7 @@ export interface GetProfileResponse {
|
|
|
59
65
|
agreedTermsInfos: AgreedTermsInfo[];
|
|
60
66
|
providerType: string;
|
|
61
67
|
providerTypes: string[];
|
|
68
|
+
customTermsAgreement: CustomTermsAgreement[];
|
|
62
69
|
}
|
|
63
70
|
export interface postProfileOpenIdRequest {
|
|
64
71
|
requestBody: {
|
|
@@ -79,6 +86,7 @@ export interface postProfileOpenIdRequest {
|
|
|
79
86
|
directMailAgreed?: boolean;
|
|
80
87
|
joinTermsAgreements?: Array<string>;
|
|
81
88
|
certificated?: boolean;
|
|
89
|
+
customTermsNos?: Nullable<number[]>;
|
|
82
90
|
};
|
|
83
91
|
}
|
|
84
92
|
export interface postProfileOpenIdResponse {
|
|
@@ -126,6 +134,7 @@ export interface postProfileOpenIdResponse {
|
|
|
126
134
|
agreedTermsInfos: Array<agreedTermsInfos>;
|
|
127
135
|
memberGroupNames: string;
|
|
128
136
|
agreedTerms: Array<string>;
|
|
137
|
+
customTermsAgreement: Array<CustomTermsAgreement>;
|
|
129
138
|
}
|
|
130
139
|
export interface memberGroups {
|
|
131
140
|
memberGroupNo: number;
|
|
@@ -162,6 +171,7 @@ export interface PutProfileRequest {
|
|
|
162
171
|
joinTermsAgreements?: Array<string>;
|
|
163
172
|
detailAddress?: string;
|
|
164
173
|
refundBankAccount?: string;
|
|
174
|
+
customTermsNos?: Nullable<number[]>;
|
|
165
175
|
};
|
|
166
176
|
}
|
|
167
177
|
export interface PutProfileResponse {
|
|
@@ -215,6 +225,7 @@ export interface PutProfileResponse {
|
|
|
215
225
|
detailAddress?: string;
|
|
216
226
|
pushNotificationAgreeYmdt?: string;
|
|
217
227
|
memberType: string;
|
|
228
|
+
customTermsAgreement: CustomTermsAgreement[];
|
|
218
229
|
}
|
|
219
230
|
export interface PostProfileRequest {
|
|
220
231
|
requestBody: {
|
|
@@ -248,6 +259,7 @@ export interface PostProfileRequest {
|
|
|
248
259
|
registrationNo?: string;
|
|
249
260
|
joinTermsAgreements: Array<string>;
|
|
250
261
|
detailAddress?: string;
|
|
262
|
+
customTermsNos?: Nullable<number[]>;
|
|
251
263
|
};
|
|
252
264
|
}
|
|
253
265
|
export interface PostProfileResponse {
|
|
@@ -301,6 +313,7 @@ export interface PostProfileResponse {
|
|
|
301
313
|
detailAddress?: string;
|
|
302
314
|
pushNotificationAgreeYmdt?: string;
|
|
303
315
|
memberType: string;
|
|
316
|
+
customTermsAgreement: CustomTermsAgreement[];
|
|
304
317
|
}
|
|
305
318
|
export interface DeleteProfileRequest {
|
|
306
319
|
queryString: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/domain/member/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/domain/member/index.ts"],"names":[],"mappings":"AASA,cAAc,UAAU,CAAC"}
|
|
@@ -5,6 +5,7 @@ import { ClaimAddress, ClaimReasonTypeInfo, ExchangePayInfo } from '../../domain
|
|
|
5
5
|
import { OptionalAccessTokenRequest } from '../../http';
|
|
6
6
|
import { OptionSelectType } from '../product/option/unions';
|
|
7
7
|
import { RentalInfo } from '../../domain/product';
|
|
8
|
+
import { TermsType } from '../manage';
|
|
8
9
|
export * from './unions';
|
|
9
10
|
export * from './guest';
|
|
10
11
|
export * from './naverPay';
|
|
@@ -602,6 +603,8 @@ export interface PostPaymentsReserveRequest extends OptionalAccessTokenRequest {
|
|
|
602
603
|
cashReceipt?: CashReceipt;
|
|
603
604
|
shippingAddresses?: ShippingAddressesItem[];
|
|
604
605
|
myPayInfo: Nullable<UpdateMyPayInfo>;
|
|
606
|
+
customTermsNos?: Array<number>;
|
|
607
|
+
agreementTypes?: TermsType[];
|
|
605
608
|
};
|
|
606
609
|
}
|
|
607
610
|
export interface PostPaymentsReserveResponse {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/domain/order/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/domain/order/index.ts"],"names":[],"mappings":"AAwDA,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC"}
|