ch-api-client-typescript2 4.7.8 → 4.8.1
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 +323 -28
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +218 -33
- package/package.json +1 -1
- package/src/api.ts +413 -41
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
|
+
'phoneCountryCode'?: string | null;
|
|
3320
|
+
/**
|
|
3321
|
+
*
|
|
3322
|
+
* @type {string}
|
|
3323
|
+
* @memberof CreateProfileCommand
|
|
3324
|
+
*/
|
|
3325
|
+
'phone'?: string | null;
|
|
3326
|
+
/**
|
|
3327
|
+
*
|
|
3328
|
+
* @type {string}
|
|
3329
|
+
* @memberof CreateProfileCommand
|
|
3330
|
+
*/
|
|
3331
|
+
'photo'?: string | null;
|
|
3332
|
+
/**
|
|
3333
|
+
*
|
|
3334
|
+
* @type {string}
|
|
3335
|
+
* @memberof CreateProfileCommand
|
|
3336
|
+
*/
|
|
3337
|
+
'photoThumbnail'?: string | null;
|
|
3338
|
+
/**
|
|
3339
|
+
*
|
|
3340
|
+
* @type {Gender}
|
|
3341
|
+
* @memberof CreateProfileCommand
|
|
3342
|
+
*/
|
|
3343
|
+
'gender'?: Gender;
|
|
3344
|
+
/**
|
|
3345
|
+
*
|
|
3346
|
+
* @type {Date}
|
|
3347
|
+
* @memberof CreateProfileCommand
|
|
3348
|
+
*/
|
|
3349
|
+
'dateOfBirth'?: Date | null;
|
|
3350
|
+
/**
|
|
3351
|
+
*
|
|
3352
|
+
* @type {string}
|
|
3353
|
+
* @memberof CreateProfileCommand
|
|
3354
|
+
*/
|
|
3355
|
+
'timeZone'?: string | null;
|
|
3356
|
+
/**
|
|
3357
|
+
*
|
|
3358
|
+
* @type {Array<UserLanguageModel>}
|
|
3359
|
+
* @memberof CreateProfileCommand
|
|
3360
|
+
*/
|
|
3361
|
+
'languages'?: Array<UserLanguageModel> | null;
|
|
3362
|
+
/**
|
|
3363
|
+
*
|
|
3364
|
+
* @type {Array<UserLocationModel>}
|
|
3365
|
+
* @memberof CreateProfileCommand
|
|
3366
|
+
*/
|
|
3367
|
+
'locations'?: Array<UserLocationModel> | null;
|
|
3368
|
+
/**
|
|
3369
|
+
*
|
|
3370
|
+
* @type {string}
|
|
3371
|
+
* @memberof CreateProfileCommand
|
|
3372
|
+
*/
|
|
3373
|
+
'hospitalId'?: string;
|
|
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
|
-
'
|
|
4800
|
+
'code'?: string | null;
|
|
4716
4801
|
/**
|
|
4717
4802
|
*
|
|
4718
4803
|
* @type {string}
|
|
4719
4804
|
* @memberof DoctorLanguageItemModel
|
|
4720
4805
|
*/
|
|
4721
|
-
'
|
|
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
|
-
'
|
|
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
|
-
'
|
|
4843
|
+
'code'?: string | null;
|
|
4741
4844
|
/**
|
|
4742
4845
|
*
|
|
4743
4846
|
* @type {string}
|
|
4744
4847
|
* @memberof DoctorLanguageModel
|
|
4745
4848
|
*/
|
|
4746
|
-
'
|
|
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
|
-
'
|
|
4867
|
+
'localizedName'?: string | null;
|
|
4868
|
+
/**
|
|
4869
|
+
*
|
|
4870
|
+
* @type {boolean}
|
|
4871
|
+
* @memberof DoctorLanguageModel
|
|
4872
|
+
*/
|
|
4873
|
+
'published'?: boolean;
|
|
4753
4874
|
}
|
|
4754
4875
|
/**
|
|
4755
4876
|
*
|
|
@@ -4836,6 +4957,12 @@ export interface DoctorModel {
|
|
|
4836
4957
|
* @memberof DoctorModel
|
|
4837
4958
|
*/
|
|
4838
4959
|
'auditableEntity'?: AuditableEntity;
|
|
4960
|
+
/**
|
|
4961
|
+
*
|
|
4962
|
+
* @type {string}
|
|
4963
|
+
* @memberof DoctorModel
|
|
4964
|
+
*/
|
|
4965
|
+
'phoneCountryCode'?: string | null;
|
|
4839
4966
|
/**
|
|
4840
4967
|
*
|
|
4841
4968
|
* @type {string}
|
|
@@ -8185,6 +8312,12 @@ export interface PatientModel {
|
|
|
8185
8312
|
* @memberof PatientModel
|
|
8186
8313
|
*/
|
|
8187
8314
|
'auditableEntity'?: AuditableEntity;
|
|
8315
|
+
/**
|
|
8316
|
+
*
|
|
8317
|
+
* @type {string}
|
|
8318
|
+
* @memberof PatientModel
|
|
8319
|
+
*/
|
|
8320
|
+
'phoneCountryCode'?: string | null;
|
|
8188
8321
|
/**
|
|
8189
8322
|
*
|
|
8190
8323
|
* @type {string}
|
|
@@ -8473,6 +8606,44 @@ export declare const Platform: {
|
|
|
8473
8606
|
readonly Android: "Android";
|
|
8474
8607
|
};
|
|
8475
8608
|
export type Platform = typeof Platform[keyof typeof Platform];
|
|
8609
|
+
/**
|
|
8610
|
+
*
|
|
8611
|
+
* @export
|
|
8612
|
+
* @interface ProblemDetails
|
|
8613
|
+
*/
|
|
8614
|
+
export interface ProblemDetails {
|
|
8615
|
+
[key: string]: any;
|
|
8616
|
+
/**
|
|
8617
|
+
*
|
|
8618
|
+
* @type {string}
|
|
8619
|
+
* @memberof ProblemDetails
|
|
8620
|
+
*/
|
|
8621
|
+
'type'?: string | null;
|
|
8622
|
+
/**
|
|
8623
|
+
*
|
|
8624
|
+
* @type {string}
|
|
8625
|
+
* @memberof ProblemDetails
|
|
8626
|
+
*/
|
|
8627
|
+
'title'?: string | null;
|
|
8628
|
+
/**
|
|
8629
|
+
*
|
|
8630
|
+
* @type {number}
|
|
8631
|
+
* @memberof ProblemDetails
|
|
8632
|
+
*/
|
|
8633
|
+
'status'?: number | null;
|
|
8634
|
+
/**
|
|
8635
|
+
*
|
|
8636
|
+
* @type {string}
|
|
8637
|
+
* @memberof ProblemDetails
|
|
8638
|
+
*/
|
|
8639
|
+
'detail'?: string | null;
|
|
8640
|
+
/**
|
|
8641
|
+
*
|
|
8642
|
+
* @type {string}
|
|
8643
|
+
* @memberof ProblemDetails
|
|
8644
|
+
*/
|
|
8645
|
+
'instance'?: string | null;
|
|
8646
|
+
}
|
|
8476
8647
|
/**
|
|
8477
8648
|
*
|
|
8478
8649
|
* @export
|
|
@@ -10368,6 +10539,12 @@ export interface UpdateProfileCommand {
|
|
|
10368
10539
|
* @memberof UpdateProfileCommand
|
|
10369
10540
|
*/
|
|
10370
10541
|
'lastName'?: string | null;
|
|
10542
|
+
/**
|
|
10543
|
+
*
|
|
10544
|
+
* @type {string}
|
|
10545
|
+
* @memberof UpdateProfileCommand
|
|
10546
|
+
*/
|
|
10547
|
+
'phoneCountryCode'?: string | null;
|
|
10371
10548
|
/**
|
|
10372
10549
|
*
|
|
10373
10550
|
* @type {string}
|
|
@@ -10398,6 +10575,12 @@ export interface UpdateProfileCommand {
|
|
|
10398
10575
|
* @memberof UpdateProfileCommand
|
|
10399
10576
|
*/
|
|
10400
10577
|
'dateOfBirth'?: Date | null;
|
|
10578
|
+
/**
|
|
10579
|
+
*
|
|
10580
|
+
* @type {string}
|
|
10581
|
+
* @memberof UpdateProfileCommand
|
|
10582
|
+
*/
|
|
10583
|
+
'timeZone'?: string | null;
|
|
10401
10584
|
/**
|
|
10402
10585
|
*
|
|
10403
10586
|
* @type {Array<UserLanguageModel>}
|
|
@@ -10477,13 +10660,37 @@ export interface UserLanguageModel {
|
|
|
10477
10660
|
* @type {string}
|
|
10478
10661
|
* @memberof UserLanguageModel
|
|
10479
10662
|
*/
|
|
10480
|
-
'
|
|
10663
|
+
'code'?: string | null;
|
|
10481
10664
|
/**
|
|
10482
10665
|
*
|
|
10483
10666
|
* @type {string}
|
|
10484
10667
|
* @memberof UserLanguageModel
|
|
10485
10668
|
*/
|
|
10486
|
-
'
|
|
10669
|
+
'name'?: string | null;
|
|
10670
|
+
/**
|
|
10671
|
+
*
|
|
10672
|
+
* @type {number}
|
|
10673
|
+
* @memberof UserLanguageModel
|
|
10674
|
+
*/
|
|
10675
|
+
'order'?: number;
|
|
10676
|
+
/**
|
|
10677
|
+
*
|
|
10678
|
+
* @type {boolean}
|
|
10679
|
+
* @memberof UserLanguageModel
|
|
10680
|
+
*/
|
|
10681
|
+
'isPrimary'?: boolean | null;
|
|
10682
|
+
/**
|
|
10683
|
+
*
|
|
10684
|
+
* @type {string}
|
|
10685
|
+
* @memberof UserLanguageModel
|
|
10686
|
+
*/
|
|
10687
|
+
'localizedName'?: string | null;
|
|
10688
|
+
/**
|
|
10689
|
+
*
|
|
10690
|
+
* @type {boolean}
|
|
10691
|
+
* @memberof UserLanguageModel
|
|
10692
|
+
*/
|
|
10693
|
+
'published'?: boolean;
|
|
10487
10694
|
}
|
|
10488
10695
|
/**
|
|
10489
10696
|
*
|
|
@@ -10622,6 +10829,12 @@ export interface UserModel {
|
|
|
10622
10829
|
* @memberof UserModel
|
|
10623
10830
|
*/
|
|
10624
10831
|
'auditableEntity'?: AuditableEntity;
|
|
10832
|
+
/**
|
|
10833
|
+
*
|
|
10834
|
+
* @type {string}
|
|
10835
|
+
* @memberof UserModel
|
|
10836
|
+
*/
|
|
10837
|
+
'phoneCountryCode'?: string | null;
|
|
10625
10838
|
/**
|
|
10626
10839
|
*
|
|
10627
10840
|
* @type {string}
|
|
@@ -14250,23 +14463,23 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14250
14463
|
*
|
|
14251
14464
|
* @summary Get all DoctorLanguages.
|
|
14252
14465
|
* @param {string} doctorId
|
|
14253
|
-
* @param {string} [
|
|
14466
|
+
* @param {string} [languageCode]
|
|
14254
14467
|
* @param {number} [page]
|
|
14255
14468
|
* @param {number} [limit]
|
|
14256
14469
|
* @param {Date} [lastRetrieved]
|
|
14257
14470
|
* @param {*} [options] Override http request option.
|
|
14258
14471
|
* @throws {RequiredError}
|
|
14259
14472
|
*/
|
|
14260
|
-
apiV2DoctorsDoctorIdLanguagesGet: (doctorId: string,
|
|
14473
|
+
apiV2DoctorsDoctorIdLanguagesGet: (doctorId: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14261
14474
|
/**
|
|
14262
14475
|
*
|
|
14263
14476
|
* @summary Get DoctorLanguage.
|
|
14264
14477
|
* @param {string} doctorId
|
|
14265
|
-
* @param {string}
|
|
14478
|
+
* @param {string} languageCode
|
|
14266
14479
|
* @param {*} [options] Override http request option.
|
|
14267
14480
|
* @throws {RequiredError}
|
|
14268
14481
|
*/
|
|
14269
|
-
|
|
14482
|
+
apiV2DoctorsDoctorIdLanguagesLanguageCodeGet: (doctorId: string, languageCode: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14270
14483
|
/**
|
|
14271
14484
|
*
|
|
14272
14485
|
* @summary Get all DoctorMedias.
|
|
@@ -14451,23 +14664,23 @@ export declare const DoctorsApiFp: (configuration?: Configuration) => {
|
|
|
14451
14664
|
*
|
|
14452
14665
|
* @summary Get all DoctorLanguages.
|
|
14453
14666
|
* @param {string} doctorId
|
|
14454
|
-
* @param {string} [
|
|
14667
|
+
* @param {string} [languageCode]
|
|
14455
14668
|
* @param {number} [page]
|
|
14456
14669
|
* @param {number} [limit]
|
|
14457
14670
|
* @param {Date} [lastRetrieved]
|
|
14458
14671
|
* @param {*} [options] Override http request option.
|
|
14459
14672
|
* @throws {RequiredError}
|
|
14460
14673
|
*/
|
|
14461
|
-
apiV2DoctorsDoctorIdLanguagesGet(doctorId: string,
|
|
14674
|
+
apiV2DoctorsDoctorIdLanguagesGet(doctorId: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorLanguagesModel>>;
|
|
14462
14675
|
/**
|
|
14463
14676
|
*
|
|
14464
14677
|
* @summary Get DoctorLanguage.
|
|
14465
14678
|
* @param {string} doctorId
|
|
14466
|
-
* @param {string}
|
|
14679
|
+
* @param {string} languageCode
|
|
14467
14680
|
* @param {*} [options] Override http request option.
|
|
14468
14681
|
* @throws {RequiredError}
|
|
14469
14682
|
*/
|
|
14470
|
-
|
|
14683
|
+
apiV2DoctorsDoctorIdLanguagesLanguageCodeGet(doctorId: string, languageCode: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorLanguageModel>>;
|
|
14471
14684
|
/**
|
|
14472
14685
|
*
|
|
14473
14686
|
* @summary Get all DoctorMedias.
|
|
@@ -14652,23 +14865,23 @@ export declare const DoctorsApiFactory: (configuration?: Configuration, basePath
|
|
|
14652
14865
|
*
|
|
14653
14866
|
* @summary Get all DoctorLanguages.
|
|
14654
14867
|
* @param {string} doctorId
|
|
14655
|
-
* @param {string} [
|
|
14868
|
+
* @param {string} [languageCode]
|
|
14656
14869
|
* @param {number} [page]
|
|
14657
14870
|
* @param {number} [limit]
|
|
14658
14871
|
* @param {Date} [lastRetrieved]
|
|
14659
14872
|
* @param {*} [options] Override http request option.
|
|
14660
14873
|
* @throws {RequiredError}
|
|
14661
14874
|
*/
|
|
14662
|
-
apiV2DoctorsDoctorIdLanguagesGet(doctorId: string,
|
|
14875
|
+
apiV2DoctorsDoctorIdLanguagesGet(doctorId: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorLanguagesModel>;
|
|
14663
14876
|
/**
|
|
14664
14877
|
*
|
|
14665
14878
|
* @summary Get DoctorLanguage.
|
|
14666
14879
|
* @param {string} doctorId
|
|
14667
|
-
* @param {string}
|
|
14880
|
+
* @param {string} languageCode
|
|
14668
14881
|
* @param {*} [options] Override http request option.
|
|
14669
14882
|
* @throws {RequiredError}
|
|
14670
14883
|
*/
|
|
14671
|
-
|
|
14884
|
+
apiV2DoctorsDoctorIdLanguagesLanguageCodeGet(doctorId: string, languageCode: string, options?: any): AxiosPromise<DoctorLanguageModel>;
|
|
14672
14885
|
/**
|
|
14673
14886
|
*
|
|
14674
14887
|
* @summary Get all DoctorMedias.
|
|
@@ -14860,7 +15073,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
14860
15073
|
*
|
|
14861
15074
|
* @summary Get all DoctorLanguages.
|
|
14862
15075
|
* @param {string} doctorId
|
|
14863
|
-
* @param {string} [
|
|
15076
|
+
* @param {string} [languageCode]
|
|
14864
15077
|
* @param {number} [page]
|
|
14865
15078
|
* @param {number} [limit]
|
|
14866
15079
|
* @param {Date} [lastRetrieved]
|
|
@@ -14868,17 +15081,17 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
14868
15081
|
* @throws {RequiredError}
|
|
14869
15082
|
* @memberof DoctorsApi
|
|
14870
15083
|
*/
|
|
14871
|
-
apiV2DoctorsDoctorIdLanguagesGet(doctorId: string,
|
|
15084
|
+
apiV2DoctorsDoctorIdLanguagesGet(doctorId: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguagesModel, any>>;
|
|
14872
15085
|
/**
|
|
14873
15086
|
*
|
|
14874
15087
|
* @summary Get DoctorLanguage.
|
|
14875
15088
|
* @param {string} doctorId
|
|
14876
|
-
* @param {string}
|
|
15089
|
+
* @param {string} languageCode
|
|
14877
15090
|
* @param {*} [options] Override http request option.
|
|
14878
15091
|
* @throws {RequiredError}
|
|
14879
15092
|
* @memberof DoctorsApi
|
|
14880
15093
|
*/
|
|
14881
|
-
|
|
15094
|
+
apiV2DoctorsDoctorIdLanguagesLanguageCodeGet(doctorId: string, languageCode: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguageModel, any>>;
|
|
14882
15095
|
/**
|
|
14883
15096
|
*
|
|
14884
15097
|
* @summary Get all DoctorMedias.
|
|
@@ -18144,6 +18357,7 @@ export declare const PatientsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
18144
18357
|
* @summary Delete Patient.
|
|
18145
18358
|
* @param {string} patientId
|
|
18146
18359
|
* @param {*} [options] Override http request option.
|
|
18360
|
+
* @deprecated
|
|
18147
18361
|
* @throws {RequiredError}
|
|
18148
18362
|
*/
|
|
18149
18363
|
apiV2PatientsPatientIdDelete: (patientId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -18152,6 +18366,7 @@ export declare const PatientsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
18152
18366
|
* @summary Get Patient.
|
|
18153
18367
|
* @param {string} patientId
|
|
18154
18368
|
* @param {*} [options] Override http request option.
|
|
18369
|
+
* @deprecated
|
|
18155
18370
|
* @throws {RequiredError}
|
|
18156
18371
|
*/
|
|
18157
18372
|
apiV2PatientsPatientIdGet: (patientId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -18161,6 +18376,7 @@ export declare const PatientsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
18161
18376
|
* @param {string} patientId
|
|
18162
18377
|
* @param {UpdatePatientCommand} [updatePatientCommand]
|
|
18163
18378
|
* @param {*} [options] Override http request option.
|
|
18379
|
+
* @deprecated
|
|
18164
18380
|
* @throws {RequiredError}
|
|
18165
18381
|
*/
|
|
18166
18382
|
apiV2PatientsPatientIdPut: (patientId: string, updatePatientCommand?: UpdatePatientCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -18169,6 +18385,7 @@ export declare const PatientsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
18169
18385
|
* @summary Create a Patient.
|
|
18170
18386
|
* @param {CreatePatientCommand} [createPatientCommand]
|
|
18171
18387
|
* @param {*} [options] Override http request option.
|
|
18388
|
+
* @deprecated
|
|
18172
18389
|
* @throws {RequiredError}
|
|
18173
18390
|
*/
|
|
18174
18391
|
apiV2PatientsPost: (createPatientCommand?: CreatePatientCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -18199,6 +18416,7 @@ export declare const PatientsApiFp: (configuration?: Configuration) => {
|
|
|
18199
18416
|
* @summary Delete Patient.
|
|
18200
18417
|
* @param {string} patientId
|
|
18201
18418
|
* @param {*} [options] Override http request option.
|
|
18419
|
+
* @deprecated
|
|
18202
18420
|
* @throws {RequiredError}
|
|
18203
18421
|
*/
|
|
18204
18422
|
apiV2PatientsPatientIdDelete(patientId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
@@ -18207,6 +18425,7 @@ export declare const PatientsApiFp: (configuration?: Configuration) => {
|
|
|
18207
18425
|
* @summary Get Patient.
|
|
18208
18426
|
* @param {string} patientId
|
|
18209
18427
|
* @param {*} [options] Override http request option.
|
|
18428
|
+
* @deprecated
|
|
18210
18429
|
* @throws {RequiredError}
|
|
18211
18430
|
*/
|
|
18212
18431
|
apiV2PatientsPatientIdGet(patientId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatientModel>>;
|
|
@@ -18216,6 +18435,7 @@ export declare const PatientsApiFp: (configuration?: Configuration) => {
|
|
|
18216
18435
|
* @param {string} patientId
|
|
18217
18436
|
* @param {UpdatePatientCommand} [updatePatientCommand]
|
|
18218
18437
|
* @param {*} [options] Override http request option.
|
|
18438
|
+
* @deprecated
|
|
18219
18439
|
* @throws {RequiredError}
|
|
18220
18440
|
*/
|
|
18221
18441
|
apiV2PatientsPatientIdPut(patientId: string, updatePatientCommand?: UpdatePatientCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatientModel>>;
|
|
@@ -18224,6 +18444,7 @@ export declare const PatientsApiFp: (configuration?: Configuration) => {
|
|
|
18224
18444
|
* @summary Create a Patient.
|
|
18225
18445
|
* @param {CreatePatientCommand} [createPatientCommand]
|
|
18226
18446
|
* @param {*} [options] Override http request option.
|
|
18447
|
+
* @deprecated
|
|
18227
18448
|
* @throws {RequiredError}
|
|
18228
18449
|
*/
|
|
18229
18450
|
apiV2PatientsPost(createPatientCommand?: CreatePatientCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatientModel>>;
|
|
@@ -18254,6 +18475,7 @@ export declare const PatientsApiFactory: (configuration?: Configuration, basePat
|
|
|
18254
18475
|
* @summary Delete Patient.
|
|
18255
18476
|
* @param {string} patientId
|
|
18256
18477
|
* @param {*} [options] Override http request option.
|
|
18478
|
+
* @deprecated
|
|
18257
18479
|
* @throws {RequiredError}
|
|
18258
18480
|
*/
|
|
18259
18481
|
apiV2PatientsPatientIdDelete(patientId: string, options?: any): AxiosPromise<boolean>;
|
|
@@ -18262,6 +18484,7 @@ export declare const PatientsApiFactory: (configuration?: Configuration, basePat
|
|
|
18262
18484
|
* @summary Get Patient.
|
|
18263
18485
|
* @param {string} patientId
|
|
18264
18486
|
* @param {*} [options] Override http request option.
|
|
18487
|
+
* @deprecated
|
|
18265
18488
|
* @throws {RequiredError}
|
|
18266
18489
|
*/
|
|
18267
18490
|
apiV2PatientsPatientIdGet(patientId: string, options?: any): AxiosPromise<PatientModel>;
|
|
@@ -18271,6 +18494,7 @@ export declare const PatientsApiFactory: (configuration?: Configuration, basePat
|
|
|
18271
18494
|
* @param {string} patientId
|
|
18272
18495
|
* @param {UpdatePatientCommand} [updatePatientCommand]
|
|
18273
18496
|
* @param {*} [options] Override http request option.
|
|
18497
|
+
* @deprecated
|
|
18274
18498
|
* @throws {RequiredError}
|
|
18275
18499
|
*/
|
|
18276
18500
|
apiV2PatientsPatientIdPut(patientId: string, updatePatientCommand?: UpdatePatientCommand, options?: any): AxiosPromise<PatientModel>;
|
|
@@ -18279,6 +18503,7 @@ export declare const PatientsApiFactory: (configuration?: Configuration, basePat
|
|
|
18279
18503
|
* @summary Create a Patient.
|
|
18280
18504
|
* @param {CreatePatientCommand} [createPatientCommand]
|
|
18281
18505
|
* @param {*} [options] Override http request option.
|
|
18506
|
+
* @deprecated
|
|
18282
18507
|
* @throws {RequiredError}
|
|
18283
18508
|
*/
|
|
18284
18509
|
apiV2PatientsPost(createPatientCommand?: CreatePatientCommand, options?: any): AxiosPromise<PatientModel>;
|
|
@@ -18313,6 +18538,7 @@ export declare class PatientsApi extends BaseAPI {
|
|
|
18313
18538
|
* @summary Delete Patient.
|
|
18314
18539
|
* @param {string} patientId
|
|
18315
18540
|
* @param {*} [options] Override http request option.
|
|
18541
|
+
* @deprecated
|
|
18316
18542
|
* @throws {RequiredError}
|
|
18317
18543
|
* @memberof PatientsApi
|
|
18318
18544
|
*/
|
|
@@ -18322,6 +18548,7 @@ export declare class PatientsApi extends BaseAPI {
|
|
|
18322
18548
|
* @summary Get Patient.
|
|
18323
18549
|
* @param {string} patientId
|
|
18324
18550
|
* @param {*} [options] Override http request option.
|
|
18551
|
+
* @deprecated
|
|
18325
18552
|
* @throws {RequiredError}
|
|
18326
18553
|
* @memberof PatientsApi
|
|
18327
18554
|
*/
|
|
@@ -18332,6 +18559,7 @@ export declare class PatientsApi extends BaseAPI {
|
|
|
18332
18559
|
* @param {string} patientId
|
|
18333
18560
|
* @param {UpdatePatientCommand} [updatePatientCommand]
|
|
18334
18561
|
* @param {*} [options] Override http request option.
|
|
18562
|
+
* @deprecated
|
|
18335
18563
|
* @throws {RequiredError}
|
|
18336
18564
|
* @memberof PatientsApi
|
|
18337
18565
|
*/
|
|
@@ -18341,6 +18569,7 @@ export declare class PatientsApi extends BaseAPI {
|
|
|
18341
18569
|
* @summary Create a Patient.
|
|
18342
18570
|
* @param {CreatePatientCommand} [createPatientCommand]
|
|
18343
18571
|
* @param {*} [options] Override http request option.
|
|
18572
|
+
* @deprecated
|
|
18344
18573
|
* @throws {RequiredError}
|
|
18345
18574
|
* @memberof PatientsApi
|
|
18346
18575
|
*/
|
|
@@ -18551,7 +18780,7 @@ export declare const ProfilesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
18551
18780
|
apiV2ProfilesChangeemailPost: (changeEmailCommand?: ChangeEmailCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18552
18781
|
/**
|
|
18553
18782
|
*
|
|
18554
|
-
* @summary
|
|
18783
|
+
* @summary Confirm email.
|
|
18555
18784
|
* @param {ConfirmEmailCommand} [confirmEmailCommand]
|
|
18556
18785
|
* @param {*} [options] Override http request option.
|
|
18557
18786
|
* @throws {RequiredError}
|
|
@@ -18564,6 +18793,22 @@ export declare const ProfilesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
18564
18793
|
* @throws {RequiredError}
|
|
18565
18794
|
*/
|
|
18566
18795
|
apiV2ProfilesGet: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18796
|
+
/**
|
|
18797
|
+
*
|
|
18798
|
+
* @summary Create a Profile.
|
|
18799
|
+
* @param {CreateProfileCommand} [createProfileCommand]
|
|
18800
|
+
* @param {*} [options] Override http request option.
|
|
18801
|
+
* @throws {RequiredError}
|
|
18802
|
+
*/
|
|
18803
|
+
apiV2ProfilesPost: (createProfileCommand?: CreateProfileCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18804
|
+
/**
|
|
18805
|
+
*
|
|
18806
|
+
* @summary Delete Profile.
|
|
18807
|
+
* @param {string} profileId
|
|
18808
|
+
* @param {*} [options] Override http request option.
|
|
18809
|
+
* @throws {RequiredError}
|
|
18810
|
+
*/
|
|
18811
|
+
apiV2ProfilesProfileIdDelete: (profileId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18567
18812
|
/**
|
|
18568
18813
|
*
|
|
18569
18814
|
* @summary Update Profile.
|
|
@@ -18588,7 +18833,7 @@ export declare const ProfilesApiFp: (configuration?: Configuration) => {
|
|
|
18588
18833
|
apiV2ProfilesChangeemailPost(changeEmailCommand?: ChangeEmailCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
18589
18834
|
/**
|
|
18590
18835
|
*
|
|
18591
|
-
* @summary
|
|
18836
|
+
* @summary Confirm email.
|
|
18592
18837
|
* @param {ConfirmEmailCommand} [confirmEmailCommand]
|
|
18593
18838
|
* @param {*} [options] Override http request option.
|
|
18594
18839
|
* @throws {RequiredError}
|
|
@@ -18601,6 +18846,22 @@ export declare const ProfilesApiFp: (configuration?: Configuration) => {
|
|
|
18601
18846
|
* @throws {RequiredError}
|
|
18602
18847
|
*/
|
|
18603
18848
|
apiV2ProfilesGet(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserModel>>;
|
|
18849
|
+
/**
|
|
18850
|
+
*
|
|
18851
|
+
* @summary Create a Profile.
|
|
18852
|
+
* @param {CreateProfileCommand} [createProfileCommand]
|
|
18853
|
+
* @param {*} [options] Override http request option.
|
|
18854
|
+
* @throws {RequiredError}
|
|
18855
|
+
*/
|
|
18856
|
+
apiV2ProfilesPost(createProfileCommand?: CreateProfileCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserModel>>;
|
|
18857
|
+
/**
|
|
18858
|
+
*
|
|
18859
|
+
* @summary Delete Profile.
|
|
18860
|
+
* @param {string} profileId
|
|
18861
|
+
* @param {*} [options] Override http request option.
|
|
18862
|
+
* @throws {RequiredError}
|
|
18863
|
+
*/
|
|
18864
|
+
apiV2ProfilesProfileIdDelete(profileId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
18604
18865
|
/**
|
|
18605
18866
|
*
|
|
18606
18867
|
* @summary Update Profile.
|
|
@@ -18625,7 +18886,7 @@ export declare const ProfilesApiFactory: (configuration?: Configuration, basePat
|
|
|
18625
18886
|
apiV2ProfilesChangeemailPost(changeEmailCommand?: ChangeEmailCommand, options?: any): AxiosPromise<boolean>;
|
|
18626
18887
|
/**
|
|
18627
18888
|
*
|
|
18628
|
-
* @summary
|
|
18889
|
+
* @summary Confirm email.
|
|
18629
18890
|
* @param {ConfirmEmailCommand} [confirmEmailCommand]
|
|
18630
18891
|
* @param {*} [options] Override http request option.
|
|
18631
18892
|
* @throws {RequiredError}
|
|
@@ -18638,6 +18899,22 @@ export declare const ProfilesApiFactory: (configuration?: Configuration, basePat
|
|
|
18638
18899
|
* @throws {RequiredError}
|
|
18639
18900
|
*/
|
|
18640
18901
|
apiV2ProfilesGet(options?: any): AxiosPromise<UserModel>;
|
|
18902
|
+
/**
|
|
18903
|
+
*
|
|
18904
|
+
* @summary Create a Profile.
|
|
18905
|
+
* @param {CreateProfileCommand} [createProfileCommand]
|
|
18906
|
+
* @param {*} [options] Override http request option.
|
|
18907
|
+
* @throws {RequiredError}
|
|
18908
|
+
*/
|
|
18909
|
+
apiV2ProfilesPost(createProfileCommand?: CreateProfileCommand, options?: any): AxiosPromise<UserModel>;
|
|
18910
|
+
/**
|
|
18911
|
+
*
|
|
18912
|
+
* @summary Delete Profile.
|
|
18913
|
+
* @param {string} profileId
|
|
18914
|
+
* @param {*} [options] Override http request option.
|
|
18915
|
+
* @throws {RequiredError}
|
|
18916
|
+
*/
|
|
18917
|
+
apiV2ProfilesProfileIdDelete(profileId: string, options?: any): AxiosPromise<boolean>;
|
|
18641
18918
|
/**
|
|
18642
18919
|
*
|
|
18643
18920
|
* @summary Update Profile.
|
|
@@ -18665,7 +18942,7 @@ export declare class ProfilesApi extends BaseAPI {
|
|
|
18665
18942
|
apiV2ProfilesChangeemailPost(changeEmailCommand?: ChangeEmailCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
18666
18943
|
/**
|
|
18667
18944
|
*
|
|
18668
|
-
* @summary
|
|
18945
|
+
* @summary Confirm email.
|
|
18669
18946
|
* @param {ConfirmEmailCommand} [confirmEmailCommand]
|
|
18670
18947
|
* @param {*} [options] Override http request option.
|
|
18671
18948
|
* @throws {RequiredError}
|
|
@@ -18680,6 +18957,24 @@ export declare class ProfilesApi extends BaseAPI {
|
|
|
18680
18957
|
* @memberof ProfilesApi
|
|
18681
18958
|
*/
|
|
18682
18959
|
apiV2ProfilesGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel, any>>;
|
|
18960
|
+
/**
|
|
18961
|
+
*
|
|
18962
|
+
* @summary Create a Profile.
|
|
18963
|
+
* @param {CreateProfileCommand} [createProfileCommand]
|
|
18964
|
+
* @param {*} [options] Override http request option.
|
|
18965
|
+
* @throws {RequiredError}
|
|
18966
|
+
* @memberof ProfilesApi
|
|
18967
|
+
*/
|
|
18968
|
+
apiV2ProfilesPost(createProfileCommand?: CreateProfileCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel, any>>;
|
|
18969
|
+
/**
|
|
18970
|
+
*
|
|
18971
|
+
* @summary Delete Profile.
|
|
18972
|
+
* @param {string} profileId
|
|
18973
|
+
* @param {*} [options] Override http request option.
|
|
18974
|
+
* @throws {RequiredError}
|
|
18975
|
+
* @memberof ProfilesApi
|
|
18976
|
+
*/
|
|
18977
|
+
apiV2ProfilesProfileIdDelete(profileId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
18683
18978
|
/**
|
|
18684
18979
|
*
|
|
18685
18980
|
* @summary Update Profile.
|