ch-api-client-typescript2 4.7.8 → 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.
@@ -18144,6 +18333,7 @@ export declare const PatientsApiAxiosParamCreator: (configuration?: Configuratio
18144
18333
  * @summary Delete Patient.
18145
18334
  * @param {string} patientId
18146
18335
  * @param {*} [options] Override http request option.
18336
+ * @deprecated
18147
18337
  * @throws {RequiredError}
18148
18338
  */
18149
18339
  apiV2PatientsPatientIdDelete: (patientId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
@@ -18152,6 +18342,7 @@ export declare const PatientsApiAxiosParamCreator: (configuration?: Configuratio
18152
18342
  * @summary Get Patient.
18153
18343
  * @param {string} patientId
18154
18344
  * @param {*} [options] Override http request option.
18345
+ * @deprecated
18155
18346
  * @throws {RequiredError}
18156
18347
  */
18157
18348
  apiV2PatientsPatientIdGet: (patientId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
@@ -18161,6 +18352,7 @@ export declare const PatientsApiAxiosParamCreator: (configuration?: Configuratio
18161
18352
  * @param {string} patientId
18162
18353
  * @param {UpdatePatientCommand} [updatePatientCommand]
18163
18354
  * @param {*} [options] Override http request option.
18355
+ * @deprecated
18164
18356
  * @throws {RequiredError}
18165
18357
  */
18166
18358
  apiV2PatientsPatientIdPut: (patientId: string, updatePatientCommand?: UpdatePatientCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
@@ -18169,6 +18361,7 @@ export declare const PatientsApiAxiosParamCreator: (configuration?: Configuratio
18169
18361
  * @summary Create a Patient.
18170
18362
  * @param {CreatePatientCommand} [createPatientCommand]
18171
18363
  * @param {*} [options] Override http request option.
18364
+ * @deprecated
18172
18365
  * @throws {RequiredError}
18173
18366
  */
18174
18367
  apiV2PatientsPost: (createPatientCommand?: CreatePatientCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
@@ -18199,6 +18392,7 @@ export declare const PatientsApiFp: (configuration?: Configuration) => {
18199
18392
  * @summary Delete Patient.
18200
18393
  * @param {string} patientId
18201
18394
  * @param {*} [options] Override http request option.
18395
+ * @deprecated
18202
18396
  * @throws {RequiredError}
18203
18397
  */
18204
18398
  apiV2PatientsPatientIdDelete(patientId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
@@ -18207,6 +18401,7 @@ export declare const PatientsApiFp: (configuration?: Configuration) => {
18207
18401
  * @summary Get Patient.
18208
18402
  * @param {string} patientId
18209
18403
  * @param {*} [options] Override http request option.
18404
+ * @deprecated
18210
18405
  * @throws {RequiredError}
18211
18406
  */
18212
18407
  apiV2PatientsPatientIdGet(patientId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatientModel>>;
@@ -18216,6 +18411,7 @@ export declare const PatientsApiFp: (configuration?: Configuration) => {
18216
18411
  * @param {string} patientId
18217
18412
  * @param {UpdatePatientCommand} [updatePatientCommand]
18218
18413
  * @param {*} [options] Override http request option.
18414
+ * @deprecated
18219
18415
  * @throws {RequiredError}
18220
18416
  */
18221
18417
  apiV2PatientsPatientIdPut(patientId: string, updatePatientCommand?: UpdatePatientCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatientModel>>;
@@ -18224,6 +18420,7 @@ export declare const PatientsApiFp: (configuration?: Configuration) => {
18224
18420
  * @summary Create a Patient.
18225
18421
  * @param {CreatePatientCommand} [createPatientCommand]
18226
18422
  * @param {*} [options] Override http request option.
18423
+ * @deprecated
18227
18424
  * @throws {RequiredError}
18228
18425
  */
18229
18426
  apiV2PatientsPost(createPatientCommand?: CreatePatientCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatientModel>>;
@@ -18254,6 +18451,7 @@ export declare const PatientsApiFactory: (configuration?: Configuration, basePat
18254
18451
  * @summary Delete Patient.
18255
18452
  * @param {string} patientId
18256
18453
  * @param {*} [options] Override http request option.
18454
+ * @deprecated
18257
18455
  * @throws {RequiredError}
18258
18456
  */
18259
18457
  apiV2PatientsPatientIdDelete(patientId: string, options?: any): AxiosPromise<boolean>;
@@ -18262,6 +18460,7 @@ export declare const PatientsApiFactory: (configuration?: Configuration, basePat
18262
18460
  * @summary Get Patient.
18263
18461
  * @param {string} patientId
18264
18462
  * @param {*} [options] Override http request option.
18463
+ * @deprecated
18265
18464
  * @throws {RequiredError}
18266
18465
  */
18267
18466
  apiV2PatientsPatientIdGet(patientId: string, options?: any): AxiosPromise<PatientModel>;
@@ -18271,6 +18470,7 @@ export declare const PatientsApiFactory: (configuration?: Configuration, basePat
18271
18470
  * @param {string} patientId
18272
18471
  * @param {UpdatePatientCommand} [updatePatientCommand]
18273
18472
  * @param {*} [options] Override http request option.
18473
+ * @deprecated
18274
18474
  * @throws {RequiredError}
18275
18475
  */
18276
18476
  apiV2PatientsPatientIdPut(patientId: string, updatePatientCommand?: UpdatePatientCommand, options?: any): AxiosPromise<PatientModel>;
@@ -18279,6 +18479,7 @@ export declare const PatientsApiFactory: (configuration?: Configuration, basePat
18279
18479
  * @summary Create a Patient.
18280
18480
  * @param {CreatePatientCommand} [createPatientCommand]
18281
18481
  * @param {*} [options] Override http request option.
18482
+ * @deprecated
18282
18483
  * @throws {RequiredError}
18283
18484
  */
18284
18485
  apiV2PatientsPost(createPatientCommand?: CreatePatientCommand, options?: any): AxiosPromise<PatientModel>;
@@ -18313,6 +18514,7 @@ export declare class PatientsApi extends BaseAPI {
18313
18514
  * @summary Delete Patient.
18314
18515
  * @param {string} patientId
18315
18516
  * @param {*} [options] Override http request option.
18517
+ * @deprecated
18316
18518
  * @throws {RequiredError}
18317
18519
  * @memberof PatientsApi
18318
18520
  */
@@ -18322,6 +18524,7 @@ export declare class PatientsApi extends BaseAPI {
18322
18524
  * @summary Get Patient.
18323
18525
  * @param {string} patientId
18324
18526
  * @param {*} [options] Override http request option.
18527
+ * @deprecated
18325
18528
  * @throws {RequiredError}
18326
18529
  * @memberof PatientsApi
18327
18530
  */
@@ -18332,6 +18535,7 @@ export declare class PatientsApi extends BaseAPI {
18332
18535
  * @param {string} patientId
18333
18536
  * @param {UpdatePatientCommand} [updatePatientCommand]
18334
18537
  * @param {*} [options] Override http request option.
18538
+ * @deprecated
18335
18539
  * @throws {RequiredError}
18336
18540
  * @memberof PatientsApi
18337
18541
  */
@@ -18341,6 +18545,7 @@ export declare class PatientsApi extends BaseAPI {
18341
18545
  * @summary Create a Patient.
18342
18546
  * @param {CreatePatientCommand} [createPatientCommand]
18343
18547
  * @param {*} [options] Override http request option.
18548
+ * @deprecated
18344
18549
  * @throws {RequiredError}
18345
18550
  * @memberof PatientsApi
18346
18551
  */
@@ -18551,7 +18756,7 @@ export declare const ProfilesApiAxiosParamCreator: (configuration?: Configuratio
18551
18756
  apiV2ProfilesChangeemailPost: (changeEmailCommand?: ChangeEmailCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18552
18757
  /**
18553
18758
  *
18554
- * @summary Configm email.
18759
+ * @summary Confirm email.
18555
18760
  * @param {ConfirmEmailCommand} [confirmEmailCommand]
18556
18761
  * @param {*} [options] Override http request option.
18557
18762
  * @throws {RequiredError}
@@ -18564,6 +18769,23 @@ export declare const ProfilesApiAxiosParamCreator: (configuration?: Configuratio
18564
18769
  * @throws {RequiredError}
18565
18770
  */
18566
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>;
18567
18789
  /**
18568
18790
  *
18569
18791
  * @summary Update Profile.
@@ -18588,7 +18810,7 @@ export declare const ProfilesApiFp: (configuration?: Configuration) => {
18588
18810
  apiV2ProfilesChangeemailPost(changeEmailCommand?: ChangeEmailCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
18589
18811
  /**
18590
18812
  *
18591
- * @summary Configm email.
18813
+ * @summary Confirm email.
18592
18814
  * @param {ConfirmEmailCommand} [confirmEmailCommand]
18593
18815
  * @param {*} [options] Override http request option.
18594
18816
  * @throws {RequiredError}
@@ -18601,6 +18823,23 @@ export declare const ProfilesApiFp: (configuration?: Configuration) => {
18601
18823
  * @throws {RequiredError}
18602
18824
  */
18603
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>>;
18604
18843
  /**
18605
18844
  *
18606
18845
  * @summary Update Profile.
@@ -18625,7 +18864,7 @@ export declare const ProfilesApiFactory: (configuration?: Configuration, basePat
18625
18864
  apiV2ProfilesChangeemailPost(changeEmailCommand?: ChangeEmailCommand, options?: any): AxiosPromise<boolean>;
18626
18865
  /**
18627
18866
  *
18628
- * @summary Configm email.
18867
+ * @summary Confirm email.
18629
18868
  * @param {ConfirmEmailCommand} [confirmEmailCommand]
18630
18869
  * @param {*} [options] Override http request option.
18631
18870
  * @throws {RequiredError}
@@ -18638,6 +18877,23 @@ export declare const ProfilesApiFactory: (configuration?: Configuration, basePat
18638
18877
  * @throws {RequiredError}
18639
18878
  */
18640
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>;
18641
18897
  /**
18642
18898
  *
18643
18899
  * @summary Update Profile.
@@ -18665,7 +18921,7 @@ export declare class ProfilesApi extends BaseAPI {
18665
18921
  apiV2ProfilesChangeemailPost(changeEmailCommand?: ChangeEmailCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
18666
18922
  /**
18667
18923
  *
18668
- * @summary Configm email.
18924
+ * @summary Confirm email.
18669
18925
  * @param {ConfirmEmailCommand} [confirmEmailCommand]
18670
18926
  * @param {*} [options] Override http request option.
18671
18927
  * @throws {RequiredError}
@@ -18680,6 +18936,25 @@ export declare class ProfilesApi extends BaseAPI {
18680
18936
  * @memberof ProfilesApi
18681
18937
  */
18682
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>>;
18683
18958
  /**
18684
18959
  *
18685
18960
  * @summary Update Profile.