ch-api-client-typescript2 3.1.2 → 3.1.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 +231 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +364 -0
- package/package.json +1 -1
- package/src/api.ts +413 -0
package/lib/api.d.ts
CHANGED
|
@@ -8920,6 +8920,25 @@ export interface SpecialtiesModel {
|
|
|
8920
8920
|
*/
|
|
8921
8921
|
'metaData'?: PagedListMetaData;
|
|
8922
8922
|
}
|
|
8923
|
+
/**
|
|
8924
|
+
*
|
|
8925
|
+
* @export
|
|
8926
|
+
* @interface SpecialtiesSimpleModel
|
|
8927
|
+
*/
|
|
8928
|
+
export interface SpecialtiesSimpleModel {
|
|
8929
|
+
/**
|
|
8930
|
+
*
|
|
8931
|
+
* @type {Array<SpecialtyItemSimpleModel>}
|
|
8932
|
+
* @memberof SpecialtiesSimpleModel
|
|
8933
|
+
*/
|
|
8934
|
+
'items'?: Array<SpecialtyItemSimpleModel> | null;
|
|
8935
|
+
/**
|
|
8936
|
+
*
|
|
8937
|
+
* @type {PagedListMetaData}
|
|
8938
|
+
* @memberof SpecialtiesSimpleModel
|
|
8939
|
+
*/
|
|
8940
|
+
'metaData'?: PagedListMetaData;
|
|
8941
|
+
}
|
|
8923
8942
|
/**
|
|
8924
8943
|
*
|
|
8925
8944
|
* @export
|
|
@@ -9011,6 +9030,43 @@ export interface SpecialtyItemModel {
|
|
|
9011
9030
|
*/
|
|
9012
9031
|
'medias'?: Array<MediaModel> | null;
|
|
9013
9032
|
}
|
|
9033
|
+
/**
|
|
9034
|
+
*
|
|
9035
|
+
* @export
|
|
9036
|
+
* @interface SpecialtyItemSimpleModel
|
|
9037
|
+
*/
|
|
9038
|
+
export interface SpecialtyItemSimpleModel {
|
|
9039
|
+
/**
|
|
9040
|
+
*
|
|
9041
|
+
* @type {string}
|
|
9042
|
+
* @memberof SpecialtyItemSimpleModel
|
|
9043
|
+
*/
|
|
9044
|
+
'id'?: string;
|
|
9045
|
+
/**
|
|
9046
|
+
*
|
|
9047
|
+
* @type {string}
|
|
9048
|
+
* @memberof SpecialtyItemSimpleModel
|
|
9049
|
+
*/
|
|
9050
|
+
'name'?: string | null;
|
|
9051
|
+
/**
|
|
9052
|
+
*
|
|
9053
|
+
* @type {string}
|
|
9054
|
+
* @memberof SpecialtyItemSimpleModel
|
|
9055
|
+
*/
|
|
9056
|
+
'slug'?: string | null;
|
|
9057
|
+
/**
|
|
9058
|
+
*
|
|
9059
|
+
* @type {string}
|
|
9060
|
+
* @memberof SpecialtyItemSimpleModel
|
|
9061
|
+
*/
|
|
9062
|
+
'specialtyTypeId'?: string;
|
|
9063
|
+
/**
|
|
9064
|
+
*
|
|
9065
|
+
* @type {boolean}
|
|
9066
|
+
* @memberof SpecialtyItemSimpleModel
|
|
9067
|
+
*/
|
|
9068
|
+
'confirmed'?: boolean;
|
|
9069
|
+
}
|
|
9014
9070
|
/**
|
|
9015
9071
|
*
|
|
9016
9072
|
* @export
|
|
@@ -14657,6 +14713,30 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14657
14713
|
* @throws {RequiredError}
|
|
14658
14714
|
*/
|
|
14659
14715
|
apiV2HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14716
|
+
/**
|
|
14717
|
+
*
|
|
14718
|
+
* @summary Get all HospitalServiceMedias.
|
|
14719
|
+
* @param {string} hospitalId
|
|
14720
|
+
* @param {string} hospitalSpecialtyId
|
|
14721
|
+
* @param {string} [id]
|
|
14722
|
+
* @param {MediaType} [mediaType]
|
|
14723
|
+
* @param {number} [page]
|
|
14724
|
+
* @param {number} [limit]
|
|
14725
|
+
* @param {Date} [lastRetrieved]
|
|
14726
|
+
* @param {*} [options] Override http request option.
|
|
14727
|
+
* @throws {RequiredError}
|
|
14728
|
+
*/
|
|
14729
|
+
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasGet: (hospitalId: string, hospitalSpecialtyId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14730
|
+
/**
|
|
14731
|
+
*
|
|
14732
|
+
* @summary Get HospitalServiceMedia.
|
|
14733
|
+
* @param {string} hospitalId
|
|
14734
|
+
* @param {string} hospitalSpecialtyId
|
|
14735
|
+
* @param {string} mediaId
|
|
14736
|
+
* @param {*} [options] Override http request option.
|
|
14737
|
+
* @throws {RequiredError}
|
|
14738
|
+
*/
|
|
14739
|
+
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdGet: (hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14660
14740
|
/**
|
|
14661
14741
|
*
|
|
14662
14742
|
* @summary Get all HospitalSpecialties.
|
|
@@ -15015,6 +15095,30 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
15015
15095
|
* @throws {RequiredError}
|
|
15016
15096
|
*/
|
|
15017
15097
|
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
|
|
15098
|
+
/**
|
|
15099
|
+
*
|
|
15100
|
+
* @summary Get all HospitalServiceMedias.
|
|
15101
|
+
* @param {string} hospitalId
|
|
15102
|
+
* @param {string} hospitalSpecialtyId
|
|
15103
|
+
* @param {string} [id]
|
|
15104
|
+
* @param {MediaType} [mediaType]
|
|
15105
|
+
* @param {number} [page]
|
|
15106
|
+
* @param {number} [limit]
|
|
15107
|
+
* @param {Date} [lastRetrieved]
|
|
15108
|
+
* @param {*} [options] Override http request option.
|
|
15109
|
+
* @throws {RequiredError}
|
|
15110
|
+
*/
|
|
15111
|
+
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasGet(hospitalId: string, hospitalSpecialtyId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
15112
|
+
/**
|
|
15113
|
+
*
|
|
15114
|
+
* @summary Get HospitalServiceMedia.
|
|
15115
|
+
* @param {string} hospitalId
|
|
15116
|
+
* @param {string} hospitalSpecialtyId
|
|
15117
|
+
* @param {string} mediaId
|
|
15118
|
+
* @param {*} [options] Override http request option.
|
|
15119
|
+
* @throws {RequiredError}
|
|
15120
|
+
*/
|
|
15121
|
+
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdGet(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
15018
15122
|
/**
|
|
15019
15123
|
*
|
|
15020
15124
|
* @summary Get all HospitalSpecialties.
|
|
@@ -15373,6 +15477,30 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15373
15477
|
* @throws {RequiredError}
|
|
15374
15478
|
*/
|
|
15375
15479
|
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
|
|
15480
|
+
/**
|
|
15481
|
+
*
|
|
15482
|
+
* @summary Get all HospitalServiceMedias.
|
|
15483
|
+
* @param {string} hospitalId
|
|
15484
|
+
* @param {string} hospitalSpecialtyId
|
|
15485
|
+
* @param {string} [id]
|
|
15486
|
+
* @param {MediaType} [mediaType]
|
|
15487
|
+
* @param {number} [page]
|
|
15488
|
+
* @param {number} [limit]
|
|
15489
|
+
* @param {Date} [lastRetrieved]
|
|
15490
|
+
* @param {*} [options] Override http request option.
|
|
15491
|
+
* @throws {RequiredError}
|
|
15492
|
+
*/
|
|
15493
|
+
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasGet(hospitalId: string, hospitalSpecialtyId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<MediasModel>;
|
|
15494
|
+
/**
|
|
15495
|
+
*
|
|
15496
|
+
* @summary Get HospitalServiceMedia.
|
|
15497
|
+
* @param {string} hospitalId
|
|
15498
|
+
* @param {string} hospitalSpecialtyId
|
|
15499
|
+
* @param {string} mediaId
|
|
15500
|
+
* @param {*} [options] Override http request option.
|
|
15501
|
+
* @throws {RequiredError}
|
|
15502
|
+
*/
|
|
15503
|
+
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdGet(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
15376
15504
|
/**
|
|
15377
15505
|
*
|
|
15378
15506
|
* @summary Get all HospitalSpecialties.
|
|
@@ -15748,6 +15876,32 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15748
15876
|
* @memberof HospitalsApi
|
|
15749
15877
|
*/
|
|
15750
15878
|
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, hospitalSpecialtySlug?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel, any>>;
|
|
15879
|
+
/**
|
|
15880
|
+
*
|
|
15881
|
+
* @summary Get all HospitalServiceMedias.
|
|
15882
|
+
* @param {string} hospitalId
|
|
15883
|
+
* @param {string} hospitalSpecialtyId
|
|
15884
|
+
* @param {string} [id]
|
|
15885
|
+
* @param {MediaType} [mediaType]
|
|
15886
|
+
* @param {number} [page]
|
|
15887
|
+
* @param {number} [limit]
|
|
15888
|
+
* @param {Date} [lastRetrieved]
|
|
15889
|
+
* @param {*} [options] Override http request option.
|
|
15890
|
+
* @throws {RequiredError}
|
|
15891
|
+
* @memberof HospitalsApi
|
|
15892
|
+
*/
|
|
15893
|
+
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasGet(hospitalId: string, hospitalSpecialtyId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel, any>>;
|
|
15894
|
+
/**
|
|
15895
|
+
*
|
|
15896
|
+
* @summary Get HospitalServiceMedia.
|
|
15897
|
+
* @param {string} hospitalId
|
|
15898
|
+
* @param {string} hospitalSpecialtyId
|
|
15899
|
+
* @param {string} mediaId
|
|
15900
|
+
* @param {*} [options] Override http request option.
|
|
15901
|
+
* @throws {RequiredError}
|
|
15902
|
+
* @memberof HospitalsApi
|
|
15903
|
+
*/
|
|
15904
|
+
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdGet(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
15751
15905
|
/**
|
|
15752
15906
|
*
|
|
15753
15907
|
* @summary Get all HospitalSpecialties.
|
|
@@ -18157,6 +18311,25 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
18157
18311
|
* @throws {RequiredError}
|
|
18158
18312
|
*/
|
|
18159
18313
|
apiV2SpecialtiesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18314
|
+
/**
|
|
18315
|
+
*
|
|
18316
|
+
* @summary Get all Specialties Simple.
|
|
18317
|
+
* @param {string} [id]
|
|
18318
|
+
* @param {string} [name]
|
|
18319
|
+
* @param {string} [description]
|
|
18320
|
+
* @param {string} [specialtyTypeId]
|
|
18321
|
+
* @param {string} [hospitalId]
|
|
18322
|
+
* @param {Date} [created]
|
|
18323
|
+
* @param {string} [languageCode]
|
|
18324
|
+
* @param {Array<string>} [ids]
|
|
18325
|
+
* @param {boolean} [returnDefaultValue]
|
|
18326
|
+
* @param {number} [page]
|
|
18327
|
+
* @param {number} [limit]
|
|
18328
|
+
* @param {Date} [lastRetrieved]
|
|
18329
|
+
* @param {*} [options] Override http request option.
|
|
18330
|
+
* @throws {RequiredError}
|
|
18331
|
+
*/
|
|
18332
|
+
apiV2SpecialtiesSimpleGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18160
18333
|
/**
|
|
18161
18334
|
*
|
|
18162
18335
|
* @param {string} slug
|
|
@@ -18222,6 +18395,25 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
18222
18395
|
* @throws {RequiredError}
|
|
18223
18396
|
*/
|
|
18224
18397
|
apiV2SpecialtiesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtiesModel>>;
|
|
18398
|
+
/**
|
|
18399
|
+
*
|
|
18400
|
+
* @summary Get all Specialties Simple.
|
|
18401
|
+
* @param {string} [id]
|
|
18402
|
+
* @param {string} [name]
|
|
18403
|
+
* @param {string} [description]
|
|
18404
|
+
* @param {string} [specialtyTypeId]
|
|
18405
|
+
* @param {string} [hospitalId]
|
|
18406
|
+
* @param {Date} [created]
|
|
18407
|
+
* @param {string} [languageCode]
|
|
18408
|
+
* @param {Array<string>} [ids]
|
|
18409
|
+
* @param {boolean} [returnDefaultValue]
|
|
18410
|
+
* @param {number} [page]
|
|
18411
|
+
* @param {number} [limit]
|
|
18412
|
+
* @param {Date} [lastRetrieved]
|
|
18413
|
+
* @param {*} [options] Override http request option.
|
|
18414
|
+
* @throws {RequiredError}
|
|
18415
|
+
*/
|
|
18416
|
+
apiV2SpecialtiesSimpleGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtiesSimpleModel>>;
|
|
18225
18417
|
/**
|
|
18226
18418
|
*
|
|
18227
18419
|
* @param {string} slug
|
|
@@ -18287,6 +18479,25 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
18287
18479
|
* @throws {RequiredError}
|
|
18288
18480
|
*/
|
|
18289
18481
|
apiV2SpecialtiesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtiesModel>;
|
|
18482
|
+
/**
|
|
18483
|
+
*
|
|
18484
|
+
* @summary Get all Specialties Simple.
|
|
18485
|
+
* @param {string} [id]
|
|
18486
|
+
* @param {string} [name]
|
|
18487
|
+
* @param {string} [description]
|
|
18488
|
+
* @param {string} [specialtyTypeId]
|
|
18489
|
+
* @param {string} [hospitalId]
|
|
18490
|
+
* @param {Date} [created]
|
|
18491
|
+
* @param {string} [languageCode]
|
|
18492
|
+
* @param {Array<string>} [ids]
|
|
18493
|
+
* @param {boolean} [returnDefaultValue]
|
|
18494
|
+
* @param {number} [page]
|
|
18495
|
+
* @param {number} [limit]
|
|
18496
|
+
* @param {Date} [lastRetrieved]
|
|
18497
|
+
* @param {*} [options] Override http request option.
|
|
18498
|
+
* @throws {RequiredError}
|
|
18499
|
+
*/
|
|
18500
|
+
apiV2SpecialtiesSimpleGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtiesSimpleModel>;
|
|
18290
18501
|
/**
|
|
18291
18502
|
*
|
|
18292
18503
|
* @param {string} slug
|
|
@@ -18355,6 +18566,26 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
18355
18566
|
* @memberof SpecialtiesApi
|
|
18356
18567
|
*/
|
|
18357
18568
|
apiV2SpecialtiesGet(id?: string, name?: string, description?: string, specialtyTypeId?: string, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtiesModel, any>>;
|
|
18569
|
+
/**
|
|
18570
|
+
*
|
|
18571
|
+
* @summary Get all Specialties Simple.
|
|
18572
|
+
* @param {string} [id]
|
|
18573
|
+
* @param {string} [name]
|
|
18574
|
+
* @param {string} [description]
|
|
18575
|
+
* @param {string} [specialtyTypeId]
|
|
18576
|
+
* @param {string} [hospitalId]
|
|
18577
|
+
* @param {Date} [created]
|
|
18578
|
+
* @param {string} [languageCode]
|
|
18579
|
+
* @param {Array<string>} [ids]
|
|
18580
|
+
* @param {boolean} [returnDefaultValue]
|
|
18581
|
+
* @param {number} [page]
|
|
18582
|
+
* @param {number} [limit]
|
|
18583
|
+
* @param {Date} [lastRetrieved]
|
|
18584
|
+
* @param {*} [options] Override http request option.
|
|
18585
|
+
* @throws {RequiredError}
|
|
18586
|
+
* @memberof SpecialtiesApi
|
|
18587
|
+
*/
|
|
18588
|
+
apiV2SpecialtiesSimpleGet(id?: string, name?: string, description?: string, specialtyTypeId?: string, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtiesSimpleModel, any>>;
|
|
18358
18589
|
/**
|
|
18359
18590
|
*
|
|
18360
18591
|
* @param {string} slug
|