ch-api-client-typescript2 5.89.6 → 5.90.7

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.
Files changed (35) hide show
  1. package/lib/api/curations-api.d.ts +16 -4
  2. package/lib/api/curations-api.d.ts.map +1 -1
  3. package/lib/api/curations-api.js +16 -4
  4. package/lib/api/hospitals-api.d.ts +12 -3
  5. package/lib/api/hospitals-api.d.ts.map +1 -1
  6. package/lib/api/hospitals-api.js +15 -9
  7. package/lib/api/profiles-api.d.ts +188 -0
  8. package/lib/api/profiles-api.d.ts.map +1 -1
  9. package/lib/api/profiles-api.js +356 -0
  10. package/lib/models/communication-user-token-model.d.ts +6 -0
  11. package/lib/models/communication-user-token-model.d.ts.map +1 -1
  12. package/lib/models/confirm-identity-email-command.d.ts +31 -0
  13. package/lib/models/confirm-identity-email-command.d.ts.map +1 -0
  14. package/lib/models/confirm-phone-number-command.d.ts +31 -0
  15. package/lib/models/confirm-phone-number-command.d.ts.map +1 -0
  16. package/lib/models/confirm-phone-number-command.js +15 -0
  17. package/lib/models/curations-by-category-model.d.ts +6 -6
  18. package/lib/models/curations-by-category-model.d.ts.map +1 -1
  19. package/lib/models/doctor-affiliation-model.d.ts +7 -0
  20. package/lib/models/doctor-affiliation-model.d.ts.map +1 -1
  21. package/lib/models/hospital-language-item-model.d.ts +1 -1
  22. package/lib/models/hospital-language-item-model.d.ts.map +1 -1
  23. package/lib/models/index.d.ts +4 -1
  24. package/lib/models/index.d.ts.map +1 -1
  25. package/lib/models/index.js +4 -1
  26. package/lib/models/send-verification-email-command.d.ts +37 -0
  27. package/lib/models/send-verification-email-command.d.ts.map +1 -0
  28. package/lib/models/send-verification-email-command.js +15 -0
  29. package/lib/models/send-verification-sms-command.d.ts +37 -0
  30. package/lib/models/send-verification-sms-command.d.ts.map +1 -0
  31. package/lib/models/send-verification-sms-command.js +15 -0
  32. package/package.json +1 -1
  33. package/lib/models/curations-by-category-item-model.d.ts +0 -49
  34. package/lib/models/curations-by-category-item-model.d.ts.map +0 -1
  35. /package/lib/models/{curations-by-category-item-model.js → confirm-identity-email-command.js} +0 -0
@@ -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)
@@ -39,5 +39,11 @@ export interface CommunicationUserTokenModel {
39
39
  * @memberof CommunicationUserTokenModel
40
40
  */
41
41
  'gateway'?: string | null;
42
+ /**
43
+ *
44
+ * @type {boolean}
45
+ * @memberof CommunicationUserTokenModel
46
+ */
47
+ 'isExpired'?: boolean;
42
48
  }
43
49
  //# sourceMappingURL=communication-user-token-model.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"communication-user-token-model.d.ts","sourceRoot":"","sources":["../../src/models/communication-user-token-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,2BAA2B;IACxC;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,WAAW,CAAC,EAAE,IAAI,CAAC;IACnB;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC7B"}
1
+ {"version":3,"file":"communication-user-token-model.d.ts","sourceRoot":"","sources":["../../src/models/communication-user-token-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,2BAA2B;IACxC;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,WAAW,CAAC,EAAE,IAAI,CAAC;IACnB;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;CACzB"}
@@ -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,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 });
@@ -9,7 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import { CurationsByCategoryItemModel } from './curations-by-category-item-model';
12
+ import { CurationModel } from './curation-model';
13
13
  /**
14
14
  *
15
15
  * @export
@@ -27,18 +27,18 @@ export interface CurationsByCategoryModel {
27
27
  * @type {string}
28
28
  * @memberof CurationsByCategoryModel
29
29
  */
30
- 'curationCategoryTitle'?: string | null;
30
+ 'languageCode'?: string | null;
31
31
  /**
32
32
  *
33
- * @type {string}
33
+ * @type {Array<CurationModel>}
34
34
  * @memberof CurationsByCategoryModel
35
35
  */
36
- 'languageCode'?: string | null;
36
+ 'curations'?: Array<CurationModel> | null;
37
37
  /**
38
38
  *
39
- * @type {Array<CurationsByCategoryItemModel>}
39
+ * @type {string}
40
40
  * @memberof CurationsByCategoryModel
41
41
  */
42
- 'curations'?: Array<CurationsByCategoryItemModel> | null;
42
+ 'curationCategoryTitle'?: string | null;
43
43
  }
44
44
  //# sourceMappingURL=curations-by-category-model.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"curations-by-category-model.d.ts","sourceRoot":"","sources":["../../src/models/curations-by-category-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,4BAA4B,EAAE,MAAM,oCAAoC,CAAC;AAElF;;;;GAIG;AACH,MAAM,WAAW,wBAAwB;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B;;;;OAIG;IACH,uBAAuB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,WAAW,CAAC,EAAE,KAAK,CAAC,4BAA4B,CAAC,GAAG,IAAI,CAAC;CAC5D"}
1
+ {"version":3,"file":"curations-by-category-model.d.ts","sourceRoot":"","sources":["../../src/models/curations-by-category-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD;;;;GAIG;AACH,MAAM,WAAW,wBAAwB;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,WAAW,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC;IAC1C;;;;OAIG;IACH,uBAAuB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC3C"}
@@ -18,6 +18,7 @@ import { FeatureModel } from './feature-model';
18
18
  import { FrequentlyAskedQuestionsModel } from './frequently-asked-questions-model';
19
19
  import { Gender } from './gender';
20
20
  import { HospitalContactItemModel } from './hospital-contact-item-model';
21
+ import { HospitalLanguageItemModel } from './hospital-language-item-model';
21
22
  import { LocalizedUrlMetadataModel } from './localized-url-metadata-model';
22
23
  import { LocalizedUrlModel } from './localized-url-model';
23
24
  import { LocationModel } from './location-model';
@@ -342,6 +343,12 @@ export interface DoctorAffiliationModel {
342
343
  * @memberof DoctorAffiliationModel
343
344
  */
344
345
  'hospitalFeature'?: FeatureModel;
346
+ /**
347
+ *
348
+ * @type {Array<HospitalLanguageItemModel>}
349
+ * @memberof DoctorAffiliationModel
350
+ */
351
+ 'hospitalLanguages'?: Array<HospitalLanguageItemModel> | null;
345
352
  /**
346
353
  *
347
354
  * @type {FrequentlyAskedQuestionsModel}
@@ -1 +1 @@
1
- {"version":3,"file":"doctor-affiliation-model.d.ts","sourceRoot":"","sources":["../../src/models/doctor-affiliation-model.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"doctor-affiliation-model.d.ts","sourceRoot":"","sources":["../../src/models/doctor-affiliation-model.ts"],"names":[],"mappings":"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"}
@@ -38,7 +38,7 @@ export interface HospitalLanguageItemModel {
38
38
  * @type {boolean}
39
39
  * @memberof HospitalLanguageItemModel
40
40
  */
41
- 'published'?: boolean;
41
+ 'isPublished'?: boolean;
42
42
  /**
43
43
  *
44
44
  * @type {number}
@@ -1 +1 @@
1
- {"version":3,"file":"hospital-language-item-model.d.ts","sourceRoot":"","sources":["../../src/models/hospital-language-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,yBAAyB;IACtC;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;CACzB"}
1
+ {"version":3,"file":"hospital-language-item-model.d.ts","sourceRoot":"","sources":["../../src/models/hospital-language-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,yBAAyB;IACtC;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;CACzB"}
@@ -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';
@@ -90,7 +92,6 @@ export * from './curation-categories-model';
90
92
  export * from './curation-category-model';
91
93
  export * from './curation-item-model';
92
94
  export * from './curation-model';
93
- export * from './curations-by-category-item-model';
94
95
  export * from './curations-by-category-model';
95
96
  export * from './currencies-model';
96
97
  export * from './currency-item-model';
@@ -350,6 +351,8 @@ export * from './secure-containers-model';
350
351
  export * from './secure-file-item-input-model';
351
352
  export * from './secure-file-model';
352
353
  export * from './secure-files-uploaded-model';
354
+ export * from './send-verification-email-command';
355
+ export * from './send-verification-sms-command';
353
356
  export * from './service-categories-model';
354
357
  export * from './service-category-item-model';
355
358
  export * from './service-category-model';