ch-api-client-typescript2 3.1.0 → 3.1.3

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
@@ -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 DoctorLanguages.
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 DoctorLanguage.
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 DoctorLanguages.
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 DoctorLanguage.
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 DoctorLanguages.
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 DoctorLanguage.
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 DoctorLanguages.
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 DoctorLanguage.
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.
@@ -14430,7 +14593,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
14430
14593
  *
14431
14594
  * @summary Get all HospitalHandles.
14432
14595
  * @param {string} hospitalId
14433
- * @param {string} [hospitalId2]
14434
14596
  * @param {string} [id]
14435
14597
  * @param {SnsType} [snsType]
14436
14598
  * @param {string} [handle]
@@ -14440,7 +14602,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
14440
14602
  * @param {*} [options] Override http request option.
14441
14603
  * @throws {RequiredError}
14442
14604
  */
14443
- apiV2HospitalsHospitalIdHandlesGet: (hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14605
+ apiV2HospitalsHospitalIdHandlesGet: (hospitalId: string, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14444
14606
  /**
14445
14607
  *
14446
14608
  * @summary Get HospitalHandle.
@@ -14598,7 +14760,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
14598
14760
  *
14599
14761
  * @summary Get all HospitalWorkingDays.
14600
14762
  * @param {string} hospitalId
14601
- * @param {string} [hospitalId2]
14602
14763
  * @param {string} [id]
14603
14764
  * @param {string} [dayOfWeek]
14604
14765
  * @param {Date} [timeFrom]
@@ -14610,7 +14771,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
14610
14771
  * @param {*} [options] Override http request option.
14611
14772
  * @throws {RequiredError}
14612
14773
  */
14613
- apiV2HospitalsHospitalIdWorkingdaysGet: (hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, dayOfWeek?: string | undefined, timeFrom?: Date | undefined, timeTo?: Date | undefined, checkHoliday?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14774
+ apiV2HospitalsHospitalIdWorkingdaysGet: (hospitalId: string, id?: string | undefined, dayOfWeek?: string | undefined, timeFrom?: Date | undefined, timeTo?: Date | undefined, checkHoliday?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14614
14775
  /**
14615
14776
  *
14616
14777
  * @summary Get HospitalWorkingDay.
@@ -14790,7 +14951,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
14790
14951
  *
14791
14952
  * @summary Get all HospitalHandles.
14792
14953
  * @param {string} hospitalId
14793
- * @param {string} [hospitalId2]
14794
14954
  * @param {string} [id]
14795
14955
  * @param {SnsType} [snsType]
14796
14956
  * @param {string} [handle]
@@ -14800,7 +14960,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
14800
14960
  * @param {*} [options] Override http request option.
14801
14961
  * @throws {RequiredError}
14802
14962
  */
14803
- apiV2HospitalsHospitalIdHandlesGet(hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSnsHandlesModel>>;
14963
+ apiV2HospitalsHospitalIdHandlesGet(hospitalId: string, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSnsHandlesModel>>;
14804
14964
  /**
14805
14965
  *
14806
14966
  * @summary Get HospitalHandle.
@@ -14958,7 +15118,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
14958
15118
  *
14959
15119
  * @summary Get all HospitalWorkingDays.
14960
15120
  * @param {string} hospitalId
14961
- * @param {string} [hospitalId2]
14962
15121
  * @param {string} [id]
14963
15122
  * @param {string} [dayOfWeek]
14964
15123
  * @param {Date} [timeFrom]
@@ -14970,7 +15129,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
14970
15129
  * @param {*} [options] Override http request option.
14971
15130
  * @throws {RequiredError}
14972
15131
  */
14973
- apiV2HospitalsHospitalIdWorkingdaysGet(hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, dayOfWeek?: string | undefined, timeFrom?: Date | undefined, timeTo?: Date | undefined, checkHoliday?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WorkingDaysModel>>;
15132
+ apiV2HospitalsHospitalIdWorkingdaysGet(hospitalId: string, id?: string | undefined, dayOfWeek?: string | undefined, timeFrom?: Date | undefined, timeTo?: Date | undefined, checkHoliday?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WorkingDaysModel>>;
14974
15133
  /**
14975
15134
  *
14976
15135
  * @summary Get HospitalWorkingDay.
@@ -15150,7 +15309,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
15150
15309
  *
15151
15310
  * @summary Get all HospitalHandles.
15152
15311
  * @param {string} hospitalId
15153
- * @param {string} [hospitalId2]
15154
15312
  * @param {string} [id]
15155
15313
  * @param {SnsType} [snsType]
15156
15314
  * @param {string} [handle]
@@ -15160,7 +15318,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
15160
15318
  * @param {*} [options] Override http request option.
15161
15319
  * @throws {RequiredError}
15162
15320
  */
15163
- apiV2HospitalsHospitalIdHandlesGet(hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSnsHandlesModel>;
15321
+ apiV2HospitalsHospitalIdHandlesGet(hospitalId: string, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSnsHandlesModel>;
15164
15322
  /**
15165
15323
  *
15166
15324
  * @summary Get HospitalHandle.
@@ -15318,7 +15476,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
15318
15476
  *
15319
15477
  * @summary Get all HospitalWorkingDays.
15320
15478
  * @param {string} hospitalId
15321
- * @param {string} [hospitalId2]
15322
15479
  * @param {string} [id]
15323
15480
  * @param {string} [dayOfWeek]
15324
15481
  * @param {Date} [timeFrom]
@@ -15330,7 +15487,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
15330
15487
  * @param {*} [options] Override http request option.
15331
15488
  * @throws {RequiredError}
15332
15489
  */
15333
- apiV2HospitalsHospitalIdWorkingdaysGet(hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, dayOfWeek?: string | undefined, timeFrom?: Date | undefined, timeTo?: Date | undefined, checkHoliday?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<WorkingDaysModel>;
15490
+ apiV2HospitalsHospitalIdWorkingdaysGet(hospitalId: string, id?: string | undefined, dayOfWeek?: string | undefined, timeFrom?: Date | undefined, timeTo?: Date | undefined, checkHoliday?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<WorkingDaysModel>;
15334
15491
  /**
15335
15492
  *
15336
15493
  * @summary Get HospitalWorkingDay.
@@ -15522,7 +15679,6 @@ export declare class HospitalsApi extends BaseAPI {
15522
15679
  *
15523
15680
  * @summary Get all HospitalHandles.
15524
15681
  * @param {string} hospitalId
15525
- * @param {string} [hospitalId2]
15526
15682
  * @param {string} [id]
15527
15683
  * @param {SnsType} [snsType]
15528
15684
  * @param {string} [handle]
@@ -15533,7 +15689,7 @@ export declare class HospitalsApi extends BaseAPI {
15533
15689
  * @throws {RequiredError}
15534
15690
  * @memberof HospitalsApi
15535
15691
  */
15536
- apiV2HospitalsHospitalIdHandlesGet(hospitalId: string, hospitalId2?: string, id?: string, snsType?: SnsType, handle?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSnsHandlesModel, any>>;
15692
+ apiV2HospitalsHospitalIdHandlesGet(hospitalId: string, id?: string, snsType?: SnsType, handle?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSnsHandlesModel, any>>;
15537
15693
  /**
15538
15694
  *
15539
15695
  * @summary Get HospitalHandle.
@@ -15701,7 +15857,6 @@ export declare class HospitalsApi extends BaseAPI {
15701
15857
  *
15702
15858
  * @summary Get all HospitalWorkingDays.
15703
15859
  * @param {string} hospitalId
15704
- * @param {string} [hospitalId2]
15705
15860
  * @param {string} [id]
15706
15861
  * @param {string} [dayOfWeek]
15707
15862
  * @param {Date} [timeFrom]
@@ -15714,7 +15869,7 @@ export declare class HospitalsApi extends BaseAPI {
15714
15869
  * @throws {RequiredError}
15715
15870
  * @memberof HospitalsApi
15716
15871
  */
15717
- apiV2HospitalsHospitalIdWorkingdaysGet(hospitalId: string, hospitalId2?: string, id?: string, dayOfWeek?: string, timeFrom?: Date, timeTo?: Date, checkHoliday?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDaysModel, any>>;
15872
+ apiV2HospitalsHospitalIdWorkingdaysGet(hospitalId: string, id?: string, dayOfWeek?: string, timeFrom?: Date, timeTo?: Date, checkHoliday?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDaysModel, any>>;
15718
15873
  /**
15719
15874
  *
15720
15875
  * @summary Get HospitalWorkingDay.