ch-admin-api-client-typescript 5.19.69 → 5.19.71
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/hospitals-api.d.ts +773 -6
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +1172 -69
- package/lib/models/create-hospital-rating-command.d.ts +61 -0
- package/lib/models/create-hospital-rating-command.d.ts.map +1 -0
- package/lib/models/create-hospital-rating-command.js +15 -0
- package/lib/models/create-page-command.d.ts +75 -0
- package/lib/models/create-page-command.d.ts.map +1 -0
- package/lib/models/create-page-command.js +15 -0
- package/lib/models/hospital-rating-item-model.d.ts +67 -0
- package/lib/models/hospital-rating-item-model.d.ts.map +1 -0
- package/lib/models/hospital-rating-item-model.js +15 -0
- package/lib/models/hospital-rating-model.d.ts +67 -0
- package/lib/models/hospital-rating-model.d.ts.map +1 -0
- package/lib/models/hospital-rating-model.js +15 -0
- package/lib/models/hospital-ratings-model.d.ts +33 -0
- package/lib/models/hospital-ratings-model.d.ts.map +1 -0
- package/lib/models/hospital-ratings-model.js +15 -0
- package/lib/models/index.d.ts +22 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +22 -0
- package/lib/models/page-block-input-model.d.ts +101 -0
- package/lib/models/page-block-input-model.d.ts.map +1 -0
- package/lib/models/page-block-input-model.js +15 -0
- package/lib/models/page-block-link-input-model.d.ts +56 -0
- package/lib/models/page-block-link-input-model.d.ts.map +1 -0
- package/lib/models/page-block-link-input-model.js +15 -0
- package/lib/models/page-block-link-model.d.ts +68 -0
- package/lib/models/page-block-link-model.d.ts.map +1 -0
- package/lib/models/page-block-link-model.js +15 -0
- package/lib/models/page-block-link-type.d.ts +22 -0
- package/lib/models/page-block-link-type.d.ts.map +1 -0
- package/lib/models/page-block-link-type.js +25 -0
- package/lib/models/page-block-location-input-model.d.ts +49 -0
- package/lib/models/page-block-location-input-model.d.ts.map +1 -0
- package/lib/models/page-block-location-input-model.js +15 -0
- package/lib/models/page-block-location-model.d.ts +49 -0
- package/lib/models/page-block-location-model.d.ts.map +1 -0
- package/lib/models/page-block-location-model.js +15 -0
- package/lib/models/page-block-model.d.ts +113 -0
- package/lib/models/page-block-model.d.ts.map +1 -0
- package/lib/models/page-block-model.js +15 -0
- package/lib/models/page-block-type.d.ts +29 -0
- package/lib/models/page-block-type.d.ts.map +1 -0
- package/lib/models/page-block-type.js +32 -0
- package/lib/models/page-item-item-model.d.ts +69 -0
- package/lib/models/page-item-item-model.d.ts.map +1 -0
- package/lib/models/page-item-item-model.js +15 -0
- package/lib/models/page-item-model.d.ts +100 -0
- package/lib/models/page-item-model.d.ts.map +1 -0
- package/lib/models/page-item-model.js +15 -0
- package/lib/models/page-item-status.d.ts +23 -0
- package/lib/models/page-item-status.d.ts.map +1 -0
- package/lib/models/page-item-status.js +26 -0
- package/lib/models/page-items-model.d.ts +33 -0
- package/lib/models/page-items-model.d.ts.map +1 -0
- package/lib/models/page-items-model.js +15 -0
- package/lib/models/page-section-input-model.d.ts +51 -0
- package/lib/models/page-section-input-model.d.ts.map +1 -0
- package/lib/models/page-section-input-model.js +15 -0
- package/lib/models/page-section-list-type.d.ts +23 -0
- package/lib/models/page-section-list-type.d.ts.map +1 -0
- package/lib/models/page-section-list-type.js +26 -0
- package/lib/models/page-section-model.d.ts +51 -0
- package/lib/models/page-section-model.d.ts.map +1 -0
- package/lib/models/page-section-model.js +15 -0
- package/lib/models/update-hospital-rating-command.d.ts +61 -0
- package/lib/models/update-hospital-rating-command.d.ts.map +1 -0
- package/lib/models/update-hospital-rating-command.js +15 -0
- package/lib/models/update-page-command.d.ts +75 -0
- package/lib/models/update-page-command.d.ts.map +1 -0
- package/lib/models/update-page-command.js +15 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +22 -0
- package/src/api/hospitals-api.ts +1539 -201
- package/src/models/create-hospital-rating-command.ts +66 -0
- package/src/models/create-page-command.ts +84 -0
- package/src/models/hospital-rating-item-model.ts +72 -0
- package/src/models/hospital-rating-model.ts +72 -0
- package/src/models/hospital-ratings-model.ts +42 -0
- package/src/models/index.ts +22 -0
- package/src/models/page-block-input-model.ts +114 -0
- package/src/models/page-block-link-input-model.ts +63 -0
- package/src/models/page-block-link-model.ts +75 -0
- package/src/models/page-block-link-type.ts +31 -0
- package/src/models/page-block-location-input-model.ts +54 -0
- package/src/models/page-block-location-model.ts +54 -0
- package/src/models/page-block-model.ts +126 -0
- package/src/models/page-block-type.ts +38 -0
- package/src/models/page-item-item-model.ts +78 -0
- package/src/models/page-item-model.ts +111 -0
- package/src/models/page-item-status.ts +32 -0
- package/src/models/page-items-model.ts +42 -0
- package/src/models/page-section-input-model.ts +60 -0
- package/src/models/page-section-list-type.ts +32 -0
- package/src/models/page-section-model.ts +60 -0
- package/src/models/update-hospital-rating-command.ts +66 -0
- package/src/models/update-page-command.ts +84 -0
|
@@ -31,6 +31,7 @@ import { CreateHospitalEquipmentCommand } from '../models';
|
|
|
31
31
|
import { CreateHospitalEvaluationCommand } from '../models';
|
|
32
32
|
import { CreateHospitalLanguageCommand } from '../models';
|
|
33
33
|
import { CreateHospitalPaymentMethodCommand } from '../models';
|
|
34
|
+
import { CreateHospitalRatingCommand } from '../models';
|
|
34
35
|
import { CreateHospitalServiceCommand } from '../models';
|
|
35
36
|
import { CreateHospitalSnsHandleCommand } from '../models';
|
|
36
37
|
import { CreateHospitalSpecialtyCommand } from '../models';
|
|
@@ -40,6 +41,7 @@ import { CreateLandingCommand } from '../models';
|
|
|
40
41
|
import { CreateManagerCommand } from '../models';
|
|
41
42
|
import { CreateMediaCommand } from '../models';
|
|
42
43
|
import { CreateNoticeCommand } from '../models';
|
|
44
|
+
import { CreatePageCommand } from '../models';
|
|
43
45
|
import { CreatePolicyCommand } from '../models';
|
|
44
46
|
import { DayOfWeek } from '../models';
|
|
45
47
|
import { DeleteHospitalAppointmentTimetableOverridesCommand } from '../models';
|
|
@@ -59,6 +61,8 @@ import { HospitalLanguagesModel } from '../models';
|
|
|
59
61
|
import { HospitalModel } from '../models';
|
|
60
62
|
import { HospitalPaymentMethodModel } from '../models';
|
|
61
63
|
import { HospitalPaymentMethodsModel } from '../models';
|
|
64
|
+
import { HospitalRatingModel } from '../models';
|
|
65
|
+
import { HospitalRatingsModel } from '../models';
|
|
62
66
|
import { HospitalServiceModel } from '../models';
|
|
63
67
|
import { HospitalServicesModel } from '../models';
|
|
64
68
|
import { HospitalSnsHandlesModel } from '../models';
|
|
@@ -82,6 +86,9 @@ import { NoticeModel } from '../models';
|
|
|
82
86
|
import { NoticeSortingCommand } from '../models';
|
|
83
87
|
import { NoticeStatus } from '../models';
|
|
84
88
|
import { NoticesModel } from '../models';
|
|
89
|
+
import { PageItemModel } from '../models';
|
|
90
|
+
import { PageItemStatus } from '../models';
|
|
91
|
+
import { PageItemsModel } from '../models';
|
|
85
92
|
import { PaymentMethod } from '../models';
|
|
86
93
|
import { PoliciesModel } from '../models';
|
|
87
94
|
import { PolicyModel } from '../models';
|
|
@@ -107,6 +114,7 @@ import { UpdateHospitalContactCommand } from '../models';
|
|
|
107
114
|
import { UpdateHospitalEquipmentCommand } from '../models';
|
|
108
115
|
import { UpdateHospitalLanguageCommand } from '../models';
|
|
109
116
|
import { UpdateHospitalPaymentMethodCommand } from '../models';
|
|
117
|
+
import { UpdateHospitalRatingCommand } from '../models';
|
|
110
118
|
import { UpdateHospitalServiceCommand } from '../models';
|
|
111
119
|
import { UpdateHospitalSnsHandleCommand } from '../models';
|
|
112
120
|
import { UpdateHospitalSpecialtyCommand } from '../models';
|
|
@@ -115,6 +123,7 @@ import { UpdateLandingCommand } from '../models';
|
|
|
115
123
|
import { UpdateManagerCommand } from '../models';
|
|
116
124
|
import { UpdateMediaCommand } from '../models';
|
|
117
125
|
import { UpdateNoticeCommand } from '../models';
|
|
126
|
+
import { UpdatePageCommand } from '../models';
|
|
118
127
|
import { UpdatePolicyCommand } from '../models';
|
|
119
128
|
import { WorkingDayModel } from '../models';
|
|
120
129
|
import { WorkingDaysModel } from '../models';
|
|
@@ -956,6 +965,71 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
956
965
|
* @throws {RequiredError}
|
|
957
966
|
*/
|
|
958
967
|
apiV1HospitalsHospitalIdNoticesSortPut: (hospitalId: string, noticeSortingCommand?: NoticeSortingCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
968
|
+
/**
|
|
969
|
+
*
|
|
970
|
+
* @summary Get hospital pageItems
|
|
971
|
+
* @param {string} hospitalId
|
|
972
|
+
* @param {string} [id]
|
|
973
|
+
* @param {string} [languageCode]
|
|
974
|
+
* @param {string} [name]
|
|
975
|
+
* @param {PageItemStatus} [status]
|
|
976
|
+
* @param {boolean} [showHidden]
|
|
977
|
+
* @param {number} [page]
|
|
978
|
+
* @param {number} [limit]
|
|
979
|
+
* @param {Date} [lastRetrieved]
|
|
980
|
+
* @param {*} [options] Override http request option.
|
|
981
|
+
* @throws {RequiredError}
|
|
982
|
+
*/
|
|
983
|
+
apiV1HospitalsHospitalIdPagesGet: (hospitalId: string, id?: string, languageCode?: string, name?: string, status?: PageItemStatus, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
984
|
+
/**
|
|
985
|
+
*
|
|
986
|
+
* @summary Delete page
|
|
987
|
+
* @param {string} hospitalId
|
|
988
|
+
* @param {string} pageItemId
|
|
989
|
+
* @param {boolean} [isPermanent]
|
|
990
|
+
* @param {string} [languageCode]
|
|
991
|
+
* @param {*} [options] Override http request option.
|
|
992
|
+
* @throws {RequiredError}
|
|
993
|
+
*/
|
|
994
|
+
apiV1HospitalsHospitalIdPagesPageItemIdDelete: (hospitalId: string, pageItemId: string, isPermanent?: boolean, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
995
|
+
/**
|
|
996
|
+
*
|
|
997
|
+
* @summary Get hospital page
|
|
998
|
+
* @param {string} hospitalId
|
|
999
|
+
* @param {string} pageItemId
|
|
1000
|
+
* @param {string} [languageCode]
|
|
1001
|
+
* @param {*} [options] Override http request option.
|
|
1002
|
+
* @throws {RequiredError}
|
|
1003
|
+
*/
|
|
1004
|
+
apiV1HospitalsHospitalIdPagesPageItemIdGet: (hospitalId: string, pageItemId: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1005
|
+
/**
|
|
1006
|
+
*
|
|
1007
|
+
* @summary Update page
|
|
1008
|
+
* @param {string} hospitalId
|
|
1009
|
+
* @param {string} pageItemId
|
|
1010
|
+
* @param {UpdatePageCommand} [updatePageCommand]
|
|
1011
|
+
* @param {*} [options] Override http request option.
|
|
1012
|
+
* @throws {RequiredError}
|
|
1013
|
+
*/
|
|
1014
|
+
apiV1HospitalsHospitalIdPagesPageItemIdPut: (hospitalId: string, pageItemId: string, updatePageCommand?: UpdatePageCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1015
|
+
/**
|
|
1016
|
+
*
|
|
1017
|
+
* @summary Reactivate page
|
|
1018
|
+
* @param {string} hospitalId
|
|
1019
|
+
* @param {string} pageItemId
|
|
1020
|
+
* @param {*} [options] Override http request option.
|
|
1021
|
+
* @throws {RequiredError}
|
|
1022
|
+
*/
|
|
1023
|
+
apiV1HospitalsHospitalIdPagesPageItemIdReactivatePut: (hospitalId: string, pageItemId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1024
|
+
/**
|
|
1025
|
+
*
|
|
1026
|
+
* @summary Create page
|
|
1027
|
+
* @param {string} hospitalId
|
|
1028
|
+
* @param {CreatePageCommand} [createPageCommand]
|
|
1029
|
+
* @param {*} [options] Override http request option.
|
|
1030
|
+
* @throws {RequiredError}
|
|
1031
|
+
*/
|
|
1032
|
+
apiV1HospitalsHospitalIdPagesPost: (hospitalId: string, createPageCommand?: CreatePageCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
959
1033
|
/**
|
|
960
1034
|
*
|
|
961
1035
|
* @summary Get hospitalPaymentMethods list
|
|
@@ -1078,6 +1152,57 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1078
1152
|
* @throws {RequiredError}
|
|
1079
1153
|
*/
|
|
1080
1154
|
apiV1HospitalsHospitalIdPut: (hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1155
|
+
/**
|
|
1156
|
+
*
|
|
1157
|
+
* @summary Get hospitalRatings
|
|
1158
|
+
* @param {string} hospitalId
|
|
1159
|
+
* @param {string} [id]
|
|
1160
|
+
* @param {string} [vender]
|
|
1161
|
+
* @param {boolean} [isConfirmed]
|
|
1162
|
+
* @param {number} [page]
|
|
1163
|
+
* @param {number} [limit]
|
|
1164
|
+
* @param {Date} [lastRetrieved]
|
|
1165
|
+
* @param {*} [options] Override http request option.
|
|
1166
|
+
* @throws {RequiredError}
|
|
1167
|
+
*/
|
|
1168
|
+
apiV1HospitalsHospitalIdRatingsGet: (hospitalId: string, id?: string, vender?: string, isConfirmed?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1169
|
+
/**
|
|
1170
|
+
*
|
|
1171
|
+
* @summary Delete hospitalRating
|
|
1172
|
+
* @param {string} hospitalId
|
|
1173
|
+
* @param {string} id
|
|
1174
|
+
* @param {*} [options] Override http request option.
|
|
1175
|
+
* @throws {RequiredError}
|
|
1176
|
+
*/
|
|
1177
|
+
apiV1HospitalsHospitalIdRatingsIdDelete: (hospitalId: string, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1178
|
+
/**
|
|
1179
|
+
*
|
|
1180
|
+
* @summary Get hospitalRating
|
|
1181
|
+
* @param {string} hospitalId
|
|
1182
|
+
* @param {string} id
|
|
1183
|
+
* @param {*} [options] Override http request option.
|
|
1184
|
+
* @throws {RequiredError}
|
|
1185
|
+
*/
|
|
1186
|
+
apiV1HospitalsHospitalIdRatingsIdGet: (hospitalId: string, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1187
|
+
/**
|
|
1188
|
+
*
|
|
1189
|
+
* @summary Update hospitalRating
|
|
1190
|
+
* @param {string} hospitalId
|
|
1191
|
+
* @param {string} id
|
|
1192
|
+
* @param {UpdateHospitalRatingCommand} [updateHospitalRatingCommand]
|
|
1193
|
+
* @param {*} [options] Override http request option.
|
|
1194
|
+
* @throws {RequiredError}
|
|
1195
|
+
*/
|
|
1196
|
+
apiV1HospitalsHospitalIdRatingsIdPut: (hospitalId: string, id: string, updateHospitalRatingCommand?: UpdateHospitalRatingCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1197
|
+
/**
|
|
1198
|
+
*
|
|
1199
|
+
* @summary Create hospitalRating
|
|
1200
|
+
* @param {string} hospitalId
|
|
1201
|
+
* @param {CreateHospitalRatingCommand} [createHospitalRatingCommand]
|
|
1202
|
+
* @param {*} [options] Override http request option.
|
|
1203
|
+
* @throws {RequiredError}
|
|
1204
|
+
*/
|
|
1205
|
+
apiV1HospitalsHospitalIdRatingsPost: (hospitalId: string, createHospitalRatingCommand?: CreateHospitalRatingCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1081
1206
|
/**
|
|
1082
1207
|
*
|
|
1083
1208
|
* @summary Delete HospitalSpecialty.
|
|
@@ -2644,6 +2769,71 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2644
2769
|
* @throws {RequiredError}
|
|
2645
2770
|
*/
|
|
2646
2771
|
apiV1HospitalsHospitalIdNoticesSortPut(hospitalId: string, noticeSortingCommand?: NoticeSortingCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SortingResultModel>>;
|
|
2772
|
+
/**
|
|
2773
|
+
*
|
|
2774
|
+
* @summary Get hospital pageItems
|
|
2775
|
+
* @param {string} hospitalId
|
|
2776
|
+
* @param {string} [id]
|
|
2777
|
+
* @param {string} [languageCode]
|
|
2778
|
+
* @param {string} [name]
|
|
2779
|
+
* @param {PageItemStatus} [status]
|
|
2780
|
+
* @param {boolean} [showHidden]
|
|
2781
|
+
* @param {number} [page]
|
|
2782
|
+
* @param {number} [limit]
|
|
2783
|
+
* @param {Date} [lastRetrieved]
|
|
2784
|
+
* @param {*} [options] Override http request option.
|
|
2785
|
+
* @throws {RequiredError}
|
|
2786
|
+
*/
|
|
2787
|
+
apiV1HospitalsHospitalIdPagesGet(hospitalId: string, id?: string, languageCode?: string, name?: string, status?: PageItemStatus, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PageItemsModel>>;
|
|
2788
|
+
/**
|
|
2789
|
+
*
|
|
2790
|
+
* @summary Delete page
|
|
2791
|
+
* @param {string} hospitalId
|
|
2792
|
+
* @param {string} pageItemId
|
|
2793
|
+
* @param {boolean} [isPermanent]
|
|
2794
|
+
* @param {string} [languageCode]
|
|
2795
|
+
* @param {*} [options] Override http request option.
|
|
2796
|
+
* @throws {RequiredError}
|
|
2797
|
+
*/
|
|
2798
|
+
apiV1HospitalsHospitalIdPagesPageItemIdDelete(hospitalId: string, pageItemId: string, isPermanent?: boolean, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
2799
|
+
/**
|
|
2800
|
+
*
|
|
2801
|
+
* @summary Get hospital page
|
|
2802
|
+
* @param {string} hospitalId
|
|
2803
|
+
* @param {string} pageItemId
|
|
2804
|
+
* @param {string} [languageCode]
|
|
2805
|
+
* @param {*} [options] Override http request option.
|
|
2806
|
+
* @throws {RequiredError}
|
|
2807
|
+
*/
|
|
2808
|
+
apiV1HospitalsHospitalIdPagesPageItemIdGet(hospitalId: string, pageItemId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PageItemModel>>;
|
|
2809
|
+
/**
|
|
2810
|
+
*
|
|
2811
|
+
* @summary Update page
|
|
2812
|
+
* @param {string} hospitalId
|
|
2813
|
+
* @param {string} pageItemId
|
|
2814
|
+
* @param {UpdatePageCommand} [updatePageCommand]
|
|
2815
|
+
* @param {*} [options] Override http request option.
|
|
2816
|
+
* @throws {RequiredError}
|
|
2817
|
+
*/
|
|
2818
|
+
apiV1HospitalsHospitalIdPagesPageItemIdPut(hospitalId: string, pageItemId: string, updatePageCommand?: UpdatePageCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PageItemModel>>;
|
|
2819
|
+
/**
|
|
2820
|
+
*
|
|
2821
|
+
* @summary Reactivate page
|
|
2822
|
+
* @param {string} hospitalId
|
|
2823
|
+
* @param {string} pageItemId
|
|
2824
|
+
* @param {*} [options] Override http request option.
|
|
2825
|
+
* @throws {RequiredError}
|
|
2826
|
+
*/
|
|
2827
|
+
apiV1HospitalsHospitalIdPagesPageItemIdReactivatePut(hospitalId: string, pageItemId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
2828
|
+
/**
|
|
2829
|
+
*
|
|
2830
|
+
* @summary Create page
|
|
2831
|
+
* @param {string} hospitalId
|
|
2832
|
+
* @param {CreatePageCommand} [createPageCommand]
|
|
2833
|
+
* @param {*} [options] Override http request option.
|
|
2834
|
+
* @throws {RequiredError}
|
|
2835
|
+
*/
|
|
2836
|
+
apiV1HospitalsHospitalIdPagesPost(hospitalId: string, createPageCommand?: CreatePageCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2647
2837
|
/**
|
|
2648
2838
|
*
|
|
2649
2839
|
* @summary Get hospitalPaymentMethods list
|
|
@@ -2766,6 +2956,57 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2766
2956
|
* @throws {RequiredError}
|
|
2767
2957
|
*/
|
|
2768
2958
|
apiV1HospitalsHospitalIdPut(hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalModel>>;
|
|
2959
|
+
/**
|
|
2960
|
+
*
|
|
2961
|
+
* @summary Get hospitalRatings
|
|
2962
|
+
* @param {string} hospitalId
|
|
2963
|
+
* @param {string} [id]
|
|
2964
|
+
* @param {string} [vender]
|
|
2965
|
+
* @param {boolean} [isConfirmed]
|
|
2966
|
+
* @param {number} [page]
|
|
2967
|
+
* @param {number} [limit]
|
|
2968
|
+
* @param {Date} [lastRetrieved]
|
|
2969
|
+
* @param {*} [options] Override http request option.
|
|
2970
|
+
* @throws {RequiredError}
|
|
2971
|
+
*/
|
|
2972
|
+
apiV1HospitalsHospitalIdRatingsGet(hospitalId: string, id?: string, vender?: string, isConfirmed?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalRatingsModel>>;
|
|
2973
|
+
/**
|
|
2974
|
+
*
|
|
2975
|
+
* @summary Delete hospitalRating
|
|
2976
|
+
* @param {string} hospitalId
|
|
2977
|
+
* @param {string} id
|
|
2978
|
+
* @param {*} [options] Override http request option.
|
|
2979
|
+
* @throws {RequiredError}
|
|
2980
|
+
*/
|
|
2981
|
+
apiV1HospitalsHospitalIdRatingsIdDelete(hospitalId: string, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
2982
|
+
/**
|
|
2983
|
+
*
|
|
2984
|
+
* @summary Get hospitalRating
|
|
2985
|
+
* @param {string} hospitalId
|
|
2986
|
+
* @param {string} id
|
|
2987
|
+
* @param {*} [options] Override http request option.
|
|
2988
|
+
* @throws {RequiredError}
|
|
2989
|
+
*/
|
|
2990
|
+
apiV1HospitalsHospitalIdRatingsIdGet(hospitalId: string, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalRatingModel>>;
|
|
2991
|
+
/**
|
|
2992
|
+
*
|
|
2993
|
+
* @summary Update hospitalRating
|
|
2994
|
+
* @param {string} hospitalId
|
|
2995
|
+
* @param {string} id
|
|
2996
|
+
* @param {UpdateHospitalRatingCommand} [updateHospitalRatingCommand]
|
|
2997
|
+
* @param {*} [options] Override http request option.
|
|
2998
|
+
* @throws {RequiredError}
|
|
2999
|
+
*/
|
|
3000
|
+
apiV1HospitalsHospitalIdRatingsIdPut(hospitalId: string, id: string, updateHospitalRatingCommand?: UpdateHospitalRatingCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalRatingModel>>;
|
|
3001
|
+
/**
|
|
3002
|
+
*
|
|
3003
|
+
* @summary Create hospitalRating
|
|
3004
|
+
* @param {string} hospitalId
|
|
3005
|
+
* @param {CreateHospitalRatingCommand} [createHospitalRatingCommand]
|
|
3006
|
+
* @param {*} [options] Override http request option.
|
|
3007
|
+
* @throws {RequiredError}
|
|
3008
|
+
*/
|
|
3009
|
+
apiV1HospitalsHospitalIdRatingsPost(hospitalId: string, createHospitalRatingCommand?: CreateHospitalRatingCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalRatingModel>>;
|
|
2769
3010
|
/**
|
|
2770
3011
|
*
|
|
2771
3012
|
* @summary Delete HospitalSpecialty.
|
|
@@ -4332,6 +4573,71 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4332
4573
|
* @throws {RequiredError}
|
|
4333
4574
|
*/
|
|
4334
4575
|
apiV1HospitalsHospitalIdNoticesSortPut(hospitalId: string, noticeSortingCommand?: NoticeSortingCommand, options?: any): AxiosPromise<SortingResultModel>;
|
|
4576
|
+
/**
|
|
4577
|
+
*
|
|
4578
|
+
* @summary Get hospital pageItems
|
|
4579
|
+
* @param {string} hospitalId
|
|
4580
|
+
* @param {string} [id]
|
|
4581
|
+
* @param {string} [languageCode]
|
|
4582
|
+
* @param {string} [name]
|
|
4583
|
+
* @param {PageItemStatus} [status]
|
|
4584
|
+
* @param {boolean} [showHidden]
|
|
4585
|
+
* @param {number} [page]
|
|
4586
|
+
* @param {number} [limit]
|
|
4587
|
+
* @param {Date} [lastRetrieved]
|
|
4588
|
+
* @param {*} [options] Override http request option.
|
|
4589
|
+
* @throws {RequiredError}
|
|
4590
|
+
*/
|
|
4591
|
+
apiV1HospitalsHospitalIdPagesGet(hospitalId: string, id?: string, languageCode?: string, name?: string, status?: PageItemStatus, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<PageItemsModel>;
|
|
4592
|
+
/**
|
|
4593
|
+
*
|
|
4594
|
+
* @summary Delete page
|
|
4595
|
+
* @param {string} hospitalId
|
|
4596
|
+
* @param {string} pageItemId
|
|
4597
|
+
* @param {boolean} [isPermanent]
|
|
4598
|
+
* @param {string} [languageCode]
|
|
4599
|
+
* @param {*} [options] Override http request option.
|
|
4600
|
+
* @throws {RequiredError}
|
|
4601
|
+
*/
|
|
4602
|
+
apiV1HospitalsHospitalIdPagesPageItemIdDelete(hospitalId: string, pageItemId: string, isPermanent?: boolean, languageCode?: string, options?: any): AxiosPromise<boolean>;
|
|
4603
|
+
/**
|
|
4604
|
+
*
|
|
4605
|
+
* @summary Get hospital page
|
|
4606
|
+
* @param {string} hospitalId
|
|
4607
|
+
* @param {string} pageItemId
|
|
4608
|
+
* @param {string} [languageCode]
|
|
4609
|
+
* @param {*} [options] Override http request option.
|
|
4610
|
+
* @throws {RequiredError}
|
|
4611
|
+
*/
|
|
4612
|
+
apiV1HospitalsHospitalIdPagesPageItemIdGet(hospitalId: string, pageItemId: string, languageCode?: string, options?: any): AxiosPromise<PageItemModel>;
|
|
4613
|
+
/**
|
|
4614
|
+
*
|
|
4615
|
+
* @summary Update page
|
|
4616
|
+
* @param {string} hospitalId
|
|
4617
|
+
* @param {string} pageItemId
|
|
4618
|
+
* @param {UpdatePageCommand} [updatePageCommand]
|
|
4619
|
+
* @param {*} [options] Override http request option.
|
|
4620
|
+
* @throws {RequiredError}
|
|
4621
|
+
*/
|
|
4622
|
+
apiV1HospitalsHospitalIdPagesPageItemIdPut(hospitalId: string, pageItemId: string, updatePageCommand?: UpdatePageCommand, options?: any): AxiosPromise<PageItemModel>;
|
|
4623
|
+
/**
|
|
4624
|
+
*
|
|
4625
|
+
* @summary Reactivate page
|
|
4626
|
+
* @param {string} hospitalId
|
|
4627
|
+
* @param {string} pageItemId
|
|
4628
|
+
* @param {*} [options] Override http request option.
|
|
4629
|
+
* @throws {RequiredError}
|
|
4630
|
+
*/
|
|
4631
|
+
apiV1HospitalsHospitalIdPagesPageItemIdReactivatePut(hospitalId: string, pageItemId: string, options?: any): AxiosPromise<boolean>;
|
|
4632
|
+
/**
|
|
4633
|
+
*
|
|
4634
|
+
* @summary Create page
|
|
4635
|
+
* @param {string} hospitalId
|
|
4636
|
+
* @param {CreatePageCommand} [createPageCommand]
|
|
4637
|
+
* @param {*} [options] Override http request option.
|
|
4638
|
+
* @throws {RequiredError}
|
|
4639
|
+
*/
|
|
4640
|
+
apiV1HospitalsHospitalIdPagesPost(hospitalId: string, createPageCommand?: CreatePageCommand, options?: any): AxiosPromise<void>;
|
|
4335
4641
|
/**
|
|
4336
4642
|
*
|
|
4337
4643
|
* @summary Get hospitalPaymentMethods list
|
|
@@ -4454,6 +4760,57 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4454
4760
|
* @throws {RequiredError}
|
|
4455
4761
|
*/
|
|
4456
4762
|
apiV1HospitalsHospitalIdPut(hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand, options?: any): AxiosPromise<HospitalModel>;
|
|
4763
|
+
/**
|
|
4764
|
+
*
|
|
4765
|
+
* @summary Get hospitalRatings
|
|
4766
|
+
* @param {string} hospitalId
|
|
4767
|
+
* @param {string} [id]
|
|
4768
|
+
* @param {string} [vender]
|
|
4769
|
+
* @param {boolean} [isConfirmed]
|
|
4770
|
+
* @param {number} [page]
|
|
4771
|
+
* @param {number} [limit]
|
|
4772
|
+
* @param {Date} [lastRetrieved]
|
|
4773
|
+
* @param {*} [options] Override http request option.
|
|
4774
|
+
* @throws {RequiredError}
|
|
4775
|
+
*/
|
|
4776
|
+
apiV1HospitalsHospitalIdRatingsGet(hospitalId: string, id?: string, vender?: string, isConfirmed?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalRatingsModel>;
|
|
4777
|
+
/**
|
|
4778
|
+
*
|
|
4779
|
+
* @summary Delete hospitalRating
|
|
4780
|
+
* @param {string} hospitalId
|
|
4781
|
+
* @param {string} id
|
|
4782
|
+
* @param {*} [options] Override http request option.
|
|
4783
|
+
* @throws {RequiredError}
|
|
4784
|
+
*/
|
|
4785
|
+
apiV1HospitalsHospitalIdRatingsIdDelete(hospitalId: string, id: string, options?: any): AxiosPromise<boolean>;
|
|
4786
|
+
/**
|
|
4787
|
+
*
|
|
4788
|
+
* @summary Get hospitalRating
|
|
4789
|
+
* @param {string} hospitalId
|
|
4790
|
+
* @param {string} id
|
|
4791
|
+
* @param {*} [options] Override http request option.
|
|
4792
|
+
* @throws {RequiredError}
|
|
4793
|
+
*/
|
|
4794
|
+
apiV1HospitalsHospitalIdRatingsIdGet(hospitalId: string, id: string, options?: any): AxiosPromise<HospitalRatingModel>;
|
|
4795
|
+
/**
|
|
4796
|
+
*
|
|
4797
|
+
* @summary Update hospitalRating
|
|
4798
|
+
* @param {string} hospitalId
|
|
4799
|
+
* @param {string} id
|
|
4800
|
+
* @param {UpdateHospitalRatingCommand} [updateHospitalRatingCommand]
|
|
4801
|
+
* @param {*} [options] Override http request option.
|
|
4802
|
+
* @throws {RequiredError}
|
|
4803
|
+
*/
|
|
4804
|
+
apiV1HospitalsHospitalIdRatingsIdPut(hospitalId: string, id: string, updateHospitalRatingCommand?: UpdateHospitalRatingCommand, options?: any): AxiosPromise<HospitalRatingModel>;
|
|
4805
|
+
/**
|
|
4806
|
+
*
|
|
4807
|
+
* @summary Create hospitalRating
|
|
4808
|
+
* @param {string} hospitalId
|
|
4809
|
+
* @param {CreateHospitalRatingCommand} [createHospitalRatingCommand]
|
|
4810
|
+
* @param {*} [options] Override http request option.
|
|
4811
|
+
* @throws {RequiredError}
|
|
4812
|
+
*/
|
|
4813
|
+
apiV1HospitalsHospitalIdRatingsPost(hospitalId: string, createHospitalRatingCommand?: CreateHospitalRatingCommand, options?: any): AxiosPromise<HospitalRatingModel>;
|
|
4457
4814
|
/**
|
|
4458
4815
|
*
|
|
4459
4816
|
* @summary Delete HospitalSpecialty.
|
|
@@ -7416,21 +7773,201 @@ export interface HospitalsApiApiV1HospitalsHospitalIdNoticesSortPutRequest {
|
|
|
7416
7773
|
readonly noticeSortingCommand?: NoticeSortingCommand;
|
|
7417
7774
|
}
|
|
7418
7775
|
/**
|
|
7419
|
-
* Request parameters for
|
|
7776
|
+
* Request parameters for apiV1HospitalsHospitalIdPagesGet operation in HospitalsApi.
|
|
7420
7777
|
* @export
|
|
7421
|
-
* @interface
|
|
7778
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdPagesGetRequest
|
|
7422
7779
|
*/
|
|
7423
|
-
export interface
|
|
7780
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdPagesGetRequest {
|
|
7424
7781
|
/**
|
|
7425
7782
|
*
|
|
7426
7783
|
* @type {string}
|
|
7427
|
-
* @memberof
|
|
7784
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPagesGet
|
|
7428
7785
|
*/
|
|
7429
7786
|
readonly hospitalId: string;
|
|
7430
7787
|
/**
|
|
7431
7788
|
*
|
|
7432
|
-
* @type {
|
|
7433
|
-
* @memberof
|
|
7789
|
+
* @type {string}
|
|
7790
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPagesGet
|
|
7791
|
+
*/
|
|
7792
|
+
readonly id?: string;
|
|
7793
|
+
/**
|
|
7794
|
+
*
|
|
7795
|
+
* @type {string}
|
|
7796
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPagesGet
|
|
7797
|
+
*/
|
|
7798
|
+
readonly languageCode?: string;
|
|
7799
|
+
/**
|
|
7800
|
+
*
|
|
7801
|
+
* @type {string}
|
|
7802
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPagesGet
|
|
7803
|
+
*/
|
|
7804
|
+
readonly name?: string;
|
|
7805
|
+
/**
|
|
7806
|
+
*
|
|
7807
|
+
* @type {PageItemStatus}
|
|
7808
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPagesGet
|
|
7809
|
+
*/
|
|
7810
|
+
readonly status?: PageItemStatus;
|
|
7811
|
+
/**
|
|
7812
|
+
*
|
|
7813
|
+
* @type {boolean}
|
|
7814
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPagesGet
|
|
7815
|
+
*/
|
|
7816
|
+
readonly showHidden?: boolean;
|
|
7817
|
+
/**
|
|
7818
|
+
*
|
|
7819
|
+
* @type {number}
|
|
7820
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPagesGet
|
|
7821
|
+
*/
|
|
7822
|
+
readonly page?: number;
|
|
7823
|
+
/**
|
|
7824
|
+
*
|
|
7825
|
+
* @type {number}
|
|
7826
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPagesGet
|
|
7827
|
+
*/
|
|
7828
|
+
readonly limit?: number;
|
|
7829
|
+
/**
|
|
7830
|
+
*
|
|
7831
|
+
* @type {Date}
|
|
7832
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPagesGet
|
|
7833
|
+
*/
|
|
7834
|
+
readonly lastRetrieved?: Date;
|
|
7835
|
+
}
|
|
7836
|
+
/**
|
|
7837
|
+
* Request parameters for apiV1HospitalsHospitalIdPagesPageItemIdDelete operation in HospitalsApi.
|
|
7838
|
+
* @export
|
|
7839
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdDeleteRequest
|
|
7840
|
+
*/
|
|
7841
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdDeleteRequest {
|
|
7842
|
+
/**
|
|
7843
|
+
*
|
|
7844
|
+
* @type {string}
|
|
7845
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdDelete
|
|
7846
|
+
*/
|
|
7847
|
+
readonly hospitalId: string;
|
|
7848
|
+
/**
|
|
7849
|
+
*
|
|
7850
|
+
* @type {string}
|
|
7851
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdDelete
|
|
7852
|
+
*/
|
|
7853
|
+
readonly pageItemId: string;
|
|
7854
|
+
/**
|
|
7855
|
+
*
|
|
7856
|
+
* @type {boolean}
|
|
7857
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdDelete
|
|
7858
|
+
*/
|
|
7859
|
+
readonly isPermanent?: boolean;
|
|
7860
|
+
/**
|
|
7861
|
+
*
|
|
7862
|
+
* @type {string}
|
|
7863
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdDelete
|
|
7864
|
+
*/
|
|
7865
|
+
readonly languageCode?: string;
|
|
7866
|
+
}
|
|
7867
|
+
/**
|
|
7868
|
+
* Request parameters for apiV1HospitalsHospitalIdPagesPageItemIdGet operation in HospitalsApi.
|
|
7869
|
+
* @export
|
|
7870
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdGetRequest
|
|
7871
|
+
*/
|
|
7872
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdGetRequest {
|
|
7873
|
+
/**
|
|
7874
|
+
*
|
|
7875
|
+
* @type {string}
|
|
7876
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdGet
|
|
7877
|
+
*/
|
|
7878
|
+
readonly hospitalId: string;
|
|
7879
|
+
/**
|
|
7880
|
+
*
|
|
7881
|
+
* @type {string}
|
|
7882
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdGet
|
|
7883
|
+
*/
|
|
7884
|
+
readonly pageItemId: string;
|
|
7885
|
+
/**
|
|
7886
|
+
*
|
|
7887
|
+
* @type {string}
|
|
7888
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdGet
|
|
7889
|
+
*/
|
|
7890
|
+
readonly languageCode?: string;
|
|
7891
|
+
}
|
|
7892
|
+
/**
|
|
7893
|
+
* Request parameters for apiV1HospitalsHospitalIdPagesPageItemIdPut operation in HospitalsApi.
|
|
7894
|
+
* @export
|
|
7895
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdPutRequest
|
|
7896
|
+
*/
|
|
7897
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdPutRequest {
|
|
7898
|
+
/**
|
|
7899
|
+
*
|
|
7900
|
+
* @type {string}
|
|
7901
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdPut
|
|
7902
|
+
*/
|
|
7903
|
+
readonly hospitalId: string;
|
|
7904
|
+
/**
|
|
7905
|
+
*
|
|
7906
|
+
* @type {string}
|
|
7907
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdPut
|
|
7908
|
+
*/
|
|
7909
|
+
readonly pageItemId: string;
|
|
7910
|
+
/**
|
|
7911
|
+
*
|
|
7912
|
+
* @type {UpdatePageCommand}
|
|
7913
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdPut
|
|
7914
|
+
*/
|
|
7915
|
+
readonly updatePageCommand?: UpdatePageCommand;
|
|
7916
|
+
}
|
|
7917
|
+
/**
|
|
7918
|
+
* Request parameters for apiV1HospitalsHospitalIdPagesPageItemIdReactivatePut operation in HospitalsApi.
|
|
7919
|
+
* @export
|
|
7920
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdReactivatePutRequest
|
|
7921
|
+
*/
|
|
7922
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdReactivatePutRequest {
|
|
7923
|
+
/**
|
|
7924
|
+
*
|
|
7925
|
+
* @type {string}
|
|
7926
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdReactivatePut
|
|
7927
|
+
*/
|
|
7928
|
+
readonly hospitalId: string;
|
|
7929
|
+
/**
|
|
7930
|
+
*
|
|
7931
|
+
* @type {string}
|
|
7932
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdReactivatePut
|
|
7933
|
+
*/
|
|
7934
|
+
readonly pageItemId: string;
|
|
7935
|
+
}
|
|
7936
|
+
/**
|
|
7937
|
+
* Request parameters for apiV1HospitalsHospitalIdPagesPost operation in HospitalsApi.
|
|
7938
|
+
* @export
|
|
7939
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdPagesPostRequest
|
|
7940
|
+
*/
|
|
7941
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdPagesPostRequest {
|
|
7942
|
+
/**
|
|
7943
|
+
*
|
|
7944
|
+
* @type {string}
|
|
7945
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPagesPost
|
|
7946
|
+
*/
|
|
7947
|
+
readonly hospitalId: string;
|
|
7948
|
+
/**
|
|
7949
|
+
*
|
|
7950
|
+
* @type {CreatePageCommand}
|
|
7951
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPagesPost
|
|
7952
|
+
*/
|
|
7953
|
+
readonly createPageCommand?: CreatePageCommand;
|
|
7954
|
+
}
|
|
7955
|
+
/**
|
|
7956
|
+
* Request parameters for apiV1HospitalsHospitalIdPaymentmethodsGet operation in HospitalsApi.
|
|
7957
|
+
* @export
|
|
7958
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsGetRequest
|
|
7959
|
+
*/
|
|
7960
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsGetRequest {
|
|
7961
|
+
/**
|
|
7962
|
+
*
|
|
7963
|
+
* @type {string}
|
|
7964
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsGet
|
|
7965
|
+
*/
|
|
7966
|
+
readonly hospitalId: string;
|
|
7967
|
+
/**
|
|
7968
|
+
*
|
|
7969
|
+
* @type {PaymentMethod}
|
|
7970
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsGet
|
|
7434
7971
|
*/
|
|
7435
7972
|
readonly paymentMethod?: PaymentMethod;
|
|
7436
7973
|
/**
|
|
@@ -7727,6 +8264,137 @@ export interface HospitalsApiApiV1HospitalsHospitalIdPutRequest {
|
|
|
7727
8264
|
*/
|
|
7728
8265
|
readonly updateHospitalCommand?: UpdateHospitalCommand;
|
|
7729
8266
|
}
|
|
8267
|
+
/**
|
|
8268
|
+
* Request parameters for apiV1HospitalsHospitalIdRatingsGet operation in HospitalsApi.
|
|
8269
|
+
* @export
|
|
8270
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdRatingsGetRequest
|
|
8271
|
+
*/
|
|
8272
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdRatingsGetRequest {
|
|
8273
|
+
/**
|
|
8274
|
+
*
|
|
8275
|
+
* @type {string}
|
|
8276
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsGet
|
|
8277
|
+
*/
|
|
8278
|
+
readonly hospitalId: string;
|
|
8279
|
+
/**
|
|
8280
|
+
*
|
|
8281
|
+
* @type {string}
|
|
8282
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsGet
|
|
8283
|
+
*/
|
|
8284
|
+
readonly id?: string;
|
|
8285
|
+
/**
|
|
8286
|
+
*
|
|
8287
|
+
* @type {string}
|
|
8288
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsGet
|
|
8289
|
+
*/
|
|
8290
|
+
readonly vender?: string;
|
|
8291
|
+
/**
|
|
8292
|
+
*
|
|
8293
|
+
* @type {boolean}
|
|
8294
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsGet
|
|
8295
|
+
*/
|
|
8296
|
+
readonly isConfirmed?: boolean;
|
|
8297
|
+
/**
|
|
8298
|
+
*
|
|
8299
|
+
* @type {number}
|
|
8300
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsGet
|
|
8301
|
+
*/
|
|
8302
|
+
readonly page?: number;
|
|
8303
|
+
/**
|
|
8304
|
+
*
|
|
8305
|
+
* @type {number}
|
|
8306
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsGet
|
|
8307
|
+
*/
|
|
8308
|
+
readonly limit?: number;
|
|
8309
|
+
/**
|
|
8310
|
+
*
|
|
8311
|
+
* @type {Date}
|
|
8312
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsGet
|
|
8313
|
+
*/
|
|
8314
|
+
readonly lastRetrieved?: Date;
|
|
8315
|
+
}
|
|
8316
|
+
/**
|
|
8317
|
+
* Request parameters for apiV1HospitalsHospitalIdRatingsIdDelete operation in HospitalsApi.
|
|
8318
|
+
* @export
|
|
8319
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdRatingsIdDeleteRequest
|
|
8320
|
+
*/
|
|
8321
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdRatingsIdDeleteRequest {
|
|
8322
|
+
/**
|
|
8323
|
+
*
|
|
8324
|
+
* @type {string}
|
|
8325
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsIdDelete
|
|
8326
|
+
*/
|
|
8327
|
+
readonly hospitalId: string;
|
|
8328
|
+
/**
|
|
8329
|
+
*
|
|
8330
|
+
* @type {string}
|
|
8331
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsIdDelete
|
|
8332
|
+
*/
|
|
8333
|
+
readonly id: string;
|
|
8334
|
+
}
|
|
8335
|
+
/**
|
|
8336
|
+
* Request parameters for apiV1HospitalsHospitalIdRatingsIdGet operation in HospitalsApi.
|
|
8337
|
+
* @export
|
|
8338
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdRatingsIdGetRequest
|
|
8339
|
+
*/
|
|
8340
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdRatingsIdGetRequest {
|
|
8341
|
+
/**
|
|
8342
|
+
*
|
|
8343
|
+
* @type {string}
|
|
8344
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsIdGet
|
|
8345
|
+
*/
|
|
8346
|
+
readonly hospitalId: string;
|
|
8347
|
+
/**
|
|
8348
|
+
*
|
|
8349
|
+
* @type {string}
|
|
8350
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsIdGet
|
|
8351
|
+
*/
|
|
8352
|
+
readonly id: string;
|
|
8353
|
+
}
|
|
8354
|
+
/**
|
|
8355
|
+
* Request parameters for apiV1HospitalsHospitalIdRatingsIdPut operation in HospitalsApi.
|
|
8356
|
+
* @export
|
|
8357
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdRatingsIdPutRequest
|
|
8358
|
+
*/
|
|
8359
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdRatingsIdPutRequest {
|
|
8360
|
+
/**
|
|
8361
|
+
*
|
|
8362
|
+
* @type {string}
|
|
8363
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsIdPut
|
|
8364
|
+
*/
|
|
8365
|
+
readonly hospitalId: string;
|
|
8366
|
+
/**
|
|
8367
|
+
*
|
|
8368
|
+
* @type {string}
|
|
8369
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsIdPut
|
|
8370
|
+
*/
|
|
8371
|
+
readonly id: string;
|
|
8372
|
+
/**
|
|
8373
|
+
*
|
|
8374
|
+
* @type {UpdateHospitalRatingCommand}
|
|
8375
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsIdPut
|
|
8376
|
+
*/
|
|
8377
|
+
readonly updateHospitalRatingCommand?: UpdateHospitalRatingCommand;
|
|
8378
|
+
}
|
|
8379
|
+
/**
|
|
8380
|
+
* Request parameters for apiV1HospitalsHospitalIdRatingsPost operation in HospitalsApi.
|
|
8381
|
+
* @export
|
|
8382
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdRatingsPostRequest
|
|
8383
|
+
*/
|
|
8384
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdRatingsPostRequest {
|
|
8385
|
+
/**
|
|
8386
|
+
*
|
|
8387
|
+
* @type {string}
|
|
8388
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsPost
|
|
8389
|
+
*/
|
|
8390
|
+
readonly hospitalId: string;
|
|
8391
|
+
/**
|
|
8392
|
+
*
|
|
8393
|
+
* @type {CreateHospitalRatingCommand}
|
|
8394
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsPost
|
|
8395
|
+
*/
|
|
8396
|
+
readonly createHospitalRatingCommand?: CreateHospitalRatingCommand;
|
|
8397
|
+
}
|
|
7730
8398
|
/**
|
|
7731
8399
|
* Request parameters for apiV1HospitalsHospitalIdReactivatePut operation in HospitalsApi.
|
|
7732
8400
|
* @export
|
|
@@ -10567,6 +11235,60 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
10567
11235
|
* @memberof HospitalsApi
|
|
10568
11236
|
*/
|
|
10569
11237
|
apiV1HospitalsHospitalIdNoticesSortPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdNoticesSortPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SortingResultModel, any>>;
|
|
11238
|
+
/**
|
|
11239
|
+
*
|
|
11240
|
+
* @summary Get hospital pageItems
|
|
11241
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdPagesGetRequest} requestParameters Request parameters.
|
|
11242
|
+
* @param {*} [options] Override http request option.
|
|
11243
|
+
* @throws {RequiredError}
|
|
11244
|
+
* @memberof HospitalsApi
|
|
11245
|
+
*/
|
|
11246
|
+
apiV1HospitalsHospitalIdPagesGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPagesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PageItemsModel, any>>;
|
|
11247
|
+
/**
|
|
11248
|
+
*
|
|
11249
|
+
* @summary Delete page
|
|
11250
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdDeleteRequest} requestParameters Request parameters.
|
|
11251
|
+
* @param {*} [options] Override http request option.
|
|
11252
|
+
* @throws {RequiredError}
|
|
11253
|
+
* @memberof HospitalsApi
|
|
11254
|
+
*/
|
|
11255
|
+
apiV1HospitalsHospitalIdPagesPageItemIdDelete(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11256
|
+
/**
|
|
11257
|
+
*
|
|
11258
|
+
* @summary Get hospital page
|
|
11259
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdGetRequest} requestParameters Request parameters.
|
|
11260
|
+
* @param {*} [options] Override http request option.
|
|
11261
|
+
* @throws {RequiredError}
|
|
11262
|
+
* @memberof HospitalsApi
|
|
11263
|
+
*/
|
|
11264
|
+
apiV1HospitalsHospitalIdPagesPageItemIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PageItemModel, any>>;
|
|
11265
|
+
/**
|
|
11266
|
+
*
|
|
11267
|
+
* @summary Update page
|
|
11268
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdPutRequest} requestParameters Request parameters.
|
|
11269
|
+
* @param {*} [options] Override http request option.
|
|
11270
|
+
* @throws {RequiredError}
|
|
11271
|
+
* @memberof HospitalsApi
|
|
11272
|
+
*/
|
|
11273
|
+
apiV1HospitalsHospitalIdPagesPageItemIdPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PageItemModel, any>>;
|
|
11274
|
+
/**
|
|
11275
|
+
*
|
|
11276
|
+
* @summary Reactivate page
|
|
11277
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdReactivatePutRequest} requestParameters Request parameters.
|
|
11278
|
+
* @param {*} [options] Override http request option.
|
|
11279
|
+
* @throws {RequiredError}
|
|
11280
|
+
* @memberof HospitalsApi
|
|
11281
|
+
*/
|
|
11282
|
+
apiV1HospitalsHospitalIdPagesPageItemIdReactivatePut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdReactivatePutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11283
|
+
/**
|
|
11284
|
+
*
|
|
11285
|
+
* @summary Create page
|
|
11286
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdPagesPostRequest} requestParameters Request parameters.
|
|
11287
|
+
* @param {*} [options] Override http request option.
|
|
11288
|
+
* @throws {RequiredError}
|
|
11289
|
+
* @memberof HospitalsApi
|
|
11290
|
+
*/
|
|
11291
|
+
apiV1HospitalsHospitalIdPagesPost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPagesPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
10570
11292
|
/**
|
|
10571
11293
|
*
|
|
10572
11294
|
* @summary Get hospitalPaymentMethods list
|
|
@@ -10675,6 +11397,51 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
10675
11397
|
* @memberof HospitalsApi
|
|
10676
11398
|
*/
|
|
10677
11399
|
apiV1HospitalsHospitalIdPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel, any>>;
|
|
11400
|
+
/**
|
|
11401
|
+
*
|
|
11402
|
+
* @summary Get hospitalRatings
|
|
11403
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdRatingsGetRequest} requestParameters Request parameters.
|
|
11404
|
+
* @param {*} [options] Override http request option.
|
|
11405
|
+
* @throws {RequiredError}
|
|
11406
|
+
* @memberof HospitalsApi
|
|
11407
|
+
*/
|
|
11408
|
+
apiV1HospitalsHospitalIdRatingsGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdRatingsGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalRatingsModel, any>>;
|
|
11409
|
+
/**
|
|
11410
|
+
*
|
|
11411
|
+
* @summary Delete hospitalRating
|
|
11412
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdRatingsIdDeleteRequest} requestParameters Request parameters.
|
|
11413
|
+
* @param {*} [options] Override http request option.
|
|
11414
|
+
* @throws {RequiredError}
|
|
11415
|
+
* @memberof HospitalsApi
|
|
11416
|
+
*/
|
|
11417
|
+
apiV1HospitalsHospitalIdRatingsIdDelete(requestParameters: HospitalsApiApiV1HospitalsHospitalIdRatingsIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11418
|
+
/**
|
|
11419
|
+
*
|
|
11420
|
+
* @summary Get hospitalRating
|
|
11421
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdRatingsIdGetRequest} requestParameters Request parameters.
|
|
11422
|
+
* @param {*} [options] Override http request option.
|
|
11423
|
+
* @throws {RequiredError}
|
|
11424
|
+
* @memberof HospitalsApi
|
|
11425
|
+
*/
|
|
11426
|
+
apiV1HospitalsHospitalIdRatingsIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdRatingsIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalRatingModel, any>>;
|
|
11427
|
+
/**
|
|
11428
|
+
*
|
|
11429
|
+
* @summary Update hospitalRating
|
|
11430
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdRatingsIdPutRequest} requestParameters Request parameters.
|
|
11431
|
+
* @param {*} [options] Override http request option.
|
|
11432
|
+
* @throws {RequiredError}
|
|
11433
|
+
* @memberof HospitalsApi
|
|
11434
|
+
*/
|
|
11435
|
+
apiV1HospitalsHospitalIdRatingsIdPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdRatingsIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalRatingModel, any>>;
|
|
11436
|
+
/**
|
|
11437
|
+
*
|
|
11438
|
+
* @summary Create hospitalRating
|
|
11439
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdRatingsPostRequest} requestParameters Request parameters.
|
|
11440
|
+
* @param {*} [options] Override http request option.
|
|
11441
|
+
* @throws {RequiredError}
|
|
11442
|
+
* @memberof HospitalsApi
|
|
11443
|
+
*/
|
|
11444
|
+
apiV1HospitalsHospitalIdRatingsPost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdRatingsPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalRatingModel, any>>;
|
|
10678
11445
|
/**
|
|
10679
11446
|
*
|
|
10680
11447
|
* @summary Delete HospitalSpecialty.
|