ch-admin-api-client-typescript 2.5.9 → 2.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api.d.ts +28 -56
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +14 -51
- package/package.json +1 -1
- package/src/api.ts +34 -58
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}
|
|
@@ -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]
|
|
@@ -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]
|
|
@@ -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]
|
|
@@ -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]
|
|
@@ -18837,7 +18837,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18837
18837
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost: (hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18838
18838
|
/**
|
|
18839
18839
|
*
|
|
18840
|
-
* @summary Delete HospitalService
|
|
18841
18840
|
* @param {string} hospitalId
|
|
18842
18841
|
* @param {string} specialtyId
|
|
18843
18842
|
* @param {string} serviceId
|
|
@@ -18847,7 +18846,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18847
18846
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete: (hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18848
18847
|
/**
|
|
18849
18848
|
*
|
|
18850
|
-
* @summary Get HospitalService.
|
|
18851
18849
|
* @param {string} hospitalId
|
|
18852
18850
|
* @param {string} specialtyId
|
|
18853
18851
|
* @param {string} serviceId
|
|
@@ -18962,7 +18960,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18962
18960
|
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
18961
|
/**
|
|
18964
18962
|
*
|
|
18965
|
-
* @summary Get Hospital by slug.
|
|
18966
18963
|
* @param {string} slug
|
|
18967
18964
|
* @param {string} [languageCode]
|
|
18968
18965
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -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]
|
|
@@ -19885,7 +19879,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19885
19879
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost(hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
19886
19880
|
/**
|
|
19887
19881
|
*
|
|
19888
|
-
* @summary Delete HospitalService
|
|
19889
19882
|
* @param {string} hospitalId
|
|
19890
19883
|
* @param {string} specialtyId
|
|
19891
19884
|
* @param {string} serviceId
|
|
@@ -19895,7 +19888,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19895
19888
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete(hospitalId: string, specialtyId: string, serviceId: string, options?: any): AxiosPromise<boolean>;
|
|
19896
19889
|
/**
|
|
19897
19890
|
*
|
|
19898
|
-
* @summary Get HospitalService.
|
|
19899
19891
|
* @param {string} hospitalId
|
|
19900
19892
|
* @param {string} specialtyId
|
|
19901
19893
|
* @param {string} serviceId
|
|
@@ -20010,7 +20002,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
20010
20002
|
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
20003
|
/**
|
|
20012
20004
|
*
|
|
20013
|
-
* @summary Get Hospital by slug.
|
|
20014
20005
|
* @param {string} slug
|
|
20015
20006
|
* @param {string} [languageCode]
|
|
20016
20007
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -20445,7 +20436,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20445
20436
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost(hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
20446
20437
|
/**
|
|
20447
20438
|
*
|
|
20448
|
-
* @summary Delete HospitalService
|
|
20449
20439
|
* @param {string} hospitalId
|
|
20450
20440
|
* @param {string} specialtyId
|
|
20451
20441
|
* @param {string} serviceId
|
|
@@ -20456,7 +20446,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20456
20446
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete(hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
20457
20447
|
/**
|
|
20458
20448
|
*
|
|
20459
|
-
* @summary Get HospitalService.
|
|
20460
20449
|
* @param {string} hospitalId
|
|
20461
20450
|
* @param {string} specialtyId
|
|
20462
20451
|
* @param {string} serviceId
|
|
@@ -20580,7 +20569,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20580
20569
|
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
20570
|
/**
|
|
20582
20571
|
*
|
|
20583
|
-
* @summary Get Hospital by slug.
|
|
20584
20572
|
* @param {string} slug
|
|
20585
20573
|
* @param {string} [languageCode]
|
|
20586
20574
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22335,7 +22323,6 @@ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
22335
22323
|
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
22324
|
/**
|
|
22337
22325
|
*
|
|
22338
|
-
* @summary Get HospitalService.
|
|
22339
22326
|
* @param {string} serviceId
|
|
22340
22327
|
* @param {string} [languageCode]
|
|
22341
22328
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22345,7 +22332,6 @@ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
22345
22332
|
apiV1ServicesServiceIdGet: (serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22346
22333
|
/**
|
|
22347
22334
|
*
|
|
22348
|
-
* @summary Get HospitalService by slug.
|
|
22349
22335
|
* @param {string} slug
|
|
22350
22336
|
* @param {string} [languageCode]
|
|
22351
22337
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22387,7 +22373,6 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
|
|
|
22387
22373
|
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
22374
|
/**
|
|
22389
22375
|
*
|
|
22390
|
-
* @summary Get HospitalService.
|
|
22391
22376
|
* @param {string} serviceId
|
|
22392
22377
|
* @param {string} [languageCode]
|
|
22393
22378
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22397,7 +22382,6 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
|
|
|
22397
22382
|
apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
22398
22383
|
/**
|
|
22399
22384
|
*
|
|
22400
|
-
* @summary Get HospitalService by slug.
|
|
22401
22385
|
* @param {string} slug
|
|
22402
22386
|
* @param {string} [languageCode]
|
|
22403
22387
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22439,7 +22423,6 @@ export declare const ServicesApiFactory: (configuration?: Configuration | undefi
|
|
|
22439
22423
|
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
22424
|
/**
|
|
22441
22425
|
*
|
|
22442
|
-
* @summary Get HospitalService.
|
|
22443
22426
|
* @param {string} serviceId
|
|
22444
22427
|
* @param {string} [languageCode]
|
|
22445
22428
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22449,7 +22432,6 @@ export declare const ServicesApiFactory: (configuration?: Configuration | undefi
|
|
|
22449
22432
|
apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
22450
22433
|
/**
|
|
22451
22434
|
*
|
|
22452
|
-
* @summary Get HospitalService by slug.
|
|
22453
22435
|
* @param {string} slug
|
|
22454
22436
|
* @param {string} [languageCode]
|
|
22455
22437
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22494,7 +22476,6 @@ export declare class ServicesApi extends BaseAPI {
|
|
|
22494
22476
|
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
22477
|
/**
|
|
22496
22478
|
*
|
|
22497
|
-
* @summary Get HospitalService.
|
|
22498
22479
|
* @param {string} serviceId
|
|
22499
22480
|
* @param {string} [languageCode]
|
|
22500
22481
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22505,7 +22486,6 @@ export declare class ServicesApi extends BaseAPI {
|
|
|
22505
22486
|
apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
22506
22487
|
/**
|
|
22507
22488
|
*
|
|
22508
|
-
* @summary Get HospitalService by slug.
|
|
22509
22489
|
* @param {string} slug
|
|
22510
22490
|
* @param {string} [languageCode]
|
|
22511
22491
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22527,13 +22507,14 @@ export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Co
|
|
|
22527
22507
|
* @param {string} [name]
|
|
22528
22508
|
* @param {string} [description]
|
|
22529
22509
|
* @param {string} [languageCode]
|
|
22510
|
+
* @param {boolean} [returnDefaultValue]
|
|
22530
22511
|
* @param {number} [page]
|
|
22531
22512
|
* @param {number} [limit]
|
|
22532
22513
|
* @param {Date} [lastRetrieved]
|
|
22533
22514
|
* @param {*} [options] Override http request option.
|
|
22534
22515
|
* @throws {RequiredError}
|
|
22535
22516
|
*/
|
|
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>;
|
|
22517
|
+
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
22518
|
/**
|
|
22538
22519
|
*
|
|
22539
22520
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -22580,13 +22561,14 @@ export declare const ServicesCategoriesApiFp: (configuration?: Configuration | u
|
|
|
22580
22561
|
* @param {string} [name]
|
|
22581
22562
|
* @param {string} [description]
|
|
22582
22563
|
* @param {string} [languageCode]
|
|
22564
|
+
* @param {boolean} [returnDefaultValue]
|
|
22583
22565
|
* @param {number} [page]
|
|
22584
22566
|
* @param {number} [limit]
|
|
22585
22567
|
* @param {Date} [lastRetrieved]
|
|
22586
22568
|
* @param {*} [options] Override http request option.
|
|
22587
22569
|
* @throws {RequiredError}
|
|
22588
22570
|
*/
|
|
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>>;
|
|
22571
|
+
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
22572
|
/**
|
|
22591
22573
|
*
|
|
22592
22574
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -22633,13 +22615,14 @@ export declare const ServicesCategoriesApiFactory: (configuration?: Configuratio
|
|
|
22633
22615
|
* @param {string} [name]
|
|
22634
22616
|
* @param {string} [description]
|
|
22635
22617
|
* @param {string} [languageCode]
|
|
22618
|
+
* @param {boolean} [returnDefaultValue]
|
|
22636
22619
|
* @param {number} [page]
|
|
22637
22620
|
* @param {number} [limit]
|
|
22638
22621
|
* @param {Date} [lastRetrieved]
|
|
22639
22622
|
* @param {*} [options] Override http request option.
|
|
22640
22623
|
* @throws {RequiredError}
|
|
22641
22624
|
*/
|
|
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>;
|
|
22625
|
+
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
22626
|
/**
|
|
22644
22627
|
*
|
|
22645
22628
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -22688,6 +22671,7 @@ export declare class ServicesCategoriesApi extends BaseAPI {
|
|
|
22688
22671
|
* @param {string} [name]
|
|
22689
22672
|
* @param {string} [description]
|
|
22690
22673
|
* @param {string} [languageCode]
|
|
22674
|
+
* @param {boolean} [returnDefaultValue]
|
|
22691
22675
|
* @param {number} [page]
|
|
22692
22676
|
* @param {number} [limit]
|
|
22693
22677
|
* @param {Date} [lastRetrieved]
|
|
@@ -22695,7 +22679,7 @@ export declare class ServicesCategoriesApi extends BaseAPI {
|
|
|
22695
22679
|
* @throws {RequiredError}
|
|
22696
22680
|
* @memberof ServicesCategoriesApi
|
|
22697
22681
|
*/
|
|
22698
|
-
apiV1ServicescategoriesGet(id?: string, name?: string, description?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoriesModel>>;
|
|
22682
|
+
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
22683
|
/**
|
|
22700
22684
|
*
|
|
22701
22685
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -22768,7 +22752,6 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
22768
22752
|
apiV1SpecialtiesPost: (createSpecialtyCommand?: CreateSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22769
22753
|
/**
|
|
22770
22754
|
*
|
|
22771
|
-
* @summary Get Specialty by slug.
|
|
22772
22755
|
* @param {string} slug
|
|
22773
22756
|
* @param {string} [languageCode]
|
|
22774
22757
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22888,7 +22871,6 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
22888
22871
|
apiV1SpecialtiesPost(createSpecialtyCommand?: CreateSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyModel>>;
|
|
22889
22872
|
/**
|
|
22890
22873
|
*
|
|
22891
|
-
* @summary Get Specialty by slug.
|
|
22892
22874
|
* @param {string} slug
|
|
22893
22875
|
* @param {string} [languageCode]
|
|
22894
22876
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23008,7 +22990,6 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
23008
22990
|
apiV1SpecialtiesPost(createSpecialtyCommand?: CreateSpecialtyCommand | undefined, options?: any): AxiosPromise<SpecialtyModel>;
|
|
23009
22991
|
/**
|
|
23010
22992
|
*
|
|
23011
|
-
* @summary Get Specialty by slug.
|
|
23012
22993
|
* @param {string} slug
|
|
23013
22994
|
* @param {string} [languageCode]
|
|
23014
22995
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23132,7 +23113,6 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
23132
23113
|
apiV1SpecialtiesPost(createSpecialtyCommand?: CreateSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyModel>>;
|
|
23133
23114
|
/**
|
|
23134
23115
|
*
|
|
23135
|
-
* @summary Get Specialty by slug.
|
|
23136
23116
|
* @param {string} slug
|
|
23137
23117
|
* @param {string} [languageCode]
|
|
23138
23118
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23282,7 +23262,6 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
23282
23262
|
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
23263
|
/**
|
|
23284
23264
|
*
|
|
23285
|
-
* @summary Get Department by slug.
|
|
23286
23265
|
* @param {string} slug
|
|
23287
23266
|
* @param {string} [languageCode]
|
|
23288
23267
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23300,7 +23279,6 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
23300
23279
|
apiV1SpecialtytypesSpecialtyTypeIdDelete: (specialtyTypeId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23301
23280
|
/**
|
|
23302
23281
|
*
|
|
23303
|
-
* @summary Get Department.
|
|
23304
23282
|
* @param {string} specialtyTypeId
|
|
23305
23283
|
* @param {string} [languageCode]
|
|
23306
23284
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23423,7 +23401,6 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
|
|
|
23423
23401
|
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
23402
|
/**
|
|
23425
23403
|
*
|
|
23426
|
-
* @summary Get Department by slug.
|
|
23427
23404
|
* @param {string} slug
|
|
23428
23405
|
* @param {string} [languageCode]
|
|
23429
23406
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23441,7 +23418,6 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
|
|
|
23441
23418
|
apiV1SpecialtytypesSpecialtyTypeIdDelete(specialtyTypeId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
23442
23419
|
/**
|
|
23443
23420
|
*
|
|
23444
|
-
* @summary Get Department.
|
|
23445
23421
|
* @param {string} specialtyTypeId
|
|
23446
23422
|
* @param {string} [languageCode]
|
|
23447
23423
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23564,7 +23540,6 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
|
|
|
23564
23540
|
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
23541
|
/**
|
|
23566
23542
|
*
|
|
23567
|
-
* @summary Get Department by slug.
|
|
23568
23543
|
* @param {string} slug
|
|
23569
23544
|
* @param {string} [languageCode]
|
|
23570
23545
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23582,7 +23557,6 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
|
|
|
23582
23557
|
apiV1SpecialtytypesSpecialtyTypeIdDelete(specialtyTypeId: string, options?: any): AxiosPromise<boolean>;
|
|
23583
23558
|
/**
|
|
23584
23559
|
*
|
|
23585
|
-
* @summary Get Department.
|
|
23586
23560
|
* @param {string} specialtyTypeId
|
|
23587
23561
|
* @param {string} [languageCode]
|
|
23588
23562
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23710,7 +23684,6 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
23710
23684
|
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
23685
|
/**
|
|
23712
23686
|
*
|
|
23713
|
-
* @summary Get Department by slug.
|
|
23714
23687
|
* @param {string} slug
|
|
23715
23688
|
* @param {string} [languageCode]
|
|
23716
23689
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23730,7 +23703,6 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
23730
23703
|
apiV1SpecialtytypesSpecialtyTypeIdDelete(specialtyTypeId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
23731
23704
|
/**
|
|
23732
23705
|
*
|
|
23733
|
-
* @summary Get Department.
|
|
23734
23706
|
* @param {string} specialtyTypeId
|
|
23735
23707
|
* @param {string} [languageCode]
|
|
23736
23708
|
* @param {boolean} [returnDefaultValue]
|