ch-admin-api-client-typescript 2.6.1 → 2.6.6

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
@@ -3300,10 +3300,10 @@ export interface CreateCountryCommand {
3300
3300
  'content'?: string | null;
3301
3301
  /**
3302
3302
  *
3303
- * @type {Array<MediaModel>}
3303
+ * @type {string}
3304
3304
  * @memberof CreateCountryCommand
3305
3305
  */
3306
- 'medias'?: Array<MediaModel> | null;
3306
+ 'logo'?: string | null;
3307
3307
  }
3308
3308
  /**
3309
3309
  *
@@ -4437,12 +4437,6 @@ export interface DealItemModel {
4437
4437
  * @memberof DealItemModel
4438
4438
  */
4439
4439
  'dealServices'?: Array<DealServiceItemModel> | null;
4440
- /**
4441
- *
4442
- * @type {AuditableEntity}
4443
- * @memberof DealItemModel
4444
- */
4445
- 'auditableEntity'?: AuditableEntity;
4446
4440
  /**
4447
4441
  *
4448
4442
  * @type {Array<LocalizedUrlModel>}
@@ -4455,6 +4449,12 @@ export interface DealItemModel {
4455
4449
  * @memberof DealItemModel
4456
4450
  */
4457
4451
  'confirmed'?: boolean;
4452
+ /**
4453
+ *
4454
+ * @type {AuditableEntity}
4455
+ * @memberof DealItemModel
4456
+ */
4457
+ 'auditableEntity'?: AuditableEntity;
4458
4458
  }
4459
4459
  /**
4460
4460
  *
@@ -4540,12 +4540,6 @@ export interface DealModel {
4540
4540
  * @memberof DealModel
4541
4541
  */
4542
4542
  'dealServices'?: Array<DealServiceItemModel> | null;
4543
- /**
4544
- *
4545
- * @type {AuditableEntity}
4546
- * @memberof DealModel
4547
- */
4548
- 'auditableEntity'?: AuditableEntity;
4549
4543
  /**
4550
4544
  *
4551
4545
  * @type {Array<LocalizedUrlModel>}
@@ -4558,6 +4552,12 @@ export interface DealModel {
4558
4552
  * @memberof DealModel
4559
4553
  */
4560
4554
  'confirmed'?: boolean;
4555
+ /**
4556
+ *
4557
+ * @type {AuditableEntity}
4558
+ * @memberof DealModel
4559
+ */
4560
+ 'auditableEntity'?: AuditableEntity;
4561
4561
  /**
4562
4562
  *
4563
4563
  * @type {string}
@@ -8941,12 +8941,6 @@ export interface ServiceCategoryItemModel {
8941
8941
  * @memberof ServiceCategoryItemModel
8942
8942
  */
8943
8943
  'serviceCount'?: number;
8944
- /**
8945
- *
8946
- * @type {Array<HospitalServiceItemModel>}
8947
- * @memberof ServiceCategoryItemModel
8948
- */
8949
- 'services'?: Array<HospitalServiceItemModel> | null;
8950
8944
  }
8951
8945
  /**
8952
8946
  *
@@ -8990,12 +8984,6 @@ export interface ServiceCategoryModel {
8990
8984
  * @memberof ServiceCategoryModel
8991
8985
  */
8992
8986
  'serviceCount'?: number;
8993
- /**
8994
- *
8995
- * @type {Array<HospitalServiceItemModel>}
8996
- * @memberof ServiceCategoryModel
8997
- */
8998
- 'services'?: Array<HospitalServiceItemModel> | null;
8999
8987
  }
9000
8988
  /**
9001
8989
  *
@@ -10138,6 +10126,12 @@ export interface UpdateCountryCommand {
10138
10126
  * @memberof UpdateCountryCommand
10139
10127
  */
10140
10128
  'slug'?: string | null;
10129
+ /**
10130
+ *
10131
+ * @type {string}
10132
+ * @memberof UpdateCountryCommand
10133
+ */
10134
+ 'logo'?: string | null;
10141
10135
  /**
10142
10136
  *
10143
10137
  * @type {string}
@@ -10774,19 +10768,19 @@ export interface UpdateHospitalServiceCommand {
10774
10768
  * @type {number}
10775
10769
  * @memberof UpdateHospitalServiceCommand
10776
10770
  */
10777
- 'minPrice'?: number;
10771
+ 'minPrice'?: number | null;
10778
10772
  /**
10779
10773
  *
10780
10774
  * @type {number}
10781
10775
  * @memberof UpdateHospitalServiceCommand
10782
10776
  */
10783
- 'maxPrice'?: number;
10777
+ 'maxPrice'?: number | null;
10784
10778
  /**
10785
10779
  *
10786
10780
  * @type {boolean}
10787
10781
  * @memberof UpdateHospitalServiceCommand
10788
10782
  */
10789
- 'priceReuqest'?: boolean;
10783
+ 'priceReuqest'?: boolean | null;
10790
10784
  /**
10791
10785
  *
10792
10786
  * @type {Procedure}
@@ -14761,7 +14755,7 @@ export declare const CountriesApiAxiosParamCreator: (configuration?: Configurati
14761
14755
  * @param {*} [options] Override http request option.
14762
14756
  * @throws {RequiredError}
14763
14757
  */
14764
- apiV1CountriesCountryIdRevokePut: (countryId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14758
+ apiV1CountriesCountryIdReactivePut: (countryId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14765
14759
  /**
14766
14760
  *
14767
14761
  * @summary Get all countries.
@@ -14789,7 +14783,6 @@ export declare const CountriesApiAxiosParamCreator: (configuration?: Configurati
14789
14783
  apiV1CountriesPost: (createCountryCommand?: CreateCountryCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14790
14784
  /**
14791
14785
  *
14792
- * @summary Get country by slug.
14793
14786
  * @param {string} slug
14794
14787
  * @param {string} [languageCode]
14795
14788
  * @param {boolean} [returnDefaultValue]
@@ -14887,7 +14880,7 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
14887
14880
  * @param {*} [options] Override http request option.
14888
14881
  * @throws {RequiredError}
14889
14882
  */
14890
- apiV1CountriesCountryIdRevokePut(countryId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
14883
+ apiV1CountriesCountryIdReactivePut(countryId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
14891
14884
  /**
14892
14885
  *
14893
14886
  * @summary Get all countries.
@@ -14915,7 +14908,6 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
14915
14908
  apiV1CountriesPost(createCountryCommand?: CreateCountryCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CountryModel>>;
14916
14909
  /**
14917
14910
  *
14918
- * @summary Get country by slug.
14919
14911
  * @param {string} slug
14920
14912
  * @param {string} [languageCode]
14921
14913
  * @param {boolean} [returnDefaultValue]
@@ -15013,7 +15005,7 @@ export declare const CountriesApiFactory: (configuration?: Configuration | undef
15013
15005
  * @param {*} [options] Override http request option.
15014
15006
  * @throws {RequiredError}
15015
15007
  */
15016
- apiV1CountriesCountryIdRevokePut(countryId: string, options?: any): AxiosPromise<boolean>;
15008
+ apiV1CountriesCountryIdReactivePut(countryId: string, options?: any): AxiosPromise<boolean>;
15017
15009
  /**
15018
15010
  *
15019
15011
  * @summary Get all countries.
@@ -15041,7 +15033,6 @@ export declare const CountriesApiFactory: (configuration?: Configuration | undef
15041
15033
  apiV1CountriesPost(createCountryCommand?: CreateCountryCommand | undefined, options?: any): AxiosPromise<CountryModel>;
15042
15034
  /**
15043
15035
  *
15044
- * @summary Get country by slug.
15045
15036
  * @param {string} slug
15046
15037
  * @param {string} [languageCode]
15047
15038
  * @param {boolean} [returnDefaultValue]
@@ -15150,7 +15141,7 @@ export declare class CountriesApi extends BaseAPI {
15150
15141
  * @throws {RequiredError}
15151
15142
  * @memberof CountriesApi
15152
15143
  */
15153
- apiV1CountriesCountryIdRevokePut(countryId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
15144
+ apiV1CountriesCountryIdReactivePut(countryId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
15154
15145
  /**
15155
15146
  *
15156
15147
  * @summary Get all countries.
@@ -15180,7 +15171,6 @@ export declare class CountriesApi extends BaseAPI {
15180
15171
  apiV1CountriesPost(createCountryCommand?: CreateCountryCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountryModel>>;
15181
15172
  /**
15182
15173
  *
15183
- * @summary Get country by slug.
15184
15174
  * @param {string} slug
15185
15175
  * @param {string} [languageCode]
15186
15176
  * @param {boolean} [returnDefaultValue]
@@ -16075,7 +16065,6 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
16075
16065
  apiV1DoctorsDoctorIdEducationsPost: (doctorId: string, createDoctorEducationCommand?: CreateDoctorEducationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16076
16066
  /**
16077
16067
  *
16078
- * @summary Get Doctor.
16079
16068
  * @param {string} doctorId
16080
16069
  * @param {string} [languageCode]
16081
16070
  * @param {boolean} [returnDefaultValue]
@@ -16274,7 +16263,6 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
16274
16263
  apiV1DoctorsPost: (createDoctorCommand?: CreateDoctorCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16275
16264
  /**
16276
16265
  *
16277
- * @summary Get Doctor by slug.
16278
16266
  * @param {string} slug
16279
16267
  * @param {string} [languageCode]
16280
16268
  * @param {boolean} [returnDefaultValue]
@@ -16325,7 +16313,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
16325
16313
  * @param {*} [options] Override http request option.
16326
16314
  * @throws {RequiredError}
16327
16315
  */
16328
- apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
16316
+ apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationModel>>;
16329
16317
  /**
16330
16318
  *
16331
16319
  * @summary Delete DoctorCertificate.
@@ -16442,7 +16430,6 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
16442
16430
  apiV1DoctorsDoctorIdEducationsPost(doctorId: string, createDoctorEducationCommand?: CreateDoctorEducationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorEducationModel>>;
16443
16431
  /**
16444
16432
  *
16445
- * @summary Get Doctor.
16446
16433
  * @param {string} doctorId
16447
16434
  * @param {string} [languageCode]
16448
16435
  * @param {boolean} [returnDefaultValue]
@@ -16641,7 +16628,6 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
16641
16628
  apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
16642
16629
  /**
16643
16630
  *
16644
- * @summary Get Doctor by slug.
16645
16631
  * @param {string} slug
16646
16632
  * @param {string} [languageCode]
16647
16633
  * @param {boolean} [returnDefaultValue]
@@ -16692,7 +16678,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
16692
16678
  * @param {*} [options] Override http request option.
16693
16679
  * @throws {RequiredError}
16694
16680
  */
16695
- apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: any): AxiosPromise<DoctorModel>;
16681
+ apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: any): AxiosPromise<DoctorAffiliationModel>;
16696
16682
  /**
16697
16683
  *
16698
16684
  * @summary Delete DoctorCertificate.
@@ -16809,7 +16795,6 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
16809
16795
  apiV1DoctorsDoctorIdEducationsPost(doctorId: string, createDoctorEducationCommand?: CreateDoctorEducationCommand | undefined, options?: any): AxiosPromise<DoctorEducationModel>;
16810
16796
  /**
16811
16797
  *
16812
- * @summary Get Doctor.
16813
16798
  * @param {string} doctorId
16814
16799
  * @param {string} [languageCode]
16815
16800
  * @param {boolean} [returnDefaultValue]
@@ -17008,7 +16993,6 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
17008
16993
  apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: any): AxiosPromise<DoctorModel>;
17009
16994
  /**
17010
16995
  *
17011
- * @summary Get Doctor by slug.
17012
16996
  * @param {string} slug
17013
16997
  * @param {string} [languageCode]
17014
16998
  * @param {boolean} [returnDefaultValue]
@@ -17065,7 +17049,7 @@ export declare class DoctorsApi extends BaseAPI {
17065
17049
  * @throws {RequiredError}
17066
17050
  * @memberof DoctorsApi
17067
17051
  */
17068
- apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
17052
+ apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationModel>>;
17069
17053
  /**
17070
17054
  *
17071
17055
  * @summary Delete DoctorCertificate.
@@ -17193,7 +17177,6 @@ export declare class DoctorsApi extends BaseAPI {
17193
17177
  apiV1DoctorsDoctorIdEducationsPost(doctorId: string, createDoctorEducationCommand?: CreateDoctorEducationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorEducationModel>>;
17194
17178
  /**
17195
17179
  *
17196
- * @summary Get Doctor.
17197
17180
  * @param {string} doctorId
17198
17181
  * @param {string} [languageCode]
17199
17182
  * @param {boolean} [returnDefaultValue]
@@ -17411,7 +17394,6 @@ export declare class DoctorsApi extends BaseAPI {
17411
17394
  apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
17412
17395
  /**
17413
17396
  *
17414
- * @summary Get Doctor by slug.
17415
17397
  * @param {string} slug
17416
17398
  * @param {string} [languageCode]
17417
17399
  * @param {boolean} [returnDefaultValue]
@@ -18608,6 +18590,15 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
18608
18590
  * @throws {RequiredError}
18609
18591
  */
18610
18592
  apiV1HospitalsHospitalIdEquipmentsEquipmentIdPut: (hospitalId: string, equipmentId: string, updateHospitalEquipmentCommand?: UpdateHospitalEquipmentCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18593
+ /**
18594
+ *
18595
+ * @summary Reactivate HospitalEquipment.
18596
+ * @param {string} hospitalId
18597
+ * @param {string} equipmentId
18598
+ * @param {*} [options] Override http request option.
18599
+ * @throws {RequiredError}
18600
+ */
18601
+ apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivePut: (hospitalId: string, equipmentId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18611
18602
  /**
18612
18603
  *
18613
18604
  * @summary Get all HospitalEquipments.
@@ -18837,7 +18828,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
18837
18828
  apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost: (hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18838
18829
  /**
18839
18830
  *
18840
- * @summary Delete HospitalService
18841
18831
  * @param {string} hospitalId
18842
18832
  * @param {string} specialtyId
18843
18833
  * @param {string} serviceId
@@ -18847,7 +18837,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
18847
18837
  apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete: (hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18848
18838
  /**
18849
18839
  *
18850
- * @summary Get HospitalService.
18851
18840
  * @param {string} hospitalId
18852
18841
  * @param {string} specialtyId
18853
18842
  * @param {string} serviceId
@@ -18962,7 +18951,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
18962
18951
  apiV1HospitalsSimpleGet: (hospitalId?: string | undefined, name?: string | undefined, description?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18963
18952
  /**
18964
18953
  *
18965
- * @summary Get Hospital by slug.
18966
18954
  * @param {string} slug
18967
18955
  * @param {string} [languageCode]
18968
18956
  * @param {boolean} [returnDefaultValue]
@@ -19132,6 +19120,15 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
19132
19120
  * @throws {RequiredError}
19133
19121
  */
19134
19122
  apiV1HospitalsHospitalIdEquipmentsEquipmentIdPut(hospitalId: string, equipmentId: string, updateHospitalEquipmentCommand?: UpdateHospitalEquipmentCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalEquipmentModel>>;
19123
+ /**
19124
+ *
19125
+ * @summary Reactivate HospitalEquipment.
19126
+ * @param {string} hospitalId
19127
+ * @param {string} equipmentId
19128
+ * @param {*} [options] Override http request option.
19129
+ * @throws {RequiredError}
19130
+ */
19131
+ apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivePut(hospitalId: string, equipmentId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
19135
19132
  /**
19136
19133
  *
19137
19134
  * @summary Get all HospitalEquipments.
@@ -19361,7 +19358,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
19361
19358
  apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost(hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
19362
19359
  /**
19363
19360
  *
19364
- * @summary Delete HospitalService
19365
19361
  * @param {string} hospitalId
19366
19362
  * @param {string} specialtyId
19367
19363
  * @param {string} serviceId
@@ -19371,7 +19367,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
19371
19367
  apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete(hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
19372
19368
  /**
19373
19369
  *
19374
- * @summary Get HospitalService.
19375
19370
  * @param {string} hospitalId
19376
19371
  * @param {string} specialtyId
19377
19372
  * @param {string} serviceId
@@ -19486,7 +19481,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
19486
19481
  apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, description?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsSimpleModel>>;
19487
19482
  /**
19488
19483
  *
19489
- * @summary Get Hospital by slug.
19490
19484
  * @param {string} slug
19491
19485
  * @param {string} [languageCode]
19492
19486
  * @param {boolean} [returnDefaultValue]
@@ -19656,6 +19650,15 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
19656
19650
  * @throws {RequiredError}
19657
19651
  */
19658
19652
  apiV1HospitalsHospitalIdEquipmentsEquipmentIdPut(hospitalId: string, equipmentId: string, updateHospitalEquipmentCommand?: UpdateHospitalEquipmentCommand | undefined, options?: any): AxiosPromise<HospitalEquipmentModel>;
19653
+ /**
19654
+ *
19655
+ * @summary Reactivate HospitalEquipment.
19656
+ * @param {string} hospitalId
19657
+ * @param {string} equipmentId
19658
+ * @param {*} [options] Override http request option.
19659
+ * @throws {RequiredError}
19660
+ */
19661
+ apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivePut(hospitalId: string, equipmentId: string, options?: any): AxiosPromise<boolean>;
19659
19662
  /**
19660
19663
  *
19661
19664
  * @summary Get all HospitalEquipments.
@@ -19885,7 +19888,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
19885
19888
  apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost(hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
19886
19889
  /**
19887
19890
  *
19888
- * @summary Delete HospitalService
19889
19891
  * @param {string} hospitalId
19890
19892
  * @param {string} specialtyId
19891
19893
  * @param {string} serviceId
@@ -19895,7 +19897,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
19895
19897
  apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete(hospitalId: string, specialtyId: string, serviceId: string, options?: any): AxiosPromise<boolean>;
19896
19898
  /**
19897
19899
  *
19898
- * @summary Get HospitalService.
19899
19900
  * @param {string} hospitalId
19900
19901
  * @param {string} specialtyId
19901
19902
  * @param {string} serviceId
@@ -20010,7 +20011,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
20010
20011
  apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, description?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsSimpleModel>;
20011
20012
  /**
20012
20013
  *
20013
- * @summary Get Hospital by slug.
20014
20014
  * @param {string} slug
20015
20015
  * @param {string} [languageCode]
20016
20016
  * @param {boolean} [returnDefaultValue]
@@ -20196,6 +20196,16 @@ export declare class HospitalsApi extends BaseAPI {
20196
20196
  * @memberof HospitalsApi
20197
20197
  */
20198
20198
  apiV1HospitalsHospitalIdEquipmentsEquipmentIdPut(hospitalId: string, equipmentId: string, updateHospitalEquipmentCommand?: UpdateHospitalEquipmentCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalEquipmentModel>>;
20199
+ /**
20200
+ *
20201
+ * @summary Reactivate HospitalEquipment.
20202
+ * @param {string} hospitalId
20203
+ * @param {string} equipmentId
20204
+ * @param {*} [options] Override http request option.
20205
+ * @throws {RequiredError}
20206
+ * @memberof HospitalsApi
20207
+ */
20208
+ apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivePut(hospitalId: string, equipmentId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
20199
20209
  /**
20200
20210
  *
20201
20211
  * @summary Get all HospitalEquipments.
@@ -20445,7 +20455,6 @@ export declare class HospitalsApi extends BaseAPI {
20445
20455
  apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost(hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
20446
20456
  /**
20447
20457
  *
20448
- * @summary Delete HospitalService
20449
20458
  * @param {string} hospitalId
20450
20459
  * @param {string} specialtyId
20451
20460
  * @param {string} serviceId
@@ -20456,7 +20465,6 @@ export declare class HospitalsApi extends BaseAPI {
20456
20465
  apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete(hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
20457
20466
  /**
20458
20467
  *
20459
- * @summary Get HospitalService.
20460
20468
  * @param {string} hospitalId
20461
20469
  * @param {string} specialtyId
20462
20470
  * @param {string} serviceId
@@ -20580,7 +20588,6 @@ export declare class HospitalsApi extends BaseAPI {
20580
20588
  apiV1HospitalsSimpleGet(hospitalId?: string, name?: string, description?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsSimpleModel>>;
20581
20589
  /**
20582
20590
  *
20583
- * @summary Get Hospital by slug.
20584
20591
  * @param {string} slug
20585
20592
  * @param {string} [languageCode]
20586
20593
  * @param {boolean} [returnDefaultValue]
@@ -22335,7 +22342,6 @@ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuratio
22335
22342
  apiV1ServicesGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22336
22343
  /**
22337
22344
  *
22338
- * @summary Get HospitalService.
22339
22345
  * @param {string} serviceId
22340
22346
  * @param {string} [languageCode]
22341
22347
  * @param {boolean} [returnDefaultValue]
@@ -22345,7 +22351,6 @@ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuratio
22345
22351
  apiV1ServicesServiceIdGet: (serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22346
22352
  /**
22347
22353
  *
22348
- * @summary Get HospitalService by slug.
22349
22354
  * @param {string} slug
22350
22355
  * @param {string} [languageCode]
22351
22356
  * @param {boolean} [returnDefaultValue]
@@ -22387,7 +22392,6 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
22387
22392
  apiV1ServicesGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServicesModel>>;
22388
22393
  /**
22389
22394
  *
22390
- * @summary Get HospitalService.
22391
22395
  * @param {string} serviceId
22392
22396
  * @param {string} [languageCode]
22393
22397
  * @param {boolean} [returnDefaultValue]
@@ -22397,7 +22401,6 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
22397
22401
  apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
22398
22402
  /**
22399
22403
  *
22400
- * @summary Get HospitalService by slug.
22401
22404
  * @param {string} slug
22402
22405
  * @param {string} [languageCode]
22403
22406
  * @param {boolean} [returnDefaultValue]
@@ -22439,7 +22442,6 @@ export declare const ServicesApiFactory: (configuration?: Configuration | undefi
22439
22442
  apiV1ServicesGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalServicesModel>;
22440
22443
  /**
22441
22444
  *
22442
- * @summary Get HospitalService.
22443
22445
  * @param {string} serviceId
22444
22446
  * @param {string} [languageCode]
22445
22447
  * @param {boolean} [returnDefaultValue]
@@ -22449,7 +22451,6 @@ export declare const ServicesApiFactory: (configuration?: Configuration | undefi
22449
22451
  apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
22450
22452
  /**
22451
22453
  *
22452
- * @summary Get HospitalService by slug.
22453
22454
  * @param {string} slug
22454
22455
  * @param {string} [languageCode]
22455
22456
  * @param {boolean} [returnDefaultValue]
@@ -22494,7 +22495,6 @@ export declare class ServicesApi extends BaseAPI {
22494
22495
  apiV1ServicesGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, id?: string, name?: string, description?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServicesModel>>;
22495
22496
  /**
22496
22497
  *
22497
- * @summary Get HospitalService.
22498
22498
  * @param {string} serviceId
22499
22499
  * @param {string} [languageCode]
22500
22500
  * @param {boolean} [returnDefaultValue]
@@ -22505,7 +22505,6 @@ export declare class ServicesApi extends BaseAPI {
22505
22505
  apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
22506
22506
  /**
22507
22507
  *
22508
- * @summary Get HospitalService by slug.
22509
22508
  * @param {string} slug
22510
22509
  * @param {string} [languageCode]
22511
22510
  * @param {boolean} [returnDefaultValue]
@@ -22526,14 +22525,13 @@ export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Co
22526
22525
  * @param {string} [id]
22527
22526
  * @param {string} [name]
22528
22527
  * @param {string} [description]
22529
- * @param {string} [languageCode]
22530
22528
  * @param {number} [page]
22531
22529
  * @param {number} [limit]
22532
22530
  * @param {Date} [lastRetrieved]
22533
22531
  * @param {*} [options] Override http request option.
22534
22532
  * @throws {RequiredError}
22535
22533
  */
22536
- apiV1ServicescategoriesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22534
+ apiV1ServicescategoriesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22537
22535
  /**
22538
22536
  *
22539
22537
  * @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
@@ -22553,11 +22551,10 @@ export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Co
22553
22551
  *
22554
22552
  * @summary Get ServiceCategory.
22555
22553
  * @param {string} serviceCategoryId
22556
- * @param {string} [languageCode]
22557
22554
  * @param {*} [options] Override http request option.
22558
22555
  * @throws {RequiredError}
22559
22556
  */
22560
- apiV1ServicescategoriesServiceCategoryIdGet: (serviceCategoryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22557
+ apiV1ServicescategoriesServiceCategoryIdGet: (serviceCategoryId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22561
22558
  /**
22562
22559
  *
22563
22560
  * @summary Update ServiceCategory
@@ -22579,14 +22576,13 @@ export declare const ServicesCategoriesApiFp: (configuration?: Configuration | u
22579
22576
  * @param {string} [id]
22580
22577
  * @param {string} [name]
22581
22578
  * @param {string} [description]
22582
- * @param {string} [languageCode]
22583
22579
  * @param {number} [page]
22584
22580
  * @param {number} [limit]
22585
22581
  * @param {Date} [lastRetrieved]
22586
22582
  * @param {*} [options] Override http request option.
22587
22583
  * @throws {RequiredError}
22588
22584
  */
22589
- apiV1ServicescategoriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceCategoriesModel>>;
22585
+ apiV1ServicescategoriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceCategoriesModel>>;
22590
22586
  /**
22591
22587
  *
22592
22588
  * @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
@@ -22606,11 +22602,10 @@ export declare const ServicesCategoriesApiFp: (configuration?: Configuration | u
22606
22602
  *
22607
22603
  * @summary Get ServiceCategory.
22608
22604
  * @param {string} serviceCategoryId
22609
- * @param {string} [languageCode]
22610
22605
  * @param {*} [options] Override http request option.
22611
22606
  * @throws {RequiredError}
22612
22607
  */
22613
- apiV1ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceCategoryModel>>;
22608
+ apiV1ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceCategoryModel>>;
22614
22609
  /**
22615
22610
  *
22616
22611
  * @summary Update ServiceCategory
@@ -22632,14 +22627,13 @@ export declare const ServicesCategoriesApiFactory: (configuration?: Configuratio
22632
22627
  * @param {string} [id]
22633
22628
  * @param {string} [name]
22634
22629
  * @param {string} [description]
22635
- * @param {string} [languageCode]
22636
22630
  * @param {number} [page]
22637
22631
  * @param {number} [limit]
22638
22632
  * @param {Date} [lastRetrieved]
22639
22633
  * @param {*} [options] Override http request option.
22640
22634
  * @throws {RequiredError}
22641
22635
  */
22642
- apiV1ServicescategoriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceCategoriesModel>;
22636
+ apiV1ServicescategoriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceCategoriesModel>;
22643
22637
  /**
22644
22638
  *
22645
22639
  * @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
@@ -22659,11 +22653,10 @@ export declare const ServicesCategoriesApiFactory: (configuration?: Configuratio
22659
22653
  *
22660
22654
  * @summary Get ServiceCategory.
22661
22655
  * @param {string} serviceCategoryId
22662
- * @param {string} [languageCode]
22663
22656
  * @param {*} [options] Override http request option.
22664
22657
  * @throws {RequiredError}
22665
22658
  */
22666
- apiV1ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string, languageCode?: string | undefined, options?: any): AxiosPromise<ServiceCategoryModel>;
22659
+ apiV1ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string, options?: any): AxiosPromise<ServiceCategoryModel>;
22667
22660
  /**
22668
22661
  *
22669
22662
  * @summary Update ServiceCategory
@@ -22687,7 +22680,6 @@ export declare class ServicesCategoriesApi extends BaseAPI {
22687
22680
  * @param {string} [id]
22688
22681
  * @param {string} [name]
22689
22682
  * @param {string} [description]
22690
- * @param {string} [languageCode]
22691
22683
  * @param {number} [page]
22692
22684
  * @param {number} [limit]
22693
22685
  * @param {Date} [lastRetrieved]
@@ -22695,7 +22687,7 @@ export declare class ServicesCategoriesApi extends BaseAPI {
22695
22687
  * @throws {RequiredError}
22696
22688
  * @memberof ServicesCategoriesApi
22697
22689
  */
22698
- apiV1ServicescategoriesGet(id?: string, name?: string, description?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoriesModel>>;
22690
+ apiV1ServicescategoriesGet(id?: string, name?: string, description?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoriesModel>>;
22699
22691
  /**
22700
22692
  *
22701
22693
  * @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
@@ -22717,12 +22709,11 @@ export declare class ServicesCategoriesApi extends BaseAPI {
22717
22709
  *
22718
22710
  * @summary Get ServiceCategory.
22719
22711
  * @param {string} serviceCategoryId
22720
- * @param {string} [languageCode]
22721
22712
  * @param {*} [options] Override http request option.
22722
22713
  * @throws {RequiredError}
22723
22714
  * @memberof ServicesCategoriesApi
22724
22715
  */
22725
- apiV1ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoryModel>>;
22716
+ apiV1ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoryModel>>;
22726
22717
  /**
22727
22718
  *
22728
22719
  * @summary Update ServiceCategory
@@ -22768,7 +22759,6 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
22768
22759
  apiV1SpecialtiesPost: (createSpecialtyCommand?: CreateSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22769
22760
  /**
22770
22761
  *
22771
- * @summary Get Specialty by slug.
22772
22762
  * @param {string} slug
22773
22763
  * @param {string} [languageCode]
22774
22764
  * @param {boolean} [returnDefaultValue]
@@ -22888,7 +22878,6 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
22888
22878
  apiV1SpecialtiesPost(createSpecialtyCommand?: CreateSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyModel>>;
22889
22879
  /**
22890
22880
  *
22891
- * @summary Get Specialty by slug.
22892
22881
  * @param {string} slug
22893
22882
  * @param {string} [languageCode]
22894
22883
  * @param {boolean} [returnDefaultValue]
@@ -23008,7 +22997,6 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
23008
22997
  apiV1SpecialtiesPost(createSpecialtyCommand?: CreateSpecialtyCommand | undefined, options?: any): AxiosPromise<SpecialtyModel>;
23009
22998
  /**
23010
22999
  *
23011
- * @summary Get Specialty by slug.
23012
23000
  * @param {string} slug
23013
23001
  * @param {string} [languageCode]
23014
23002
  * @param {boolean} [returnDefaultValue]
@@ -23132,7 +23120,6 @@ export declare class SpecialtiesApi extends BaseAPI {
23132
23120
  apiV1SpecialtiesPost(createSpecialtyCommand?: CreateSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyModel>>;
23133
23121
  /**
23134
23122
  *
23135
- * @summary Get Specialty by slug.
23136
23123
  * @param {string} slug
23137
23124
  * @param {string} [languageCode]
23138
23125
  * @param {boolean} [returnDefaultValue]
@@ -23282,7 +23269,6 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
23282
23269
  apiV1SpecialtytypesSimpleGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
23283
23270
  /**
23284
23271
  *
23285
- * @summary Get Department by slug.
23286
23272
  * @param {string} slug
23287
23273
  * @param {string} [languageCode]
23288
23274
  * @param {boolean} [returnDefaultValue]
@@ -23300,7 +23286,6 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
23300
23286
  apiV1SpecialtytypesSpecialtyTypeIdDelete: (specialtyTypeId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
23301
23287
  /**
23302
23288
  *
23303
- * @summary Get Department.
23304
23289
  * @param {string} specialtyTypeId
23305
23290
  * @param {string} [languageCode]
23306
23291
  * @param {boolean} [returnDefaultValue]
@@ -23423,7 +23408,6 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
23423
23408
  apiV1SpecialtytypesSimpleGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypesSimpleModel>>;
23424
23409
  /**
23425
23410
  *
23426
- * @summary Get Department by slug.
23427
23411
  * @param {string} slug
23428
23412
  * @param {string} [languageCode]
23429
23413
  * @param {boolean} [returnDefaultValue]
@@ -23441,7 +23425,6 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
23441
23425
  apiV1SpecialtytypesSpecialtyTypeIdDelete(specialtyTypeId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
23442
23426
  /**
23443
23427
  *
23444
- * @summary Get Department.
23445
23428
  * @param {string} specialtyTypeId
23446
23429
  * @param {string} [languageCode]
23447
23430
  * @param {boolean} [returnDefaultValue]
@@ -23564,7 +23547,6 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
23564
23547
  apiV1SpecialtytypesSimpleGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtyTypesSimpleModel>;
23565
23548
  /**
23566
23549
  *
23567
- * @summary Get Department by slug.
23568
23550
  * @param {string} slug
23569
23551
  * @param {string} [languageCode]
23570
23552
  * @param {boolean} [returnDefaultValue]
@@ -23582,7 +23564,6 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
23582
23564
  apiV1SpecialtytypesSpecialtyTypeIdDelete(specialtyTypeId: string, options?: any): AxiosPromise<boolean>;
23583
23565
  /**
23584
23566
  *
23585
- * @summary Get Department.
23586
23567
  * @param {string} specialtyTypeId
23587
23568
  * @param {string} [languageCode]
23588
23569
  * @param {boolean} [returnDefaultValue]
@@ -23710,7 +23691,6 @@ export declare class SpecialtyTypesApi extends BaseAPI {
23710
23691
  apiV1SpecialtytypesSimpleGet(id?: string, name?: string, description?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, specialtyTypeCategoryId?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypesSimpleModel>>;
23711
23692
  /**
23712
23693
  *
23713
- * @summary Get Department by slug.
23714
23694
  * @param {string} slug
23715
23695
  * @param {string} [languageCode]
23716
23696
  * @param {boolean} [returnDefaultValue]
@@ -23730,7 +23710,6 @@ export declare class SpecialtyTypesApi extends BaseAPI {
23730
23710
  apiV1SpecialtytypesSpecialtyTypeIdDelete(specialtyTypeId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
23731
23711
  /**
23732
23712
  *
23733
- * @summary Get Department.
23734
23713
  * @param {string} specialtyTypeId
23735
23714
  * @param {string} [languageCode]
23736
23715
  * @param {boolean} [returnDefaultValue]