ch-api-client-typescript2 3.0.2 → 3.1.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 +171 -8
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +215 -14
- package/package.json +1 -1
- package/src/api.ts +274 -14
package/lib/api.d.ts
CHANGED
|
@@ -4435,6 +4435,75 @@ export interface DoctorItemSimpleModel {
|
|
|
4435
4435
|
*/
|
|
4436
4436
|
'confirmed'?: boolean;
|
|
4437
4437
|
}
|
|
4438
|
+
/**
|
|
4439
|
+
*
|
|
4440
|
+
* @export
|
|
4441
|
+
* @interface DoctorLanguageItemModel
|
|
4442
|
+
*/
|
|
4443
|
+
export interface DoctorLanguageItemModel {
|
|
4444
|
+
/**
|
|
4445
|
+
*
|
|
4446
|
+
* @type {string}
|
|
4447
|
+
* @memberof DoctorLanguageItemModel
|
|
4448
|
+
*/
|
|
4449
|
+
'id'?: string;
|
|
4450
|
+
/**
|
|
4451
|
+
*
|
|
4452
|
+
* @type {string}
|
|
4453
|
+
* @memberof DoctorLanguageItemModel
|
|
4454
|
+
*/
|
|
4455
|
+
'language'?: string | null;
|
|
4456
|
+
/**
|
|
4457
|
+
*
|
|
4458
|
+
* @type {string}
|
|
4459
|
+
* @memberof DoctorLanguageItemModel
|
|
4460
|
+
*/
|
|
4461
|
+
'userId'?: string;
|
|
4462
|
+
}
|
|
4463
|
+
/**
|
|
4464
|
+
*
|
|
4465
|
+
* @export
|
|
4466
|
+
* @interface DoctorLanguageModel
|
|
4467
|
+
*/
|
|
4468
|
+
export interface DoctorLanguageModel {
|
|
4469
|
+
/**
|
|
4470
|
+
*
|
|
4471
|
+
* @type {string}
|
|
4472
|
+
* @memberof DoctorLanguageModel
|
|
4473
|
+
*/
|
|
4474
|
+
'id'?: string;
|
|
4475
|
+
/**
|
|
4476
|
+
*
|
|
4477
|
+
* @type {string}
|
|
4478
|
+
* @memberof DoctorLanguageModel
|
|
4479
|
+
*/
|
|
4480
|
+
'language'?: string | null;
|
|
4481
|
+
/**
|
|
4482
|
+
*
|
|
4483
|
+
* @type {string}
|
|
4484
|
+
* @memberof DoctorLanguageModel
|
|
4485
|
+
*/
|
|
4486
|
+
'userId'?: string;
|
|
4487
|
+
}
|
|
4488
|
+
/**
|
|
4489
|
+
*
|
|
4490
|
+
* @export
|
|
4491
|
+
* @interface DoctorLanguagesModel
|
|
4492
|
+
*/
|
|
4493
|
+
export interface DoctorLanguagesModel {
|
|
4494
|
+
/**
|
|
4495
|
+
*
|
|
4496
|
+
* @type {Array<DoctorLanguageItemModel>}
|
|
4497
|
+
* @memberof DoctorLanguagesModel
|
|
4498
|
+
*/
|
|
4499
|
+
'items'?: Array<DoctorLanguageItemModel> | null;
|
|
4500
|
+
/**
|
|
4501
|
+
*
|
|
4502
|
+
* @type {PagedListMetaData}
|
|
4503
|
+
* @memberof DoctorLanguagesModel
|
|
4504
|
+
*/
|
|
4505
|
+
'metaData'?: PagedListMetaData;
|
|
4506
|
+
}
|
|
4438
4507
|
/**
|
|
4439
4508
|
*
|
|
4440
4509
|
* @export
|
|
@@ -12402,6 +12471,7 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
12402
12471
|
* @param {string} [exceptHospitalId]
|
|
12403
12472
|
* @param {string} [exceptDealId]
|
|
12404
12473
|
* @param {Array<string>} [ids]
|
|
12474
|
+
* @param {number} [serviceDuration]
|
|
12405
12475
|
* @param {string} [languageCode]
|
|
12406
12476
|
* @param {boolean} [showHidden]
|
|
12407
12477
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -12411,7 +12481,7 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
12411
12481
|
* @param {*} [options] Override http request option.
|
|
12412
12482
|
* @throws {RequiredError}
|
|
12413
12483
|
*/
|
|
12414
|
-
apiV2DealsGet: (id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12484
|
+
apiV2DealsGet: (id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, serviceDuration?: number | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12415
12485
|
/**
|
|
12416
12486
|
*
|
|
12417
12487
|
* @summary Get all deals.
|
|
@@ -12427,6 +12497,7 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
12427
12497
|
* @param {string} [exceptHospitalId]
|
|
12428
12498
|
* @param {string} [exceptDealId]
|
|
12429
12499
|
* @param {Array<string>} [ids]
|
|
12500
|
+
* @param {number} [serviceDuration]
|
|
12430
12501
|
* @param {string} [languageCode]
|
|
12431
12502
|
* @param {boolean} [showHidden]
|
|
12432
12503
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -12436,7 +12507,7 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
12436
12507
|
* @param {*} [options] Override http request option.
|
|
12437
12508
|
* @throws {RequiredError}
|
|
12438
12509
|
*/
|
|
12439
|
-
apiV2DealsSimpleGet: (id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12510
|
+
apiV2DealsSimpleGet: (id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, serviceDuration?: number | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12440
12511
|
/**
|
|
12441
12512
|
*
|
|
12442
12513
|
* @summary Get deal by slug.
|
|
@@ -12524,6 +12595,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
12524
12595
|
* @param {string} [exceptHospitalId]
|
|
12525
12596
|
* @param {string} [exceptDealId]
|
|
12526
12597
|
* @param {Array<string>} [ids]
|
|
12598
|
+
* @param {number} [serviceDuration]
|
|
12527
12599
|
* @param {string} [languageCode]
|
|
12528
12600
|
* @param {boolean} [showHidden]
|
|
12529
12601
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -12533,7 +12605,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
12533
12605
|
* @param {*} [options] Override http request option.
|
|
12534
12606
|
* @throws {RequiredError}
|
|
12535
12607
|
*/
|
|
12536
|
-
apiV2DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsModel>>;
|
|
12608
|
+
apiV2DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, serviceDuration?: number | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsModel>>;
|
|
12537
12609
|
/**
|
|
12538
12610
|
*
|
|
12539
12611
|
* @summary Get all deals.
|
|
@@ -12549,6 +12621,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
12549
12621
|
* @param {string} [exceptHospitalId]
|
|
12550
12622
|
* @param {string} [exceptDealId]
|
|
12551
12623
|
* @param {Array<string>} [ids]
|
|
12624
|
+
* @param {number} [serviceDuration]
|
|
12552
12625
|
* @param {string} [languageCode]
|
|
12553
12626
|
* @param {boolean} [showHidden]
|
|
12554
12627
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -12558,7 +12631,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
12558
12631
|
* @param {*} [options] Override http request option.
|
|
12559
12632
|
* @throws {RequiredError}
|
|
12560
12633
|
*/
|
|
12561
|
-
apiV2DealsSimpleGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsSimpleModel>>;
|
|
12634
|
+
apiV2DealsSimpleGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, serviceDuration?: number | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsSimpleModel>>;
|
|
12562
12635
|
/**
|
|
12563
12636
|
*
|
|
12564
12637
|
* @summary Get deal by slug.
|
|
@@ -12646,6 +12719,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
12646
12719
|
* @param {string} [exceptHospitalId]
|
|
12647
12720
|
* @param {string} [exceptDealId]
|
|
12648
12721
|
* @param {Array<string>} [ids]
|
|
12722
|
+
* @param {number} [serviceDuration]
|
|
12649
12723
|
* @param {string} [languageCode]
|
|
12650
12724
|
* @param {boolean} [showHidden]
|
|
12651
12725
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -12655,7 +12729,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
12655
12729
|
* @param {*} [options] Override http request option.
|
|
12656
12730
|
* @throws {RequiredError}
|
|
12657
12731
|
*/
|
|
12658
|
-
apiV2DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsModel>;
|
|
12732
|
+
apiV2DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, serviceDuration?: number | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsModel>;
|
|
12659
12733
|
/**
|
|
12660
12734
|
*
|
|
12661
12735
|
* @summary Get all deals.
|
|
@@ -12671,6 +12745,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
12671
12745
|
* @param {string} [exceptHospitalId]
|
|
12672
12746
|
* @param {string} [exceptDealId]
|
|
12673
12747
|
* @param {Array<string>} [ids]
|
|
12748
|
+
* @param {number} [serviceDuration]
|
|
12674
12749
|
* @param {string} [languageCode]
|
|
12675
12750
|
* @param {boolean} [showHidden]
|
|
12676
12751
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -12680,7 +12755,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
12680
12755
|
* @param {*} [options] Override http request option.
|
|
12681
12756
|
* @throws {RequiredError}
|
|
12682
12757
|
*/
|
|
12683
|
-
apiV2DealsSimpleGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsSimpleModel>;
|
|
12758
|
+
apiV2DealsSimpleGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, serviceDuration?: number | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsSimpleModel>;
|
|
12684
12759
|
/**
|
|
12685
12760
|
*
|
|
12686
12761
|
* @summary Get deal by slug.
|
|
@@ -12775,6 +12850,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
12775
12850
|
* @param {string} [exceptHospitalId]
|
|
12776
12851
|
* @param {string} [exceptDealId]
|
|
12777
12852
|
* @param {Array<string>} [ids]
|
|
12853
|
+
* @param {number} [serviceDuration]
|
|
12778
12854
|
* @param {string} [languageCode]
|
|
12779
12855
|
* @param {boolean} [showHidden]
|
|
12780
12856
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -12785,7 +12861,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
12785
12861
|
* @throws {RequiredError}
|
|
12786
12862
|
* @memberof DealsApi
|
|
12787
12863
|
*/
|
|
12788
|
-
apiV2DealsGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, serviceId?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsModel, any>>;
|
|
12864
|
+
apiV2DealsGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, serviceId?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, serviceDuration?: number, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsModel, any>>;
|
|
12789
12865
|
/**
|
|
12790
12866
|
*
|
|
12791
12867
|
* @summary Get all deals.
|
|
@@ -12801,6 +12877,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
12801
12877
|
* @param {string} [exceptHospitalId]
|
|
12802
12878
|
* @param {string} [exceptDealId]
|
|
12803
12879
|
* @param {Array<string>} [ids]
|
|
12880
|
+
* @param {number} [serviceDuration]
|
|
12804
12881
|
* @param {string} [languageCode]
|
|
12805
12882
|
* @param {boolean} [showHidden]
|
|
12806
12883
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -12811,7 +12888,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
12811
12888
|
* @throws {RequiredError}
|
|
12812
12889
|
* @memberof DealsApi
|
|
12813
12890
|
*/
|
|
12814
|
-
apiV2DealsSimpleGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, serviceId?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsSimpleModel, any>>;
|
|
12891
|
+
apiV2DealsSimpleGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, serviceId?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, serviceDuration?: number, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsSimpleModel, any>>;
|
|
12815
12892
|
/**
|
|
12816
12893
|
*
|
|
12817
12894
|
* @summary Get deal by slug.
|
|
@@ -12909,6 +12986,27 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
12909
12986
|
* @throws {RequiredError}
|
|
12910
12987
|
*/
|
|
12911
12988
|
apiV2DoctorsDoctorIdGet: (doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12989
|
+
/**
|
|
12990
|
+
*
|
|
12991
|
+
* @summary Get all DoctorEducations.
|
|
12992
|
+
* @param {string} doctorId
|
|
12993
|
+
* @param {string} [language]
|
|
12994
|
+
* @param {number} [page]
|
|
12995
|
+
* @param {number} [limit]
|
|
12996
|
+
* @param {Date} [lastRetrieved]
|
|
12997
|
+
* @param {*} [options] Override http request option.
|
|
12998
|
+
* @throws {RequiredError}
|
|
12999
|
+
*/
|
|
13000
|
+
apiV2DoctorsDoctorIdLanguagesGet: (doctorId: string, language?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13001
|
+
/**
|
|
13002
|
+
*
|
|
13003
|
+
* @summary Get DoctorEducation.
|
|
13004
|
+
* @param {string} doctorId
|
|
13005
|
+
* @param {string} languageId
|
|
13006
|
+
* @param {*} [options] Override http request option.
|
|
13007
|
+
* @throws {RequiredError}
|
|
13008
|
+
*/
|
|
13009
|
+
apiV2DoctorsDoctorIdLanguagesLanguageIdGet: (doctorId: string, languageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12912
13010
|
/**
|
|
12913
13011
|
*
|
|
12914
13012
|
* @summary Get all DoctorMedias.
|
|
@@ -13118,6 +13216,27 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
13118
13216
|
* @throws {RequiredError}
|
|
13119
13217
|
*/
|
|
13120
13218
|
apiV2DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
13219
|
+
/**
|
|
13220
|
+
*
|
|
13221
|
+
* @summary Get all DoctorEducations.
|
|
13222
|
+
* @param {string} doctorId
|
|
13223
|
+
* @param {string} [language]
|
|
13224
|
+
* @param {number} [page]
|
|
13225
|
+
* @param {number} [limit]
|
|
13226
|
+
* @param {Date} [lastRetrieved]
|
|
13227
|
+
* @param {*} [options] Override http request option.
|
|
13228
|
+
* @throws {RequiredError}
|
|
13229
|
+
*/
|
|
13230
|
+
apiV2DoctorsDoctorIdLanguagesGet(doctorId: string, language?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorLanguagesModel>>;
|
|
13231
|
+
/**
|
|
13232
|
+
*
|
|
13233
|
+
* @summary Get DoctorEducation.
|
|
13234
|
+
* @param {string} doctorId
|
|
13235
|
+
* @param {string} languageId
|
|
13236
|
+
* @param {*} [options] Override http request option.
|
|
13237
|
+
* @throws {RequiredError}
|
|
13238
|
+
*/
|
|
13239
|
+
apiV2DoctorsDoctorIdLanguagesLanguageIdGet(doctorId: string, languageId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorLanguageModel>>;
|
|
13121
13240
|
/**
|
|
13122
13241
|
*
|
|
13123
13242
|
* @summary Get all DoctorMedias.
|
|
@@ -13327,6 +13446,27 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
13327
13446
|
* @throws {RequiredError}
|
|
13328
13447
|
*/
|
|
13329
13448
|
apiV2DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
13449
|
+
/**
|
|
13450
|
+
*
|
|
13451
|
+
* @summary Get all DoctorEducations.
|
|
13452
|
+
* @param {string} doctorId
|
|
13453
|
+
* @param {string} [language]
|
|
13454
|
+
* @param {number} [page]
|
|
13455
|
+
* @param {number} [limit]
|
|
13456
|
+
* @param {Date} [lastRetrieved]
|
|
13457
|
+
* @param {*} [options] Override http request option.
|
|
13458
|
+
* @throws {RequiredError}
|
|
13459
|
+
*/
|
|
13460
|
+
apiV2DoctorsDoctorIdLanguagesGet(doctorId: string, language?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorLanguagesModel>;
|
|
13461
|
+
/**
|
|
13462
|
+
*
|
|
13463
|
+
* @summary Get DoctorEducation.
|
|
13464
|
+
* @param {string} doctorId
|
|
13465
|
+
* @param {string} languageId
|
|
13466
|
+
* @param {*} [options] Override http request option.
|
|
13467
|
+
* @throws {RequiredError}
|
|
13468
|
+
*/
|
|
13469
|
+
apiV2DoctorsDoctorIdLanguagesLanguageIdGet(doctorId: string, languageId: string, options?: any): AxiosPromise<DoctorLanguageModel>;
|
|
13330
13470
|
/**
|
|
13331
13471
|
*
|
|
13332
13472
|
* @summary Get all DoctorMedias.
|
|
@@ -13545,6 +13685,29 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
13545
13685
|
* @memberof DoctorsApi
|
|
13546
13686
|
*/
|
|
13547
13687
|
apiV2DoctorsDoctorIdGet(doctorId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel, any>>;
|
|
13688
|
+
/**
|
|
13689
|
+
*
|
|
13690
|
+
* @summary Get all DoctorEducations.
|
|
13691
|
+
* @param {string} doctorId
|
|
13692
|
+
* @param {string} [language]
|
|
13693
|
+
* @param {number} [page]
|
|
13694
|
+
* @param {number} [limit]
|
|
13695
|
+
* @param {Date} [lastRetrieved]
|
|
13696
|
+
* @param {*} [options] Override http request option.
|
|
13697
|
+
* @throws {RequiredError}
|
|
13698
|
+
* @memberof DoctorsApi
|
|
13699
|
+
*/
|
|
13700
|
+
apiV2DoctorsDoctorIdLanguagesGet(doctorId: string, language?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguagesModel, any>>;
|
|
13701
|
+
/**
|
|
13702
|
+
*
|
|
13703
|
+
* @summary Get DoctorEducation.
|
|
13704
|
+
* @param {string} doctorId
|
|
13705
|
+
* @param {string} languageId
|
|
13706
|
+
* @param {*} [options] Override http request option.
|
|
13707
|
+
* @throws {RequiredError}
|
|
13708
|
+
* @memberof DoctorsApi
|
|
13709
|
+
*/
|
|
13710
|
+
apiV2DoctorsDoctorIdLanguagesLanguageIdGet(doctorId: string, languageId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguageModel, any>>;
|
|
13548
13711
|
/**
|
|
13549
13712
|
*
|
|
13550
13713
|
* @summary Get all DoctorMedias.
|