ch-api-client-typescript2 5.91.3 → 5.91.7
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/articles-api.d.ts +42 -6
- package/lib/api/articles-api.d.ts.map +1 -1
- package/lib/api/articles-api.js +42 -18
- package/lib/api/deals-api.d.ts +42 -6
- package/lib/api/deals-api.d.ts.map +1 -1
- package/lib/api/deals-api.js +42 -18
- package/lib/api/doctor-affiliations-api.d.ts +42 -6
- package/lib/api/doctor-affiliations-api.d.ts.map +1 -1
- package/lib/api/doctor-affiliations-api.js +42 -18
- package/lib/api/general-articles-api.d.ts +42 -6
- package/lib/api/general-articles-api.d.ts.map +1 -1
- package/lib/api/general-articles-api.js +42 -18
- package/lib/api/hospitals-api.d.ts +234 -36
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +240 -108
- package/lib/api/specialties-api.d.ts +24 -6
- package/lib/api/specialties-api.d.ts.map +1 -1
- package/lib/api/specialties-api.js +30 -18
- package/lib/api/specialty-types-api.d.ts +24 -6
- package/lib/api/specialty-types-api.d.ts.map +1 -1
- package/lib/api/specialty-types-api.js +30 -18
- package/lib/models/about-us-page-model.d.ts +7 -0
- package/lib/models/about-us-page-model.d.ts.map +1 -1
- package/lib/models/article-model.d.ts +7 -0
- package/lib/models/article-model.d.ts.map +1 -1
- package/lib/models/country-model.d.ts +7 -0
- package/lib/models/country-model.d.ts.map +1 -1
- package/lib/models/deal-model.d.ts +7 -0
- package/lib/models/deal-model.d.ts.map +1 -1
- package/lib/models/deal-simple-translation-model.d.ts +12 -0
- package/lib/models/deal-simple-translation-model.d.ts.map +1 -1
- package/lib/models/doctor-affiliation-model.d.ts +7 -0
- package/lib/models/doctor-affiliation-model.d.ts.map +1 -1
- package/lib/models/faq-category-model.d.ts +7 -0
- package/lib/models/faq-category-model.d.ts.map +1 -1
- package/lib/models/faq-model.d.ts +7 -0
- package/lib/models/faq-model.d.ts.map +1 -1
- package/lib/models/general-article-model.d.ts +7 -0
- package/lib/models/general-article-model.d.ts.map +1 -1
- package/lib/models/hospital-model.d.ts +7 -0
- package/lib/models/hospital-model.d.ts.map +1 -1
- package/lib/models/hospital-service-model.d.ts +7 -0
- package/lib/models/hospital-service-model.d.ts.map +1 -1
- package/lib/models/hospital-specialty-model.d.ts +7 -0
- package/lib/models/hospital-specialty-model.d.ts.map +1 -1
- package/lib/models/index.d.ts +1 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +1 -0
- package/lib/models/landing-model.d.ts +7 -0
- package/lib/models/landing-model.d.ts.map +1 -1
- package/lib/models/policy-model.d.ts +7 -0
- package/lib/models/policy-model.d.ts.map +1 -1
- package/lib/models/service-review-model.d.ts +7 -0
- package/lib/models/service-review-model.d.ts.map +1 -1
- package/lib/models/simple-translation-model.d.ts +12 -0
- package/lib/models/simple-translation-model.d.ts.map +1 -1
- package/lib/models/specialty-model.d.ts +7 -0
- package/lib/models/specialty-model.d.ts.map +1 -1
- package/lib/models/specialty-type-model.d.ts +7 -0
- package/lib/models/specialty-type-model.d.ts.map +1 -1
- package/lib/models/translation-redirect-option-model.d.ts +31 -0
- package/lib/models/translation-redirect-option-model.d.ts.map +1 -0
- package/lib/models/translation-redirect-option-model.js +15 -0
- package/package.json +1 -1
|
@@ -156,10 +156,12 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
156
156
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
157
157
|
* @param {boolean} [returnDefaultValue]
|
|
158
158
|
* @param {string} [previewSecret]
|
|
159
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
160
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
159
161
|
* @param {*} [options] Override http request option.
|
|
160
162
|
* @throws {RequiredError}
|
|
161
163
|
*/
|
|
162
|
-
apiV2HospitalsHospitalIdArticlesSlugGet: (hospitalId: string, slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
164
|
+
apiV2HospitalsHospitalIdArticlesSlugGet: (hospitalId: string, slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, hospitalFaqLimit?: number, platformFaqLimit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
163
165
|
/**
|
|
164
166
|
*
|
|
165
167
|
* @summary Get bank account info
|
|
@@ -218,10 +220,12 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
218
220
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
219
221
|
* @param {boolean} [returnDefaultValue]
|
|
220
222
|
* @param {string} [previewSecret]
|
|
223
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
224
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
221
225
|
* @param {*} [options] Override http request option.
|
|
222
226
|
* @throws {RequiredError}
|
|
223
227
|
*/
|
|
224
|
-
apiV2HospitalsHospitalIdDealsSlugGet: (hospitalId: string, slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
228
|
+
apiV2HospitalsHospitalIdDealsSlugGet: (hospitalId: string, slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, hospitalFaqLimit?: number, platformFaqLimit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
225
229
|
/**
|
|
226
230
|
*
|
|
227
231
|
* @summary Get default inquiry form by hospitalId and platform.
|
|
@@ -239,10 +243,12 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
239
243
|
* @param {string} hospitalId
|
|
240
244
|
* @param {string} slug
|
|
241
245
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
246
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
247
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
242
248
|
* @param {*} [options] Override http request option.
|
|
243
249
|
* @throws {RequiredError}
|
|
244
250
|
*/
|
|
245
|
-
apiV2HospitalsHospitalIdDoctoraffiliationsSlugGet: (hospitalId: string, slug: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
251
|
+
apiV2HospitalsHospitalIdDoctoraffiliationsSlugGet: (hospitalId: string, slug: string, languageCode?: string, hospitalFaqLimit?: number, platformFaqLimit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
246
252
|
/**
|
|
247
253
|
*
|
|
248
254
|
* @summary Get doctor portfolios by hospital
|
|
@@ -365,10 +371,12 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
365
371
|
* @param {boolean} [returnDefaultValue]
|
|
366
372
|
* @param {string} [previewSecret]
|
|
367
373
|
* @param {Array<string>} [fillAdditionalFields] Comma separated list of additional fields to include. Available values: Doctors, Deals, Reviews, HospitalServices, IsIncludedToBranch, PlatformFaqs, HospitalFaqs
|
|
374
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
375
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
368
376
|
* @param {*} [options] Override http request option.
|
|
369
377
|
* @throws {RequiredError}
|
|
370
378
|
*/
|
|
371
|
-
apiV2HospitalsHospitalIdGet: (hospitalId: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, fillAdditionalFields?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
379
|
+
apiV2HospitalsHospitalIdGet: (hospitalId: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, fillAdditionalFields?: Array<string>, hospitalFaqLimit?: number, platformFaqLimit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
372
380
|
/**
|
|
373
381
|
*
|
|
374
382
|
* @summary Get all HospitalHandles.
|
|
@@ -610,10 +618,12 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
610
618
|
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
611
619
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
612
620
|
* @param {boolean} [returnDefaultValue]
|
|
621
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
622
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
613
623
|
* @param {*} [options] Override http request option.
|
|
614
624
|
* @throws {RequiredError}
|
|
615
625
|
*/
|
|
616
|
-
apiV2HospitalsHospitalIdServicesServiceIdGet: (hospitalId: string, serviceId: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
626
|
+
apiV2HospitalsHospitalIdServicesServiceIdGet: (hospitalId: string, serviceId: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, hospitalFaqLimit?: number, platformFaqLimit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
617
627
|
/**
|
|
618
628
|
*
|
|
619
629
|
* @summary Get HospitalService by slug with hospital scope.
|
|
@@ -623,10 +633,12 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
623
633
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
624
634
|
* @param {boolean} [returnDefaultValue]
|
|
625
635
|
* @param {string} [previewSecret]
|
|
636
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
637
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
626
638
|
* @param {*} [options] Override http request option.
|
|
627
639
|
* @throws {RequiredError}
|
|
628
640
|
*/
|
|
629
|
-
apiV2HospitalsHospitalIdServicesSlugGet: (hospitalId: string, slug: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
641
|
+
apiV2HospitalsHospitalIdServicesSlugGet: (hospitalId: string, slug: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, hospitalFaqLimit?: number, platformFaqLimit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
630
642
|
/**
|
|
631
643
|
*
|
|
632
644
|
* @summary Get all HospitalSpecialties.
|
|
@@ -720,20 +732,24 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
720
732
|
* @param {string} slug
|
|
721
733
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
722
734
|
* @param {string} [previewSecret]
|
|
735
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
736
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
723
737
|
* @param {*} [options] Override http request option.
|
|
724
738
|
* @throws {RequiredError}
|
|
725
739
|
*/
|
|
726
|
-
apiV2HospitalsHospitalIdSpecialtiesSlugGet: (hospitalId: string, slug: string, languageCode?: string, previewSecret?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
740
|
+
apiV2HospitalsHospitalIdSpecialtiesSlugGet: (hospitalId: string, slug: string, languageCode?: string, previewSecret?: string, hospitalFaqLimit?: number, platformFaqLimit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
727
741
|
/**
|
|
728
742
|
*
|
|
729
743
|
* @summary Get HospitalSpecialty.
|
|
730
744
|
* @param {string} hospitalId
|
|
731
745
|
* @param {string} specialtyId
|
|
732
746
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
747
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
748
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
733
749
|
* @param {*} [options] Override http request option.
|
|
734
750
|
* @throws {RequiredError}
|
|
735
751
|
*/
|
|
736
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
752
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, languageCode?: string, hospitalFaqLimit?: number, platformFaqLimit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
737
753
|
/**
|
|
738
754
|
*
|
|
739
755
|
* @summary Get all HospitalServices.
|
|
@@ -783,10 +799,12 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
783
799
|
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
784
800
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
785
801
|
* @param {boolean} [returnDefaultValue]
|
|
802
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
803
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
786
804
|
* @param {*} [options] Override http request option.
|
|
787
805
|
* @throws {RequiredError}
|
|
788
806
|
*/
|
|
789
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet: (hospitalId: string, specialtyId: string, serviceId: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
807
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet: (hospitalId: string, specialtyId: string, serviceId: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, hospitalFaqLimit?: number, platformFaqLimit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
790
808
|
/**
|
|
791
809
|
*
|
|
792
810
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -820,10 +838,11 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
820
838
|
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
821
839
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
822
840
|
* @param {boolean} [returnDefaultValue]
|
|
841
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
823
842
|
* @param {*} [options] Override http request option.
|
|
824
843
|
* @throws {RequiredError}
|
|
825
844
|
*/
|
|
826
|
-
apiV2HospitalsHospitalIdSummaryGet: (hospitalId: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
845
|
+
apiV2HospitalsHospitalIdSummaryGet: (hospitalId: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, hospitalFaqLimit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
827
846
|
/**
|
|
828
847
|
*
|
|
829
848
|
* @summary Get surveyForm by surveyFormId
|
|
@@ -934,10 +953,12 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
934
953
|
* @param {boolean} [returnDefaultValue]
|
|
935
954
|
* @param {string} [previewSecret]
|
|
936
955
|
* @param {Array<string>} [fillAdditionalFields] Comma separated list of additional fields to include. Available values: Doctors, Deals, Reviews, HospitalServices, IsIncludedToBranch, PlatformFaqs, HospitalFaqs
|
|
956
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
957
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
937
958
|
* @param {*} [options] Override http request option.
|
|
938
959
|
* @throws {RequiredError}
|
|
939
960
|
*/
|
|
940
|
-
apiV2HospitalsSlugGet: (slug: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, fillAdditionalFields?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
961
|
+
apiV2HospitalsSlugGet: (slug: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, fillAdditionalFields?: Array<string>, hospitalFaqLimit?: number, platformFaqLimit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
941
962
|
/**
|
|
942
963
|
* This endpoint does not support preview mode. Only confirmed translations are returned.
|
|
943
964
|
* @summary Get hospital summary by slug. Returns lightweight summary with only fields needed for main page rendering.
|
|
@@ -945,10 +966,11 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
945
966
|
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
946
967
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
947
968
|
* @param {boolean} [returnDefaultValue]
|
|
969
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
948
970
|
* @param {*} [options] Override http request option.
|
|
949
971
|
* @throws {RequiredError}
|
|
950
972
|
*/
|
|
951
|
-
apiV2HospitalsSlugSummaryGet: (slug: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
973
|
+
apiV2HospitalsSlugSummaryGet: (slug: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, hospitalFaqLimit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
952
974
|
};
|
|
953
975
|
/**
|
|
954
976
|
* HospitalsApi - functional programming interface
|
|
@@ -1037,10 +1059,12 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
1037
1059
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
1038
1060
|
* @param {boolean} [returnDefaultValue]
|
|
1039
1061
|
* @param {string} [previewSecret]
|
|
1062
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
1063
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
1040
1064
|
* @param {*} [options] Override http request option.
|
|
1041
1065
|
* @throws {RequiredError}
|
|
1042
1066
|
*/
|
|
1043
|
-
apiV2HospitalsHospitalIdArticlesSlugGet(hospitalId: string, slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ArticleModel>>;
|
|
1067
|
+
apiV2HospitalsHospitalIdArticlesSlugGet(hospitalId: string, slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, hospitalFaqLimit?: number, platformFaqLimit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ArticleModel>>;
|
|
1044
1068
|
/**
|
|
1045
1069
|
*
|
|
1046
1070
|
* @summary Get bank account info
|
|
@@ -1099,10 +1123,12 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
1099
1123
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
1100
1124
|
* @param {boolean} [returnDefaultValue]
|
|
1101
1125
|
* @param {string} [previewSecret]
|
|
1126
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
1127
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
1102
1128
|
* @param {*} [options] Override http request option.
|
|
1103
1129
|
* @throws {RequiredError}
|
|
1104
1130
|
*/
|
|
1105
|
-
apiV2HospitalsHospitalIdDealsSlugGet(hospitalId: string, slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DealModel>>;
|
|
1131
|
+
apiV2HospitalsHospitalIdDealsSlugGet(hospitalId: string, slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, hospitalFaqLimit?: number, platformFaqLimit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DealModel>>;
|
|
1106
1132
|
/**
|
|
1107
1133
|
*
|
|
1108
1134
|
* @summary Get default inquiry form by hospitalId and platform.
|
|
@@ -1120,10 +1146,12 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
1120
1146
|
* @param {string} hospitalId
|
|
1121
1147
|
* @param {string} slug
|
|
1122
1148
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
1149
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
1150
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
1123
1151
|
* @param {*} [options] Override http request option.
|
|
1124
1152
|
* @throws {RequiredError}
|
|
1125
1153
|
*/
|
|
1126
|
-
apiV2HospitalsHospitalIdDoctoraffiliationsSlugGet(hospitalId: string, slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationModel>>;
|
|
1154
|
+
apiV2HospitalsHospitalIdDoctoraffiliationsSlugGet(hospitalId: string, slug: string, languageCode?: string, hospitalFaqLimit?: number, platformFaqLimit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationModel>>;
|
|
1127
1155
|
/**
|
|
1128
1156
|
*
|
|
1129
1157
|
* @summary Get doctor portfolios by hospital
|
|
@@ -1246,10 +1274,12 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
1246
1274
|
* @param {boolean} [returnDefaultValue]
|
|
1247
1275
|
* @param {string} [previewSecret]
|
|
1248
1276
|
* @param {Array<string>} [fillAdditionalFields] Comma separated list of additional fields to include. Available values: Doctors, Deals, Reviews, HospitalServices, IsIncludedToBranch, PlatformFaqs, HospitalFaqs
|
|
1277
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
1278
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
1249
1279
|
* @param {*} [options] Override http request option.
|
|
1250
1280
|
* @throws {RequiredError}
|
|
1251
1281
|
*/
|
|
1252
|
-
apiV2HospitalsHospitalIdGet(hospitalId: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, fillAdditionalFields?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalModel>>;
|
|
1282
|
+
apiV2HospitalsHospitalIdGet(hospitalId: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, fillAdditionalFields?: Array<string>, hospitalFaqLimit?: number, platformFaqLimit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalModel>>;
|
|
1253
1283
|
/**
|
|
1254
1284
|
*
|
|
1255
1285
|
* @summary Get all HospitalHandles.
|
|
@@ -1491,10 +1521,12 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
1491
1521
|
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
1492
1522
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
1493
1523
|
* @param {boolean} [returnDefaultValue]
|
|
1524
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
1525
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
1494
1526
|
* @param {*} [options] Override http request option.
|
|
1495
1527
|
* @throws {RequiredError}
|
|
1496
1528
|
*/
|
|
1497
|
-
apiV2HospitalsHospitalIdServicesServiceIdGet(hospitalId: string, serviceId: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalServiceModel>>;
|
|
1529
|
+
apiV2HospitalsHospitalIdServicesServiceIdGet(hospitalId: string, serviceId: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, hospitalFaqLimit?: number, platformFaqLimit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalServiceModel>>;
|
|
1498
1530
|
/**
|
|
1499
1531
|
*
|
|
1500
1532
|
* @summary Get HospitalService by slug with hospital scope.
|
|
@@ -1504,10 +1536,12 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
1504
1536
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
1505
1537
|
* @param {boolean} [returnDefaultValue]
|
|
1506
1538
|
* @param {string} [previewSecret]
|
|
1539
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
1540
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
1507
1541
|
* @param {*} [options] Override http request option.
|
|
1508
1542
|
* @throws {RequiredError}
|
|
1509
1543
|
*/
|
|
1510
|
-
apiV2HospitalsHospitalIdServicesSlugGet(hospitalId: string, slug: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalServiceModel>>;
|
|
1544
|
+
apiV2HospitalsHospitalIdServicesSlugGet(hospitalId: string, slug: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, hospitalFaqLimit?: number, platformFaqLimit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalServiceModel>>;
|
|
1511
1545
|
/**
|
|
1512
1546
|
*
|
|
1513
1547
|
* @summary Get all HospitalSpecialties.
|
|
@@ -1601,20 +1635,24 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
1601
1635
|
* @param {string} slug
|
|
1602
1636
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
1603
1637
|
* @param {string} [previewSecret]
|
|
1638
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
1639
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
1604
1640
|
* @param {*} [options] Override http request option.
|
|
1605
1641
|
* @throws {RequiredError}
|
|
1606
1642
|
*/
|
|
1607
|
-
apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string, previewSecret?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
1643
|
+
apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string, previewSecret?: string, hospitalFaqLimit?: number, platformFaqLimit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
1608
1644
|
/**
|
|
1609
1645
|
*
|
|
1610
1646
|
* @summary Get HospitalSpecialty.
|
|
1611
1647
|
* @param {string} hospitalId
|
|
1612
1648
|
* @param {string} specialtyId
|
|
1613
1649
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
1650
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
1651
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
1614
1652
|
* @param {*} [options] Override http request option.
|
|
1615
1653
|
* @throws {RequiredError}
|
|
1616
1654
|
*/
|
|
1617
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
1655
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, hospitalFaqLimit?: number, platformFaqLimit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
1618
1656
|
/**
|
|
1619
1657
|
*
|
|
1620
1658
|
* @summary Get all HospitalServices.
|
|
@@ -1664,10 +1702,12 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
1664
1702
|
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
1665
1703
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
1666
1704
|
* @param {boolean} [returnDefaultValue]
|
|
1705
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
1706
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
1667
1707
|
* @param {*} [options] Override http request option.
|
|
1668
1708
|
* @throws {RequiredError}
|
|
1669
1709
|
*/
|
|
1670
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalServiceModel>>;
|
|
1710
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, hospitalFaqLimit?: number, platformFaqLimit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalServiceModel>>;
|
|
1671
1711
|
/**
|
|
1672
1712
|
*
|
|
1673
1713
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -1701,10 +1741,11 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
1701
1741
|
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
1702
1742
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
1703
1743
|
* @param {boolean} [returnDefaultValue]
|
|
1744
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
1704
1745
|
* @param {*} [options] Override http request option.
|
|
1705
1746
|
* @throws {RequiredError}
|
|
1706
1747
|
*/
|
|
1707
|
-
apiV2HospitalsHospitalIdSummaryGet(hospitalId: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSummaryModel>>;
|
|
1748
|
+
apiV2HospitalsHospitalIdSummaryGet(hospitalId: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, hospitalFaqLimit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSummaryModel>>;
|
|
1708
1749
|
/**
|
|
1709
1750
|
*
|
|
1710
1751
|
* @summary Get surveyForm by surveyFormId
|
|
@@ -1815,10 +1856,12 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
1815
1856
|
* @param {boolean} [returnDefaultValue]
|
|
1816
1857
|
* @param {string} [previewSecret]
|
|
1817
1858
|
* @param {Array<string>} [fillAdditionalFields] Comma separated list of additional fields to include. Available values: Doctors, Deals, Reviews, HospitalServices, IsIncludedToBranch, PlatformFaqs, HospitalFaqs
|
|
1859
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
1860
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
1818
1861
|
* @param {*} [options] Override http request option.
|
|
1819
1862
|
* @throws {RequiredError}
|
|
1820
1863
|
*/
|
|
1821
|
-
apiV2HospitalsSlugGet(slug: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, fillAdditionalFields?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalModel>>;
|
|
1864
|
+
apiV2HospitalsSlugGet(slug: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, fillAdditionalFields?: Array<string>, hospitalFaqLimit?: number, platformFaqLimit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalModel>>;
|
|
1822
1865
|
/**
|
|
1823
1866
|
* This endpoint does not support preview mode. Only confirmed translations are returned.
|
|
1824
1867
|
* @summary Get hospital summary by slug. Returns lightweight summary with only fields needed for main page rendering.
|
|
@@ -1826,10 +1869,11 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
1826
1869
|
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
1827
1870
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
1828
1871
|
* @param {boolean} [returnDefaultValue]
|
|
1872
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
1829
1873
|
* @param {*} [options] Override http request option.
|
|
1830
1874
|
* @throws {RequiredError}
|
|
1831
1875
|
*/
|
|
1832
|
-
apiV2HospitalsSlugSummaryGet(slug: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSummaryModel>>;
|
|
1876
|
+
apiV2HospitalsSlugSummaryGet(slug: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, hospitalFaqLimit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSummaryModel>>;
|
|
1833
1877
|
};
|
|
1834
1878
|
/**
|
|
1835
1879
|
* HospitalsApi - factory interface
|
|
@@ -1918,10 +1962,12 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
1918
1962
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
1919
1963
|
* @param {boolean} [returnDefaultValue]
|
|
1920
1964
|
* @param {string} [previewSecret]
|
|
1965
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
1966
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
1921
1967
|
* @param {*} [options] Override http request option.
|
|
1922
1968
|
* @throws {RequiredError}
|
|
1923
1969
|
*/
|
|
1924
|
-
apiV2HospitalsHospitalIdArticlesSlugGet(hospitalId: string, slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, options?: any): AxiosPromise<ArticleModel>;
|
|
1970
|
+
apiV2HospitalsHospitalIdArticlesSlugGet(hospitalId: string, slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, hospitalFaqLimit?: number, platformFaqLimit?: number, options?: any): AxiosPromise<ArticleModel>;
|
|
1925
1971
|
/**
|
|
1926
1972
|
*
|
|
1927
1973
|
* @summary Get bank account info
|
|
@@ -1980,10 +2026,12 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
1980
2026
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
1981
2027
|
* @param {boolean} [returnDefaultValue]
|
|
1982
2028
|
* @param {string} [previewSecret]
|
|
2029
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
2030
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
1983
2031
|
* @param {*} [options] Override http request option.
|
|
1984
2032
|
* @throws {RequiredError}
|
|
1985
2033
|
*/
|
|
1986
|
-
apiV2HospitalsHospitalIdDealsSlugGet(hospitalId: string, slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, options?: any): AxiosPromise<DealModel>;
|
|
2034
|
+
apiV2HospitalsHospitalIdDealsSlugGet(hospitalId: string, slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, hospitalFaqLimit?: number, platformFaqLimit?: number, options?: any): AxiosPromise<DealModel>;
|
|
1987
2035
|
/**
|
|
1988
2036
|
*
|
|
1989
2037
|
* @summary Get default inquiry form by hospitalId and platform.
|
|
@@ -2001,10 +2049,12 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
2001
2049
|
* @param {string} hospitalId
|
|
2002
2050
|
* @param {string} slug
|
|
2003
2051
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
2052
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
2053
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
2004
2054
|
* @param {*} [options] Override http request option.
|
|
2005
2055
|
* @throws {RequiredError}
|
|
2006
2056
|
*/
|
|
2007
|
-
apiV2HospitalsHospitalIdDoctoraffiliationsSlugGet(hospitalId: string, slug: string, languageCode?: string, options?: any): AxiosPromise<DoctorAffiliationModel>;
|
|
2057
|
+
apiV2HospitalsHospitalIdDoctoraffiliationsSlugGet(hospitalId: string, slug: string, languageCode?: string, hospitalFaqLimit?: number, platformFaqLimit?: number, options?: any): AxiosPromise<DoctorAffiliationModel>;
|
|
2008
2058
|
/**
|
|
2009
2059
|
*
|
|
2010
2060
|
* @summary Get doctor portfolios by hospital
|
|
@@ -2127,10 +2177,12 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
2127
2177
|
* @param {boolean} [returnDefaultValue]
|
|
2128
2178
|
* @param {string} [previewSecret]
|
|
2129
2179
|
* @param {Array<string>} [fillAdditionalFields] Comma separated list of additional fields to include. Available values: Doctors, Deals, Reviews, HospitalServices, IsIncludedToBranch, PlatformFaqs, HospitalFaqs
|
|
2180
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
2181
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
2130
2182
|
* @param {*} [options] Override http request option.
|
|
2131
2183
|
* @throws {RequiredError}
|
|
2132
2184
|
*/
|
|
2133
|
-
apiV2HospitalsHospitalIdGet(hospitalId: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, fillAdditionalFields?: Array<string>, options?: any): AxiosPromise<HospitalModel>;
|
|
2185
|
+
apiV2HospitalsHospitalIdGet(hospitalId: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, fillAdditionalFields?: Array<string>, hospitalFaqLimit?: number, platformFaqLimit?: number, options?: any): AxiosPromise<HospitalModel>;
|
|
2134
2186
|
/**
|
|
2135
2187
|
*
|
|
2136
2188
|
* @summary Get all HospitalHandles.
|
|
@@ -2372,10 +2424,12 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
2372
2424
|
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
2373
2425
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
2374
2426
|
* @param {boolean} [returnDefaultValue]
|
|
2427
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
2428
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
2375
2429
|
* @param {*} [options] Override http request option.
|
|
2376
2430
|
* @throws {RequiredError}
|
|
2377
2431
|
*/
|
|
2378
|
-
apiV2HospitalsHospitalIdServicesServiceIdGet(hospitalId: string, serviceId: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
2432
|
+
apiV2HospitalsHospitalIdServicesServiceIdGet(hospitalId: string, serviceId: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, hospitalFaqLimit?: number, platformFaqLimit?: number, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
2379
2433
|
/**
|
|
2380
2434
|
*
|
|
2381
2435
|
* @summary Get HospitalService by slug with hospital scope.
|
|
@@ -2385,10 +2439,12 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
2385
2439
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
2386
2440
|
* @param {boolean} [returnDefaultValue]
|
|
2387
2441
|
* @param {string} [previewSecret]
|
|
2442
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
2443
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
2388
2444
|
* @param {*} [options] Override http request option.
|
|
2389
2445
|
* @throws {RequiredError}
|
|
2390
2446
|
*/
|
|
2391
|
-
apiV2HospitalsHospitalIdServicesSlugGet(hospitalId: string, slug: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
2447
|
+
apiV2HospitalsHospitalIdServicesSlugGet(hospitalId: string, slug: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, hospitalFaqLimit?: number, platformFaqLimit?: number, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
2392
2448
|
/**
|
|
2393
2449
|
*
|
|
2394
2450
|
* @summary Get all HospitalSpecialties.
|
|
@@ -2482,20 +2538,24 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
2482
2538
|
* @param {string} slug
|
|
2483
2539
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
2484
2540
|
* @param {string} [previewSecret]
|
|
2541
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
2542
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
2485
2543
|
* @param {*} [options] Override http request option.
|
|
2486
2544
|
* @throws {RequiredError}
|
|
2487
2545
|
*/
|
|
2488
|
-
apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string, previewSecret?: string, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
2546
|
+
apiV2HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string, previewSecret?: string, hospitalFaqLimit?: number, platformFaqLimit?: number, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
2489
2547
|
/**
|
|
2490
2548
|
*
|
|
2491
2549
|
* @summary Get HospitalSpecialty.
|
|
2492
2550
|
* @param {string} hospitalId
|
|
2493
2551
|
* @param {string} specialtyId
|
|
2494
2552
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
2553
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
2554
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
2495
2555
|
* @param {*} [options] Override http request option.
|
|
2496
2556
|
* @throws {RequiredError}
|
|
2497
2557
|
*/
|
|
2498
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
2558
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, hospitalFaqLimit?: number, platformFaqLimit?: number, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
2499
2559
|
/**
|
|
2500
2560
|
*
|
|
2501
2561
|
* @summary Get all HospitalServices.
|
|
@@ -2545,10 +2605,12 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
2545
2605
|
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
2546
2606
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
2547
2607
|
* @param {boolean} [returnDefaultValue]
|
|
2608
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
2609
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
2548
2610
|
* @param {*} [options] Override http request option.
|
|
2549
2611
|
* @throws {RequiredError}
|
|
2550
2612
|
*/
|
|
2551
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
2613
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, hospitalFaqLimit?: number, platformFaqLimit?: number, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
2552
2614
|
/**
|
|
2553
2615
|
*
|
|
2554
2616
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -2582,10 +2644,11 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
2582
2644
|
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
2583
2645
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
2584
2646
|
* @param {boolean} [returnDefaultValue]
|
|
2647
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
2585
2648
|
* @param {*} [options] Override http request option.
|
|
2586
2649
|
* @throws {RequiredError}
|
|
2587
2650
|
*/
|
|
2588
|
-
apiV2HospitalsHospitalIdSummaryGet(hospitalId: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, options?: any): AxiosPromise<HospitalSummaryModel>;
|
|
2651
|
+
apiV2HospitalsHospitalIdSummaryGet(hospitalId: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, hospitalFaqLimit?: number, options?: any): AxiosPromise<HospitalSummaryModel>;
|
|
2589
2652
|
/**
|
|
2590
2653
|
*
|
|
2591
2654
|
* @summary Get surveyForm by surveyFormId
|
|
@@ -2696,10 +2759,12 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
2696
2759
|
* @param {boolean} [returnDefaultValue]
|
|
2697
2760
|
* @param {string} [previewSecret]
|
|
2698
2761
|
* @param {Array<string>} [fillAdditionalFields] Comma separated list of additional fields to include. Available values: Doctors, Deals, Reviews, HospitalServices, IsIncludedToBranch, PlatformFaqs, HospitalFaqs
|
|
2762
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
2763
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
2699
2764
|
* @param {*} [options] Override http request option.
|
|
2700
2765
|
* @throws {RequiredError}
|
|
2701
2766
|
*/
|
|
2702
|
-
apiV2HospitalsSlugGet(slug: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, fillAdditionalFields?: Array<string>, options?: any): AxiosPromise<HospitalModel>;
|
|
2767
|
+
apiV2HospitalsSlugGet(slug: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, fillAdditionalFields?: Array<string>, hospitalFaqLimit?: number, platformFaqLimit?: number, options?: any): AxiosPromise<HospitalModel>;
|
|
2703
2768
|
/**
|
|
2704
2769
|
* This endpoint does not support preview mode. Only confirmed translations are returned.
|
|
2705
2770
|
* @summary Get hospital summary by slug. Returns lightweight summary with only fields needed for main page rendering.
|
|
@@ -2707,10 +2772,11 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
2707
2772
|
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
2708
2773
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
2709
2774
|
* @param {boolean} [returnDefaultValue]
|
|
2775
|
+
* @param {number} [hospitalFaqLimit] Number of hospital FAQ items to return (1-200, default 6).
|
|
2710
2776
|
* @param {*} [options] Override http request option.
|
|
2711
2777
|
* @throws {RequiredError}
|
|
2712
2778
|
*/
|
|
2713
|
-
apiV2HospitalsSlugSummaryGet(slug: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, options?: any): AxiosPromise<HospitalSummaryModel>;
|
|
2779
|
+
apiV2HospitalsSlugSummaryGet(slug: string, xCloudhospitalPlatform?: string, languageCode?: string, returnDefaultValue?: boolean, hospitalFaqLimit?: number, options?: any): AxiosPromise<HospitalSummaryModel>;
|
|
2714
2780
|
};
|
|
2715
2781
|
/**
|
|
2716
2782
|
* Request parameters for apiV2HospitalsFeaturedHospitalIdGet operation in HospitalsApi.
|
|
@@ -3017,6 +3083,18 @@ export interface HospitalsApiApiV2HospitalsHospitalIdArticlesSlugGetRequest {
|
|
|
3017
3083
|
* @memberof HospitalsApiApiV2HospitalsHospitalIdArticlesSlugGet
|
|
3018
3084
|
*/
|
|
3019
3085
|
readonly previewSecret?: string;
|
|
3086
|
+
/**
|
|
3087
|
+
* Number of hospital FAQ items to return (1-200, default 6).
|
|
3088
|
+
* @type {number}
|
|
3089
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdArticlesSlugGet
|
|
3090
|
+
*/
|
|
3091
|
+
readonly hospitalFaqLimit?: number;
|
|
3092
|
+
/**
|
|
3093
|
+
* Number of platform FAQ items to return (1-200, default 6).
|
|
3094
|
+
* @type {number}
|
|
3095
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdArticlesSlugGet
|
|
3096
|
+
*/
|
|
3097
|
+
readonly platformFaqLimit?: number;
|
|
3020
3098
|
}
|
|
3021
3099
|
/**
|
|
3022
3100
|
* Request parameters for apiV2HospitalsHospitalIdBankaccountinfosBankAccountInfoIdGet operation in HospitalsApi.
|
|
@@ -3214,6 +3292,18 @@ export interface HospitalsApiApiV2HospitalsHospitalIdDealsSlugGetRequest {
|
|
|
3214
3292
|
* @memberof HospitalsApiApiV2HospitalsHospitalIdDealsSlugGet
|
|
3215
3293
|
*/
|
|
3216
3294
|
readonly previewSecret?: string;
|
|
3295
|
+
/**
|
|
3296
|
+
* Number of hospital FAQ items to return (1-200, default 6).
|
|
3297
|
+
* @type {number}
|
|
3298
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdDealsSlugGet
|
|
3299
|
+
*/
|
|
3300
|
+
readonly hospitalFaqLimit?: number;
|
|
3301
|
+
/**
|
|
3302
|
+
* Number of platform FAQ items to return (1-200, default 6).
|
|
3303
|
+
* @type {number}
|
|
3304
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdDealsSlugGet
|
|
3305
|
+
*/
|
|
3306
|
+
readonly platformFaqLimit?: number;
|
|
3217
3307
|
}
|
|
3218
3308
|
/**
|
|
3219
3309
|
* Request parameters for apiV2HospitalsHospitalIdDefaultinquiryformGet operation in HospitalsApi.
|
|
@@ -3270,6 +3360,18 @@ export interface HospitalsApiApiV2HospitalsHospitalIdDoctoraffiliationsSlugGetRe
|
|
|
3270
3360
|
* @memberof HospitalsApiApiV2HospitalsHospitalIdDoctoraffiliationsSlugGet
|
|
3271
3361
|
*/
|
|
3272
3362
|
readonly languageCode?: string;
|
|
3363
|
+
/**
|
|
3364
|
+
* Number of hospital FAQ items to return (1-200, default 6).
|
|
3365
|
+
* @type {number}
|
|
3366
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdDoctoraffiliationsSlugGet
|
|
3367
|
+
*/
|
|
3368
|
+
readonly hospitalFaqLimit?: number;
|
|
3369
|
+
/**
|
|
3370
|
+
* Number of platform FAQ items to return (1-200, default 6).
|
|
3371
|
+
* @type {number}
|
|
3372
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdDoctoraffiliationsSlugGet
|
|
3373
|
+
*/
|
|
3374
|
+
readonly platformFaqLimit?: number;
|
|
3273
3375
|
}
|
|
3274
3376
|
/**
|
|
3275
3377
|
* Request parameters for apiV2HospitalsHospitalIdDoctorportfoliosGet operation in HospitalsApi.
|
|
@@ -3676,6 +3778,18 @@ export interface HospitalsApiApiV2HospitalsHospitalIdGetRequest {
|
|
|
3676
3778
|
* @memberof HospitalsApiApiV2HospitalsHospitalIdGet
|
|
3677
3779
|
*/
|
|
3678
3780
|
readonly fillAdditionalFields?: Array<string>;
|
|
3781
|
+
/**
|
|
3782
|
+
* Number of hospital FAQ items to return (1-200, default 6).
|
|
3783
|
+
* @type {number}
|
|
3784
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdGet
|
|
3785
|
+
*/
|
|
3786
|
+
readonly hospitalFaqLimit?: number;
|
|
3787
|
+
/**
|
|
3788
|
+
* Number of platform FAQ items to return (1-200, default 6).
|
|
3789
|
+
* @type {number}
|
|
3790
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdGet
|
|
3791
|
+
*/
|
|
3792
|
+
readonly platformFaqLimit?: number;
|
|
3679
3793
|
}
|
|
3680
3794
|
/**
|
|
3681
3795
|
* Request parameters for apiV2HospitalsHospitalIdHandlesGet operation in HospitalsApi.
|
|
@@ -4446,6 +4560,18 @@ export interface HospitalsApiApiV2HospitalsHospitalIdServicesServiceIdGetRequest
|
|
|
4446
4560
|
* @memberof HospitalsApiApiV2HospitalsHospitalIdServicesServiceIdGet
|
|
4447
4561
|
*/
|
|
4448
4562
|
readonly returnDefaultValue?: boolean;
|
|
4563
|
+
/**
|
|
4564
|
+
* Number of hospital FAQ items to return (1-200, default 6).
|
|
4565
|
+
* @type {number}
|
|
4566
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdServicesServiceIdGet
|
|
4567
|
+
*/
|
|
4568
|
+
readonly hospitalFaqLimit?: number;
|
|
4569
|
+
/**
|
|
4570
|
+
* Number of platform FAQ items to return (1-200, default 6).
|
|
4571
|
+
* @type {number}
|
|
4572
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdServicesServiceIdGet
|
|
4573
|
+
*/
|
|
4574
|
+
readonly platformFaqLimit?: number;
|
|
4449
4575
|
}
|
|
4450
4576
|
/**
|
|
4451
4577
|
* Request parameters for apiV2HospitalsHospitalIdServicesSlugGet operation in HospitalsApi.
|
|
@@ -4489,6 +4615,18 @@ export interface HospitalsApiApiV2HospitalsHospitalIdServicesSlugGetRequest {
|
|
|
4489
4615
|
* @memberof HospitalsApiApiV2HospitalsHospitalIdServicesSlugGet
|
|
4490
4616
|
*/
|
|
4491
4617
|
readonly previewSecret?: string;
|
|
4618
|
+
/**
|
|
4619
|
+
* Number of hospital FAQ items to return (1-200, default 6).
|
|
4620
|
+
* @type {number}
|
|
4621
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdServicesSlugGet
|
|
4622
|
+
*/
|
|
4623
|
+
readonly hospitalFaqLimit?: number;
|
|
4624
|
+
/**
|
|
4625
|
+
* Number of platform FAQ items to return (1-200, default 6).
|
|
4626
|
+
* @type {number}
|
|
4627
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdServicesSlugGet
|
|
4628
|
+
*/
|
|
4629
|
+
readonly platformFaqLimit?: number;
|
|
4492
4630
|
}
|
|
4493
4631
|
/**
|
|
4494
4632
|
* Request parameters for apiV2HospitalsHospitalIdSpecialtiesGet operation in HospitalsApi.
|
|
@@ -4861,6 +4999,18 @@ export interface HospitalsApiApiV2HospitalsHospitalIdSpecialtiesSlugGetRequest {
|
|
|
4861
4999
|
* @memberof HospitalsApiApiV2HospitalsHospitalIdSpecialtiesSlugGet
|
|
4862
5000
|
*/
|
|
4863
5001
|
readonly previewSecret?: string;
|
|
5002
|
+
/**
|
|
5003
|
+
* Number of hospital FAQ items to return (1-200, default 6).
|
|
5004
|
+
* @type {number}
|
|
5005
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdSpecialtiesSlugGet
|
|
5006
|
+
*/
|
|
5007
|
+
readonly hospitalFaqLimit?: number;
|
|
5008
|
+
/**
|
|
5009
|
+
* Number of platform FAQ items to return (1-200, default 6).
|
|
5010
|
+
* @type {number}
|
|
5011
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdSpecialtiesSlugGet
|
|
5012
|
+
*/
|
|
5013
|
+
readonly platformFaqLimit?: number;
|
|
4864
5014
|
}
|
|
4865
5015
|
/**
|
|
4866
5016
|
* Request parameters for apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet operation in HospitalsApi.
|
|
@@ -4886,6 +5036,18 @@ export interface HospitalsApiApiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGetRe
|
|
|
4886
5036
|
* @memberof HospitalsApiApiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet
|
|
4887
5037
|
*/
|
|
4888
5038
|
readonly languageCode?: string;
|
|
5039
|
+
/**
|
|
5040
|
+
* Number of hospital FAQ items to return (1-200, default 6).
|
|
5041
|
+
* @type {number}
|
|
5042
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet
|
|
5043
|
+
*/
|
|
5044
|
+
readonly hospitalFaqLimit?: number;
|
|
5045
|
+
/**
|
|
5046
|
+
* Number of platform FAQ items to return (1-200, default 6).
|
|
5047
|
+
* @type {number}
|
|
5048
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet
|
|
5049
|
+
*/
|
|
5050
|
+
readonly platformFaqLimit?: number;
|
|
4889
5051
|
}
|
|
4890
5052
|
/**
|
|
4891
5053
|
* Request parameters for apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet operation in HospitalsApi.
|
|
@@ -5099,6 +5261,18 @@ export interface HospitalsApiApiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServi
|
|
|
5099
5261
|
* @memberof HospitalsApiApiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet
|
|
5100
5262
|
*/
|
|
5101
5263
|
readonly returnDefaultValue?: boolean;
|
|
5264
|
+
/**
|
|
5265
|
+
* Number of hospital FAQ items to return (1-200, default 6).
|
|
5266
|
+
* @type {number}
|
|
5267
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet
|
|
5268
|
+
*/
|
|
5269
|
+
readonly hospitalFaqLimit?: number;
|
|
5270
|
+
/**
|
|
5271
|
+
* Number of platform FAQ items to return (1-200, default 6).
|
|
5272
|
+
* @type {number}
|
|
5273
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet
|
|
5274
|
+
*/
|
|
5275
|
+
readonly platformFaqLimit?: number;
|
|
5102
5276
|
}
|
|
5103
5277
|
/**
|
|
5104
5278
|
* Request parameters for apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasGet operation in HospitalsApi.
|
|
@@ -5216,6 +5390,12 @@ export interface HospitalsApiApiV2HospitalsHospitalIdSummaryGetRequest {
|
|
|
5216
5390
|
* @memberof HospitalsApiApiV2HospitalsHospitalIdSummaryGet
|
|
5217
5391
|
*/
|
|
5218
5392
|
readonly returnDefaultValue?: boolean;
|
|
5393
|
+
/**
|
|
5394
|
+
* Number of hospital FAQ items to return (1-200, default 6).
|
|
5395
|
+
* @type {number}
|
|
5396
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdSummaryGet
|
|
5397
|
+
*/
|
|
5398
|
+
readonly hospitalFaqLimit?: number;
|
|
5219
5399
|
}
|
|
5220
5400
|
/**
|
|
5221
5401
|
* Request parameters for apiV2HospitalsHospitalIdSurveyformsSurveyFormIdGet operation in HospitalsApi.
|
|
@@ -5585,6 +5765,18 @@ export interface HospitalsApiApiV2HospitalsSlugGetRequest {
|
|
|
5585
5765
|
* @memberof HospitalsApiApiV2HospitalsSlugGet
|
|
5586
5766
|
*/
|
|
5587
5767
|
readonly fillAdditionalFields?: Array<string>;
|
|
5768
|
+
/**
|
|
5769
|
+
* Number of hospital FAQ items to return (1-200, default 6).
|
|
5770
|
+
* @type {number}
|
|
5771
|
+
* @memberof HospitalsApiApiV2HospitalsSlugGet
|
|
5772
|
+
*/
|
|
5773
|
+
readonly hospitalFaqLimit?: number;
|
|
5774
|
+
/**
|
|
5775
|
+
* Number of platform FAQ items to return (1-200, default 6).
|
|
5776
|
+
* @type {number}
|
|
5777
|
+
* @memberof HospitalsApiApiV2HospitalsSlugGet
|
|
5778
|
+
*/
|
|
5779
|
+
readonly platformFaqLimit?: number;
|
|
5588
5780
|
}
|
|
5589
5781
|
/**
|
|
5590
5782
|
* Request parameters for apiV2HospitalsSlugSummaryGet operation in HospitalsApi.
|
|
@@ -5616,6 +5808,12 @@ export interface HospitalsApiApiV2HospitalsSlugSummaryGetRequest {
|
|
|
5616
5808
|
* @memberof HospitalsApiApiV2HospitalsSlugSummaryGet
|
|
5617
5809
|
*/
|
|
5618
5810
|
readonly returnDefaultValue?: boolean;
|
|
5811
|
+
/**
|
|
5812
|
+
* Number of hospital FAQ items to return (1-200, default 6).
|
|
5813
|
+
* @type {number}
|
|
5814
|
+
* @memberof HospitalsApiApiV2HospitalsSlugSummaryGet
|
|
5815
|
+
*/
|
|
5816
|
+
readonly hospitalFaqLimit?: number;
|
|
5619
5817
|
}
|
|
5620
5818
|
/**
|
|
5621
5819
|
* HospitalsApi - object-oriented interface
|