@shopby/shop-sdk 1.63.10 → 1.63.12

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,20 @@
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.12](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.63.11...v1.63.12) (2023-09-04)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * 회원의 개인정보 추가 동의 항목 api 추가 ([937ee88](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/937ee882e2bec103a9d4eccbe4d82abebff2c4d3))
11
+
12
+ ### [1.63.11](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.63.10...v1.63.11) (2023-08-31)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * 외부스크립트 페이지 타입에 MY_PAGE 추가 ([08c452e](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/08c452e38f31e503f27a1824d915b101c8a36358))
18
+
5
19
  ### [1.63.10](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.63.9...v1.63.10) (2023-08-31)
6
20
 
7
21
 
@@ -29,6 +29,6 @@ export var PAGE_TYPE_MAP = {
29
29
  ORDER_COMPLETE: '주문완료 페이지',
30
30
  DISPLAY_SECTION: '메인 상품 분류 페이지',
31
31
  MEMBER_JOIN_COMPLETE: '회원가입완료 페이지',
32
- MY_PAGE: '마이페이지'
32
+ MY_PAGE: '마이페이지',
33
33
  };
34
34
  //# sourceMappingURL=index.js.map
@@ -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":"AAQA,cAAc,UAAU,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/domain/member/index.ts"],"names":[],"mappings":"AASA,cAAc,UAAU,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopby/shop-sdk",
3
- "version": "1.63.10",
3
+ "version": "1.63.12",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "types": "build/types/index.d.ts",