ch-api-client-typescript2 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 +12 -52
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +54 -126
- package/package.json +1 -1
- package/src/api.ts +12 -60
package/lib/api.d.ts
CHANGED
|
@@ -6827,6 +6827,12 @@ export interface SpecialtyItemModel {
|
|
|
6827
6827
|
* @memberof SpecialtyItemModel
|
|
6828
6828
|
*/
|
|
6829
6829
|
'auditableEntity'?: AuditableEntity;
|
|
6830
|
+
/**
|
|
6831
|
+
*
|
|
6832
|
+
* @type {boolean}
|
|
6833
|
+
* @memberof SpecialtyItemModel
|
|
6834
|
+
*/
|
|
6835
|
+
'returnDefaultValue'?: boolean | null;
|
|
6830
6836
|
}
|
|
6831
6837
|
/**
|
|
6832
6838
|
*
|
|
@@ -6900,6 +6906,12 @@ export interface SpecialtyModel {
|
|
|
6900
6906
|
* @memberof SpecialtyModel
|
|
6901
6907
|
*/
|
|
6902
6908
|
'auditableEntity'?: AuditableEntity;
|
|
6909
|
+
/**
|
|
6910
|
+
*
|
|
6911
|
+
* @type {boolean}
|
|
6912
|
+
* @memberof SpecialtyModel
|
|
6913
|
+
*/
|
|
6914
|
+
'returnDefaultValue'?: boolean | null;
|
|
6903
6915
|
/**
|
|
6904
6916
|
*
|
|
6905
6917
|
* @type {string}
|
|
@@ -7830,7 +7842,6 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
7830
7842
|
apiV2ArticlesGet: (id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7831
7843
|
/**
|
|
7832
7844
|
*
|
|
7833
|
-
* @summary Get Article by slug.
|
|
7834
7845
|
* @param {string} slug
|
|
7835
7846
|
* @param {string} [languageCode]
|
|
7836
7847
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -7972,7 +7983,6 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
7972
7983
|
apiV2ArticlesGet(id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticlesModel>>;
|
|
7973
7984
|
/**
|
|
7974
7985
|
*
|
|
7975
|
-
* @summary Get Article by slug.
|
|
7976
7986
|
* @param {string} slug
|
|
7977
7987
|
* @param {string} [languageCode]
|
|
7978
7988
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -8114,7 +8124,6 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
8114
8124
|
apiV2ArticlesGet(id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticlesModel>;
|
|
8115
8125
|
/**
|
|
8116
8126
|
*
|
|
8117
|
-
* @summary Get Article by slug.
|
|
8118
8127
|
* @param {string} slug
|
|
8119
8128
|
* @param {string} [languageCode]
|
|
8120
8129
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -8268,7 +8277,6 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
8268
8277
|
apiV2ArticlesGet(id?: string, title?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticlesModel>>;
|
|
8269
8278
|
/**
|
|
8270
8279
|
*
|
|
8271
|
-
* @summary Get Article by slug.
|
|
8272
8280
|
* @param {string} slug
|
|
8273
8281
|
* @param {string} [languageCode]
|
|
8274
8282
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -9429,7 +9437,6 @@ export declare class ContributorsApi extends BaseAPI {
|
|
|
9429
9437
|
export declare const CountriesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
9430
9438
|
/**
|
|
9431
9439
|
*
|
|
9432
|
-
* @summary Get country.
|
|
9433
9440
|
* @param {string} countryId
|
|
9434
9441
|
* @param {string} [languageCode]
|
|
9435
9442
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -9478,7 +9485,6 @@ export declare const CountriesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
9478
9485
|
apiV2CountriesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, createdDate?: Date | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9479
9486
|
/**
|
|
9480
9487
|
*
|
|
9481
|
-
* @summary Get country by slug.
|
|
9482
9488
|
* @param {string} slug
|
|
9483
9489
|
* @param {string} [languageCode]
|
|
9484
9490
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -9494,7 +9500,6 @@ export declare const CountriesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
9494
9500
|
export declare const CountriesApiFp: (configuration?: Configuration | undefined) => {
|
|
9495
9501
|
/**
|
|
9496
9502
|
*
|
|
9497
|
-
* @summary Get country.
|
|
9498
9503
|
* @param {string} countryId
|
|
9499
9504
|
* @param {string} [languageCode]
|
|
9500
9505
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -9543,7 +9548,6 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
|
|
|
9543
9548
|
apiV2CountriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, createdDate?: Date | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CountriesModel>>;
|
|
9544
9549
|
/**
|
|
9545
9550
|
*
|
|
9546
|
-
* @summary Get country by slug.
|
|
9547
9551
|
* @param {string} slug
|
|
9548
9552
|
* @param {string} [languageCode]
|
|
9549
9553
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -9559,7 +9563,6 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
|
|
|
9559
9563
|
export declare const CountriesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
9560
9564
|
/**
|
|
9561
9565
|
*
|
|
9562
|
-
* @summary Get country.
|
|
9563
9566
|
* @param {string} countryId
|
|
9564
9567
|
* @param {string} [languageCode]
|
|
9565
9568
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -9608,7 +9611,6 @@ export declare const CountriesApiFactory: (configuration?: Configuration | undef
|
|
|
9608
9611
|
apiV2CountriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, createdDate?: Date | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<CountriesModel>;
|
|
9609
9612
|
/**
|
|
9610
9613
|
*
|
|
9611
|
-
* @summary Get country by slug.
|
|
9612
9614
|
* @param {string} slug
|
|
9613
9615
|
* @param {string} [languageCode]
|
|
9614
9616
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -9626,7 +9628,6 @@ export declare const CountriesApiFactory: (configuration?: Configuration | undef
|
|
|
9626
9628
|
export declare class CountriesApi extends BaseAPI {
|
|
9627
9629
|
/**
|
|
9628
9630
|
*
|
|
9629
|
-
* @summary Get country.
|
|
9630
9631
|
* @param {string} countryId
|
|
9631
9632
|
* @param {string} [languageCode]
|
|
9632
9633
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -9679,7 +9680,6 @@ export declare class CountriesApi extends BaseAPI {
|
|
|
9679
9680
|
apiV2CountriesGet(id?: string, name?: string, description?: string, createdDate?: Date, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountriesModel>>;
|
|
9680
9681
|
/**
|
|
9681
9682
|
*
|
|
9682
|
-
* @summary Get country by slug.
|
|
9683
9683
|
* @param {string} slug
|
|
9684
9684
|
* @param {string} [languageCode]
|
|
9685
9685
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -10132,7 +10132,6 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
10132
10132
|
apiV2DoctorsDoctorIdEducationsGet: (doctorId: string, doctorName?: string | undefined, educationId?: string | undefined, institution?: string | undefined, qualification?: string | undefined, graduationDate?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10133
10133
|
/**
|
|
10134
10134
|
*
|
|
10135
|
-
* @summary Get Doctor.
|
|
10136
10135
|
* @param {string} doctorId
|
|
10137
10136
|
* @param {string} [languageCode]
|
|
10138
10137
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -10230,7 +10229,6 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
10230
10229
|
apiV2DoctorsGet: (hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10231
10230
|
/**
|
|
10232
10231
|
*
|
|
10233
|
-
* @summary Get Doctor by slug.
|
|
10234
10232
|
* @param {string} slug
|
|
10235
10233
|
* @param {string} [languageCode]
|
|
10236
10234
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -10317,7 +10315,6 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
10317
10315
|
apiV2DoctorsDoctorIdEducationsGet(doctorId: string, doctorName?: string | undefined, educationId?: string | undefined, institution?: string | undefined, qualification?: string | undefined, graduationDate?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorEducationsModel>>;
|
|
10318
10316
|
/**
|
|
10319
10317
|
*
|
|
10320
|
-
* @summary Get Doctor.
|
|
10321
10318
|
* @param {string} doctorId
|
|
10322
10319
|
* @param {string} [languageCode]
|
|
10323
10320
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -10415,7 +10412,6 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
10415
10412
|
apiV2DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
|
|
10416
10413
|
/**
|
|
10417
10414
|
*
|
|
10418
|
-
* @summary Get Doctor by slug.
|
|
10419
10415
|
* @param {string} slug
|
|
10420
10416
|
* @param {string} [languageCode]
|
|
10421
10417
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -10502,7 +10498,6 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
10502
10498
|
apiV2DoctorsDoctorIdEducationsGet(doctorId: string, doctorName?: string | undefined, educationId?: string | undefined, institution?: string | undefined, qualification?: string | undefined, graduationDate?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorEducationsModel>;
|
|
10503
10499
|
/**
|
|
10504
10500
|
*
|
|
10505
|
-
* @summary Get Doctor.
|
|
10506
10501
|
* @param {string} doctorId
|
|
10507
10502
|
* @param {string} [languageCode]
|
|
10508
10503
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -10600,7 +10595,6 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
10600
10595
|
apiV2DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsModel>;
|
|
10601
10596
|
/**
|
|
10602
10597
|
*
|
|
10603
|
-
* @summary Get Doctor by slug.
|
|
10604
10598
|
* @param {string} slug
|
|
10605
10599
|
* @param {string} [languageCode]
|
|
10606
10600
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -10695,7 +10689,6 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
10695
10689
|
apiV2DoctorsDoctorIdEducationsGet(doctorId: string, doctorName?: string, educationId?: string, institution?: string, qualification?: string, graduationDate?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorEducationsModel>>;
|
|
10696
10690
|
/**
|
|
10697
10691
|
*
|
|
10698
|
-
* @summary Get Doctor.
|
|
10699
10692
|
* @param {string} doctorId
|
|
10700
10693
|
* @param {string} [languageCode]
|
|
10701
10694
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -10801,7 +10794,6 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
10801
10794
|
apiV2DoctorsGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel>>;
|
|
10802
10795
|
/**
|
|
10803
10796
|
*
|
|
10804
|
-
* @summary Get Doctor by slug.
|
|
10805
10797
|
* @param {string} slug
|
|
10806
10798
|
* @param {string} [languageCode]
|
|
10807
10799
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -11399,7 +11391,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
11399
11391
|
apiV2HospitalsHospitalIdEvaluationsGet: (hospitalId: string, id?: string | undefined, name?: string | undefined, stars?: number | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11400
11392
|
/**
|
|
11401
11393
|
*
|
|
11402
|
-
* @summary Get Hospital.
|
|
11403
11394
|
* @param {string} hospitalId
|
|
11404
11395
|
* @param {string} [languageCode]
|
|
11405
11396
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -11546,7 +11537,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
11546
11537
|
apiV2HospitalsSimpleGet: (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>;
|
|
11547
11538
|
/**
|
|
11548
11539
|
*
|
|
11549
|
-
* @summary Get Hospital by slug.
|
|
11550
11540
|
* @param {string} slug
|
|
11551
11541
|
* @param {string} [languageCode]
|
|
11552
11542
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -11682,7 +11672,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
11682
11672
|
apiV2HospitalsHospitalIdEvaluationsGet(hospitalId: string, id?: string | undefined, name?: string | undefined, stars?: number | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalEvaluationsModel>>;
|
|
11683
11673
|
/**
|
|
11684
11674
|
*
|
|
11685
|
-
* @summary Get Hospital.
|
|
11686
11675
|
* @param {string} hospitalId
|
|
11687
11676
|
* @param {string} [languageCode]
|
|
11688
11677
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -11829,7 +11818,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
11829
11818
|
apiV2HospitalsSimpleGet(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>>;
|
|
11830
11819
|
/**
|
|
11831
11820
|
*
|
|
11832
|
-
* @summary Get Hospital by slug.
|
|
11833
11821
|
* @param {string} slug
|
|
11834
11822
|
* @param {string} [languageCode]
|
|
11835
11823
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -11965,7 +11953,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
11965
11953
|
apiV2HospitalsHospitalIdEvaluationsGet(hospitalId: string, id?: string | undefined, name?: string | undefined, stars?: number | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalEvaluationsModel>;
|
|
11966
11954
|
/**
|
|
11967
11955
|
*
|
|
11968
|
-
* @summary Get Hospital.
|
|
11969
11956
|
* @param {string} hospitalId
|
|
11970
11957
|
* @param {string} [languageCode]
|
|
11971
11958
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -12112,7 +12099,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
12112
12099
|
apiV2HospitalsSimpleGet(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>;
|
|
12113
12100
|
/**
|
|
12114
12101
|
*
|
|
12115
|
-
* @summary Get Hospital by slug.
|
|
12116
12102
|
* @param {string} slug
|
|
12117
12103
|
* @param {string} [languageCode]
|
|
12118
12104
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -12259,7 +12245,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12259
12245
|
apiV2HospitalsHospitalIdEvaluationsGet(hospitalId: string, id?: string, name?: string, stars?: number, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalEvaluationsModel>>;
|
|
12260
12246
|
/**
|
|
12261
12247
|
*
|
|
12262
|
-
* @summary Get Hospital.
|
|
12263
12248
|
* @param {string} hospitalId
|
|
12264
12249
|
* @param {string} [languageCode]
|
|
12265
12250
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -12416,7 +12401,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12416
12401
|
apiV2HospitalsSimpleGet(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>>;
|
|
12417
12402
|
/**
|
|
12418
12403
|
*
|
|
12419
|
-
* @summary Get Hospital by slug.
|
|
12420
12404
|
* @param {string} slug
|
|
12421
12405
|
* @param {string} [languageCode]
|
|
12422
12406
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -13442,7 +13426,6 @@ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13442
13426
|
apiV2ServicesGet: (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>;
|
|
13443
13427
|
/**
|
|
13444
13428
|
*
|
|
13445
|
-
* @summary Get HospitalService.
|
|
13446
13429
|
* @param {string} serviceId
|
|
13447
13430
|
* @param {string} [languageCode]
|
|
13448
13431
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -13452,7 +13435,6 @@ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13452
13435
|
apiV2ServicesServiceIdGet: (serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13453
13436
|
/**
|
|
13454
13437
|
*
|
|
13455
|
-
* @summary Get HospitalService by slug.
|
|
13456
13438
|
* @param {string} slug
|
|
13457
13439
|
* @param {string} [languageCode]
|
|
13458
13440
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -13494,7 +13476,6 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
|
|
|
13494
13476
|
apiV2ServicesGet(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>>;
|
|
13495
13477
|
/**
|
|
13496
13478
|
*
|
|
13497
|
-
* @summary Get HospitalService.
|
|
13498
13479
|
* @param {string} serviceId
|
|
13499
13480
|
* @param {string} [languageCode]
|
|
13500
13481
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -13504,7 +13485,6 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
|
|
|
13504
13485
|
apiV2ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
13505
13486
|
/**
|
|
13506
13487
|
*
|
|
13507
|
-
* @summary Get HospitalService by slug.
|
|
13508
13488
|
* @param {string} slug
|
|
13509
13489
|
* @param {string} [languageCode]
|
|
13510
13490
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -13546,7 +13526,6 @@ export declare const ServicesApiFactory: (configuration?: Configuration | undefi
|
|
|
13546
13526
|
apiV2ServicesGet(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>;
|
|
13547
13527
|
/**
|
|
13548
13528
|
*
|
|
13549
|
-
* @summary Get HospitalService.
|
|
13550
13529
|
* @param {string} serviceId
|
|
13551
13530
|
* @param {string} [languageCode]
|
|
13552
13531
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -13556,7 +13535,6 @@ export declare const ServicesApiFactory: (configuration?: Configuration | undefi
|
|
|
13556
13535
|
apiV2ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
13557
13536
|
/**
|
|
13558
13537
|
*
|
|
13559
|
-
* @summary Get HospitalService by slug.
|
|
13560
13538
|
* @param {string} slug
|
|
13561
13539
|
* @param {string} [languageCode]
|
|
13562
13540
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -13601,7 +13579,6 @@ export declare class ServicesApi extends BaseAPI {
|
|
|
13601
13579
|
apiV2ServicesGet(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>>;
|
|
13602
13580
|
/**
|
|
13603
13581
|
*
|
|
13604
|
-
* @summary Get HospitalService.
|
|
13605
13582
|
* @param {string} serviceId
|
|
13606
13583
|
* @param {string} [languageCode]
|
|
13607
13584
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -13612,7 +13589,6 @@ export declare class ServicesApi extends BaseAPI {
|
|
|
13612
13589
|
apiV2ServicesServiceIdGet(serviceId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
13613
13590
|
/**
|
|
13614
13591
|
*
|
|
13615
|
-
* @summary Get HospitalService by slug.
|
|
13616
13592
|
* @param {string} slug
|
|
13617
13593
|
* @param {string} [languageCode]
|
|
13618
13594
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -13768,7 +13744,6 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
13768
13744
|
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>;
|
|
13769
13745
|
/**
|
|
13770
13746
|
*
|
|
13771
|
-
* @summary Get Specialty by slug.
|
|
13772
13747
|
* @param {string} slug
|
|
13773
13748
|
* @param {string} [languageCode]
|
|
13774
13749
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -13778,7 +13753,6 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
13778
13753
|
apiV2SpecialtiesSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13779
13754
|
/**
|
|
13780
13755
|
*
|
|
13781
|
-
* @summary Get Specialty.
|
|
13782
13756
|
* @param {string} specialtyId
|
|
13783
13757
|
* @param {string} [languageCode]
|
|
13784
13758
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -13835,7 +13809,6 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
13835
13809
|
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 | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtiesModel>>;
|
|
13836
13810
|
/**
|
|
13837
13811
|
*
|
|
13838
|
-
* @summary Get Specialty by slug.
|
|
13839
13812
|
* @param {string} slug
|
|
13840
13813
|
* @param {string} [languageCode]
|
|
13841
13814
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -13845,7 +13818,6 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
13845
13818
|
apiV2SpecialtiesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyModel>>;
|
|
13846
13819
|
/**
|
|
13847
13820
|
*
|
|
13848
|
-
* @summary Get Specialty.
|
|
13849
13821
|
* @param {string} specialtyId
|
|
13850
13822
|
* @param {string} [languageCode]
|
|
13851
13823
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -13902,7 +13874,6 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
13902
13874
|
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>;
|
|
13903
13875
|
/**
|
|
13904
13876
|
*
|
|
13905
|
-
* @summary Get Specialty by slug.
|
|
13906
13877
|
* @param {string} slug
|
|
13907
13878
|
* @param {string} [languageCode]
|
|
13908
13879
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -13912,7 +13883,6 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
13912
13883
|
apiV2SpecialtiesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<SpecialtyModel>;
|
|
13913
13884
|
/**
|
|
13914
13885
|
*
|
|
13915
|
-
* @summary Get Specialty.
|
|
13916
13886
|
* @param {string} specialtyId
|
|
13917
13887
|
* @param {string} [languageCode]
|
|
13918
13888
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -13972,7 +13942,6 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
13972
13942
|
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>>;
|
|
13973
13943
|
/**
|
|
13974
13944
|
*
|
|
13975
|
-
* @summary Get Specialty by slug.
|
|
13976
13945
|
* @param {string} slug
|
|
13977
13946
|
* @param {string} [languageCode]
|
|
13978
13947
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -13983,7 +13952,6 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
13983
13952
|
apiV2SpecialtiesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyModel>>;
|
|
13984
13953
|
/**
|
|
13985
13954
|
*
|
|
13986
|
-
* @summary Get Specialty.
|
|
13987
13955
|
* @param {string} specialtyId
|
|
13988
13956
|
* @param {string} [languageCode]
|
|
13989
13957
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -14064,7 +14032,6 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
14064
14032
|
apiV2SpecialtytypesSimpleGet: (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>;
|
|
14065
14033
|
/**
|
|
14066
14034
|
*
|
|
14067
|
-
* @summary Get Department by slug.
|
|
14068
14035
|
* @param {string} slug
|
|
14069
14036
|
* @param {string} [languageCode]
|
|
14070
14037
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -14074,7 +14041,6 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
14074
14041
|
apiV2SpecialtytypesSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14075
14042
|
/**
|
|
14076
14043
|
*
|
|
14077
|
-
* @summary Get Department.
|
|
14078
14044
|
* @param {string} specialtyTypeId
|
|
14079
14045
|
* @param {string} [languageCode]
|
|
14080
14046
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -14152,7 +14118,6 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
|
|
|
14152
14118
|
apiV2SpecialtytypesSimpleGet(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>>;
|
|
14153
14119
|
/**
|
|
14154
14120
|
*
|
|
14155
|
-
* @summary Get Department by slug.
|
|
14156
14121
|
* @param {string} slug
|
|
14157
14122
|
* @param {string} [languageCode]
|
|
14158
14123
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -14162,7 +14127,6 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
|
|
|
14162
14127
|
apiV2SpecialtytypesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypeModel>>;
|
|
14163
14128
|
/**
|
|
14164
14129
|
*
|
|
14165
|
-
* @summary Get Department.
|
|
14166
14130
|
* @param {string} specialtyTypeId
|
|
14167
14131
|
* @param {string} [languageCode]
|
|
14168
14132
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -14240,7 +14204,6 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
|
|
|
14240
14204
|
apiV2SpecialtytypesSimpleGet(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>;
|
|
14241
14205
|
/**
|
|
14242
14206
|
*
|
|
14243
|
-
* @summary Get Department by slug.
|
|
14244
14207
|
* @param {string} slug
|
|
14245
14208
|
* @param {string} [languageCode]
|
|
14246
14209
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -14250,7 +14213,6 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
|
|
|
14250
14213
|
apiV2SpecialtytypesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<SpecialtyTypeModel>;
|
|
14251
14214
|
/**
|
|
14252
14215
|
*
|
|
14253
|
-
* @summary Get Department.
|
|
14254
14216
|
* @param {string} specialtyTypeId
|
|
14255
14217
|
* @param {string} [languageCode]
|
|
14256
14218
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -14332,7 +14294,6 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
14332
14294
|
apiV2SpecialtytypesSimpleGet(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>>;
|
|
14333
14295
|
/**
|
|
14334
14296
|
*
|
|
14335
|
-
* @summary Get Department by slug.
|
|
14336
14297
|
* @param {string} slug
|
|
14337
14298
|
* @param {string} [languageCode]
|
|
14338
14299
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -14343,7 +14304,6 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
14343
14304
|
apiV2SpecialtytypesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypeModel>>;
|
|
14344
14305
|
/**
|
|
14345
14306
|
*
|
|
14346
|
-
* @summary Get Department.
|
|
14347
14307
|
* @param {string} specialtyTypeId
|
|
14348
14308
|
* @param {string} [languageCode]
|
|
14349
14309
|
* @param {boolean} [returnDefaultValue]
|