ch-api-client-typescript2 5.88.52 → 5.90.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/lib/api/profiles-api.d.ts +188 -0
- package/lib/api/profiles-api.d.ts.map +1 -1
- package/lib/api/profiles-api.js +356 -0
- package/lib/models/confirm-identity-email-command.d.ts +31 -0
- package/lib/models/confirm-identity-email-command.d.ts.map +1 -0
- package/lib/models/confirm-identity-email-command.js +15 -0
- package/lib/models/confirm-phone-number-command.d.ts +31 -0
- package/lib/models/confirm-phone-number-command.d.ts.map +1 -0
- package/lib/models/confirm-phone-number-command.js +15 -0
- package/lib/models/hospital-service-item-model.d.ts +1 -1
- package/lib/models/hospital-service-model.d.ts +1 -1
- package/lib/models/index.d.ts +4 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +4 -0
- package/lib/models/send-verification-email-command.d.ts +37 -0
- package/lib/models/send-verification-email-command.d.ts.map +1 -0
- package/lib/models/send-verification-email-command.js +15 -0
- package/lib/models/send-verification-sms-command.d.ts +37 -0
- package/lib/models/send-verification-sms-command.d.ts.map +1 -0
- package/lib/models/send-verification-sms-command.js +15 -0
- package/package.json +1 -1
|
@@ -14,7 +14,11 @@ import { Configuration } from '../configuration';
|
|
|
14
14
|
import { RequestArgs, BaseAPI } from '../base';
|
|
15
15
|
import { ChangeEmailCommand } from '../models';
|
|
16
16
|
import { ConfirmEmailCommand } from '../models';
|
|
17
|
+
import { ConfirmIdentityEmailCommand } from '../models';
|
|
18
|
+
import { ConfirmPhoneNumberCommand } from '../models';
|
|
17
19
|
import { CreateProfileCommand } from '../models';
|
|
20
|
+
import { SendVerificationEmailCommand } from '../models';
|
|
21
|
+
import { SendVerificationSmsCommand } from '../models';
|
|
18
22
|
import { UpdateProfileCommand } from '../models';
|
|
19
23
|
import { UserModel } from '../models';
|
|
20
24
|
/**
|
|
@@ -38,6 +42,22 @@ export declare const ProfilesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
38
42
|
* @throws {RequiredError}
|
|
39
43
|
*/
|
|
40
44
|
apiV2ProfilesConfirmemailPost: (confirmEmailCommand?: ConfirmEmailCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
45
|
+
/**
|
|
46
|
+
* This endpoint differs from `POST /api/v2/profiles/confirmEmail` which validates an email change confirmation code in the local database.
|
|
47
|
+
* @summary Confirm email via IdentityAdmin. Proxies POST /api/Manage/ConfirmEmail.
|
|
48
|
+
* @param {ConfirmIdentityEmailCommand} [confirmIdentityEmailCommand]
|
|
49
|
+
* @param {*} [options] Override http request option.
|
|
50
|
+
* @throws {RequiredError}
|
|
51
|
+
*/
|
|
52
|
+
apiV2ProfilesConfirmidentityemailPost: (confirmIdentityEmailCommand?: ConfirmIdentityEmailCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @summary Confirm phone number via IdentityAdmin. Proxies POST /api/Manage/ConfirmPhonenumber.
|
|
56
|
+
* @param {ConfirmPhoneNumberCommand} [confirmPhoneNumberCommand]
|
|
57
|
+
* @param {*} [options] Override http request option.
|
|
58
|
+
* @throws {RequiredError}
|
|
59
|
+
*/
|
|
60
|
+
apiV2ProfilesConfirmphonenumberPost: (confirmPhoneNumberCommand?: ConfirmPhoneNumberCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
41
61
|
/**
|
|
42
62
|
*
|
|
43
63
|
* @summary Get Profile.
|
|
@@ -69,6 +89,22 @@ export declare const ProfilesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
69
89
|
* @throws {RequiredError}
|
|
70
90
|
*/
|
|
71
91
|
apiV2ProfilesPut: (updateProfileCommand?: UpdateProfileCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* @summary Send a verification email via IdentityAdmin. Proxies POST /api/Manage/SendVerificationEmail.
|
|
95
|
+
* @param {SendVerificationEmailCommand} [sendVerificationEmailCommand]
|
|
96
|
+
* @param {*} [options] Override http request option.
|
|
97
|
+
* @throws {RequiredError}
|
|
98
|
+
*/
|
|
99
|
+
apiV2ProfilesSendverificationemailPost: (sendVerificationEmailCommand?: SendVerificationEmailCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
100
|
+
/**
|
|
101
|
+
*
|
|
102
|
+
* @summary Send a verification SMS via IdentityAdmin. Proxies POST /api/Manage/SendVerificationSMS.
|
|
103
|
+
* @param {SendVerificationSmsCommand} [sendVerificationSmsCommand]
|
|
104
|
+
* @param {*} [options] Override http request option.
|
|
105
|
+
* @throws {RequiredError}
|
|
106
|
+
*/
|
|
107
|
+
apiV2ProfilesSendverificationsmsPost: (sendVerificationSmsCommand?: SendVerificationSmsCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
72
108
|
/**
|
|
73
109
|
*
|
|
74
110
|
* @summary Sync profile between api db and identity db (Based on identity db)
|
|
@@ -98,6 +134,22 @@ export declare const ProfilesApiFp: (configuration?: Configuration) => {
|
|
|
98
134
|
* @throws {RequiredError}
|
|
99
135
|
*/
|
|
100
136
|
apiV2ProfilesConfirmemailPost(confirmEmailCommand?: ConfirmEmailCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
137
|
+
/**
|
|
138
|
+
* This endpoint differs from `POST /api/v2/profiles/confirmEmail` which validates an email change confirmation code in the local database.
|
|
139
|
+
* @summary Confirm email via IdentityAdmin. Proxies POST /api/Manage/ConfirmEmail.
|
|
140
|
+
* @param {ConfirmIdentityEmailCommand} [confirmIdentityEmailCommand]
|
|
141
|
+
* @param {*} [options] Override http request option.
|
|
142
|
+
* @throws {RequiredError}
|
|
143
|
+
*/
|
|
144
|
+
apiV2ProfilesConfirmidentityemailPost(confirmIdentityEmailCommand?: ConfirmIdentityEmailCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
145
|
+
/**
|
|
146
|
+
*
|
|
147
|
+
* @summary Confirm phone number via IdentityAdmin. Proxies POST /api/Manage/ConfirmPhonenumber.
|
|
148
|
+
* @param {ConfirmPhoneNumberCommand} [confirmPhoneNumberCommand]
|
|
149
|
+
* @param {*} [options] Override http request option.
|
|
150
|
+
* @throws {RequiredError}
|
|
151
|
+
*/
|
|
152
|
+
apiV2ProfilesConfirmphonenumberPost(confirmPhoneNumberCommand?: ConfirmPhoneNumberCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
101
153
|
/**
|
|
102
154
|
*
|
|
103
155
|
* @summary Get Profile.
|
|
@@ -129,6 +181,22 @@ export declare const ProfilesApiFp: (configuration?: Configuration) => {
|
|
|
129
181
|
* @throws {RequiredError}
|
|
130
182
|
*/
|
|
131
183
|
apiV2ProfilesPut(updateProfileCommand?: UpdateProfileCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserModel>>;
|
|
184
|
+
/**
|
|
185
|
+
*
|
|
186
|
+
* @summary Send a verification email via IdentityAdmin. Proxies POST /api/Manage/SendVerificationEmail.
|
|
187
|
+
* @param {SendVerificationEmailCommand} [sendVerificationEmailCommand]
|
|
188
|
+
* @param {*} [options] Override http request option.
|
|
189
|
+
* @throws {RequiredError}
|
|
190
|
+
*/
|
|
191
|
+
apiV2ProfilesSendverificationemailPost(sendVerificationEmailCommand?: SendVerificationEmailCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
192
|
+
/**
|
|
193
|
+
*
|
|
194
|
+
* @summary Send a verification SMS via IdentityAdmin. Proxies POST /api/Manage/SendVerificationSMS.
|
|
195
|
+
* @param {SendVerificationSmsCommand} [sendVerificationSmsCommand]
|
|
196
|
+
* @param {*} [options] Override http request option.
|
|
197
|
+
* @throws {RequiredError}
|
|
198
|
+
*/
|
|
199
|
+
apiV2ProfilesSendverificationsmsPost(sendVerificationSmsCommand?: SendVerificationSmsCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
132
200
|
/**
|
|
133
201
|
*
|
|
134
202
|
* @summary Sync profile between api db and identity db (Based on identity db)
|
|
@@ -158,6 +226,22 @@ export declare const ProfilesApiFactory: (configuration?: Configuration, basePat
|
|
|
158
226
|
* @throws {RequiredError}
|
|
159
227
|
*/
|
|
160
228
|
apiV2ProfilesConfirmemailPost(confirmEmailCommand?: ConfirmEmailCommand, options?: any): AxiosPromise<boolean>;
|
|
229
|
+
/**
|
|
230
|
+
* This endpoint differs from `POST /api/v2/profiles/confirmEmail` which validates an email change confirmation code in the local database.
|
|
231
|
+
* @summary Confirm email via IdentityAdmin. Proxies POST /api/Manage/ConfirmEmail.
|
|
232
|
+
* @param {ConfirmIdentityEmailCommand} [confirmIdentityEmailCommand]
|
|
233
|
+
* @param {*} [options] Override http request option.
|
|
234
|
+
* @throws {RequiredError}
|
|
235
|
+
*/
|
|
236
|
+
apiV2ProfilesConfirmidentityemailPost(confirmIdentityEmailCommand?: ConfirmIdentityEmailCommand, options?: any): AxiosPromise<boolean>;
|
|
237
|
+
/**
|
|
238
|
+
*
|
|
239
|
+
* @summary Confirm phone number via IdentityAdmin. Proxies POST /api/Manage/ConfirmPhonenumber.
|
|
240
|
+
* @param {ConfirmPhoneNumberCommand} [confirmPhoneNumberCommand]
|
|
241
|
+
* @param {*} [options] Override http request option.
|
|
242
|
+
* @throws {RequiredError}
|
|
243
|
+
*/
|
|
244
|
+
apiV2ProfilesConfirmphonenumberPost(confirmPhoneNumberCommand?: ConfirmPhoneNumberCommand, options?: any): AxiosPromise<boolean>;
|
|
161
245
|
/**
|
|
162
246
|
*
|
|
163
247
|
* @summary Get Profile.
|
|
@@ -189,6 +273,22 @@ export declare const ProfilesApiFactory: (configuration?: Configuration, basePat
|
|
|
189
273
|
* @throws {RequiredError}
|
|
190
274
|
*/
|
|
191
275
|
apiV2ProfilesPut(updateProfileCommand?: UpdateProfileCommand, options?: any): AxiosPromise<UserModel>;
|
|
276
|
+
/**
|
|
277
|
+
*
|
|
278
|
+
* @summary Send a verification email via IdentityAdmin. Proxies POST /api/Manage/SendVerificationEmail.
|
|
279
|
+
* @param {SendVerificationEmailCommand} [sendVerificationEmailCommand]
|
|
280
|
+
* @param {*} [options] Override http request option.
|
|
281
|
+
* @throws {RequiredError}
|
|
282
|
+
*/
|
|
283
|
+
apiV2ProfilesSendverificationemailPost(sendVerificationEmailCommand?: SendVerificationEmailCommand, options?: any): AxiosPromise<boolean>;
|
|
284
|
+
/**
|
|
285
|
+
*
|
|
286
|
+
* @summary Send a verification SMS via IdentityAdmin. Proxies POST /api/Manage/SendVerificationSMS.
|
|
287
|
+
* @param {SendVerificationSmsCommand} [sendVerificationSmsCommand]
|
|
288
|
+
* @param {*} [options] Override http request option.
|
|
289
|
+
* @throws {RequiredError}
|
|
290
|
+
*/
|
|
291
|
+
apiV2ProfilesSendverificationsmsPost(sendVerificationSmsCommand?: SendVerificationSmsCommand, options?: any): AxiosPromise<boolean>;
|
|
192
292
|
/**
|
|
193
293
|
*
|
|
194
294
|
* @summary Sync profile between api db and identity db (Based on identity db)
|
|
@@ -223,6 +323,32 @@ export interface ProfilesApiApiV2ProfilesConfirmemailPostRequest {
|
|
|
223
323
|
*/
|
|
224
324
|
readonly confirmEmailCommand?: ConfirmEmailCommand;
|
|
225
325
|
}
|
|
326
|
+
/**
|
|
327
|
+
* Request parameters for apiV2ProfilesConfirmidentityemailPost operation in ProfilesApi.
|
|
328
|
+
* @export
|
|
329
|
+
* @interface ProfilesApiApiV2ProfilesConfirmidentityemailPostRequest
|
|
330
|
+
*/
|
|
331
|
+
export interface ProfilesApiApiV2ProfilesConfirmidentityemailPostRequest {
|
|
332
|
+
/**
|
|
333
|
+
*
|
|
334
|
+
* @type {ConfirmIdentityEmailCommand}
|
|
335
|
+
* @memberof ProfilesApiApiV2ProfilesConfirmidentityemailPost
|
|
336
|
+
*/
|
|
337
|
+
readonly confirmIdentityEmailCommand?: ConfirmIdentityEmailCommand;
|
|
338
|
+
}
|
|
339
|
+
/**
|
|
340
|
+
* Request parameters for apiV2ProfilesConfirmphonenumberPost operation in ProfilesApi.
|
|
341
|
+
* @export
|
|
342
|
+
* @interface ProfilesApiApiV2ProfilesConfirmphonenumberPostRequest
|
|
343
|
+
*/
|
|
344
|
+
export interface ProfilesApiApiV2ProfilesConfirmphonenumberPostRequest {
|
|
345
|
+
/**
|
|
346
|
+
*
|
|
347
|
+
* @type {ConfirmPhoneNumberCommand}
|
|
348
|
+
* @memberof ProfilesApiApiV2ProfilesConfirmphonenumberPost
|
|
349
|
+
*/
|
|
350
|
+
readonly confirmPhoneNumberCommand?: ConfirmPhoneNumberCommand;
|
|
351
|
+
}
|
|
226
352
|
/**
|
|
227
353
|
* Request parameters for apiV2ProfilesPost operation in ProfilesApi.
|
|
228
354
|
* @export
|
|
@@ -262,6 +388,32 @@ export interface ProfilesApiApiV2ProfilesPutRequest {
|
|
|
262
388
|
*/
|
|
263
389
|
readonly updateProfileCommand?: UpdateProfileCommand;
|
|
264
390
|
}
|
|
391
|
+
/**
|
|
392
|
+
* Request parameters for apiV2ProfilesSendverificationemailPost operation in ProfilesApi.
|
|
393
|
+
* @export
|
|
394
|
+
* @interface ProfilesApiApiV2ProfilesSendverificationemailPostRequest
|
|
395
|
+
*/
|
|
396
|
+
export interface ProfilesApiApiV2ProfilesSendverificationemailPostRequest {
|
|
397
|
+
/**
|
|
398
|
+
*
|
|
399
|
+
* @type {SendVerificationEmailCommand}
|
|
400
|
+
* @memberof ProfilesApiApiV2ProfilesSendverificationemailPost
|
|
401
|
+
*/
|
|
402
|
+
readonly sendVerificationEmailCommand?: SendVerificationEmailCommand;
|
|
403
|
+
}
|
|
404
|
+
/**
|
|
405
|
+
* Request parameters for apiV2ProfilesSendverificationsmsPost operation in ProfilesApi.
|
|
406
|
+
* @export
|
|
407
|
+
* @interface ProfilesApiApiV2ProfilesSendverificationsmsPostRequest
|
|
408
|
+
*/
|
|
409
|
+
export interface ProfilesApiApiV2ProfilesSendverificationsmsPostRequest {
|
|
410
|
+
/**
|
|
411
|
+
*
|
|
412
|
+
* @type {SendVerificationSmsCommand}
|
|
413
|
+
* @memberof ProfilesApiApiV2ProfilesSendverificationsmsPost
|
|
414
|
+
*/
|
|
415
|
+
readonly sendVerificationSmsCommand?: SendVerificationSmsCommand;
|
|
416
|
+
}
|
|
265
417
|
/**
|
|
266
418
|
* ProfilesApi - object-oriented interface
|
|
267
419
|
* @export
|
|
@@ -287,6 +439,24 @@ export declare class ProfilesApi extends BaseAPI {
|
|
|
287
439
|
* @memberof ProfilesApi
|
|
288
440
|
*/
|
|
289
441
|
apiV2ProfilesConfirmemailPost(requestParameters?: ProfilesApiApiV2ProfilesConfirmemailPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
442
|
+
/**
|
|
443
|
+
* This endpoint differs from `POST /api/v2/profiles/confirmEmail` which validates an email change confirmation code in the local database.
|
|
444
|
+
* @summary Confirm email via IdentityAdmin. Proxies POST /api/Manage/ConfirmEmail.
|
|
445
|
+
* @param {ProfilesApiApiV2ProfilesConfirmidentityemailPostRequest} requestParameters Request parameters.
|
|
446
|
+
* @param {*} [options] Override http request option.
|
|
447
|
+
* @throws {RequiredError}
|
|
448
|
+
* @memberof ProfilesApi
|
|
449
|
+
*/
|
|
450
|
+
apiV2ProfilesConfirmidentityemailPost(requestParameters?: ProfilesApiApiV2ProfilesConfirmidentityemailPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
451
|
+
/**
|
|
452
|
+
*
|
|
453
|
+
* @summary Confirm phone number via IdentityAdmin. Proxies POST /api/Manage/ConfirmPhonenumber.
|
|
454
|
+
* @param {ProfilesApiApiV2ProfilesConfirmphonenumberPostRequest} requestParameters Request parameters.
|
|
455
|
+
* @param {*} [options] Override http request option.
|
|
456
|
+
* @throws {RequiredError}
|
|
457
|
+
* @memberof ProfilesApi
|
|
458
|
+
*/
|
|
459
|
+
apiV2ProfilesConfirmphonenumberPost(requestParameters?: ProfilesApiApiV2ProfilesConfirmphonenumberPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
290
460
|
/**
|
|
291
461
|
*
|
|
292
462
|
* @summary Get Profile.
|
|
@@ -322,6 +492,24 @@ export declare class ProfilesApi extends BaseAPI {
|
|
|
322
492
|
* @memberof ProfilesApi
|
|
323
493
|
*/
|
|
324
494
|
apiV2ProfilesPut(requestParameters?: ProfilesApiApiV2ProfilesPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel, any>>;
|
|
495
|
+
/**
|
|
496
|
+
*
|
|
497
|
+
* @summary Send a verification email via IdentityAdmin. Proxies POST /api/Manage/SendVerificationEmail.
|
|
498
|
+
* @param {ProfilesApiApiV2ProfilesSendverificationemailPostRequest} requestParameters Request parameters.
|
|
499
|
+
* @param {*} [options] Override http request option.
|
|
500
|
+
* @throws {RequiredError}
|
|
501
|
+
* @memberof ProfilesApi
|
|
502
|
+
*/
|
|
503
|
+
apiV2ProfilesSendverificationemailPost(requestParameters?: ProfilesApiApiV2ProfilesSendverificationemailPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
504
|
+
/**
|
|
505
|
+
*
|
|
506
|
+
* @summary Send a verification SMS via IdentityAdmin. Proxies POST /api/Manage/SendVerificationSMS.
|
|
507
|
+
* @param {ProfilesApiApiV2ProfilesSendverificationsmsPostRequest} requestParameters Request parameters.
|
|
508
|
+
* @param {*} [options] Override http request option.
|
|
509
|
+
* @throws {RequiredError}
|
|
510
|
+
* @memberof ProfilesApi
|
|
511
|
+
*/
|
|
512
|
+
apiV2ProfilesSendverificationsmsPost(requestParameters?: ProfilesApiApiV2ProfilesSendverificationsmsPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
325
513
|
/**
|
|
326
514
|
*
|
|
327
515
|
* @summary Sync profile between api db and identity db (Based on identity db)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"profiles-api.d.ts","sourceRoot":"","sources":["../../src/api/profiles-api.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"profiles-api.d.ts","sourceRoot":"","sources":["../../src/api/profiles-api.ts"],"names":[],"mappings":"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"}
|
package/lib/api/profiles-api.js
CHANGED
|
@@ -193,6 +193,98 @@ var ProfilesApiAxiosParamCreator = function (configuration) {
|
|
|
193
193
|
});
|
|
194
194
|
});
|
|
195
195
|
},
|
|
196
|
+
/**
|
|
197
|
+
* This endpoint differs from `POST /api/v2/profiles/confirmEmail` which validates an email change confirmation code in the local database.
|
|
198
|
+
* @summary Confirm email via IdentityAdmin. Proxies POST /api/Manage/ConfirmEmail.
|
|
199
|
+
* @param {ConfirmIdentityEmailCommand} [confirmIdentityEmailCommand]
|
|
200
|
+
* @param {*} [options] Override http request option.
|
|
201
|
+
* @throws {RequiredError}
|
|
202
|
+
*/
|
|
203
|
+
apiV2ProfilesConfirmidentityemailPost: function (confirmIdentityEmailCommand_1) {
|
|
204
|
+
var args_1 = [];
|
|
205
|
+
for (var _i = 1; _i < arguments.length; _i++) {
|
|
206
|
+
args_1[_i - 1] = arguments[_i];
|
|
207
|
+
}
|
|
208
|
+
return __awaiter(_this, __spreadArray([confirmIdentityEmailCommand_1], args_1, true), void 0, function (confirmIdentityEmailCommand, options) {
|
|
209
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
210
|
+
if (options === void 0) { options = {}; }
|
|
211
|
+
return __generator(this, function (_a) {
|
|
212
|
+
switch (_a.label) {
|
|
213
|
+
case 0:
|
|
214
|
+
localVarPath = "/api/v2/profiles/confirmidentityemail";
|
|
215
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
216
|
+
if (configuration) {
|
|
217
|
+
baseOptions = configuration.baseOptions;
|
|
218
|
+
}
|
|
219
|
+
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
|
|
220
|
+
localVarHeaderParameter = {};
|
|
221
|
+
localVarQueryParameter = {};
|
|
222
|
+
// authentication oauth2 required
|
|
223
|
+
// oauth required
|
|
224
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["cloudhospital_api"], configuration)];
|
|
225
|
+
case 1:
|
|
226
|
+
// authentication oauth2 required
|
|
227
|
+
// oauth required
|
|
228
|
+
_a.sent();
|
|
229
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
230
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
231
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
232
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
233
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(confirmIdentityEmailCommand, localVarRequestOptions, configuration);
|
|
234
|
+
return [2 /*return*/, {
|
|
235
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
236
|
+
options: localVarRequestOptions,
|
|
237
|
+
}];
|
|
238
|
+
}
|
|
239
|
+
});
|
|
240
|
+
});
|
|
241
|
+
},
|
|
242
|
+
/**
|
|
243
|
+
*
|
|
244
|
+
* @summary Confirm phone number via IdentityAdmin. Proxies POST /api/Manage/ConfirmPhonenumber.
|
|
245
|
+
* @param {ConfirmPhoneNumberCommand} [confirmPhoneNumberCommand]
|
|
246
|
+
* @param {*} [options] Override http request option.
|
|
247
|
+
* @throws {RequiredError}
|
|
248
|
+
*/
|
|
249
|
+
apiV2ProfilesConfirmphonenumberPost: function (confirmPhoneNumberCommand_1) {
|
|
250
|
+
var args_1 = [];
|
|
251
|
+
for (var _i = 1; _i < arguments.length; _i++) {
|
|
252
|
+
args_1[_i - 1] = arguments[_i];
|
|
253
|
+
}
|
|
254
|
+
return __awaiter(_this, __spreadArray([confirmPhoneNumberCommand_1], args_1, true), void 0, function (confirmPhoneNumberCommand, options) {
|
|
255
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
256
|
+
if (options === void 0) { options = {}; }
|
|
257
|
+
return __generator(this, function (_a) {
|
|
258
|
+
switch (_a.label) {
|
|
259
|
+
case 0:
|
|
260
|
+
localVarPath = "/api/v2/profiles/confirmphonenumber";
|
|
261
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
262
|
+
if (configuration) {
|
|
263
|
+
baseOptions = configuration.baseOptions;
|
|
264
|
+
}
|
|
265
|
+
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
|
|
266
|
+
localVarHeaderParameter = {};
|
|
267
|
+
localVarQueryParameter = {};
|
|
268
|
+
// authentication oauth2 required
|
|
269
|
+
// oauth required
|
|
270
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["cloudhospital_api"], configuration)];
|
|
271
|
+
case 1:
|
|
272
|
+
// authentication oauth2 required
|
|
273
|
+
// oauth required
|
|
274
|
+
_a.sent();
|
|
275
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
276
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
277
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
278
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
279
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(confirmPhoneNumberCommand, localVarRequestOptions, configuration);
|
|
280
|
+
return [2 /*return*/, {
|
|
281
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
282
|
+
options: localVarRequestOptions,
|
|
283
|
+
}];
|
|
284
|
+
}
|
|
285
|
+
});
|
|
286
|
+
});
|
|
287
|
+
},
|
|
196
288
|
/**
|
|
197
289
|
*
|
|
198
290
|
* @summary Get Profile.
|
|
@@ -375,6 +467,98 @@ var ProfilesApiAxiosParamCreator = function (configuration) {
|
|
|
375
467
|
});
|
|
376
468
|
});
|
|
377
469
|
},
|
|
470
|
+
/**
|
|
471
|
+
*
|
|
472
|
+
* @summary Send a verification email via IdentityAdmin. Proxies POST /api/Manage/SendVerificationEmail.
|
|
473
|
+
* @param {SendVerificationEmailCommand} [sendVerificationEmailCommand]
|
|
474
|
+
* @param {*} [options] Override http request option.
|
|
475
|
+
* @throws {RequiredError}
|
|
476
|
+
*/
|
|
477
|
+
apiV2ProfilesSendverificationemailPost: function (sendVerificationEmailCommand_1) {
|
|
478
|
+
var args_1 = [];
|
|
479
|
+
for (var _i = 1; _i < arguments.length; _i++) {
|
|
480
|
+
args_1[_i - 1] = arguments[_i];
|
|
481
|
+
}
|
|
482
|
+
return __awaiter(_this, __spreadArray([sendVerificationEmailCommand_1], args_1, true), void 0, function (sendVerificationEmailCommand, options) {
|
|
483
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
484
|
+
if (options === void 0) { options = {}; }
|
|
485
|
+
return __generator(this, function (_a) {
|
|
486
|
+
switch (_a.label) {
|
|
487
|
+
case 0:
|
|
488
|
+
localVarPath = "/api/v2/profiles/sendverificationemail";
|
|
489
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
490
|
+
if (configuration) {
|
|
491
|
+
baseOptions = configuration.baseOptions;
|
|
492
|
+
}
|
|
493
|
+
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
|
|
494
|
+
localVarHeaderParameter = {};
|
|
495
|
+
localVarQueryParameter = {};
|
|
496
|
+
// authentication oauth2 required
|
|
497
|
+
// oauth required
|
|
498
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["cloudhospital_api"], configuration)];
|
|
499
|
+
case 1:
|
|
500
|
+
// authentication oauth2 required
|
|
501
|
+
// oauth required
|
|
502
|
+
_a.sent();
|
|
503
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
504
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
505
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
506
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
507
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(sendVerificationEmailCommand, localVarRequestOptions, configuration);
|
|
508
|
+
return [2 /*return*/, {
|
|
509
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
510
|
+
options: localVarRequestOptions,
|
|
511
|
+
}];
|
|
512
|
+
}
|
|
513
|
+
});
|
|
514
|
+
});
|
|
515
|
+
},
|
|
516
|
+
/**
|
|
517
|
+
*
|
|
518
|
+
* @summary Send a verification SMS via IdentityAdmin. Proxies POST /api/Manage/SendVerificationSMS.
|
|
519
|
+
* @param {SendVerificationSmsCommand} [sendVerificationSmsCommand]
|
|
520
|
+
* @param {*} [options] Override http request option.
|
|
521
|
+
* @throws {RequiredError}
|
|
522
|
+
*/
|
|
523
|
+
apiV2ProfilesSendverificationsmsPost: function (sendVerificationSmsCommand_1) {
|
|
524
|
+
var args_1 = [];
|
|
525
|
+
for (var _i = 1; _i < arguments.length; _i++) {
|
|
526
|
+
args_1[_i - 1] = arguments[_i];
|
|
527
|
+
}
|
|
528
|
+
return __awaiter(_this, __spreadArray([sendVerificationSmsCommand_1], args_1, true), void 0, function (sendVerificationSmsCommand, options) {
|
|
529
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
530
|
+
if (options === void 0) { options = {}; }
|
|
531
|
+
return __generator(this, function (_a) {
|
|
532
|
+
switch (_a.label) {
|
|
533
|
+
case 0:
|
|
534
|
+
localVarPath = "/api/v2/profiles/sendverificationsms";
|
|
535
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
536
|
+
if (configuration) {
|
|
537
|
+
baseOptions = configuration.baseOptions;
|
|
538
|
+
}
|
|
539
|
+
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
|
|
540
|
+
localVarHeaderParameter = {};
|
|
541
|
+
localVarQueryParameter = {};
|
|
542
|
+
// authentication oauth2 required
|
|
543
|
+
// oauth required
|
|
544
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["cloudhospital_api"], configuration)];
|
|
545
|
+
case 1:
|
|
546
|
+
// authentication oauth2 required
|
|
547
|
+
// oauth required
|
|
548
|
+
_a.sent();
|
|
549
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
550
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
551
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
552
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
553
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(sendVerificationSmsCommand, localVarRequestOptions, configuration);
|
|
554
|
+
return [2 /*return*/, {
|
|
555
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
556
|
+
options: localVarRequestOptions,
|
|
557
|
+
}];
|
|
558
|
+
}
|
|
559
|
+
});
|
|
560
|
+
});
|
|
561
|
+
},
|
|
378
562
|
/**
|
|
379
563
|
*
|
|
380
564
|
* @summary Sync profile between api db and identity db (Based on identity db)
|
|
@@ -468,6 +652,46 @@ var ProfilesApiFp = function (configuration) {
|
|
|
468
652
|
});
|
|
469
653
|
});
|
|
470
654
|
},
|
|
655
|
+
/**
|
|
656
|
+
* This endpoint differs from `POST /api/v2/profiles/confirmEmail` which validates an email change confirmation code in the local database.
|
|
657
|
+
* @summary Confirm email via IdentityAdmin. Proxies POST /api/Manage/ConfirmEmail.
|
|
658
|
+
* @param {ConfirmIdentityEmailCommand} [confirmIdentityEmailCommand]
|
|
659
|
+
* @param {*} [options] Override http request option.
|
|
660
|
+
* @throws {RequiredError}
|
|
661
|
+
*/
|
|
662
|
+
apiV2ProfilesConfirmidentityemailPost: function (confirmIdentityEmailCommand, options) {
|
|
663
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
664
|
+
var localVarAxiosArgs;
|
|
665
|
+
return __generator(this, function (_a) {
|
|
666
|
+
switch (_a.label) {
|
|
667
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2ProfilesConfirmidentityemailPost(confirmIdentityEmailCommand, options)];
|
|
668
|
+
case 1:
|
|
669
|
+
localVarAxiosArgs = _a.sent();
|
|
670
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
671
|
+
}
|
|
672
|
+
});
|
|
673
|
+
});
|
|
674
|
+
},
|
|
675
|
+
/**
|
|
676
|
+
*
|
|
677
|
+
* @summary Confirm phone number via IdentityAdmin. Proxies POST /api/Manage/ConfirmPhonenumber.
|
|
678
|
+
* @param {ConfirmPhoneNumberCommand} [confirmPhoneNumberCommand]
|
|
679
|
+
* @param {*} [options] Override http request option.
|
|
680
|
+
* @throws {RequiredError}
|
|
681
|
+
*/
|
|
682
|
+
apiV2ProfilesConfirmphonenumberPost: function (confirmPhoneNumberCommand, options) {
|
|
683
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
684
|
+
var localVarAxiosArgs;
|
|
685
|
+
return __generator(this, function (_a) {
|
|
686
|
+
switch (_a.label) {
|
|
687
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2ProfilesConfirmphonenumberPost(confirmPhoneNumberCommand, options)];
|
|
688
|
+
case 1:
|
|
689
|
+
localVarAxiosArgs = _a.sent();
|
|
690
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
691
|
+
}
|
|
692
|
+
});
|
|
693
|
+
});
|
|
694
|
+
},
|
|
471
695
|
/**
|
|
472
696
|
*
|
|
473
697
|
* @summary Get Profile.
|
|
@@ -547,6 +771,46 @@ var ProfilesApiFp = function (configuration) {
|
|
|
547
771
|
});
|
|
548
772
|
});
|
|
549
773
|
},
|
|
774
|
+
/**
|
|
775
|
+
*
|
|
776
|
+
* @summary Send a verification email via IdentityAdmin. Proxies POST /api/Manage/SendVerificationEmail.
|
|
777
|
+
* @param {SendVerificationEmailCommand} [sendVerificationEmailCommand]
|
|
778
|
+
* @param {*} [options] Override http request option.
|
|
779
|
+
* @throws {RequiredError}
|
|
780
|
+
*/
|
|
781
|
+
apiV2ProfilesSendverificationemailPost: function (sendVerificationEmailCommand, options) {
|
|
782
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
783
|
+
var localVarAxiosArgs;
|
|
784
|
+
return __generator(this, function (_a) {
|
|
785
|
+
switch (_a.label) {
|
|
786
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2ProfilesSendverificationemailPost(sendVerificationEmailCommand, options)];
|
|
787
|
+
case 1:
|
|
788
|
+
localVarAxiosArgs = _a.sent();
|
|
789
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
790
|
+
}
|
|
791
|
+
});
|
|
792
|
+
});
|
|
793
|
+
},
|
|
794
|
+
/**
|
|
795
|
+
*
|
|
796
|
+
* @summary Send a verification SMS via IdentityAdmin. Proxies POST /api/Manage/SendVerificationSMS.
|
|
797
|
+
* @param {SendVerificationSmsCommand} [sendVerificationSmsCommand]
|
|
798
|
+
* @param {*} [options] Override http request option.
|
|
799
|
+
* @throws {RequiredError}
|
|
800
|
+
*/
|
|
801
|
+
apiV2ProfilesSendverificationsmsPost: function (sendVerificationSmsCommand, options) {
|
|
802
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
803
|
+
var localVarAxiosArgs;
|
|
804
|
+
return __generator(this, function (_a) {
|
|
805
|
+
switch (_a.label) {
|
|
806
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2ProfilesSendverificationsmsPost(sendVerificationSmsCommand, options)];
|
|
807
|
+
case 1:
|
|
808
|
+
localVarAxiosArgs = _a.sent();
|
|
809
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
810
|
+
}
|
|
811
|
+
});
|
|
812
|
+
});
|
|
813
|
+
},
|
|
550
814
|
/**
|
|
551
815
|
*
|
|
552
816
|
* @summary Sync profile between api db and identity db (Based on identity db)
|
|
@@ -596,6 +860,26 @@ var ProfilesApiFactory = function (configuration, basePath, axios) {
|
|
|
596
860
|
apiV2ProfilesConfirmemailPost: function (confirmEmailCommand, options) {
|
|
597
861
|
return localVarFp.apiV2ProfilesConfirmemailPost(confirmEmailCommand, options).then(function (request) { return request(axios, basePath); });
|
|
598
862
|
},
|
|
863
|
+
/**
|
|
864
|
+
* This endpoint differs from `POST /api/v2/profiles/confirmEmail` which validates an email change confirmation code in the local database.
|
|
865
|
+
* @summary Confirm email via IdentityAdmin. Proxies POST /api/Manage/ConfirmEmail.
|
|
866
|
+
* @param {ConfirmIdentityEmailCommand} [confirmIdentityEmailCommand]
|
|
867
|
+
* @param {*} [options] Override http request option.
|
|
868
|
+
* @throws {RequiredError}
|
|
869
|
+
*/
|
|
870
|
+
apiV2ProfilesConfirmidentityemailPost: function (confirmIdentityEmailCommand, options) {
|
|
871
|
+
return localVarFp.apiV2ProfilesConfirmidentityemailPost(confirmIdentityEmailCommand, options).then(function (request) { return request(axios, basePath); });
|
|
872
|
+
},
|
|
873
|
+
/**
|
|
874
|
+
*
|
|
875
|
+
* @summary Confirm phone number via IdentityAdmin. Proxies POST /api/Manage/ConfirmPhonenumber.
|
|
876
|
+
* @param {ConfirmPhoneNumberCommand} [confirmPhoneNumberCommand]
|
|
877
|
+
* @param {*} [options] Override http request option.
|
|
878
|
+
* @throws {RequiredError}
|
|
879
|
+
*/
|
|
880
|
+
apiV2ProfilesConfirmphonenumberPost: function (confirmPhoneNumberCommand, options) {
|
|
881
|
+
return localVarFp.apiV2ProfilesConfirmphonenumberPost(confirmPhoneNumberCommand, options).then(function (request) { return request(axios, basePath); });
|
|
882
|
+
},
|
|
599
883
|
/**
|
|
600
884
|
*
|
|
601
885
|
* @summary Get Profile.
|
|
@@ -635,6 +919,26 @@ var ProfilesApiFactory = function (configuration, basePath, axios) {
|
|
|
635
919
|
apiV2ProfilesPut: function (updateProfileCommand, options) {
|
|
636
920
|
return localVarFp.apiV2ProfilesPut(updateProfileCommand, options).then(function (request) { return request(axios, basePath); });
|
|
637
921
|
},
|
|
922
|
+
/**
|
|
923
|
+
*
|
|
924
|
+
* @summary Send a verification email via IdentityAdmin. Proxies POST /api/Manage/SendVerificationEmail.
|
|
925
|
+
* @param {SendVerificationEmailCommand} [sendVerificationEmailCommand]
|
|
926
|
+
* @param {*} [options] Override http request option.
|
|
927
|
+
* @throws {RequiredError}
|
|
928
|
+
*/
|
|
929
|
+
apiV2ProfilesSendverificationemailPost: function (sendVerificationEmailCommand, options) {
|
|
930
|
+
return localVarFp.apiV2ProfilesSendverificationemailPost(sendVerificationEmailCommand, options).then(function (request) { return request(axios, basePath); });
|
|
931
|
+
},
|
|
932
|
+
/**
|
|
933
|
+
*
|
|
934
|
+
* @summary Send a verification SMS via IdentityAdmin. Proxies POST /api/Manage/SendVerificationSMS.
|
|
935
|
+
* @param {SendVerificationSmsCommand} [sendVerificationSmsCommand]
|
|
936
|
+
* @param {*} [options] Override http request option.
|
|
937
|
+
* @throws {RequiredError}
|
|
938
|
+
*/
|
|
939
|
+
apiV2ProfilesSendverificationsmsPost: function (sendVerificationSmsCommand, options) {
|
|
940
|
+
return localVarFp.apiV2ProfilesSendverificationsmsPost(sendVerificationSmsCommand, options).then(function (request) { return request(axios, basePath); });
|
|
941
|
+
},
|
|
638
942
|
/**
|
|
639
943
|
*
|
|
640
944
|
* @summary Sync profile between api db and identity db (Based on identity db)
|
|
@@ -684,6 +988,32 @@ var ProfilesApi = /** @class */ (function (_super) {
|
|
|
684
988
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
685
989
|
return (0, exports.ProfilesApiFp)(this.configuration).apiV2ProfilesConfirmemailPost(requestParameters.confirmEmailCommand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
686
990
|
};
|
|
991
|
+
/**
|
|
992
|
+
* This endpoint differs from `POST /api/v2/profiles/confirmEmail` which validates an email change confirmation code in the local database.
|
|
993
|
+
* @summary Confirm email via IdentityAdmin. Proxies POST /api/Manage/ConfirmEmail.
|
|
994
|
+
* @param {ProfilesApiApiV2ProfilesConfirmidentityemailPostRequest} requestParameters Request parameters.
|
|
995
|
+
* @param {*} [options] Override http request option.
|
|
996
|
+
* @throws {RequiredError}
|
|
997
|
+
* @memberof ProfilesApi
|
|
998
|
+
*/
|
|
999
|
+
ProfilesApi.prototype.apiV2ProfilesConfirmidentityemailPost = function (requestParameters, options) {
|
|
1000
|
+
var _this = this;
|
|
1001
|
+
if (requestParameters === void 0) { requestParameters = {}; }
|
|
1002
|
+
return (0, exports.ProfilesApiFp)(this.configuration).apiV2ProfilesConfirmidentityemailPost(requestParameters.confirmIdentityEmailCommand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1003
|
+
};
|
|
1004
|
+
/**
|
|
1005
|
+
*
|
|
1006
|
+
* @summary Confirm phone number via IdentityAdmin. Proxies POST /api/Manage/ConfirmPhonenumber.
|
|
1007
|
+
* @param {ProfilesApiApiV2ProfilesConfirmphonenumberPostRequest} requestParameters Request parameters.
|
|
1008
|
+
* @param {*} [options] Override http request option.
|
|
1009
|
+
* @throws {RequiredError}
|
|
1010
|
+
* @memberof ProfilesApi
|
|
1011
|
+
*/
|
|
1012
|
+
ProfilesApi.prototype.apiV2ProfilesConfirmphonenumberPost = function (requestParameters, options) {
|
|
1013
|
+
var _this = this;
|
|
1014
|
+
if (requestParameters === void 0) { requestParameters = {}; }
|
|
1015
|
+
return (0, exports.ProfilesApiFp)(this.configuration).apiV2ProfilesConfirmphonenumberPost(requestParameters.confirmPhoneNumberCommand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1016
|
+
};
|
|
687
1017
|
/**
|
|
688
1018
|
*
|
|
689
1019
|
* @summary Get Profile.
|
|
@@ -733,6 +1063,32 @@ var ProfilesApi = /** @class */ (function (_super) {
|
|
|
733
1063
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
734
1064
|
return (0, exports.ProfilesApiFp)(this.configuration).apiV2ProfilesPut(requestParameters.updateProfileCommand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
735
1065
|
};
|
|
1066
|
+
/**
|
|
1067
|
+
*
|
|
1068
|
+
* @summary Send a verification email via IdentityAdmin. Proxies POST /api/Manage/SendVerificationEmail.
|
|
1069
|
+
* @param {ProfilesApiApiV2ProfilesSendverificationemailPostRequest} requestParameters Request parameters.
|
|
1070
|
+
* @param {*} [options] Override http request option.
|
|
1071
|
+
* @throws {RequiredError}
|
|
1072
|
+
* @memberof ProfilesApi
|
|
1073
|
+
*/
|
|
1074
|
+
ProfilesApi.prototype.apiV2ProfilesSendverificationemailPost = function (requestParameters, options) {
|
|
1075
|
+
var _this = this;
|
|
1076
|
+
if (requestParameters === void 0) { requestParameters = {}; }
|
|
1077
|
+
return (0, exports.ProfilesApiFp)(this.configuration).apiV2ProfilesSendverificationemailPost(requestParameters.sendVerificationEmailCommand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1078
|
+
};
|
|
1079
|
+
/**
|
|
1080
|
+
*
|
|
1081
|
+
* @summary Send a verification SMS via IdentityAdmin. Proxies POST /api/Manage/SendVerificationSMS.
|
|
1082
|
+
* @param {ProfilesApiApiV2ProfilesSendverificationsmsPostRequest} requestParameters Request parameters.
|
|
1083
|
+
* @param {*} [options] Override http request option.
|
|
1084
|
+
* @throws {RequiredError}
|
|
1085
|
+
* @memberof ProfilesApi
|
|
1086
|
+
*/
|
|
1087
|
+
ProfilesApi.prototype.apiV2ProfilesSendverificationsmsPost = function (requestParameters, options) {
|
|
1088
|
+
var _this = this;
|
|
1089
|
+
if (requestParameters === void 0) { requestParameters = {}; }
|
|
1090
|
+
return (0, exports.ProfilesApiFp)(this.configuration).apiV2ProfilesSendverificationsmsPost(requestParameters.sendVerificationSmsCommand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1091
|
+
};
|
|
736
1092
|
/**
|
|
737
1093
|
*
|
|
738
1094
|
* @summary Sync profile between api db and identity db (Based on identity db)
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CloudHospital Api
|
|
3
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2
|
|
6
|
+
* Contact: developer@icloudhospital.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ConfirmIdentityEmailCommand
|
|
16
|
+
*/
|
|
17
|
+
export interface ConfirmIdentityEmailCommand {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ConfirmIdentityEmailCommand
|
|
22
|
+
*/
|
|
23
|
+
'code'?: string | null;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ConfirmIdentityEmailCommand
|
|
28
|
+
*/
|
|
29
|
+
'email'?: string | null;
|
|
30
|
+
}
|
|
31
|
+
//# sourceMappingURL=confirm-identity-email-command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"confirm-identity-email-command.d.ts","sourceRoot":"","sources":["../../src/models/confirm-identity-email-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,2BAA2B;IACxC;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC3B"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CloudHospital Api
|
|
6
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 2
|
|
9
|
+
* Contact: developer@icloudhospital.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CloudHospital Api
|
|
3
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2
|
|
6
|
+
* Contact: developer@icloudhospital.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ConfirmPhoneNumberCommand
|
|
16
|
+
*/
|
|
17
|
+
export interface ConfirmPhoneNumberCommand {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ConfirmPhoneNumberCommand
|
|
22
|
+
*/
|
|
23
|
+
'code'?: string | null;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ConfirmPhoneNumberCommand
|
|
28
|
+
*/
|
|
29
|
+
'phoneNumber'?: string | null;
|
|
30
|
+
}
|
|
31
|
+
//# sourceMappingURL=confirm-phone-number-command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"confirm-phone-number-command.d.ts","sourceRoot":"","sources":["../../src/models/confirm-phone-number-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,yBAAyB;IACtC;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACjC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CloudHospital Api
|
|
6
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 2
|
|
9
|
+
* Contact: developer@icloudhospital.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
package/lib/models/index.d.ts
CHANGED
|
@@ -60,6 +60,8 @@ export * from './charge-status';
|
|
|
60
60
|
export * from './check-notifications-command';
|
|
61
61
|
export * from './communication-user-token-model';
|
|
62
62
|
export * from './confirm-email-command';
|
|
63
|
+
export * from './confirm-identity-email-command';
|
|
64
|
+
export * from './confirm-phone-number-command';
|
|
63
65
|
export * from './contact-type';
|
|
64
66
|
export * from './contribution-type';
|
|
65
67
|
export * from './contributor-item-model';
|
|
@@ -350,6 +352,8 @@ export * from './secure-containers-model';
|
|
|
350
352
|
export * from './secure-file-item-input-model';
|
|
351
353
|
export * from './secure-file-model';
|
|
352
354
|
export * from './secure-files-uploaded-model';
|
|
355
|
+
export * from './send-verification-email-command';
|
|
356
|
+
export * from './send-verification-sms-command';
|
|
353
357
|
export * from './service-categories-model';
|
|
354
358
|
export * from './service-category-item-model';
|
|
355
359
|
export * from './service-category-model';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/models/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC;AAC3C,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC;AACpC,cAAc,qCAAqC,CAAC;AACpD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,0CAA0C,CAAC;AACzD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,sBAAsB,CAAC;AACrC,cAAc,oCAAoC,CAAC;AACnD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,yCAAyC,CAAC;AACxD,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,mCAAmC,CAAC;AAClD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,sCAAsC,CAAC;AACrD,cAAc,kCAAkC,CAAC;AACjD,cAAc,6BAA6B,CAAC;AAC5C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,iBAAiB,CAAC;AAChC,cAAc,yBAAyB,CAAC;AACxC,cAAc,kBAAkB,CAAC;AACjC,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,6BAA6B,CAAC;AAC5C,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,mCAAmC,CAAC;AAClD,cAAc,0BAA0B,CAAC;AACzC,cAAc,eAAe,CAAC;AAC9B,cAAc,gCAAgC,CAAC;AAC/C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,eAAe,CAAC;AAC9B,cAAc,8BAA8B,CAAC;AAC7C,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC;AACpC,cAAc,iBAAiB,CAAC;AAChC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,kCAAkC,CAAC;AACjD,cAAc,yBAAyB,CAAC;AACxC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,qBAAqB,CAAC;AACpC,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC;AACpC,cAAc,iCAAiC,CAAC;AAChD,cAAc,kCAAkC,CAAC;AACjD,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC;AACpC,cAAc,mBAAmB,CAAC;AAClC,cAAc,mCAAmC,CAAC;AAClD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,mCAAmC,CAAC;AAClD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,iBAAiB,CAAC;AAChC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,uBAAuB,CAAC;AACtC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,wBAAwB,CAAC;AACvC,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,iCAAiC,CAAC;AAChD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,uBAAuB,CAAC;AACtC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oCAAoC,CAAC;AACnD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,oBAAoB,CAAC;AACnC,cAAc,uBAAuB,CAAC;AACtC,cAAc,eAAe,CAAC;AAC9B,cAAc,uBAAuB,CAAC;AACtC,cAAc,gDAAgD,CAAC;AAC/D,cAAc,mDAAmD,CAAC;AAClE,cAAc,wDAAwD,CAAC;AACvE,cAAc,mBAAmB,CAAC;AAClC,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,cAAc,CAAC;AAC7B,cAAc,2BAA2B,CAAC;AAC1C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,sBAAsB,CAAC;AACrC,cAAc,uBAAuB,CAAC;AACtC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,oBAAoB,CAAC;AACnC,cAAc,oCAAoC,CAAC;AACnD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,2CAA2C,CAAC;AAC1D,cAAc,kCAAkC,CAAC;AACjD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,sBAAsB,CAAC;AACrC,cAAc,kCAAkC,CAAC;AACjD,cAAc,mCAAmC,CAAC;AAClD,cAAc,gDAAgD,CAAC;AAC/D,cAAc,uBAAuB,CAAC;AACtC,cAAc,iCAAiC,CAAC;AAChD,cAAc,kBAAkB,CAAC;AACjC,cAAc,sBAAsB,CAAC;AACrC,cAAc,mCAAmC,CAAC;AAClD,cAAc,eAAe,CAAC;AAC9B,cAAc,sBAAsB,CAAC;AACrC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,iCAAiC,CAAC;AAChD,cAAc,iCAAiC,CAAC;AAChD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,iDAAiD,CAAC;AAChE,cAAc,6BAA6B,CAAC;AAC5C,cAAc,iCAAiC,CAAC;AAChD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,yCAAyC,CAAC;AACxD,cAAc,6BAA6B,CAAC;AAC5C,cAAc,yBAAyB,CAAC;AACxC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,0BAA0B,CAAC;AACzC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,qBAAqB,CAAC;AACpC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,yBAAyB,CAAC;AACxC,cAAc,0BAA0B,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,+BAA+B,CAAC;AAC9C,cAAc,sCAAsC,CAAC;AACrD,cAAc,0BAA0B,CAAC;AACzC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,iBAAiB,CAAC;AAChC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,0BAA0B,CAAC;AACzC,cAAc,uCAAuC,CAAC;AACtD,cAAc,oDAAoD,CAAC;AACnE,cAAc,iBAAiB,CAAC;AAChC,cAAc,wBAAwB,CAAC;AACvC,cAAc,mBAAmB,CAAC;AAClC,cAAc,sBAAsB,CAAC;AACrC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,wBAAwB,CAAC;AACvC,cAAc,8CAA8C,CAAC;AAC7D,cAAc,wBAAwB,CAAC;AACvC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,sBAAsB,CAAC;AACrC,cAAc,kBAAkB,CAAC;AACjC,cAAc,aAAa,CAAC;AAC5B,cAAc,sBAAsB,CAAC;AACrC,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC;AAC7B,cAAc,iCAAiC,CAAC;AAChD,cAAc,wBAAwB,CAAC;AACvC,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,oBAAoB,CAAC;AACnC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,yCAAyC,CAAC;AACxD,cAAc,iCAAiC,CAAC;AAChD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC;AACpC,cAAc,mCAAmC,CAAC;AAClD,cAAc,6BAA6B,CAAC;AAC5C,cAAc,sBAAsB,CAAC;AACrC,cAAc,iCAAiC,CAAC;AAChD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,sBAAsB,CAAC;AACrC,cAAc,wCAAwC,CAAC;AACvD,cAAc,wCAAwC,CAAC;AACvD,cAAc,2CAA2C,CAAC;AAC1D,cAAc,oCAAoC,CAAC;AACnD,cAAc,UAAU,CAAC;AACzB,cAAc,0CAA0C,CAAC;AACzD,cAAc,qCAAqC,CAAC;AACpD,cAAc,sCAAsC,CAAC;AACrD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,yBAAyB,CAAC;AACxC,cAAc,iCAAiC,CAAC;AAChD,cAAc,kCAAkC,CAAC;AACjD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,0BAA0B,CAAC;AACzC,cAAc,mBAAmB,CAAC;AAClC,cAAc,6CAA6C,CAAC;AAC5D,cAAc,wBAAwB,CAAC;AACvC,cAAc,eAAe,CAAC;AAC9B,cAAc,kDAAkD,CAAC;AACjE,cAAc,2CAA2C,CAAC;AAC1D,cAAc,gCAAgC,CAAC;AAC/C,cAAc,qCAAqC,CAAC;AACpD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,iCAAiC,CAAC;AAChD,cAAc,sCAAsC,CAAC;AACrD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,sCAAsC,CAAC;AACrD,cAAc,mCAAmC,CAAC;AAClD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wCAAwC,CAAC;AACvD,cAAc,oCAAoC,CAAC;AACnD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,iCAAiC,CAAC;AAChD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,kCAAkC,CAAC;AACjD,cAAc,6BAA6B,CAAC;AAC5C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,uBAAuB,CAAC;AACtC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,kBAAkB,CAAC;AACjC,cAAc,kCAAkC,CAAC;AACjD,cAAc,iCAAiC,CAAC;AAChD,cAAc,kCAAkC,CAAC;AACjD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,0BAA0B,CAAC;AACzC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,0BAA0B,CAAC;AACzC,cAAc,sCAAsC,CAAC;AACrD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,qCAAqC,CAAC;AACpD,cAAc,qCAAqC,CAAC;AACpD,cAAc,iCAAiC,CAAC;AAChD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,wCAAwC,CAAC;AACvD,cAAc,gDAAgD,CAAC;AAC/D,cAAc,yCAAyC,CAAC;AACxD,cAAc,iDAAiD,CAAC;AAChE,cAAc,sDAAsD,CAAC;AACrE,cAAc,+BAA+B,CAAC;AAC9C,cAAc,0BAA0B,CAAC;AACzC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,sBAAsB,CAAC;AACrC,cAAc,uBAAuB,CAAC;AACtC,cAAc,uCAAuC,CAAC;AACtD,cAAc,sCAAsC,CAAC;AACrD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,mBAAmB,CAAC;AAClC,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC;AACjC,cAAc,uBAAuB,CAAC;AACtC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,0BAA0B,CAAC;AACzC,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,uBAAuB,CAAC;AACtC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,wBAAwB,CAAC;AACvC,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,qBAAqB,CAAC;AACpC,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,cAAc,uBAAuB,CAAC;AACtC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,yBAAyB,CAAC;AACxC,cAAc,wBAAwB,CAAC;AACvC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,wBAAwB,CAAC;AACvC,cAAc,iBAAiB,CAAC;AAChC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC;AACjC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,mBAAmB,CAAC;AAClC,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,YAAY,CAAC;AAC3B,cAAc,+CAA+C,CAAC;AAC9D,cAAc,2CAA2C,CAAC;AAC1D,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gCAAgC,CAAC;AAC/C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,iCAAiC,CAAC;AAChD,cAAc,sBAAsB,CAAC;AACrC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,uBAAuB,CAAC;AACtC,cAAc,mBAAmB,CAAC;AAClC,cAAc,aAAa,CAAC;AAC5B,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,uCAAuC,CAAC;AACtD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,yCAAyC,CAAC;AACxD,cAAc,kCAAkC,CAAC;AACjD,cAAc,eAAe,CAAC;AAC9B,cAAc,+BAA+B,CAAC;AAC9C,cAAc,0BAA0B,CAAC;AACzC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,qBAAqB,CAAC;AACpC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,wBAAwB,CAAC;AACvC,cAAc,yBAAyB,CAAC;AACxC,cAAc,0CAA0C,CAAC;AACzD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,wBAAwB,CAAC;AACvC,cAAc,wBAAwB,CAAC;AACvC,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC;AACjC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,oBAAoB,CAAC;AACnC,cAAc,YAAY,CAAC;AAC3B,cAAc,qBAAqB,CAAC;AACpC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,qBAAqB,CAAC;AACpC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,wBAAwB,CAAC;AACvC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,mBAAmB,CAAC;AAClC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,wBAAwB,CAAC;AACvC,cAAc,oCAAoC,CAAC;AACnD,cAAc,yBAAyB,CAAC;AACxC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,iCAAiC,CAAC;AAChD,cAAc,6BAA6B,CAAC;AAC5C,cAAc,oCAAoC,CAAC;AACnD,cAAc,6BAA6B,CAAC;AAC5C,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,cAAc,qCAAqC,CAAC;AACpD,cAAc,2CAA2C,CAAC;AAC1D,cAAc,sBAAsB,CAAC;AACrC,cAAc,kBAAkB,CAAC;AACjC,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,8BAA8B,CAAC;AAC7C,cAAc,mCAAmC,CAAC;AAClD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,wBAAwB,CAAC;AACvC,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,mCAAmC,CAAC;AAClD,cAAc,iCAAiC,CAAC;AAChD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,qBAAqB,CAAC;AACpC,cAAc,yBAAyB,CAAC;AACxC,cAAc,iBAAiB,CAAC;AAChC,cAAc,iCAAiC,CAAC;AAChD,cAAc,6BAA6B,CAAC;AAC5C,cAAc,+CAA+C,CAAC;AAC9D,cAAc,2CAA2C,CAAC;AAC1D,cAAc,qCAAqC,CAAC;AACpD,cAAc,iCAAiC,CAAC;AAChD,cAAc,uBAAuB,CAAC;AACtC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,uBAAuB,CAAC;AACtC,cAAc,cAAc,CAAC;AAC7B,cAAc,iBAAiB,CAAC;AAChC,cAAc,sDAAsD,CAAC;AACrE,cAAc,mCAAmC,CAAC;AAClD,cAAc,iDAAiD,CAAC;AAChE,cAAc,gDAAgD,CAAC;AAC/D,cAAc,eAAe,CAAC;AAC9B,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC;AACpC,cAAc,wCAAwC,CAAC;AACvD,cAAc,yCAAyC,CAAC;AACxD,cAAc,8BAA8B,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/models/index.ts"],"names":[],"mappings":"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"}
|
package/lib/models/index.js
CHANGED
|
@@ -76,6 +76,8 @@ __exportStar(require("./charge-status"), exports);
|
|
|
76
76
|
__exportStar(require("./check-notifications-command"), exports);
|
|
77
77
|
__exportStar(require("./communication-user-token-model"), exports);
|
|
78
78
|
__exportStar(require("./confirm-email-command"), exports);
|
|
79
|
+
__exportStar(require("./confirm-identity-email-command"), exports);
|
|
80
|
+
__exportStar(require("./confirm-phone-number-command"), exports);
|
|
79
81
|
__exportStar(require("./contact-type"), exports);
|
|
80
82
|
__exportStar(require("./contribution-type"), exports);
|
|
81
83
|
__exportStar(require("./contributor-item-model"), exports);
|
|
@@ -366,6 +368,8 @@ __exportStar(require("./secure-containers-model"), exports);
|
|
|
366
368
|
__exportStar(require("./secure-file-item-input-model"), exports);
|
|
367
369
|
__exportStar(require("./secure-file-model"), exports);
|
|
368
370
|
__exportStar(require("./secure-files-uploaded-model"), exports);
|
|
371
|
+
__exportStar(require("./send-verification-email-command"), exports);
|
|
372
|
+
__exportStar(require("./send-verification-sms-command"), exports);
|
|
369
373
|
__exportStar(require("./service-categories-model"), exports);
|
|
370
374
|
__exportStar(require("./service-category-item-model"), exports);
|
|
371
375
|
__exportStar(require("./service-category-model"), exports);
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CloudHospital Api
|
|
3
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2
|
|
6
|
+
* Contact: developer@icloudhospital.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface SendVerificationEmailCommand
|
|
16
|
+
*/
|
|
17
|
+
export interface SendVerificationEmailCommand {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof SendVerificationEmailCommand
|
|
22
|
+
*/
|
|
23
|
+
'hospitalId'?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SendVerificationEmailCommand
|
|
28
|
+
*/
|
|
29
|
+
'email'?: string | null;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SendVerificationEmailCommand
|
|
34
|
+
*/
|
|
35
|
+
'patientName'?: string | null;
|
|
36
|
+
}
|
|
37
|
+
//# sourceMappingURL=send-verification-email-command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"send-verification-email-command.d.ts","sourceRoot":"","sources":["../../src/models/send-verification-email-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,4BAA4B;IACzC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACjC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CloudHospital Api
|
|
6
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 2
|
|
9
|
+
* Contact: developer@icloudhospital.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CloudHospital Api
|
|
3
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2
|
|
6
|
+
* Contact: developer@icloudhospital.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface SendVerificationSmsCommand
|
|
16
|
+
*/
|
|
17
|
+
export interface SendVerificationSmsCommand {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof SendVerificationSmsCommand
|
|
22
|
+
*/
|
|
23
|
+
'hospitalId'?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SendVerificationSmsCommand
|
|
28
|
+
*/
|
|
29
|
+
'clientName'?: string | null;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SendVerificationSmsCommand
|
|
34
|
+
*/
|
|
35
|
+
'phoneNumber'?: string | null;
|
|
36
|
+
}
|
|
37
|
+
//# sourceMappingURL=send-verification-sms-command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"send-verification-sms-command.d.ts","sourceRoot":"","sources":["../../src/models/send-verification-sms-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,0BAA0B;IACvC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACjC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CloudHospital Api
|
|
6
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 2
|
|
9
|
+
* Contact: developer@icloudhospital.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|