ch-admin-api-client-typescript 2.6.0 → 2.6.5
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 +69 -60
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +115 -60
- package/package.json +1 -1
- package/src/api.ts +121 -67
package/lib/api.d.ts
CHANGED
|
@@ -3300,10 +3300,10 @@ export interface CreateCountryCommand {
|
|
|
3300
3300
|
'content'?: string | null;
|
|
3301
3301
|
/**
|
|
3302
3302
|
*
|
|
3303
|
-
* @type {
|
|
3303
|
+
* @type {string}
|
|
3304
3304
|
* @memberof CreateCountryCommand
|
|
3305
3305
|
*/
|
|
3306
|
-
'
|
|
3306
|
+
'logo'?: string | null;
|
|
3307
3307
|
}
|
|
3308
3308
|
/**
|
|
3309
3309
|
*
|
|
@@ -8996,6 +8996,12 @@ export interface ServiceCategoryModel {
|
|
|
8996
8996
|
* @memberof ServiceCategoryModel
|
|
8997
8997
|
*/
|
|
8998
8998
|
'services'?: Array<HospitalServiceItemModel> | null;
|
|
8999
|
+
/**
|
|
9000
|
+
*
|
|
9001
|
+
* @type {string}
|
|
9002
|
+
* @memberof ServiceCategoryModel
|
|
9003
|
+
*/
|
|
9004
|
+
'languageCode'?: string | null;
|
|
8999
9005
|
}
|
|
9000
9006
|
/**
|
|
9001
9007
|
*
|
|
@@ -10138,6 +10144,12 @@ export interface UpdateCountryCommand {
|
|
|
10138
10144
|
* @memberof UpdateCountryCommand
|
|
10139
10145
|
*/
|
|
10140
10146
|
'slug'?: string | null;
|
|
10147
|
+
/**
|
|
10148
|
+
*
|
|
10149
|
+
* @type {string}
|
|
10150
|
+
* @memberof UpdateCountryCommand
|
|
10151
|
+
*/
|
|
10152
|
+
'logo'?: string | null;
|
|
10141
10153
|
/**
|
|
10142
10154
|
*
|
|
10143
10155
|
* @type {string}
|
|
@@ -10774,19 +10786,19 @@ export interface UpdateHospitalServiceCommand {
|
|
|
10774
10786
|
* @type {number}
|
|
10775
10787
|
* @memberof UpdateHospitalServiceCommand
|
|
10776
10788
|
*/
|
|
10777
|
-
'minPrice'?: number;
|
|
10789
|
+
'minPrice'?: number | null;
|
|
10778
10790
|
/**
|
|
10779
10791
|
*
|
|
10780
10792
|
* @type {number}
|
|
10781
10793
|
* @memberof UpdateHospitalServiceCommand
|
|
10782
10794
|
*/
|
|
10783
|
-
'maxPrice'?: number;
|
|
10795
|
+
'maxPrice'?: number | null;
|
|
10784
10796
|
/**
|
|
10785
10797
|
*
|
|
10786
10798
|
* @type {boolean}
|
|
10787
10799
|
* @memberof UpdateHospitalServiceCommand
|
|
10788
10800
|
*/
|
|
10789
|
-
'priceReuqest'?: boolean;
|
|
10801
|
+
'priceReuqest'?: boolean | null;
|
|
10790
10802
|
/**
|
|
10791
10803
|
*
|
|
10792
10804
|
* @type {Procedure}
|
|
@@ -14761,7 +14773,7 @@ export declare const CountriesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14761
14773
|
* @param {*} [options] Override http request option.
|
|
14762
14774
|
* @throws {RequiredError}
|
|
14763
14775
|
*/
|
|
14764
|
-
|
|
14776
|
+
apiV1CountriesCountryIdReactivePut: (countryId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14765
14777
|
/**
|
|
14766
14778
|
*
|
|
14767
14779
|
* @summary Get all countries.
|
|
@@ -14789,7 +14801,6 @@ export declare const CountriesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14789
14801
|
apiV1CountriesPost: (createCountryCommand?: CreateCountryCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14790
14802
|
/**
|
|
14791
14803
|
*
|
|
14792
|
-
* @summary Get country by slug.
|
|
14793
14804
|
* @param {string} slug
|
|
14794
14805
|
* @param {string} [languageCode]
|
|
14795
14806
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -14887,7 +14898,7 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
|
|
|
14887
14898
|
* @param {*} [options] Override http request option.
|
|
14888
14899
|
* @throws {RequiredError}
|
|
14889
14900
|
*/
|
|
14890
|
-
|
|
14901
|
+
apiV1CountriesCountryIdReactivePut(countryId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
14891
14902
|
/**
|
|
14892
14903
|
*
|
|
14893
14904
|
* @summary Get all countries.
|
|
@@ -14915,7 +14926,6 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
|
|
|
14915
14926
|
apiV1CountriesPost(createCountryCommand?: CreateCountryCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CountryModel>>;
|
|
14916
14927
|
/**
|
|
14917
14928
|
*
|
|
14918
|
-
* @summary Get country by slug.
|
|
14919
14929
|
* @param {string} slug
|
|
14920
14930
|
* @param {string} [languageCode]
|
|
14921
14931
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -15013,7 +15023,7 @@ export declare const CountriesApiFactory: (configuration?: Configuration | undef
|
|
|
15013
15023
|
* @param {*} [options] Override http request option.
|
|
15014
15024
|
* @throws {RequiredError}
|
|
15015
15025
|
*/
|
|
15016
|
-
|
|
15026
|
+
apiV1CountriesCountryIdReactivePut(countryId: string, options?: any): AxiosPromise<boolean>;
|
|
15017
15027
|
/**
|
|
15018
15028
|
*
|
|
15019
15029
|
* @summary Get all countries.
|
|
@@ -15041,7 +15051,6 @@ export declare const CountriesApiFactory: (configuration?: Configuration | undef
|
|
|
15041
15051
|
apiV1CountriesPost(createCountryCommand?: CreateCountryCommand | undefined, options?: any): AxiosPromise<CountryModel>;
|
|
15042
15052
|
/**
|
|
15043
15053
|
*
|
|
15044
|
-
* @summary Get country by slug.
|
|
15045
15054
|
* @param {string} slug
|
|
15046
15055
|
* @param {string} [languageCode]
|
|
15047
15056
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -15150,7 +15159,7 @@ export declare class CountriesApi extends BaseAPI {
|
|
|
15150
15159
|
* @throws {RequiredError}
|
|
15151
15160
|
* @memberof CountriesApi
|
|
15152
15161
|
*/
|
|
15153
|
-
|
|
15162
|
+
apiV1CountriesCountryIdReactivePut(countryId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
15154
15163
|
/**
|
|
15155
15164
|
*
|
|
15156
15165
|
* @summary Get all countries.
|
|
@@ -15180,7 +15189,6 @@ export declare class CountriesApi extends BaseAPI {
|
|
|
15180
15189
|
apiV1CountriesPost(createCountryCommand?: CreateCountryCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountryModel>>;
|
|
15181
15190
|
/**
|
|
15182
15191
|
*
|
|
15183
|
-
* @summary Get country by slug.
|
|
15184
15192
|
* @param {string} slug
|
|
15185
15193
|
* @param {string} [languageCode]
|
|
15186
15194
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -16075,7 +16083,6 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16075
16083
|
apiV1DoctorsDoctorIdEducationsPost: (doctorId: string, createDoctorEducationCommand?: CreateDoctorEducationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16076
16084
|
/**
|
|
16077
16085
|
*
|
|
16078
|
-
* @summary Get Doctor.
|
|
16079
16086
|
* @param {string} doctorId
|
|
16080
16087
|
* @param {string} [languageCode]
|
|
16081
16088
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -16274,7 +16281,6 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16274
16281
|
apiV1DoctorsPost: (createDoctorCommand?: CreateDoctorCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16275
16282
|
/**
|
|
16276
16283
|
*
|
|
16277
|
-
* @summary Get Doctor by slug.
|
|
16278
16284
|
* @param {string} slug
|
|
16279
16285
|
* @param {string} [languageCode]
|
|
16280
16286
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -16325,7 +16331,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16325
16331
|
* @param {*} [options] Override http request option.
|
|
16326
16332
|
* @throws {RequiredError}
|
|
16327
16333
|
*/
|
|
16328
|
-
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<
|
|
16334
|
+
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationModel>>;
|
|
16329
16335
|
/**
|
|
16330
16336
|
*
|
|
16331
16337
|
* @summary Delete DoctorCertificate.
|
|
@@ -16442,7 +16448,6 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16442
16448
|
apiV1DoctorsDoctorIdEducationsPost(doctorId: string, createDoctorEducationCommand?: CreateDoctorEducationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorEducationModel>>;
|
|
16443
16449
|
/**
|
|
16444
16450
|
*
|
|
16445
|
-
* @summary Get Doctor.
|
|
16446
16451
|
* @param {string} doctorId
|
|
16447
16452
|
* @param {string} [languageCode]
|
|
16448
16453
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -16641,7 +16646,6 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16641
16646
|
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
16642
16647
|
/**
|
|
16643
16648
|
*
|
|
16644
|
-
* @summary Get Doctor by slug.
|
|
16645
16649
|
* @param {string} slug
|
|
16646
16650
|
* @param {string} [languageCode]
|
|
16647
16651
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -16692,7 +16696,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16692
16696
|
* @param {*} [options] Override http request option.
|
|
16693
16697
|
* @throws {RequiredError}
|
|
16694
16698
|
*/
|
|
16695
|
-
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: any): AxiosPromise<
|
|
16699
|
+
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: any): AxiosPromise<DoctorAffiliationModel>;
|
|
16696
16700
|
/**
|
|
16697
16701
|
*
|
|
16698
16702
|
* @summary Delete DoctorCertificate.
|
|
@@ -16809,7 +16813,6 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16809
16813
|
apiV1DoctorsDoctorIdEducationsPost(doctorId: string, createDoctorEducationCommand?: CreateDoctorEducationCommand | undefined, options?: any): AxiosPromise<DoctorEducationModel>;
|
|
16810
16814
|
/**
|
|
16811
16815
|
*
|
|
16812
|
-
* @summary Get Doctor.
|
|
16813
16816
|
* @param {string} doctorId
|
|
16814
16817
|
* @param {string} [languageCode]
|
|
16815
16818
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -17008,7 +17011,6 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
17008
17011
|
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
17009
17012
|
/**
|
|
17010
17013
|
*
|
|
17011
|
-
* @summary Get Doctor by slug.
|
|
17012
17014
|
* @param {string} slug
|
|
17013
17015
|
* @param {string} [languageCode]
|
|
17014
17016
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -17065,7 +17067,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17065
17067
|
* @throws {RequiredError}
|
|
17066
17068
|
* @memberof DoctorsApi
|
|
17067
17069
|
*/
|
|
17068
|
-
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
17070
|
+
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationModel>>;
|
|
17069
17071
|
/**
|
|
17070
17072
|
*
|
|
17071
17073
|
* @summary Delete DoctorCertificate.
|
|
@@ -17193,7 +17195,6 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17193
17195
|
apiV1DoctorsDoctorIdEducationsPost(doctorId: string, createDoctorEducationCommand?: CreateDoctorEducationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorEducationModel>>;
|
|
17194
17196
|
/**
|
|
17195
17197
|
*
|
|
17196
|
-
* @summary Get Doctor.
|
|
17197
17198
|
* @param {string} doctorId
|
|
17198
17199
|
* @param {string} [languageCode]
|
|
17199
17200
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -17411,7 +17412,6 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17411
17412
|
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
17412
17413
|
/**
|
|
17413
17414
|
*
|
|
17414
|
-
* @summary Get Doctor by slug.
|
|
17415
17415
|
* @param {string} slug
|
|
17416
17416
|
* @param {string} [languageCode]
|
|
17417
17417
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -18608,6 +18608,15 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18608
18608
|
* @throws {RequiredError}
|
|
18609
18609
|
*/
|
|
18610
18610
|
apiV1HospitalsHospitalIdEquipmentsEquipmentIdPut: (hospitalId: string, equipmentId: string, updateHospitalEquipmentCommand?: UpdateHospitalEquipmentCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18611
|
+
/**
|
|
18612
|
+
*
|
|
18613
|
+
* @summary Reactivate HospitalEquipment.
|
|
18614
|
+
* @param {string} hospitalId
|
|
18615
|
+
* @param {string} equipmentId
|
|
18616
|
+
* @param {*} [options] Override http request option.
|
|
18617
|
+
* @throws {RequiredError}
|
|
18618
|
+
*/
|
|
18619
|
+
apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivePut: (hospitalId: string, equipmentId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18611
18620
|
/**
|
|
18612
18621
|
*
|
|
18613
18622
|
* @summary Get all HospitalEquipments.
|
|
@@ -18837,7 +18846,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18837
18846
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost: (hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18838
18847
|
/**
|
|
18839
18848
|
*
|
|
18840
|
-
* @summary Delete HospitalService
|
|
18841
18849
|
* @param {string} hospitalId
|
|
18842
18850
|
* @param {string} specialtyId
|
|
18843
18851
|
* @param {string} serviceId
|
|
@@ -18847,7 +18855,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18847
18855
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete: (hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18848
18856
|
/**
|
|
18849
18857
|
*
|
|
18850
|
-
* @summary Get HospitalService.
|
|
18851
18858
|
* @param {string} hospitalId
|
|
18852
18859
|
* @param {string} specialtyId
|
|
18853
18860
|
* @param {string} serviceId
|
|
@@ -18962,7 +18969,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18962
18969
|
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
18970
|
/**
|
|
18964
18971
|
*
|
|
18965
|
-
* @summary Get Hospital by slug.
|
|
18966
18972
|
* @param {string} slug
|
|
18967
18973
|
* @param {string} [languageCode]
|
|
18968
18974
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -19132,6 +19138,15 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19132
19138
|
* @throws {RequiredError}
|
|
19133
19139
|
*/
|
|
19134
19140
|
apiV1HospitalsHospitalIdEquipmentsEquipmentIdPut(hospitalId: string, equipmentId: string, updateHospitalEquipmentCommand?: UpdateHospitalEquipmentCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalEquipmentModel>>;
|
|
19141
|
+
/**
|
|
19142
|
+
*
|
|
19143
|
+
* @summary Reactivate HospitalEquipment.
|
|
19144
|
+
* @param {string} hospitalId
|
|
19145
|
+
* @param {string} equipmentId
|
|
19146
|
+
* @param {*} [options] Override http request option.
|
|
19147
|
+
* @throws {RequiredError}
|
|
19148
|
+
*/
|
|
19149
|
+
apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivePut(hospitalId: string, equipmentId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
19135
19150
|
/**
|
|
19136
19151
|
*
|
|
19137
19152
|
* @summary Get all HospitalEquipments.
|
|
@@ -19361,7 +19376,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19361
19376
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost(hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
19362
19377
|
/**
|
|
19363
19378
|
*
|
|
19364
|
-
* @summary Delete HospitalService
|
|
19365
19379
|
* @param {string} hospitalId
|
|
19366
19380
|
* @param {string} specialtyId
|
|
19367
19381
|
* @param {string} serviceId
|
|
@@ -19371,7 +19385,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19371
19385
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete(hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
19372
19386
|
/**
|
|
19373
19387
|
*
|
|
19374
|
-
* @summary Get HospitalService.
|
|
19375
19388
|
* @param {string} hospitalId
|
|
19376
19389
|
* @param {string} specialtyId
|
|
19377
19390
|
* @param {string} serviceId
|
|
@@ -19486,7 +19499,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19486
19499
|
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
19500
|
/**
|
|
19488
19501
|
*
|
|
19489
|
-
* @summary Get Hospital by slug.
|
|
19490
19502
|
* @param {string} slug
|
|
19491
19503
|
* @param {string} [languageCode]
|
|
19492
19504
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -19656,6 +19668,15 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19656
19668
|
* @throws {RequiredError}
|
|
19657
19669
|
*/
|
|
19658
19670
|
apiV1HospitalsHospitalIdEquipmentsEquipmentIdPut(hospitalId: string, equipmentId: string, updateHospitalEquipmentCommand?: UpdateHospitalEquipmentCommand | undefined, options?: any): AxiosPromise<HospitalEquipmentModel>;
|
|
19671
|
+
/**
|
|
19672
|
+
*
|
|
19673
|
+
* @summary Reactivate HospitalEquipment.
|
|
19674
|
+
* @param {string} hospitalId
|
|
19675
|
+
* @param {string} equipmentId
|
|
19676
|
+
* @param {*} [options] Override http request option.
|
|
19677
|
+
* @throws {RequiredError}
|
|
19678
|
+
*/
|
|
19679
|
+
apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivePut(hospitalId: string, equipmentId: string, options?: any): AxiosPromise<boolean>;
|
|
19659
19680
|
/**
|
|
19660
19681
|
*
|
|
19661
19682
|
* @summary Get all HospitalEquipments.
|
|
@@ -19885,7 +19906,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19885
19906
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost(hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
19886
19907
|
/**
|
|
19887
19908
|
*
|
|
19888
|
-
* @summary Delete HospitalService
|
|
19889
19909
|
* @param {string} hospitalId
|
|
19890
19910
|
* @param {string} specialtyId
|
|
19891
19911
|
* @param {string} serviceId
|
|
@@ -19895,7 +19915,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19895
19915
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete(hospitalId: string, specialtyId: string, serviceId: string, options?: any): AxiosPromise<boolean>;
|
|
19896
19916
|
/**
|
|
19897
19917
|
*
|
|
19898
|
-
* @summary Get HospitalService.
|
|
19899
19918
|
* @param {string} hospitalId
|
|
19900
19919
|
* @param {string} specialtyId
|
|
19901
19920
|
* @param {string} serviceId
|
|
@@ -20010,7 +20029,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
20010
20029
|
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
20030
|
/**
|
|
20012
20031
|
*
|
|
20013
|
-
* @summary Get Hospital by slug.
|
|
20014
20032
|
* @param {string} slug
|
|
20015
20033
|
* @param {string} [languageCode]
|
|
20016
20034
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -20196,6 +20214,16 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20196
20214
|
* @memberof HospitalsApi
|
|
20197
20215
|
*/
|
|
20198
20216
|
apiV1HospitalsHospitalIdEquipmentsEquipmentIdPut(hospitalId: string, equipmentId: string, updateHospitalEquipmentCommand?: UpdateHospitalEquipmentCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalEquipmentModel>>;
|
|
20217
|
+
/**
|
|
20218
|
+
*
|
|
20219
|
+
* @summary Reactivate HospitalEquipment.
|
|
20220
|
+
* @param {string} hospitalId
|
|
20221
|
+
* @param {string} equipmentId
|
|
20222
|
+
* @param {*} [options] Override http request option.
|
|
20223
|
+
* @throws {RequiredError}
|
|
20224
|
+
* @memberof HospitalsApi
|
|
20225
|
+
*/
|
|
20226
|
+
apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivePut(hospitalId: string, equipmentId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
20199
20227
|
/**
|
|
20200
20228
|
*
|
|
20201
20229
|
* @summary Get all HospitalEquipments.
|
|
@@ -20445,7 +20473,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20445
20473
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost(hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
20446
20474
|
/**
|
|
20447
20475
|
*
|
|
20448
|
-
* @summary Delete HospitalService
|
|
20449
20476
|
* @param {string} hospitalId
|
|
20450
20477
|
* @param {string} specialtyId
|
|
20451
20478
|
* @param {string} serviceId
|
|
@@ -20456,7 +20483,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20456
20483
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete(hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
20457
20484
|
/**
|
|
20458
20485
|
*
|
|
20459
|
-
* @summary Get HospitalService.
|
|
20460
20486
|
* @param {string} hospitalId
|
|
20461
20487
|
* @param {string} specialtyId
|
|
20462
20488
|
* @param {string} serviceId
|
|
@@ -20580,7 +20606,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20580
20606
|
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
20607
|
/**
|
|
20582
20608
|
*
|
|
20583
|
-
* @summary Get Hospital by slug.
|
|
20584
20609
|
* @param {string} slug
|
|
20585
20610
|
* @param {string} [languageCode]
|
|
20586
20611
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22335,7 +22360,6 @@ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
22335
22360
|
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
22361
|
/**
|
|
22337
22362
|
*
|
|
22338
|
-
* @summary Get HospitalService.
|
|
22339
22363
|
* @param {string} serviceId
|
|
22340
22364
|
* @param {string} [languageCode]
|
|
22341
22365
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22345,7 +22369,6 @@ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
22345
22369
|
apiV1ServicesServiceIdGet: (serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22346
22370
|
/**
|
|
22347
22371
|
*
|
|
22348
|
-
* @summary Get HospitalService by slug.
|
|
22349
22372
|
* @param {string} slug
|
|
22350
22373
|
* @param {string} [languageCode]
|
|
22351
22374
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22387,7 +22410,6 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
|
|
|
22387
22410
|
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
22411
|
/**
|
|
22389
22412
|
*
|
|
22390
|
-
* @summary Get HospitalService.
|
|
22391
22413
|
* @param {string} serviceId
|
|
22392
22414
|
* @param {string} [languageCode]
|
|
22393
22415
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22397,7 +22419,6 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
|
|
|
22397
22419
|
apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
22398
22420
|
/**
|
|
22399
22421
|
*
|
|
22400
|
-
* @summary Get HospitalService by slug.
|
|
22401
22422
|
* @param {string} slug
|
|
22402
22423
|
* @param {string} [languageCode]
|
|
22403
22424
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22439,7 +22460,6 @@ export declare const ServicesApiFactory: (configuration?: Configuration | undefi
|
|
|
22439
22460
|
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
22461
|
/**
|
|
22441
22462
|
*
|
|
22442
|
-
* @summary Get HospitalService.
|
|
22443
22463
|
* @param {string} serviceId
|
|
22444
22464
|
* @param {string} [languageCode]
|
|
22445
22465
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22449,7 +22469,6 @@ export declare const ServicesApiFactory: (configuration?: Configuration | undefi
|
|
|
22449
22469
|
apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
22450
22470
|
/**
|
|
22451
22471
|
*
|
|
22452
|
-
* @summary Get HospitalService by slug.
|
|
22453
22472
|
* @param {string} slug
|
|
22454
22473
|
* @param {string} [languageCode]
|
|
22455
22474
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22494,7 +22513,6 @@ export declare class ServicesApi extends BaseAPI {
|
|
|
22494
22513
|
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
22514
|
/**
|
|
22496
22515
|
*
|
|
22497
|
-
* @summary Get HospitalService.
|
|
22498
22516
|
* @param {string} serviceId
|
|
22499
22517
|
* @param {string} [languageCode]
|
|
22500
22518
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22505,7 +22523,6 @@ export declare class ServicesApi extends BaseAPI {
|
|
|
22505
22523
|
apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
22506
22524
|
/**
|
|
22507
22525
|
*
|
|
22508
|
-
* @summary Get HospitalService by slug.
|
|
22509
22526
|
* @param {string} slug
|
|
22510
22527
|
* @param {string} [languageCode]
|
|
22511
22528
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22527,13 +22544,14 @@ export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Co
|
|
|
22527
22544
|
* @param {string} [name]
|
|
22528
22545
|
* @param {string} [description]
|
|
22529
22546
|
* @param {string} [languageCode]
|
|
22547
|
+
* @param {boolean} [returnDefaultValue]
|
|
22530
22548
|
* @param {number} [page]
|
|
22531
22549
|
* @param {number} [limit]
|
|
22532
22550
|
* @param {Date} [lastRetrieved]
|
|
22533
22551
|
* @param {*} [options] Override http request option.
|
|
22534
22552
|
* @throws {RequiredError}
|
|
22535
22553
|
*/
|
|
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>;
|
|
22554
|
+
apiV1ServicescategoriesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22537
22555
|
/**
|
|
22538
22556
|
*
|
|
22539
22557
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -22580,13 +22598,14 @@ export declare const ServicesCategoriesApiFp: (configuration?: Configuration | u
|
|
|
22580
22598
|
* @param {string} [name]
|
|
22581
22599
|
* @param {string} [description]
|
|
22582
22600
|
* @param {string} [languageCode]
|
|
22601
|
+
* @param {boolean} [returnDefaultValue]
|
|
22583
22602
|
* @param {number} [page]
|
|
22584
22603
|
* @param {number} [limit]
|
|
22585
22604
|
* @param {Date} [lastRetrieved]
|
|
22586
22605
|
* @param {*} [options] Override http request option.
|
|
22587
22606
|
* @throws {RequiredError}
|
|
22588
22607
|
*/
|
|
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>>;
|
|
22608
|
+
apiV1ServicescategoriesGet(id?: string | undefined, name?: string | undefined, description?: string | 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<ServiceCategoriesModel>>;
|
|
22590
22609
|
/**
|
|
22591
22610
|
*
|
|
22592
22611
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -22633,13 +22652,14 @@ export declare const ServicesCategoriesApiFactory: (configuration?: Configuratio
|
|
|
22633
22652
|
* @param {string} [name]
|
|
22634
22653
|
* @param {string} [description]
|
|
22635
22654
|
* @param {string} [languageCode]
|
|
22655
|
+
* @param {boolean} [returnDefaultValue]
|
|
22636
22656
|
* @param {number} [page]
|
|
22637
22657
|
* @param {number} [limit]
|
|
22638
22658
|
* @param {Date} [lastRetrieved]
|
|
22639
22659
|
* @param {*} [options] Override http request option.
|
|
22640
22660
|
* @throws {RequiredError}
|
|
22641
22661
|
*/
|
|
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>;
|
|
22662
|
+
apiV1ServicescategoriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceCategoriesModel>;
|
|
22643
22663
|
/**
|
|
22644
22664
|
*
|
|
22645
22665
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -22688,6 +22708,7 @@ export declare class ServicesCategoriesApi extends BaseAPI {
|
|
|
22688
22708
|
* @param {string} [name]
|
|
22689
22709
|
* @param {string} [description]
|
|
22690
22710
|
* @param {string} [languageCode]
|
|
22711
|
+
* @param {boolean} [returnDefaultValue]
|
|
22691
22712
|
* @param {number} [page]
|
|
22692
22713
|
* @param {number} [limit]
|
|
22693
22714
|
* @param {Date} [lastRetrieved]
|
|
@@ -22695,7 +22716,7 @@ export declare class ServicesCategoriesApi extends BaseAPI {
|
|
|
22695
22716
|
* @throws {RequiredError}
|
|
22696
22717
|
* @memberof ServicesCategoriesApi
|
|
22697
22718
|
*/
|
|
22698
|
-
apiV1ServicescategoriesGet(id?: string, name?: string, description?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoriesModel>>;
|
|
22719
|
+
apiV1ServicescategoriesGet(id?: string, name?: string, description?: string, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoriesModel>>;
|
|
22699
22720
|
/**
|
|
22700
22721
|
*
|
|
22701
22722
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -22768,7 +22789,6 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
22768
22789
|
apiV1SpecialtiesPost: (createSpecialtyCommand?: CreateSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22769
22790
|
/**
|
|
22770
22791
|
*
|
|
22771
|
-
* @summary Get Specialty by slug.
|
|
22772
22792
|
* @param {string} slug
|
|
22773
22793
|
* @param {string} [languageCode]
|
|
22774
22794
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22888,7 +22908,6 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
22888
22908
|
apiV1SpecialtiesPost(createSpecialtyCommand?: CreateSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyModel>>;
|
|
22889
22909
|
/**
|
|
22890
22910
|
*
|
|
22891
|
-
* @summary Get Specialty by slug.
|
|
22892
22911
|
* @param {string} slug
|
|
22893
22912
|
* @param {string} [languageCode]
|
|
22894
22913
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23008,7 +23027,6 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
23008
23027
|
apiV1SpecialtiesPost(createSpecialtyCommand?: CreateSpecialtyCommand | undefined, options?: any): AxiosPromise<SpecialtyModel>;
|
|
23009
23028
|
/**
|
|
23010
23029
|
*
|
|
23011
|
-
* @summary Get Specialty by slug.
|
|
23012
23030
|
* @param {string} slug
|
|
23013
23031
|
* @param {string} [languageCode]
|
|
23014
23032
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23132,7 +23150,6 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
23132
23150
|
apiV1SpecialtiesPost(createSpecialtyCommand?: CreateSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyModel>>;
|
|
23133
23151
|
/**
|
|
23134
23152
|
*
|
|
23135
|
-
* @summary Get Specialty by slug.
|
|
23136
23153
|
* @param {string} slug
|
|
23137
23154
|
* @param {string} [languageCode]
|
|
23138
23155
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23282,7 +23299,6 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
23282
23299
|
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
23300
|
/**
|
|
23284
23301
|
*
|
|
23285
|
-
* @summary Get Department by slug.
|
|
23286
23302
|
* @param {string} slug
|
|
23287
23303
|
* @param {string} [languageCode]
|
|
23288
23304
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23300,7 +23316,6 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
23300
23316
|
apiV1SpecialtytypesSpecialtyTypeIdDelete: (specialtyTypeId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23301
23317
|
/**
|
|
23302
23318
|
*
|
|
23303
|
-
* @summary Get Department.
|
|
23304
23319
|
* @param {string} specialtyTypeId
|
|
23305
23320
|
* @param {string} [languageCode]
|
|
23306
23321
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23423,7 +23438,6 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
|
|
|
23423
23438
|
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
23439
|
/**
|
|
23425
23440
|
*
|
|
23426
|
-
* @summary Get Department by slug.
|
|
23427
23441
|
* @param {string} slug
|
|
23428
23442
|
* @param {string} [languageCode]
|
|
23429
23443
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23441,7 +23455,6 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
|
|
|
23441
23455
|
apiV1SpecialtytypesSpecialtyTypeIdDelete(specialtyTypeId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
23442
23456
|
/**
|
|
23443
23457
|
*
|
|
23444
|
-
* @summary Get Department.
|
|
23445
23458
|
* @param {string} specialtyTypeId
|
|
23446
23459
|
* @param {string} [languageCode]
|
|
23447
23460
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23564,7 +23577,6 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
|
|
|
23564
23577
|
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
23578
|
/**
|
|
23566
23579
|
*
|
|
23567
|
-
* @summary Get Department by slug.
|
|
23568
23580
|
* @param {string} slug
|
|
23569
23581
|
* @param {string} [languageCode]
|
|
23570
23582
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23582,7 +23594,6 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
|
|
|
23582
23594
|
apiV1SpecialtytypesSpecialtyTypeIdDelete(specialtyTypeId: string, options?: any): AxiosPromise<boolean>;
|
|
23583
23595
|
/**
|
|
23584
23596
|
*
|
|
23585
|
-
* @summary Get Department.
|
|
23586
23597
|
* @param {string} specialtyTypeId
|
|
23587
23598
|
* @param {string} [languageCode]
|
|
23588
23599
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23710,7 +23721,6 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
23710
23721
|
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
23722
|
/**
|
|
23712
23723
|
*
|
|
23713
|
-
* @summary Get Department by slug.
|
|
23714
23724
|
* @param {string} slug
|
|
23715
23725
|
* @param {string} [languageCode]
|
|
23716
23726
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23730,7 +23740,6 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
23730
23740
|
apiV1SpecialtytypesSpecialtyTypeIdDelete(specialtyTypeId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
23731
23741
|
/**
|
|
23732
23742
|
*
|
|
23733
|
-
* @summary Get Department.
|
|
23734
23743
|
* @param {string} specialtyTypeId
|
|
23735
23744
|
* @param {string} [languageCode]
|
|
23736
23745
|
* @param {boolean} [returnDefaultValue]
|