@shopby/shop-sdk 1.27.29 → 1.29.0
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.29.0](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.28.0...v1.29.0) (2023-01-05)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* getProfileMobileExist add type ([7305548](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/73055481e00991db3ee6ce5c6133276ee79a7c1d))
|
|
11
|
+
|
|
12
|
+
## [1.28.0](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.27.29...v1.28.0) (2023-01-03)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* api any type modify ([e6945c1](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/e6945c1cbca08df11f29182236634941b79744ca))
|
|
18
|
+
|
|
5
19
|
### [1.27.29](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.27.28...v1.27.29) (2022-11-30)
|
|
6
20
|
|
|
7
21
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GetProfileResponse, postProfileOpenIdRequest, postProfileOpenIdResponse, ResponseData } from '../../../types';
|
|
1
|
+
import { DeleteProfileRequest, GetProfileEmailExistRequest, GetProfileIdExistRequest, GetProfileResponse, postProfileOpenIdRequest, postProfileOpenIdResponse, PostProfileRequest, PutProfileRequest, ResponseData, GetProfileEmailExistResponse, GetProfileIdExistResponse, PostProfileResponse, PutProfileResponse, GetProfileMobileExistRequest, GetProfileMobileExistResponse } from '../../../types';
|
|
2
2
|
declare const member: (httpRequest: Function) => {
|
|
3
3
|
/**
|
|
4
4
|
* Company
|
|
@@ -8,9 +8,9 @@ declare const member: (httpRequest: Function) => {
|
|
|
8
8
|
* Profile
|
|
9
9
|
*/
|
|
10
10
|
getProfile(): Promise<ResponseData<GetProfileResponse>>;
|
|
11
|
-
putProfile(request:
|
|
12
|
-
postProfile(request:
|
|
13
|
-
deleteProfile(request:
|
|
11
|
+
putProfile(request: PutProfileRequest): Promise<ResponseData<PutProfileResponse>>;
|
|
12
|
+
postProfile(request: PostProfileRequest): Promise<ResponseData<PostProfileResponse>>;
|
|
13
|
+
deleteProfile(request: DeleteProfileRequest): Promise<ResponseData<void>>;
|
|
14
14
|
putProfileAddress(request: any): Promise<ResponseData<void>>;
|
|
15
15
|
postProfileBizmall(request: any): Promise<ResponseData<any>>;
|
|
16
16
|
postProfileChangePasswordAfterCert(request: any): Promise<ResponseData<any>>;
|
|
@@ -28,12 +28,12 @@ declare const member: (httpRequest: Function) => {
|
|
|
28
28
|
putProfilePassword(request: any): Promise<ResponseData<any>>;
|
|
29
29
|
postProfileRename(request: any): Promise<ResponseData<void>>;
|
|
30
30
|
getProfileCiExists(request: any): Promise<ResponseData<any>>;
|
|
31
|
-
getProfileEmailExists(request:
|
|
31
|
+
getProfileEmailExists(request: GetProfileEmailExistRequest): Promise<ResponseData<GetProfileEmailExistResponse>>;
|
|
32
32
|
postProfileIdEmail(request: any): Promise<{
|
|
33
33
|
result: string;
|
|
34
34
|
}>;
|
|
35
|
-
getProfileIdExists(request:
|
|
36
|
-
getProfileMobileExists(request:
|
|
35
|
+
getProfileIdExists(request: GetProfileIdExistRequest): Promise<ResponseData<GetProfileIdExistResponse>>;
|
|
36
|
+
getProfileMobileExists(request: GetProfileMobileExistRequest): Promise<ResponseData<GetProfileMobileExistResponse>>;
|
|
37
37
|
getProfileNicknameExists(request: any): Promise<ResponseData<any>>;
|
|
38
38
|
getProfilePasswordSearchAccount(request: any): Promise<ResponseData<any>>;
|
|
39
39
|
putProfilePasswordSendingEmailWithUrl(request: any): Promise<ResponseData<void>>;
|
|
@@ -6,7 +6,7 @@ var member = function (httpRequest) { return ({
|
|
|
6
6
|
return httpRequest({
|
|
7
7
|
method: 'GET',
|
|
8
8
|
url: '/companies',
|
|
9
|
-
key: 'getCompanies'
|
|
9
|
+
key: 'getCompanies',
|
|
10
10
|
});
|
|
11
11
|
},
|
|
12
12
|
/**
|
|
@@ -17,7 +17,7 @@ var member = function (httpRequest) { return ({
|
|
|
17
17
|
method: 'GET',
|
|
18
18
|
url: '/profile',
|
|
19
19
|
useAccessToken: true,
|
|
20
|
-
key: 'getProfile'
|
|
20
|
+
key: 'getProfile',
|
|
21
21
|
});
|
|
22
22
|
},
|
|
23
23
|
putProfile: function (request) {
|
|
@@ -27,7 +27,7 @@ var member = function (httpRequest) { return ({
|
|
|
27
27
|
url: '/profile',
|
|
28
28
|
requestBody: requestBody,
|
|
29
29
|
useAccessToken: true,
|
|
30
|
-
key: 'putProfile'
|
|
30
|
+
key: 'putProfile',
|
|
31
31
|
});
|
|
32
32
|
},
|
|
33
33
|
postProfile: function (request) {
|
|
@@ -36,7 +36,7 @@ var member = function (httpRequest) { return ({
|
|
|
36
36
|
method: 'POST',
|
|
37
37
|
url: '/profile',
|
|
38
38
|
requestBody: requestBody,
|
|
39
|
-
key: 'postProfile'
|
|
39
|
+
key: 'postProfile',
|
|
40
40
|
});
|
|
41
41
|
},
|
|
42
42
|
deleteProfile: function (request) {
|
|
@@ -46,7 +46,7 @@ var member = function (httpRequest) { return ({
|
|
|
46
46
|
url: '/profile',
|
|
47
47
|
queryString: queryString,
|
|
48
48
|
useAccessToken: true,
|
|
49
|
-
key: 'deleteProfile'
|
|
49
|
+
key: 'deleteProfile',
|
|
50
50
|
});
|
|
51
51
|
},
|
|
52
52
|
putProfileAddress: function (request) {
|
|
@@ -56,7 +56,7 @@ var member = function (httpRequest) { return ({
|
|
|
56
56
|
url: '/profile',
|
|
57
57
|
requestBody: requestBody,
|
|
58
58
|
useAccessToken: true,
|
|
59
|
-
key: 'putProfileAddress'
|
|
59
|
+
key: 'putProfileAddress',
|
|
60
60
|
});
|
|
61
61
|
},
|
|
62
62
|
postProfileBizmall: function (request) {
|
|
@@ -65,7 +65,7 @@ var member = function (httpRequest) { return ({
|
|
|
65
65
|
method: 'PUT',
|
|
66
66
|
url: '/profile/bizmall',
|
|
67
67
|
requestBody: requestBody,
|
|
68
|
-
key: 'postProfileBizmall'
|
|
68
|
+
key: 'postProfileBizmall',
|
|
69
69
|
});
|
|
70
70
|
},
|
|
71
71
|
postProfileChangePasswordAfterCert: function (request) {
|
|
@@ -74,7 +74,7 @@ var member = function (httpRequest) { return ({
|
|
|
74
74
|
method: 'POST',
|
|
75
75
|
url: '/profile/change-password-after-cert',
|
|
76
76
|
requestBody: requestBody,
|
|
77
|
-
key: 'postProfileChangePasswordAfterCert'
|
|
77
|
+
key: 'postProfileChangePasswordAfterCert',
|
|
78
78
|
});
|
|
79
79
|
},
|
|
80
80
|
postProfileCheckPassword: function (request) {
|
|
@@ -84,14 +84,14 @@ var member = function (httpRequest) { return ({
|
|
|
84
84
|
url: '/profile/check-password',
|
|
85
85
|
requestBody: requestBody,
|
|
86
86
|
useAccessToken: true,
|
|
87
|
-
key: 'postProfileCheckPassword'
|
|
87
|
+
key: 'postProfileCheckPassword',
|
|
88
88
|
});
|
|
89
89
|
},
|
|
90
90
|
getProfileDormancy: function () {
|
|
91
91
|
return httpRequest({
|
|
92
92
|
method: 'GET',
|
|
93
93
|
url: '/profile/dormancy',
|
|
94
|
-
key: 'getProfileDormancy'
|
|
94
|
+
key: 'getProfileDormancy',
|
|
95
95
|
});
|
|
96
96
|
},
|
|
97
97
|
putProfileDormancy: function (request) {
|
|
@@ -100,7 +100,7 @@ var member = function (httpRequest) { return ({
|
|
|
100
100
|
method: 'PUT',
|
|
101
101
|
url: '/profile/dormancy',
|
|
102
102
|
requestBody: requestBody,
|
|
103
|
-
key: 'putProfileDormancy'
|
|
103
|
+
key: 'putProfileDormancy',
|
|
104
104
|
});
|
|
105
105
|
},
|
|
106
106
|
postProfileFindId: function (request) {
|
|
@@ -109,7 +109,7 @@ var member = function (httpRequest) { return ({
|
|
|
109
109
|
method: 'POST',
|
|
110
110
|
url: '/profile/find-id',
|
|
111
111
|
requestBody: requestBody,
|
|
112
|
-
key: 'postProfileFindId'
|
|
112
|
+
key: 'postProfileFindId',
|
|
113
113
|
});
|
|
114
114
|
},
|
|
115
115
|
postProfileFindPassword: function (request) {
|
|
@@ -118,7 +118,7 @@ var member = function (httpRequest) { return ({
|
|
|
118
118
|
method: 'POST',
|
|
119
119
|
url: '/profile/find-password',
|
|
120
120
|
requestBody: requestBody,
|
|
121
|
-
key: 'postProfileFindPassword'
|
|
121
|
+
key: 'postProfileFindPassword',
|
|
122
122
|
});
|
|
123
123
|
},
|
|
124
124
|
getProfileId: function (request) {
|
|
@@ -127,7 +127,7 @@ var member = function (httpRequest) { return ({
|
|
|
127
127
|
method: 'GET',
|
|
128
128
|
url: '/profile/id',
|
|
129
129
|
queryString: queryString,
|
|
130
|
-
key: 'getProfileId'
|
|
130
|
+
key: 'getProfileId',
|
|
131
131
|
});
|
|
132
132
|
},
|
|
133
133
|
putProfileId: function (request) {
|
|
@@ -136,7 +136,7 @@ var member = function (httpRequest) { return ({
|
|
|
136
136
|
method: 'PUT',
|
|
137
137
|
url: '/profile/id',
|
|
138
138
|
requestBody: requestBody,
|
|
139
|
-
key: 'putProfileId'
|
|
139
|
+
key: 'putProfileId',
|
|
140
140
|
});
|
|
141
141
|
},
|
|
142
142
|
postProfileNonMasking: function (request) {
|
|
@@ -145,7 +145,7 @@ var member = function (httpRequest) { return ({
|
|
|
145
145
|
method: 'POST',
|
|
146
146
|
url: '/profile/non-masking',
|
|
147
147
|
requestBody: requestBody,
|
|
148
|
-
key: 'postProfileNonMasking'
|
|
148
|
+
key: 'postProfileNonMasking',
|
|
149
149
|
});
|
|
150
150
|
},
|
|
151
151
|
postProfileOpenId: function (request) {
|
|
@@ -154,7 +154,7 @@ var member = function (httpRequest) { return ({
|
|
|
154
154
|
method: 'POST',
|
|
155
155
|
url: '/profile/openid',
|
|
156
156
|
requestBody: requestBody,
|
|
157
|
-
key: 'postProfileOpenId'
|
|
157
|
+
key: 'postProfileOpenId',
|
|
158
158
|
});
|
|
159
159
|
},
|
|
160
160
|
putProfilePassword: function (request) {
|
|
@@ -163,7 +163,7 @@ var member = function (httpRequest) { return ({
|
|
|
163
163
|
method: 'PUT',
|
|
164
164
|
url: '/profile/password',
|
|
165
165
|
requestBody: requestBody,
|
|
166
|
-
key: 'putProfilePassword'
|
|
166
|
+
key: 'putProfilePassword',
|
|
167
167
|
});
|
|
168
168
|
},
|
|
169
169
|
postProfileRename: function (request) {
|
|
@@ -172,7 +172,7 @@ var member = function (httpRequest) { return ({
|
|
|
172
172
|
method: 'POST',
|
|
173
173
|
url: '/profile/rename',
|
|
174
174
|
requestBody: requestBody,
|
|
175
|
-
key: 'postProfileRename'
|
|
175
|
+
key: 'postProfileRename',
|
|
176
176
|
});
|
|
177
177
|
},
|
|
178
178
|
getProfileCiExists: function (request) {
|
|
@@ -181,7 +181,7 @@ var member = function (httpRequest) { return ({
|
|
|
181
181
|
method: 'GET',
|
|
182
182
|
url: '/profile/ci/exists',
|
|
183
183
|
queryString: queryString,
|
|
184
|
-
key: 'getProfileCiExists'
|
|
184
|
+
key: 'getProfileCiExists',
|
|
185
185
|
});
|
|
186
186
|
},
|
|
187
187
|
getProfileEmailExists: function (request) {
|
|
@@ -190,7 +190,7 @@ var member = function (httpRequest) { return ({
|
|
|
190
190
|
method: 'GET',
|
|
191
191
|
url: '/profile/email/exist',
|
|
192
192
|
queryString: queryString,
|
|
193
|
-
key: 'getProfileEmailExists'
|
|
193
|
+
key: 'getProfileEmailExists',
|
|
194
194
|
});
|
|
195
195
|
},
|
|
196
196
|
postProfileIdEmail: function (request) {
|
|
@@ -199,7 +199,7 @@ var member = function (httpRequest) { return ({
|
|
|
199
199
|
method: 'POST',
|
|
200
200
|
url: '/profile/id/email',
|
|
201
201
|
requestBody: requestBody,
|
|
202
|
-
key: 'postProfileIdEmail'
|
|
202
|
+
key: 'postProfileIdEmail',
|
|
203
203
|
});
|
|
204
204
|
},
|
|
205
205
|
getProfileIdExists: function (request) {
|
|
@@ -208,7 +208,7 @@ var member = function (httpRequest) { return ({
|
|
|
208
208
|
method: 'GET',
|
|
209
209
|
url: '/profile/id/exist',
|
|
210
210
|
queryString: queryString,
|
|
211
|
-
key: 'getProfileIdExists'
|
|
211
|
+
key: 'getProfileIdExists',
|
|
212
212
|
});
|
|
213
213
|
},
|
|
214
214
|
getProfileMobileExists: function (request) {
|
|
@@ -217,7 +217,7 @@ var member = function (httpRequest) { return ({
|
|
|
217
217
|
method: 'GET',
|
|
218
218
|
url: '/profile/mobile/exist',
|
|
219
219
|
queryString: queryString,
|
|
220
|
-
key: 'getProfileMobileExists'
|
|
220
|
+
key: 'getProfileMobileExists',
|
|
221
221
|
});
|
|
222
222
|
},
|
|
223
223
|
getProfileNicknameExists: function (request) {
|
|
@@ -226,7 +226,7 @@ var member = function (httpRequest) { return ({
|
|
|
226
226
|
method: 'GET',
|
|
227
227
|
url: '/profile/nickname/exist',
|
|
228
228
|
queryString: queryString,
|
|
229
|
-
key: 'getProfileNicknameExists'
|
|
229
|
+
key: 'getProfileNicknameExists',
|
|
230
230
|
});
|
|
231
231
|
},
|
|
232
232
|
getProfilePasswordSearchAccount: function (request) {
|
|
@@ -235,7 +235,7 @@ var member = function (httpRequest) { return ({
|
|
|
235
235
|
method: 'GET',
|
|
236
236
|
url: '/profile/password/search-account',
|
|
237
237
|
queryString: queryString,
|
|
238
|
-
key: 'getProfilePasswordSearchAccount'
|
|
238
|
+
key: 'getProfilePasswordSearchAccount',
|
|
239
239
|
});
|
|
240
240
|
},
|
|
241
241
|
putProfilePasswordSendingEmailWithUrl: function (request) {
|
|
@@ -244,7 +244,7 @@ var member = function (httpRequest) { return ({
|
|
|
244
244
|
method: 'PUT',
|
|
245
245
|
url: '/profile/password/sending-email-with-url',
|
|
246
246
|
requestBody: requestBody,
|
|
247
|
-
key: 'putProfilePasswordSendingEmailWithUrl'
|
|
247
|
+
key: 'putProfilePasswordSendingEmailWithUrl',
|
|
248
248
|
});
|
|
249
249
|
},
|
|
250
250
|
getProfileMemberEqualsWithEmail: function (request) {
|
|
@@ -253,7 +253,7 @@ var member = function (httpRequest) { return ({
|
|
|
253
253
|
method: 'GET',
|
|
254
254
|
url: '/profile/member/equals/with-email',
|
|
255
255
|
queryString: queryString,
|
|
256
|
-
key: 'getProfileMemberEqualsWithEmail'
|
|
256
|
+
key: 'getProfileMemberEqualsWithEmail',
|
|
257
257
|
});
|
|
258
258
|
},
|
|
259
259
|
getProfileMemberEqualsWithMobile: function (request) {
|
|
@@ -262,7 +262,7 @@ var member = function (httpRequest) { return ({
|
|
|
262
262
|
method: 'GET',
|
|
263
263
|
url: '/profile/member/equals/with-mobile',
|
|
264
264
|
queryString: queryString,
|
|
265
|
-
key: 'getProfileMemberEqualsWithMobile'
|
|
265
|
+
key: 'getProfileMemberEqualsWithMobile',
|
|
266
266
|
});
|
|
267
267
|
},
|
|
268
268
|
putProfilePasswordNoAuthenticationCertificatedByEmail: function (request) {
|
|
@@ -271,7 +271,7 @@ var member = function (httpRequest) { return ({
|
|
|
271
271
|
method: 'PUT',
|
|
272
272
|
url: '/profile/password/no-authentication/certificated-by-email',
|
|
273
273
|
requestBody: requestBody,
|
|
274
|
-
key: 'putProfilePasswordNoAuthenticationCertificatedByEmail'
|
|
274
|
+
key: 'putProfilePasswordNoAuthenticationCertificatedByEmail',
|
|
275
275
|
});
|
|
276
276
|
},
|
|
277
277
|
putProfilePasswordNoAuthenticationCertificatedBySms: function (request) {
|
|
@@ -280,7 +280,7 @@ var member = function (httpRequest) { return ({
|
|
|
280
280
|
method: 'PUT',
|
|
281
281
|
url: '/profile/password/no-authentication/certificated-by-sms',
|
|
282
282
|
requestBody: requestBody,
|
|
283
|
-
key: 'putProfilePasswordNoAuthenticationCertificatedBySms'
|
|
283
|
+
key: 'putProfilePasswordNoAuthenticationCertificatedBySms',
|
|
284
284
|
});
|
|
285
285
|
},
|
|
286
286
|
/**
|
|
@@ -292,7 +292,7 @@ var member = function (httpRequest) { return ({
|
|
|
292
292
|
method: 'PUT',
|
|
293
293
|
url: '/profile/expel',
|
|
294
294
|
requestBody: requestBody,
|
|
295
|
-
key: 'putProfileExpel'
|
|
295
|
+
key: 'putProfileExpel',
|
|
296
296
|
});
|
|
297
297
|
},
|
|
298
298
|
// FIXME: this API is Deprecated
|
|
@@ -301,7 +301,7 @@ var member = function (httpRequest) { return ({
|
|
|
301
301
|
return httpRequest({
|
|
302
302
|
method: 'GET',
|
|
303
303
|
url: '/profile/summary',
|
|
304
|
-
key: 'getProfileSummary'
|
|
304
|
+
key: 'getProfileSummary',
|
|
305
305
|
});
|
|
306
306
|
},
|
|
307
307
|
}); };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/domain/member/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/domain/member/index.ts"],"names":[],"mappings":"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"}
|
package/build/src/index.d.ts
CHANGED
|
@@ -106,9 +106,9 @@ export declare const create: ({ baseURL, headerOption, customHttpRequest, versio
|
|
|
106
106
|
member: {
|
|
107
107
|
getCompanies(): Promise<import("../types/http").ResponseData<any>>;
|
|
108
108
|
getProfile(): Promise<import("../types/http").ResponseData<import("../types").GetProfileResponse>>;
|
|
109
|
-
putProfile(request:
|
|
110
|
-
postProfile(request:
|
|
111
|
-
deleteProfile(request:
|
|
109
|
+
putProfile(request: import("../types").PutProfileRequest): Promise<import("../types/http").ResponseData<import("../types").PutProfileResponse>>;
|
|
110
|
+
postProfile(request: import("../types").PostProfileRequest): Promise<import("../types/http").ResponseData<import("../types").PostProfileResponse>>;
|
|
111
|
+
deleteProfile(request: import("../types").DeleteProfileRequest): Promise<import("../types/http").ResponseData<void>>;
|
|
112
112
|
putProfileAddress(request: any): Promise<import("../types/http").ResponseData<void>>;
|
|
113
113
|
postProfileBizmall(request: any): Promise<import("../types/http").ResponseData<any>>;
|
|
114
114
|
postProfileChangePasswordAfterCert(request: any): Promise<import("../types/http").ResponseData<any>>;
|
|
@@ -126,12 +126,12 @@ export declare const create: ({ baseURL, headerOption, customHttpRequest, versio
|
|
|
126
126
|
putProfilePassword(request: any): Promise<import("../types/http").ResponseData<any>>;
|
|
127
127
|
postProfileRename(request: any): Promise<import("../types/http").ResponseData<void>>;
|
|
128
128
|
getProfileCiExists(request: any): Promise<import("../types/http").ResponseData<any>>;
|
|
129
|
-
getProfileEmailExists(request:
|
|
129
|
+
getProfileEmailExists(request: import("../types").GetProfileEmailExistRequest): Promise<import("../types/http").ResponseData<import("../types").GetProfileEmailExistResponse>>;
|
|
130
130
|
postProfileIdEmail(request: any): Promise<{
|
|
131
131
|
result: string;
|
|
132
132
|
}>;
|
|
133
|
-
getProfileIdExists(request:
|
|
134
|
-
getProfileMobileExists(request:
|
|
133
|
+
getProfileIdExists(request: import("../types").GetProfileIdExistRequest): Promise<import("../types/http").ResponseData<import("../types").GetProfileIdExistResponse>>;
|
|
134
|
+
getProfileMobileExists(request: import("../types").GetProfileMobileExistRequest): Promise<import("../types/http").ResponseData<import("../types").GetProfileMobileExistResponse>>;
|
|
135
135
|
getProfileNicknameExists(request: any): Promise<import("../types/http").ResponseData<any>>;
|
|
136
136
|
getProfilePasswordSearchAccount(request: any): Promise<import("../types/http").ResponseData<any>>;
|
|
137
137
|
putProfilePasswordSendingEmailWithUrl(request: any): Promise<import("../types/http").ResponseData<void>>;
|
|
@@ -133,3 +133,201 @@ export interface agreedTermsInfos {
|
|
|
133
133
|
termsType: string;
|
|
134
134
|
agreementYmdt: string;
|
|
135
135
|
}
|
|
136
|
+
export interface PutProfileRequest {
|
|
137
|
+
requestBody: {
|
|
138
|
+
birthday?: string;
|
|
139
|
+
businessName?: string;
|
|
140
|
+
smsAuthKey?: string;
|
|
141
|
+
memberName?: string;
|
|
142
|
+
zipCd?: string;
|
|
143
|
+
pushNotificationAgreed?: boolean;
|
|
144
|
+
password?: string;
|
|
145
|
+
directMailAgreed?: boolean;
|
|
146
|
+
additionalInfo?: string;
|
|
147
|
+
nickname?: string;
|
|
148
|
+
email?: string;
|
|
149
|
+
jibunDetailAddress?: string;
|
|
150
|
+
address?: string;
|
|
151
|
+
certificated?: string;
|
|
152
|
+
smsAgreed?: string;
|
|
153
|
+
sex?: string;
|
|
154
|
+
jibunAddress?: string;
|
|
155
|
+
refundBank?: string;
|
|
156
|
+
currentPassword: string;
|
|
157
|
+
refundBankDepositorName?: string;
|
|
158
|
+
telephoneNo?: string;
|
|
159
|
+
joinTermsAgreements?: Array<string>;
|
|
160
|
+
detailAddress?: string;
|
|
161
|
+
refundBankAccount?: string;
|
|
162
|
+
};
|
|
163
|
+
}
|
|
164
|
+
export interface PutProfileResponse {
|
|
165
|
+
directMailDisagreeYmdt?: string;
|
|
166
|
+
businessName?: string;
|
|
167
|
+
countryCd: string;
|
|
168
|
+
zipCd?: string;
|
|
169
|
+
pushNotificationAgreed: boolean;
|
|
170
|
+
directMailAgreeYmdt?: string;
|
|
171
|
+
directMailAgreed: boolean;
|
|
172
|
+
additionalInfo?: string;
|
|
173
|
+
joinYmdt: string;
|
|
174
|
+
memberId: string;
|
|
175
|
+
lastLoginYmdt?: string;
|
|
176
|
+
certificationType?: string;
|
|
177
|
+
providerTypes?: string[];
|
|
178
|
+
smsAgreed: boolean;
|
|
179
|
+
jibunAddress?: string;
|
|
180
|
+
smsAgreeYmdt?: string;
|
|
181
|
+
refundBank?: string;
|
|
182
|
+
memberNo: number;
|
|
183
|
+
refundBankDepositorName?: string;
|
|
184
|
+
telephoneNo?: string;
|
|
185
|
+
pushNotificationDisagreeYmdt?: string;
|
|
186
|
+
refundBankAccount: string;
|
|
187
|
+
memberGroupNames?: string;
|
|
188
|
+
birthday?: string;
|
|
189
|
+
mallName?: string;
|
|
190
|
+
memberStatus: string;
|
|
191
|
+
memberName?: string;
|
|
192
|
+
providerType?: string;
|
|
193
|
+
principalCertificated: boolean;
|
|
194
|
+
lastLoginIp?: string;
|
|
195
|
+
nickname?: string;
|
|
196
|
+
memberGroups: MemberGroup[];
|
|
197
|
+
email?: string;
|
|
198
|
+
agreedTermsInfos: AgreedTermsInfo[];
|
|
199
|
+
jibunDetailAddress?: string;
|
|
200
|
+
agreedTerms: string[];
|
|
201
|
+
address?: string;
|
|
202
|
+
adultCertificated: boolean;
|
|
203
|
+
adultCertificatedYmdt?: string;
|
|
204
|
+
sex?: string;
|
|
205
|
+
joinTypeName?: string;
|
|
206
|
+
mobileNo?: string;
|
|
207
|
+
smsDisagreeYmdt?: string;
|
|
208
|
+
loginCount?: number;
|
|
209
|
+
memberGradeName?: string;
|
|
210
|
+
registrationNo?: string;
|
|
211
|
+
oauthIdNo?: string;
|
|
212
|
+
detailAddress?: string;
|
|
213
|
+
pushNotificationAgreeYmdt?: string;
|
|
214
|
+
memberType: string;
|
|
215
|
+
}
|
|
216
|
+
export interface PostProfileRequest {
|
|
217
|
+
requestBody: {
|
|
218
|
+
birthday?: string;
|
|
219
|
+
lastName: string;
|
|
220
|
+
businessName?: string;
|
|
221
|
+
countryCd?: string;
|
|
222
|
+
memberName?: string;
|
|
223
|
+
zipCd?: string;
|
|
224
|
+
pushNotificationAgreed?: boolean;
|
|
225
|
+
password?: string;
|
|
226
|
+
recommenderId?: string;
|
|
227
|
+
companyNo?: number;
|
|
228
|
+
directMailAgreed?: boolean;
|
|
229
|
+
additionalInfo?: string;
|
|
230
|
+
nickname?: string;
|
|
231
|
+
groupNo?: string;
|
|
232
|
+
email?: string;
|
|
233
|
+
memberId?: string;
|
|
234
|
+
jibunDetailAddress?: string;
|
|
235
|
+
address?: string;
|
|
236
|
+
certificated?: boolean;
|
|
237
|
+
ci?: string;
|
|
238
|
+
smsAgreed?: boolean;
|
|
239
|
+
sex?: string;
|
|
240
|
+
jibunAddress?: string;
|
|
241
|
+
openIdAccessToken?: string;
|
|
242
|
+
mobileNo: string;
|
|
243
|
+
firstName?: string;
|
|
244
|
+
telephoneNo: string;
|
|
245
|
+
registrationNo?: string;
|
|
246
|
+
joinTermsAgreements: Array<string>;
|
|
247
|
+
detailAddress?: string;
|
|
248
|
+
};
|
|
249
|
+
}
|
|
250
|
+
export interface PostProfileResponse {
|
|
251
|
+
directMailDisagreeYmdt?: string;
|
|
252
|
+
businessName?: string;
|
|
253
|
+
countryCd: string;
|
|
254
|
+
zipCd?: string;
|
|
255
|
+
pushNotificationAgreed: boolean;
|
|
256
|
+
directMailAgreeYmdt?: string;
|
|
257
|
+
directMailAgreed: boolean;
|
|
258
|
+
additionalInfo?: string;
|
|
259
|
+
joinYmdt: string;
|
|
260
|
+
memberId: string;
|
|
261
|
+
lastLoginYmdt?: string;
|
|
262
|
+
certificationType?: string;
|
|
263
|
+
providerTypes?: string[];
|
|
264
|
+
smsAgreed: boolean;
|
|
265
|
+
jibunAddress?: string;
|
|
266
|
+
smsAgreeYmdt?: string;
|
|
267
|
+
refundBank?: string;
|
|
268
|
+
memberNo: number;
|
|
269
|
+
refundBankDepositorName?: string;
|
|
270
|
+
telephoneNo?: string;
|
|
271
|
+
pushNotificationDisagreeYmdt?: string;
|
|
272
|
+
refundBankAccount: string;
|
|
273
|
+
memberGroupNames?: string;
|
|
274
|
+
birthday?: string;
|
|
275
|
+
mallName?: string;
|
|
276
|
+
memberStatus: string;
|
|
277
|
+
memberName?: string;
|
|
278
|
+
providerType?: string;
|
|
279
|
+
principalCertificated: boolean;
|
|
280
|
+
lastLoginIp?: string;
|
|
281
|
+
nickname?: string;
|
|
282
|
+
memberGroups: MemberGroup[];
|
|
283
|
+
email?: string;
|
|
284
|
+
agreedTermsInfos: AgreedTermsInfo[];
|
|
285
|
+
jibunDetailAddress?: string;
|
|
286
|
+
agreedTerms: string[];
|
|
287
|
+
address?: string;
|
|
288
|
+
adultCertificated: boolean;
|
|
289
|
+
adultCertificatedYmdt?: string;
|
|
290
|
+
sex?: string;
|
|
291
|
+
joinTypeName?: string;
|
|
292
|
+
mobileNo?: string;
|
|
293
|
+
smsDisagreeYmdt?: string;
|
|
294
|
+
loginCount?: number;
|
|
295
|
+
memberGradeName?: string;
|
|
296
|
+
registrationNo?: string;
|
|
297
|
+
oauthIdNo?: string;
|
|
298
|
+
detailAddress?: string;
|
|
299
|
+
pushNotificationAgreeYmdt?: string;
|
|
300
|
+
memberType: string;
|
|
301
|
+
}
|
|
302
|
+
export interface DeleteProfileRequest {
|
|
303
|
+
queryString: {
|
|
304
|
+
reason?: string;
|
|
305
|
+
};
|
|
306
|
+
}
|
|
307
|
+
export interface GetProfileIdExistRequest {
|
|
308
|
+
queryString: {
|
|
309
|
+
memberId: string;
|
|
310
|
+
};
|
|
311
|
+
}
|
|
312
|
+
export interface GetProfileIdExistResponse {
|
|
313
|
+
exist: boolean;
|
|
314
|
+
status?: string;
|
|
315
|
+
}
|
|
316
|
+
export interface GetProfileEmailExistRequest {
|
|
317
|
+
queryString: {
|
|
318
|
+
email: string;
|
|
319
|
+
};
|
|
320
|
+
}
|
|
321
|
+
export interface GetProfileEmailExistResponse {
|
|
322
|
+
exist: boolean;
|
|
323
|
+
status?: string;
|
|
324
|
+
}
|
|
325
|
+
export interface GetProfileMobileExistRequest {
|
|
326
|
+
queryString: {
|
|
327
|
+
mobileNo: string;
|
|
328
|
+
};
|
|
329
|
+
}
|
|
330
|
+
export interface GetProfileMobileExistResponse {
|
|
331
|
+
mobileNoExist: boolean;
|
|
332
|
+
memberId: string;
|
|
333
|
+
}
|