ch-api-client-typescript2 4.7.7 → 4.7.9

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.d.ts CHANGED
@@ -3287,6 +3287,91 @@ export interface CreatePatientCommand {
3287
3287
  */
3288
3288
  'hospitalId'?: string;
3289
3289
  }
3290
+ /**
3291
+ *
3292
+ * @export
3293
+ * @interface CreateProfileCommand
3294
+ */
3295
+ export interface CreateProfileCommand {
3296
+ /**
3297
+ *
3298
+ * @type {string}
3299
+ * @memberof CreateProfileCommand
3300
+ */
3301
+ 'email'?: string | null;
3302
+ /**
3303
+ *
3304
+ * @type {string}
3305
+ * @memberof CreateProfileCommand
3306
+ */
3307
+ 'firstName'?: string | null;
3308
+ /**
3309
+ *
3310
+ * @type {string}
3311
+ * @memberof CreateProfileCommand
3312
+ */
3313
+ 'lastName'?: string | null;
3314
+ /**
3315
+ *
3316
+ * @type {string}
3317
+ * @memberof CreateProfileCommand
3318
+ */
3319
+ 'phone'?: string | null;
3320
+ /**
3321
+ *
3322
+ * @type {string}
3323
+ * @memberof CreateProfileCommand
3324
+ */
3325
+ 'photo'?: string | null;
3326
+ /**
3327
+ *
3328
+ * @type {string}
3329
+ * @memberof CreateProfileCommand
3330
+ */
3331
+ 'photoThumbnail'?: string | null;
3332
+ /**
3333
+ *
3334
+ * @type {Gender}
3335
+ * @memberof CreateProfileCommand
3336
+ */
3337
+ 'gender'?: Gender;
3338
+ /**
3339
+ *
3340
+ * @type {Date}
3341
+ * @memberof CreateProfileCommand
3342
+ */
3343
+ 'dateOfBirth'?: Date | null;
3344
+ /**
3345
+ *
3346
+ * @type {string}
3347
+ * @memberof CreateProfileCommand
3348
+ */
3349
+ 'timeZone'?: string | null;
3350
+ /**
3351
+ *
3352
+ * @type {Array<UserLanguageModel>}
3353
+ * @memberof CreateProfileCommand
3354
+ */
3355
+ 'languages'?: Array<UserLanguageModel> | null;
3356
+ /**
3357
+ *
3358
+ * @type {Array<UserLocationModel>}
3359
+ * @memberof CreateProfileCommand
3360
+ */
3361
+ 'locations'?: Array<UserLocationModel> | null;
3362
+ /**
3363
+ *
3364
+ * @type {string}
3365
+ * @memberof CreateProfileCommand
3366
+ */
3367
+ 'hospitalId'?: string;
3368
+ /**
3369
+ *
3370
+ * @type {number}
3371
+ * @memberof CreateProfileCommand
3372
+ */
3373
+ 'userType'?: number;
3374
+ }
3290
3375
  /**
3291
3376
  *
3292
3377
  * @export
@@ -4712,19 +4797,37 @@ export interface DoctorLanguageItemModel {
4712
4797
  * @type {string}
4713
4798
  * @memberof DoctorLanguageItemModel
4714
4799
  */
4715
- 'id'?: string;
4800
+ 'code'?: string | null;
4716
4801
  /**
4717
4802
  *
4718
4803
  * @type {string}
4719
4804
  * @memberof DoctorLanguageItemModel
4720
4805
  */
4721
- 'language'?: string | null;
4806
+ 'name'?: string | null;
4807
+ /**
4808
+ *
4809
+ * @type {number}
4810
+ * @memberof DoctorLanguageItemModel
4811
+ */
4812
+ 'order'?: number;
4813
+ /**
4814
+ *
4815
+ * @type {boolean}
4816
+ * @memberof DoctorLanguageItemModel
4817
+ */
4818
+ 'isPrimary'?: boolean | null;
4722
4819
  /**
4723
4820
  *
4724
4821
  * @type {string}
4725
4822
  * @memberof DoctorLanguageItemModel
4726
4823
  */
4727
- 'userId'?: string;
4824
+ 'localizedName'?: string | null;
4825
+ /**
4826
+ *
4827
+ * @type {boolean}
4828
+ * @memberof DoctorLanguageItemModel
4829
+ */
4830
+ 'published'?: boolean;
4728
4831
  }
4729
4832
  /**
4730
4833
  *
@@ -4737,19 +4840,37 @@ export interface DoctorLanguageModel {
4737
4840
  * @type {string}
4738
4841
  * @memberof DoctorLanguageModel
4739
4842
  */
4740
- 'id'?: string;
4843
+ 'code'?: string | null;
4741
4844
  /**
4742
4845
  *
4743
4846
  * @type {string}
4744
4847
  * @memberof DoctorLanguageModel
4745
4848
  */
4746
- 'language'?: string | null;
4849
+ 'name'?: string | null;
4850
+ /**
4851
+ *
4852
+ * @type {number}
4853
+ * @memberof DoctorLanguageModel
4854
+ */
4855
+ 'order'?: number;
4856
+ /**
4857
+ *
4858
+ * @type {boolean}
4859
+ * @memberof DoctorLanguageModel
4860
+ */
4861
+ 'isPrimary'?: boolean | null;
4747
4862
  /**
4748
4863
  *
4749
4864
  * @type {string}
4750
4865
  * @memberof DoctorLanguageModel
4751
4866
  */
4752
- 'userId'?: string;
4867
+ 'localizedName'?: string | null;
4868
+ /**
4869
+ *
4870
+ * @type {boolean}
4871
+ * @memberof DoctorLanguageModel
4872
+ */
4873
+ 'published'?: boolean;
4753
4874
  }
4754
4875
  /**
4755
4876
  *
@@ -8473,6 +8594,44 @@ export declare const Platform: {
8473
8594
  readonly Android: "Android";
8474
8595
  };
8475
8596
  export type Platform = typeof Platform[keyof typeof Platform];
8597
+ /**
8598
+ *
8599
+ * @export
8600
+ * @interface ProblemDetails
8601
+ */
8602
+ export interface ProblemDetails {
8603
+ [key: string]: any;
8604
+ /**
8605
+ *
8606
+ * @type {string}
8607
+ * @memberof ProblemDetails
8608
+ */
8609
+ 'type'?: string | null;
8610
+ /**
8611
+ *
8612
+ * @type {string}
8613
+ * @memberof ProblemDetails
8614
+ */
8615
+ 'title'?: string | null;
8616
+ /**
8617
+ *
8618
+ * @type {number}
8619
+ * @memberof ProblemDetails
8620
+ */
8621
+ 'status'?: number | null;
8622
+ /**
8623
+ *
8624
+ * @type {string}
8625
+ * @memberof ProblemDetails
8626
+ */
8627
+ 'detail'?: string | null;
8628
+ /**
8629
+ *
8630
+ * @type {string}
8631
+ * @memberof ProblemDetails
8632
+ */
8633
+ 'instance'?: string | null;
8634
+ }
8476
8635
  /**
8477
8636
  *
8478
8637
  * @export
@@ -10398,6 +10557,12 @@ export interface UpdateProfileCommand {
10398
10557
  * @memberof UpdateProfileCommand
10399
10558
  */
10400
10559
  'dateOfBirth'?: Date | null;
10560
+ /**
10561
+ *
10562
+ * @type {string}
10563
+ * @memberof UpdateProfileCommand
10564
+ */
10565
+ 'timeZone'?: string | null;
10401
10566
  /**
10402
10567
  *
10403
10568
  * @type {Array<UserLanguageModel>}
@@ -10477,13 +10642,37 @@ export interface UserLanguageModel {
10477
10642
  * @type {string}
10478
10643
  * @memberof UserLanguageModel
10479
10644
  */
10480
- 'id'?: string;
10645
+ 'code'?: string | null;
10481
10646
  /**
10482
10647
  *
10483
10648
  * @type {string}
10484
10649
  * @memberof UserLanguageModel
10485
10650
  */
10486
- 'language'?: string | null;
10651
+ 'name'?: string | null;
10652
+ /**
10653
+ *
10654
+ * @type {number}
10655
+ * @memberof UserLanguageModel
10656
+ */
10657
+ 'order'?: number;
10658
+ /**
10659
+ *
10660
+ * @type {boolean}
10661
+ * @memberof UserLanguageModel
10662
+ */
10663
+ 'isPrimary'?: boolean | null;
10664
+ /**
10665
+ *
10666
+ * @type {string}
10667
+ * @memberof UserLanguageModel
10668
+ */
10669
+ 'localizedName'?: string | null;
10670
+ /**
10671
+ *
10672
+ * @type {boolean}
10673
+ * @memberof UserLanguageModel
10674
+ */
10675
+ 'published'?: boolean;
10487
10676
  }
10488
10677
  /**
10489
10678
  *
@@ -14250,23 +14439,23 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
14250
14439
  *
14251
14440
  * @summary Get all DoctorLanguages.
14252
14441
  * @param {string} doctorId
14253
- * @param {string} [language]
14442
+ * @param {string} [languageCode]
14254
14443
  * @param {number} [page]
14255
14444
  * @param {number} [limit]
14256
14445
  * @param {Date} [lastRetrieved]
14257
14446
  * @param {*} [options] Override http request option.
14258
14447
  * @throws {RequiredError}
14259
14448
  */
14260
- apiV2DoctorsDoctorIdLanguagesGet: (doctorId: string, language?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14449
+ apiV2DoctorsDoctorIdLanguagesGet: (doctorId: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14261
14450
  /**
14262
14451
  *
14263
14452
  * @summary Get DoctorLanguage.
14264
14453
  * @param {string} doctorId
14265
- * @param {string} languageId
14454
+ * @param {string} languageCode
14266
14455
  * @param {*} [options] Override http request option.
14267
14456
  * @throws {RequiredError}
14268
14457
  */
14269
- apiV2DoctorsDoctorIdLanguagesLanguageIdGet: (doctorId: string, languageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14458
+ apiV2DoctorsDoctorIdLanguagesLanguageCodeGet: (doctorId: string, languageCode: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14270
14459
  /**
14271
14460
  *
14272
14461
  * @summary Get all DoctorMedias.
@@ -14451,23 +14640,23 @@ export declare const DoctorsApiFp: (configuration?: Configuration) => {
14451
14640
  *
14452
14641
  * @summary Get all DoctorLanguages.
14453
14642
  * @param {string} doctorId
14454
- * @param {string} [language]
14643
+ * @param {string} [languageCode]
14455
14644
  * @param {number} [page]
14456
14645
  * @param {number} [limit]
14457
14646
  * @param {Date} [lastRetrieved]
14458
14647
  * @param {*} [options] Override http request option.
14459
14648
  * @throws {RequiredError}
14460
14649
  */
14461
- apiV2DoctorsDoctorIdLanguagesGet(doctorId: string, language?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorLanguagesModel>>;
14650
+ apiV2DoctorsDoctorIdLanguagesGet(doctorId: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorLanguagesModel>>;
14462
14651
  /**
14463
14652
  *
14464
14653
  * @summary Get DoctorLanguage.
14465
14654
  * @param {string} doctorId
14466
- * @param {string} languageId
14655
+ * @param {string} languageCode
14467
14656
  * @param {*} [options] Override http request option.
14468
14657
  * @throws {RequiredError}
14469
14658
  */
14470
- apiV2DoctorsDoctorIdLanguagesLanguageIdGet(doctorId: string, languageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorLanguageModel>>;
14659
+ apiV2DoctorsDoctorIdLanguagesLanguageCodeGet(doctorId: string, languageCode: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorLanguageModel>>;
14471
14660
  /**
14472
14661
  *
14473
14662
  * @summary Get all DoctorMedias.
@@ -14652,23 +14841,23 @@ export declare const DoctorsApiFactory: (configuration?: Configuration, basePath
14652
14841
  *
14653
14842
  * @summary Get all DoctorLanguages.
14654
14843
  * @param {string} doctorId
14655
- * @param {string} [language]
14844
+ * @param {string} [languageCode]
14656
14845
  * @param {number} [page]
14657
14846
  * @param {number} [limit]
14658
14847
  * @param {Date} [lastRetrieved]
14659
14848
  * @param {*} [options] Override http request option.
14660
14849
  * @throws {RequiredError}
14661
14850
  */
14662
- apiV2DoctorsDoctorIdLanguagesGet(doctorId: string, language?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorLanguagesModel>;
14851
+ apiV2DoctorsDoctorIdLanguagesGet(doctorId: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorLanguagesModel>;
14663
14852
  /**
14664
14853
  *
14665
14854
  * @summary Get DoctorLanguage.
14666
14855
  * @param {string} doctorId
14667
- * @param {string} languageId
14856
+ * @param {string} languageCode
14668
14857
  * @param {*} [options] Override http request option.
14669
14858
  * @throws {RequiredError}
14670
14859
  */
14671
- apiV2DoctorsDoctorIdLanguagesLanguageIdGet(doctorId: string, languageId: string, options?: any): AxiosPromise<DoctorLanguageModel>;
14860
+ apiV2DoctorsDoctorIdLanguagesLanguageCodeGet(doctorId: string, languageCode: string, options?: any): AxiosPromise<DoctorLanguageModel>;
14672
14861
  /**
14673
14862
  *
14674
14863
  * @summary Get all DoctorMedias.
@@ -14860,7 +15049,7 @@ export declare class DoctorsApi extends BaseAPI {
14860
15049
  *
14861
15050
  * @summary Get all DoctorLanguages.
14862
15051
  * @param {string} doctorId
14863
- * @param {string} [language]
15052
+ * @param {string} [languageCode]
14864
15053
  * @param {number} [page]
14865
15054
  * @param {number} [limit]
14866
15055
  * @param {Date} [lastRetrieved]
@@ -14868,17 +15057,17 @@ export declare class DoctorsApi extends BaseAPI {
14868
15057
  * @throws {RequiredError}
14869
15058
  * @memberof DoctorsApi
14870
15059
  */
14871
- apiV2DoctorsDoctorIdLanguagesGet(doctorId: string, language?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguagesModel, any>>;
15060
+ apiV2DoctorsDoctorIdLanguagesGet(doctorId: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguagesModel, any>>;
14872
15061
  /**
14873
15062
  *
14874
15063
  * @summary Get DoctorLanguage.
14875
15064
  * @param {string} doctorId
14876
- * @param {string} languageId
15065
+ * @param {string} languageCode
14877
15066
  * @param {*} [options] Override http request option.
14878
15067
  * @throws {RequiredError}
14879
15068
  * @memberof DoctorsApi
14880
15069
  */
14881
- apiV2DoctorsDoctorIdLanguagesLanguageIdGet(doctorId: string, languageId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguageModel, any>>;
15070
+ apiV2DoctorsDoctorIdLanguagesLanguageCodeGet(doctorId: string, languageCode: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguageModel, any>>;
14882
15071
  /**
14883
15072
  *
14884
15073
  * @summary Get all DoctorMedias.
@@ -15588,6 +15777,15 @@ export declare class FaqsApi extends BaseAPI {
15588
15777
  * @export
15589
15778
  */
15590
15779
  export declare const GroupChannelsApiAxiosParamCreator: (configuration?: Configuration) => {
15780
+ /**
15781
+ *
15782
+ * @summary Invite hospital manager into GroupChannel
15783
+ * @param {string} channelUrl
15784
+ * @param {string} hospitalId
15785
+ * @param {*} [options] Override http request option.
15786
+ * @throws {RequiredError}
15787
+ */
15788
+ apiV2GroupchannelsChannelUrlInviteHospitalIdManagerPost: (channelUrl: string, hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15591
15789
  /**
15592
15790
  *
15593
15791
  * @param {string} channelUrl
@@ -15628,6 +15826,15 @@ export declare const GroupChannelsApiAxiosParamCreator: (configuration?: Configu
15628
15826
  * @export
15629
15827
  */
15630
15828
  export declare const GroupChannelsApiFp: (configuration?: Configuration) => {
15829
+ /**
15830
+ *
15831
+ * @summary Invite hospital manager into GroupChannel
15832
+ * @param {string} channelUrl
15833
+ * @param {string} hospitalId
15834
+ * @param {*} [options] Override http request option.
15835
+ * @throws {RequiredError}
15836
+ */
15837
+ apiV2GroupchannelsChannelUrlInviteHospitalIdManagerPost(channelUrl: string, hospitalId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
15631
15838
  /**
15632
15839
  *
15633
15840
  * @param {string} channelUrl
@@ -15668,6 +15875,15 @@ export declare const GroupChannelsApiFp: (configuration?: Configuration) => {
15668
15875
  * @export
15669
15876
  */
15670
15877
  export declare const GroupChannelsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
15878
+ /**
15879
+ *
15880
+ * @summary Invite hospital manager into GroupChannel
15881
+ * @param {string} channelUrl
15882
+ * @param {string} hospitalId
15883
+ * @param {*} [options] Override http request option.
15884
+ * @throws {RequiredError}
15885
+ */
15886
+ apiV2GroupchannelsChannelUrlInviteHospitalIdManagerPost(channelUrl: string, hospitalId: string, options?: any): AxiosPromise<boolean>;
15671
15887
  /**
15672
15888
  *
15673
15889
  * @param {string} channelUrl
@@ -15710,6 +15926,16 @@ export declare const GroupChannelsApiFactory: (configuration?: Configuration, ba
15710
15926
  * @extends {BaseAPI}
15711
15927
  */
15712
15928
  export declare class GroupChannelsApi extends BaseAPI {
15929
+ /**
15930
+ *
15931
+ * @summary Invite hospital manager into GroupChannel
15932
+ * @param {string} channelUrl
15933
+ * @param {string} hospitalId
15934
+ * @param {*} [options] Override http request option.
15935
+ * @throws {RequiredError}
15936
+ * @memberof GroupChannelsApi
15937
+ */
15938
+ apiV2GroupchannelsChannelUrlInviteHospitalIdManagerPost(channelUrl: string, hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
15713
15939
  /**
15714
15940
  *
15715
15941
  * @param {string} channelUrl
@@ -18107,6 +18333,7 @@ export declare const PatientsApiAxiosParamCreator: (configuration?: Configuratio
18107
18333
  * @summary Delete Patient.
18108
18334
  * @param {string} patientId
18109
18335
  * @param {*} [options] Override http request option.
18336
+ * @deprecated
18110
18337
  * @throws {RequiredError}
18111
18338
  */
18112
18339
  apiV2PatientsPatientIdDelete: (patientId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
@@ -18115,6 +18342,7 @@ export declare const PatientsApiAxiosParamCreator: (configuration?: Configuratio
18115
18342
  * @summary Get Patient.
18116
18343
  * @param {string} patientId
18117
18344
  * @param {*} [options] Override http request option.
18345
+ * @deprecated
18118
18346
  * @throws {RequiredError}
18119
18347
  */
18120
18348
  apiV2PatientsPatientIdGet: (patientId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
@@ -18124,6 +18352,7 @@ export declare const PatientsApiAxiosParamCreator: (configuration?: Configuratio
18124
18352
  * @param {string} patientId
18125
18353
  * @param {UpdatePatientCommand} [updatePatientCommand]
18126
18354
  * @param {*} [options] Override http request option.
18355
+ * @deprecated
18127
18356
  * @throws {RequiredError}
18128
18357
  */
18129
18358
  apiV2PatientsPatientIdPut: (patientId: string, updatePatientCommand?: UpdatePatientCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
@@ -18132,6 +18361,7 @@ export declare const PatientsApiAxiosParamCreator: (configuration?: Configuratio
18132
18361
  * @summary Create a Patient.
18133
18362
  * @param {CreatePatientCommand} [createPatientCommand]
18134
18363
  * @param {*} [options] Override http request option.
18364
+ * @deprecated
18135
18365
  * @throws {RequiredError}
18136
18366
  */
18137
18367
  apiV2PatientsPost: (createPatientCommand?: CreatePatientCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
@@ -18162,6 +18392,7 @@ export declare const PatientsApiFp: (configuration?: Configuration) => {
18162
18392
  * @summary Delete Patient.
18163
18393
  * @param {string} patientId
18164
18394
  * @param {*} [options] Override http request option.
18395
+ * @deprecated
18165
18396
  * @throws {RequiredError}
18166
18397
  */
18167
18398
  apiV2PatientsPatientIdDelete(patientId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
@@ -18170,6 +18401,7 @@ export declare const PatientsApiFp: (configuration?: Configuration) => {
18170
18401
  * @summary Get Patient.
18171
18402
  * @param {string} patientId
18172
18403
  * @param {*} [options] Override http request option.
18404
+ * @deprecated
18173
18405
  * @throws {RequiredError}
18174
18406
  */
18175
18407
  apiV2PatientsPatientIdGet(patientId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatientModel>>;
@@ -18179,6 +18411,7 @@ export declare const PatientsApiFp: (configuration?: Configuration) => {
18179
18411
  * @param {string} patientId
18180
18412
  * @param {UpdatePatientCommand} [updatePatientCommand]
18181
18413
  * @param {*} [options] Override http request option.
18414
+ * @deprecated
18182
18415
  * @throws {RequiredError}
18183
18416
  */
18184
18417
  apiV2PatientsPatientIdPut(patientId: string, updatePatientCommand?: UpdatePatientCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatientModel>>;
@@ -18187,6 +18420,7 @@ export declare const PatientsApiFp: (configuration?: Configuration) => {
18187
18420
  * @summary Create a Patient.
18188
18421
  * @param {CreatePatientCommand} [createPatientCommand]
18189
18422
  * @param {*} [options] Override http request option.
18423
+ * @deprecated
18190
18424
  * @throws {RequiredError}
18191
18425
  */
18192
18426
  apiV2PatientsPost(createPatientCommand?: CreatePatientCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatientModel>>;
@@ -18217,6 +18451,7 @@ export declare const PatientsApiFactory: (configuration?: Configuration, basePat
18217
18451
  * @summary Delete Patient.
18218
18452
  * @param {string} patientId
18219
18453
  * @param {*} [options] Override http request option.
18454
+ * @deprecated
18220
18455
  * @throws {RequiredError}
18221
18456
  */
18222
18457
  apiV2PatientsPatientIdDelete(patientId: string, options?: any): AxiosPromise<boolean>;
@@ -18225,6 +18460,7 @@ export declare const PatientsApiFactory: (configuration?: Configuration, basePat
18225
18460
  * @summary Get Patient.
18226
18461
  * @param {string} patientId
18227
18462
  * @param {*} [options] Override http request option.
18463
+ * @deprecated
18228
18464
  * @throws {RequiredError}
18229
18465
  */
18230
18466
  apiV2PatientsPatientIdGet(patientId: string, options?: any): AxiosPromise<PatientModel>;
@@ -18234,6 +18470,7 @@ export declare const PatientsApiFactory: (configuration?: Configuration, basePat
18234
18470
  * @param {string} patientId
18235
18471
  * @param {UpdatePatientCommand} [updatePatientCommand]
18236
18472
  * @param {*} [options] Override http request option.
18473
+ * @deprecated
18237
18474
  * @throws {RequiredError}
18238
18475
  */
18239
18476
  apiV2PatientsPatientIdPut(patientId: string, updatePatientCommand?: UpdatePatientCommand, options?: any): AxiosPromise<PatientModel>;
@@ -18242,6 +18479,7 @@ export declare const PatientsApiFactory: (configuration?: Configuration, basePat
18242
18479
  * @summary Create a Patient.
18243
18480
  * @param {CreatePatientCommand} [createPatientCommand]
18244
18481
  * @param {*} [options] Override http request option.
18482
+ * @deprecated
18245
18483
  * @throws {RequiredError}
18246
18484
  */
18247
18485
  apiV2PatientsPost(createPatientCommand?: CreatePatientCommand, options?: any): AxiosPromise<PatientModel>;
@@ -18276,6 +18514,7 @@ export declare class PatientsApi extends BaseAPI {
18276
18514
  * @summary Delete Patient.
18277
18515
  * @param {string} patientId
18278
18516
  * @param {*} [options] Override http request option.
18517
+ * @deprecated
18279
18518
  * @throws {RequiredError}
18280
18519
  * @memberof PatientsApi
18281
18520
  */
@@ -18285,6 +18524,7 @@ export declare class PatientsApi extends BaseAPI {
18285
18524
  * @summary Get Patient.
18286
18525
  * @param {string} patientId
18287
18526
  * @param {*} [options] Override http request option.
18527
+ * @deprecated
18288
18528
  * @throws {RequiredError}
18289
18529
  * @memberof PatientsApi
18290
18530
  */
@@ -18295,6 +18535,7 @@ export declare class PatientsApi extends BaseAPI {
18295
18535
  * @param {string} patientId
18296
18536
  * @param {UpdatePatientCommand} [updatePatientCommand]
18297
18537
  * @param {*} [options] Override http request option.
18538
+ * @deprecated
18298
18539
  * @throws {RequiredError}
18299
18540
  * @memberof PatientsApi
18300
18541
  */
@@ -18304,6 +18545,7 @@ export declare class PatientsApi extends BaseAPI {
18304
18545
  * @summary Create a Patient.
18305
18546
  * @param {CreatePatientCommand} [createPatientCommand]
18306
18547
  * @param {*} [options] Override http request option.
18548
+ * @deprecated
18307
18549
  * @throws {RequiredError}
18308
18550
  * @memberof PatientsApi
18309
18551
  */
@@ -18514,7 +18756,7 @@ export declare const ProfilesApiAxiosParamCreator: (configuration?: Configuratio
18514
18756
  apiV2ProfilesChangeemailPost: (changeEmailCommand?: ChangeEmailCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18515
18757
  /**
18516
18758
  *
18517
- * @summary Configm email.
18759
+ * @summary Confirm email.
18518
18760
  * @param {ConfirmEmailCommand} [confirmEmailCommand]
18519
18761
  * @param {*} [options] Override http request option.
18520
18762
  * @throws {RequiredError}
@@ -18527,6 +18769,23 @@ export declare const ProfilesApiAxiosParamCreator: (configuration?: Configuratio
18527
18769
  * @throws {RequiredError}
18528
18770
  */
18529
18771
  apiV2ProfilesGet: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
18772
+ /**
18773
+ *
18774
+ * @summary Delete Profile.
18775
+ * @param {string} profileId
18776
+ * @param {string} patientId
18777
+ * @param {*} [options] Override http request option.
18778
+ * @throws {RequiredError}
18779
+ */
18780
+ apiV2ProfilesPatientIdDelete: (profileId: string, patientId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18781
+ /**
18782
+ *
18783
+ * @summary Create a Profile.
18784
+ * @param {CreateProfileCommand} [createProfileCommand]
18785
+ * @param {*} [options] Override http request option.
18786
+ * @throws {RequiredError}
18787
+ */
18788
+ apiV2ProfilesPost: (createProfileCommand?: CreateProfileCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18530
18789
  /**
18531
18790
  *
18532
18791
  * @summary Update Profile.
@@ -18551,7 +18810,7 @@ export declare const ProfilesApiFp: (configuration?: Configuration) => {
18551
18810
  apiV2ProfilesChangeemailPost(changeEmailCommand?: ChangeEmailCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
18552
18811
  /**
18553
18812
  *
18554
- * @summary Configm email.
18813
+ * @summary Confirm email.
18555
18814
  * @param {ConfirmEmailCommand} [confirmEmailCommand]
18556
18815
  * @param {*} [options] Override http request option.
18557
18816
  * @throws {RequiredError}
@@ -18564,6 +18823,23 @@ export declare const ProfilesApiFp: (configuration?: Configuration) => {
18564
18823
  * @throws {RequiredError}
18565
18824
  */
18566
18825
  apiV2ProfilesGet(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserModel>>;
18826
+ /**
18827
+ *
18828
+ * @summary Delete Profile.
18829
+ * @param {string} profileId
18830
+ * @param {string} patientId
18831
+ * @param {*} [options] Override http request option.
18832
+ * @throws {RequiredError}
18833
+ */
18834
+ apiV2ProfilesPatientIdDelete(profileId: string, patientId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
18835
+ /**
18836
+ *
18837
+ * @summary Create a Profile.
18838
+ * @param {CreateProfileCommand} [createProfileCommand]
18839
+ * @param {*} [options] Override http request option.
18840
+ * @throws {RequiredError}
18841
+ */
18842
+ apiV2ProfilesPost(createProfileCommand?: CreateProfileCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserModel>>;
18567
18843
  /**
18568
18844
  *
18569
18845
  * @summary Update Profile.
@@ -18588,7 +18864,7 @@ export declare const ProfilesApiFactory: (configuration?: Configuration, basePat
18588
18864
  apiV2ProfilesChangeemailPost(changeEmailCommand?: ChangeEmailCommand, options?: any): AxiosPromise<boolean>;
18589
18865
  /**
18590
18866
  *
18591
- * @summary Configm email.
18867
+ * @summary Confirm email.
18592
18868
  * @param {ConfirmEmailCommand} [confirmEmailCommand]
18593
18869
  * @param {*} [options] Override http request option.
18594
18870
  * @throws {RequiredError}
@@ -18601,6 +18877,23 @@ export declare const ProfilesApiFactory: (configuration?: Configuration, basePat
18601
18877
  * @throws {RequiredError}
18602
18878
  */
18603
18879
  apiV2ProfilesGet(options?: any): AxiosPromise<UserModel>;
18880
+ /**
18881
+ *
18882
+ * @summary Delete Profile.
18883
+ * @param {string} profileId
18884
+ * @param {string} patientId
18885
+ * @param {*} [options] Override http request option.
18886
+ * @throws {RequiredError}
18887
+ */
18888
+ apiV2ProfilesPatientIdDelete(profileId: string, patientId: string, options?: any): AxiosPromise<boolean>;
18889
+ /**
18890
+ *
18891
+ * @summary Create a Profile.
18892
+ * @param {CreateProfileCommand} [createProfileCommand]
18893
+ * @param {*} [options] Override http request option.
18894
+ * @throws {RequiredError}
18895
+ */
18896
+ apiV2ProfilesPost(createProfileCommand?: CreateProfileCommand, options?: any): AxiosPromise<UserModel>;
18604
18897
  /**
18605
18898
  *
18606
18899
  * @summary Update Profile.
@@ -18628,7 +18921,7 @@ export declare class ProfilesApi extends BaseAPI {
18628
18921
  apiV2ProfilesChangeemailPost(changeEmailCommand?: ChangeEmailCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
18629
18922
  /**
18630
18923
  *
18631
- * @summary Configm email.
18924
+ * @summary Confirm email.
18632
18925
  * @param {ConfirmEmailCommand} [confirmEmailCommand]
18633
18926
  * @param {*} [options] Override http request option.
18634
18927
  * @throws {RequiredError}
@@ -18643,6 +18936,25 @@ export declare class ProfilesApi extends BaseAPI {
18643
18936
  * @memberof ProfilesApi
18644
18937
  */
18645
18938
  apiV2ProfilesGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel, any>>;
18939
+ /**
18940
+ *
18941
+ * @summary Delete Profile.
18942
+ * @param {string} profileId
18943
+ * @param {string} patientId
18944
+ * @param {*} [options] Override http request option.
18945
+ * @throws {RequiredError}
18946
+ * @memberof ProfilesApi
18947
+ */
18948
+ apiV2ProfilesPatientIdDelete(profileId: string, patientId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
18949
+ /**
18950
+ *
18951
+ * @summary Create a Profile.
18952
+ * @param {CreateProfileCommand} [createProfileCommand]
18953
+ * @param {*} [options] Override http request option.
18954
+ * @throws {RequiredError}
18955
+ * @memberof ProfilesApi
18956
+ */
18957
+ apiV2ProfilesPost(createProfileCommand?: CreateProfileCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel, any>>;
18646
18958
  /**
18647
18959
  *
18648
18960
  * @summary Update Profile.