ch-admin-api-client-typescript 5.68.2 → 5.69.9
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/about-us-api.d.ts +28 -28
- package/lib/api/about-us-api.js +28 -28
- package/lib/api/appointments-api.d.ts +52 -52
- package/lib/api/appointments-api.js +52 -52
- package/lib/api/content-managers-api.d.ts +24 -24
- package/lib/api/content-managers-api.js +24 -24
- package/lib/api/countries-api.d.ts +28 -28
- package/lib/api/countries-api.js +28 -28
- package/lib/api/form-results-api.d.ts +20 -20
- package/lib/api/form-results-api.js +20 -20
- package/lib/api/hospitals-api.d.ts +520 -520
- package/lib/api/hospitals-api.js +520 -520
- package/lib/api/languages-api.d.ts +8 -8
- package/lib/api/languages-api.js +8 -8
- package/lib/api/notifications-api.d.ts +8 -8
- package/lib/api/notifications-api.js +8 -8
- package/lib/api/patient-affiliations-api.d.ts +8 -8
- package/lib/api/patient-affiliations-api.js +8 -8
- package/lib/api/patient-managers-api.d.ts +24 -24
- package/lib/api/patient-managers-api.js +24 -24
- package/lib/api/patients-api.d.ts +48 -48
- package/lib/api/patients-api.js +48 -48
- package/lib/api/profiles-api.d.ts +24 -24
- package/lib/api/profiles-api.js +24 -24
- package/lib/api/specialties-api.d.ts +60 -60
- package/lib/api/specialties-api.js +60 -60
- package/lib/api/specialty-types-api.d.ts +64 -64
- package/lib/api/specialty-types-api.js +64 -64
- package/lib/api/survey-results-api.d.ts +16 -16
- package/lib/api/survey-results-api.js +16 -16
- package/lib/api/tags-api.d.ts +16 -16
- package/lib/api/tags-api.js +16 -16
- package/lib/api/translation-api.d.ts +8 -8
- package/lib/api/translation-api.js +8 -8
- package/lib/api/users-api.d.ts +8 -8
- package/lib/api/users-api.js +8 -8
- package/lib/models/notification-code.d.ts +1 -0
- package/lib/models/notification-code.d.ts.map +1 -1
- package/lib/models/notification-code.js +2 -1
- package/package.json +1 -1
|
@@ -29,7 +29,7 @@ import { SortingOrder } from '../models';
|
|
|
29
29
|
export declare const AppointmentsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
|
-
* @summary Approve appointment (Auth
|
|
32
|
+
* @summary Approve appointment (Auth policies: RequireDoctorRole)
|
|
33
33
|
* @param {string} appointmentId
|
|
34
34
|
* @param {ApproveAppointmentCommand} [approveAppointmentCommand]
|
|
35
35
|
* @param {*} [options] Override http request option.
|
|
@@ -38,7 +38,7 @@ export declare const AppointmentsApiAxiosParamCreator: (configuration?: Configur
|
|
|
38
38
|
apiV1AppointmentsAppointmentIdApprovePut: (appointmentId: string, approveAppointmentCommand?: ApproveAppointmentCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
39
39
|
/**
|
|
40
40
|
*
|
|
41
|
-
* @summary Cancel appointment (Auth
|
|
41
|
+
* @summary Cancel appointment (Auth policies: RequireDoctorRole)
|
|
42
42
|
* @param {string} appointmentId
|
|
43
43
|
* @param {CancelAppointmentCommand} [cancelAppointmentCommand]
|
|
44
44
|
* @param {*} [options] Override http request option.
|
|
@@ -47,7 +47,7 @@ export declare const AppointmentsApiAxiosParamCreator: (configuration?: Configur
|
|
|
47
47
|
apiV1AppointmentsAppointmentIdCancelPut: (appointmentId: string, cancelAppointmentCommand?: CancelAppointmentCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
48
48
|
/**
|
|
49
49
|
*
|
|
50
|
-
* @summary Complete appointment (Auth
|
|
50
|
+
* @summary Complete appointment (Auth policies: RequireDoctorRole)
|
|
51
51
|
* @param {string} appointmentId
|
|
52
52
|
* @param {*} [options] Override http request option.
|
|
53
53
|
* @throws {RequiredError}
|
|
@@ -55,7 +55,7 @@ export declare const AppointmentsApiAxiosParamCreator: (configuration?: Configur
|
|
|
55
55
|
apiV1AppointmentsAppointmentIdCompletePost: (appointmentId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
|
-
* @summary Delete appointment (Auth
|
|
58
|
+
* @summary Delete appointment (Auth policies: RequireDoctorRole)
|
|
59
59
|
* @param {string} appointmentId
|
|
60
60
|
* @param {boolean} [isPermanent]
|
|
61
61
|
* @param {*} [options] Override http request option.
|
|
@@ -64,7 +64,7 @@ export declare const AppointmentsApiAxiosParamCreator: (configuration?: Configur
|
|
|
64
64
|
apiV1AppointmentsAppointmentIdDelete: (appointmentId: string, isPermanent?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
65
65
|
/**
|
|
66
66
|
*
|
|
67
|
-
* @summary Get appointment by id (Auth
|
|
67
|
+
* @summary Get appointment by id (Auth policies: RequireDoctorOrPatientManagerRole)
|
|
68
68
|
* @param {string} appointmentId
|
|
69
69
|
* @param {string} [languageCode]
|
|
70
70
|
* @param {*} [options] Override http request option.
|
|
@@ -73,7 +73,7 @@ export declare const AppointmentsApiAxiosParamCreator: (configuration?: Configur
|
|
|
73
73
|
apiV1AppointmentsAppointmentIdGet: (appointmentId: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
74
74
|
/**
|
|
75
75
|
*
|
|
76
|
-
* @summary Delete appointment invoice (Auth
|
|
76
|
+
* @summary Delete appointment invoice (Auth policies: RequireDoctorRole)
|
|
77
77
|
* @param {string} appointmentId
|
|
78
78
|
* @param {*} [options] Override http request option.
|
|
79
79
|
* @throws {RequiredError}
|
|
@@ -81,7 +81,7 @@ export declare const AppointmentsApiAxiosParamCreator: (configuration?: Configur
|
|
|
81
81
|
apiV1AppointmentsAppointmentIdInvoicesDelete: (appointmentId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
82
82
|
/**
|
|
83
83
|
*
|
|
84
|
-
* @summary Create appointment invoice (Auth
|
|
84
|
+
* @summary Create appointment invoice (Auth policies: RequireDoctorRole)
|
|
85
85
|
* @param {string} appointmentId
|
|
86
86
|
* @param {string} [languageCode]
|
|
87
87
|
* @param {*} [options] Override http request option.
|
|
@@ -90,7 +90,7 @@ export declare const AppointmentsApiAxiosParamCreator: (configuration?: Configur
|
|
|
90
90
|
apiV1AppointmentsAppointmentIdInvoicesPost: (appointmentId: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
91
91
|
/**
|
|
92
92
|
*
|
|
93
|
-
* @summary Set appointment paid (Auth
|
|
93
|
+
* @summary Set appointment paid (Auth policies: RequireDoctorRole)
|
|
94
94
|
* @param {string} appointmentId
|
|
95
95
|
* @param {*} [options] Override http request option.
|
|
96
96
|
* @throws {RequiredError}
|
|
@@ -98,7 +98,7 @@ export declare const AppointmentsApiAxiosParamCreator: (configuration?: Configur
|
|
|
98
98
|
apiV1AppointmentsAppointmentIdPaidPost: (appointmentId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
99
99
|
/**
|
|
100
100
|
*
|
|
101
|
-
* @summary Set appointment as refunded (Auth
|
|
101
|
+
* @summary Set appointment as refunded (Auth policies: RequireDoctorRole)
|
|
102
102
|
* @param {string} appointmentId
|
|
103
103
|
* @param {string} [languageCode]
|
|
104
104
|
* @param {*} [options] Override http request option.
|
|
@@ -107,7 +107,7 @@ export declare const AppointmentsApiAxiosParamCreator: (configuration?: Configur
|
|
|
107
107
|
apiV1AppointmentsAppointmentIdRefundPost: (appointmentId: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
108
108
|
/**
|
|
109
109
|
*
|
|
110
|
-
* @summary Reject appointment (Auth
|
|
110
|
+
* @summary Reject appointment (Auth policies: RequireDoctorRole)
|
|
111
111
|
* @param {string} appointmentId
|
|
112
112
|
* @param {RejectAppointmentCommand} [rejectAppointmentCommand]
|
|
113
113
|
* @param {*} [options] Override http request option.
|
|
@@ -116,7 +116,7 @@ export declare const AppointmentsApiAxiosParamCreator: (configuration?: Configur
|
|
|
116
116
|
apiV1AppointmentsAppointmentIdRejectPut: (appointmentId: string, rejectAppointmentCommand?: RejectAppointmentCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
117
117
|
/**
|
|
118
118
|
*
|
|
119
|
-
* @summary Reschedule appointment (Auth
|
|
119
|
+
* @summary Reschedule appointment (Auth policies: RequireDoctorRole)
|
|
120
120
|
* @param {string} appointmentId
|
|
121
121
|
* @param {RescheduleAppointmentCommand} [rescheduleAppointmentCommand]
|
|
122
122
|
* @param {*} [options] Override http request option.
|
|
@@ -125,7 +125,7 @@ export declare const AppointmentsApiAxiosParamCreator: (configuration?: Configur
|
|
|
125
125
|
apiV1AppointmentsAppointmentIdReschedulePut: (appointmentId: string, rescheduleAppointmentCommand?: RescheduleAppointmentCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
126
126
|
/**
|
|
127
127
|
*
|
|
128
|
-
* @summary Get appointments (Auth
|
|
128
|
+
* @summary Get appointments (Auth policies: RequireDoctorOrPatientManagerRole)
|
|
129
129
|
* @param {string} [id]
|
|
130
130
|
* @param {string} [userId]
|
|
131
131
|
* @param {string} [userName]
|
|
@@ -164,7 +164,7 @@ export declare const AppointmentsApiAxiosParamCreator: (configuration?: Configur
|
|
|
164
164
|
apiV1AppointmentsGet: (id?: string, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, dealId?: string, dealName?: string, dealPackageId?: string, hospitalSpecialtyId?: string, serviceId?: string, isOpen?: boolean, isCompleted?: boolean, start?: Date, end?: Date, requiresPaymentVerified?: boolean, refundInformationIsReady?: boolean, status?: AppointmentStatus, appointmentStatus?: Array<AppointmentStatus>, appointmentType?: AppointmentType, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, paymentEnabled?: boolean, languageCode?: string, hasPrescription?: boolean, showHidden?: boolean, isOnline?: boolean, isExternal?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
165
165
|
/**
|
|
166
166
|
*
|
|
167
|
-
* @summary The patient visits and makes an appointment. (Auth
|
|
167
|
+
* @summary The patient visits and makes an appointment. (Auth policies: RequireDoctorOrPatientManagerRole)
|
|
168
168
|
* @param {CreateWalkInAppointmentCommand} [createWalkInAppointmentCommand]
|
|
169
169
|
* @param {*} [options] Override http request option.
|
|
170
170
|
* @throws {RequiredError}
|
|
@@ -178,7 +178,7 @@ export declare const AppointmentsApiAxiosParamCreator: (configuration?: Configur
|
|
|
178
178
|
export declare const AppointmentsApiFp: (configuration?: Configuration) => {
|
|
179
179
|
/**
|
|
180
180
|
*
|
|
181
|
-
* @summary Approve appointment (Auth
|
|
181
|
+
* @summary Approve appointment (Auth policies: RequireDoctorRole)
|
|
182
182
|
* @param {string} appointmentId
|
|
183
183
|
* @param {ApproveAppointmentCommand} [approveAppointmentCommand]
|
|
184
184
|
* @param {*} [options] Override http request option.
|
|
@@ -187,7 +187,7 @@ export declare const AppointmentsApiFp: (configuration?: Configuration) => {
|
|
|
187
187
|
apiV1AppointmentsAppointmentIdApprovePut(appointmentId: string, approveAppointmentCommand?: ApproveAppointmentCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
188
188
|
/**
|
|
189
189
|
*
|
|
190
|
-
* @summary Cancel appointment (Auth
|
|
190
|
+
* @summary Cancel appointment (Auth policies: RequireDoctorRole)
|
|
191
191
|
* @param {string} appointmentId
|
|
192
192
|
* @param {CancelAppointmentCommand} [cancelAppointmentCommand]
|
|
193
193
|
* @param {*} [options] Override http request option.
|
|
@@ -196,7 +196,7 @@ export declare const AppointmentsApiFp: (configuration?: Configuration) => {
|
|
|
196
196
|
apiV1AppointmentsAppointmentIdCancelPut(appointmentId: string, cancelAppointmentCommand?: CancelAppointmentCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
197
197
|
/**
|
|
198
198
|
*
|
|
199
|
-
* @summary Complete appointment (Auth
|
|
199
|
+
* @summary Complete appointment (Auth policies: RequireDoctorRole)
|
|
200
200
|
* @param {string} appointmentId
|
|
201
201
|
* @param {*} [options] Override http request option.
|
|
202
202
|
* @throws {RequiredError}
|
|
@@ -204,7 +204,7 @@ export declare const AppointmentsApiFp: (configuration?: Configuration) => {
|
|
|
204
204
|
apiV1AppointmentsAppointmentIdCompletePost(appointmentId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
205
205
|
/**
|
|
206
206
|
*
|
|
207
|
-
* @summary Delete appointment (Auth
|
|
207
|
+
* @summary Delete appointment (Auth policies: RequireDoctorRole)
|
|
208
208
|
* @param {string} appointmentId
|
|
209
209
|
* @param {boolean} [isPermanent]
|
|
210
210
|
* @param {*} [options] Override http request option.
|
|
@@ -213,7 +213,7 @@ export declare const AppointmentsApiFp: (configuration?: Configuration) => {
|
|
|
213
213
|
apiV1AppointmentsAppointmentIdDelete(appointmentId: string, isPermanent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
214
214
|
/**
|
|
215
215
|
*
|
|
216
|
-
* @summary Get appointment by id (Auth
|
|
216
|
+
* @summary Get appointment by id (Auth policies: RequireDoctorOrPatientManagerRole)
|
|
217
217
|
* @param {string} appointmentId
|
|
218
218
|
* @param {string} [languageCode]
|
|
219
219
|
* @param {*} [options] Override http request option.
|
|
@@ -222,7 +222,7 @@ export declare const AppointmentsApiFp: (configuration?: Configuration) => {
|
|
|
222
222
|
apiV1AppointmentsAppointmentIdGet(appointmentId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentModel>>;
|
|
223
223
|
/**
|
|
224
224
|
*
|
|
225
|
-
* @summary Delete appointment invoice (Auth
|
|
225
|
+
* @summary Delete appointment invoice (Auth policies: RequireDoctorRole)
|
|
226
226
|
* @param {string} appointmentId
|
|
227
227
|
* @param {*} [options] Override http request option.
|
|
228
228
|
* @throws {RequiredError}
|
|
@@ -230,7 +230,7 @@ export declare const AppointmentsApiFp: (configuration?: Configuration) => {
|
|
|
230
230
|
apiV1AppointmentsAppointmentIdInvoicesDelete(appointmentId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
231
231
|
/**
|
|
232
232
|
*
|
|
233
|
-
* @summary Create appointment invoice (Auth
|
|
233
|
+
* @summary Create appointment invoice (Auth policies: RequireDoctorRole)
|
|
234
234
|
* @param {string} appointmentId
|
|
235
235
|
* @param {string} [languageCode]
|
|
236
236
|
* @param {*} [options] Override http request option.
|
|
@@ -239,7 +239,7 @@ export declare const AppointmentsApiFp: (configuration?: Configuration) => {
|
|
|
239
239
|
apiV1AppointmentsAppointmentIdInvoicesPost(appointmentId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
240
240
|
/**
|
|
241
241
|
*
|
|
242
|
-
* @summary Set appointment paid (Auth
|
|
242
|
+
* @summary Set appointment paid (Auth policies: RequireDoctorRole)
|
|
243
243
|
* @param {string} appointmentId
|
|
244
244
|
* @param {*} [options] Override http request option.
|
|
245
245
|
* @throws {RequiredError}
|
|
@@ -247,7 +247,7 @@ export declare const AppointmentsApiFp: (configuration?: Configuration) => {
|
|
|
247
247
|
apiV1AppointmentsAppointmentIdPaidPost(appointmentId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
248
248
|
/**
|
|
249
249
|
*
|
|
250
|
-
* @summary Set appointment as refunded (Auth
|
|
250
|
+
* @summary Set appointment as refunded (Auth policies: RequireDoctorRole)
|
|
251
251
|
* @param {string} appointmentId
|
|
252
252
|
* @param {string} [languageCode]
|
|
253
253
|
* @param {*} [options] Override http request option.
|
|
@@ -256,7 +256,7 @@ export declare const AppointmentsApiFp: (configuration?: Configuration) => {
|
|
|
256
256
|
apiV1AppointmentsAppointmentIdRefundPost(appointmentId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentModel>>;
|
|
257
257
|
/**
|
|
258
258
|
*
|
|
259
|
-
* @summary Reject appointment (Auth
|
|
259
|
+
* @summary Reject appointment (Auth policies: RequireDoctorRole)
|
|
260
260
|
* @param {string} appointmentId
|
|
261
261
|
* @param {RejectAppointmentCommand} [rejectAppointmentCommand]
|
|
262
262
|
* @param {*} [options] Override http request option.
|
|
@@ -265,7 +265,7 @@ export declare const AppointmentsApiFp: (configuration?: Configuration) => {
|
|
|
265
265
|
apiV1AppointmentsAppointmentIdRejectPut(appointmentId: string, rejectAppointmentCommand?: RejectAppointmentCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
266
266
|
/**
|
|
267
267
|
*
|
|
268
|
-
* @summary Reschedule appointment (Auth
|
|
268
|
+
* @summary Reschedule appointment (Auth policies: RequireDoctorRole)
|
|
269
269
|
* @param {string} appointmentId
|
|
270
270
|
* @param {RescheduleAppointmentCommand} [rescheduleAppointmentCommand]
|
|
271
271
|
* @param {*} [options] Override http request option.
|
|
@@ -274,7 +274,7 @@ export declare const AppointmentsApiFp: (configuration?: Configuration) => {
|
|
|
274
274
|
apiV1AppointmentsAppointmentIdReschedulePut(appointmentId: string, rescheduleAppointmentCommand?: RescheduleAppointmentCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentModel>>;
|
|
275
275
|
/**
|
|
276
276
|
*
|
|
277
|
-
* @summary Get appointments (Auth
|
|
277
|
+
* @summary Get appointments (Auth policies: RequireDoctorOrPatientManagerRole)
|
|
278
278
|
* @param {string} [id]
|
|
279
279
|
* @param {string} [userId]
|
|
280
280
|
* @param {string} [userName]
|
|
@@ -313,7 +313,7 @@ export declare const AppointmentsApiFp: (configuration?: Configuration) => {
|
|
|
313
313
|
apiV1AppointmentsGet(id?: string, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, dealId?: string, dealName?: string, dealPackageId?: string, hospitalSpecialtyId?: string, serviceId?: string, isOpen?: boolean, isCompleted?: boolean, start?: Date, end?: Date, requiresPaymentVerified?: boolean, refundInformationIsReady?: boolean, status?: AppointmentStatus, appointmentStatus?: Array<AppointmentStatus>, appointmentType?: AppointmentType, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, paymentEnabled?: boolean, languageCode?: string, hasPrescription?: boolean, showHidden?: boolean, isOnline?: boolean, isExternal?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentsModel>>;
|
|
314
314
|
/**
|
|
315
315
|
*
|
|
316
|
-
* @summary The patient visits and makes an appointment. (Auth
|
|
316
|
+
* @summary The patient visits and makes an appointment. (Auth policies: RequireDoctorOrPatientManagerRole)
|
|
317
317
|
* @param {CreateWalkInAppointmentCommand} [createWalkInAppointmentCommand]
|
|
318
318
|
* @param {*} [options] Override http request option.
|
|
319
319
|
* @throws {RequiredError}
|
|
@@ -327,7 +327,7 @@ export declare const AppointmentsApiFp: (configuration?: Configuration) => {
|
|
|
327
327
|
export declare const AppointmentsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
328
328
|
/**
|
|
329
329
|
*
|
|
330
|
-
* @summary Approve appointment (Auth
|
|
330
|
+
* @summary Approve appointment (Auth policies: RequireDoctorRole)
|
|
331
331
|
* @param {string} appointmentId
|
|
332
332
|
* @param {ApproveAppointmentCommand} [approveAppointmentCommand]
|
|
333
333
|
* @param {*} [options] Override http request option.
|
|
@@ -336,7 +336,7 @@ export declare const AppointmentsApiFactory: (configuration?: Configuration, bas
|
|
|
336
336
|
apiV1AppointmentsAppointmentIdApprovePut(appointmentId: string, approveAppointmentCommand?: ApproveAppointmentCommand, options?: any): AxiosPromise<boolean>;
|
|
337
337
|
/**
|
|
338
338
|
*
|
|
339
|
-
* @summary Cancel appointment (Auth
|
|
339
|
+
* @summary Cancel appointment (Auth policies: RequireDoctorRole)
|
|
340
340
|
* @param {string} appointmentId
|
|
341
341
|
* @param {CancelAppointmentCommand} [cancelAppointmentCommand]
|
|
342
342
|
* @param {*} [options] Override http request option.
|
|
@@ -345,7 +345,7 @@ export declare const AppointmentsApiFactory: (configuration?: Configuration, bas
|
|
|
345
345
|
apiV1AppointmentsAppointmentIdCancelPut(appointmentId: string, cancelAppointmentCommand?: CancelAppointmentCommand, options?: any): AxiosPromise<boolean>;
|
|
346
346
|
/**
|
|
347
347
|
*
|
|
348
|
-
* @summary Complete appointment (Auth
|
|
348
|
+
* @summary Complete appointment (Auth policies: RequireDoctorRole)
|
|
349
349
|
* @param {string} appointmentId
|
|
350
350
|
* @param {*} [options] Override http request option.
|
|
351
351
|
* @throws {RequiredError}
|
|
@@ -353,7 +353,7 @@ export declare const AppointmentsApiFactory: (configuration?: Configuration, bas
|
|
|
353
353
|
apiV1AppointmentsAppointmentIdCompletePost(appointmentId: string, options?: any): AxiosPromise<boolean>;
|
|
354
354
|
/**
|
|
355
355
|
*
|
|
356
|
-
* @summary Delete appointment (Auth
|
|
356
|
+
* @summary Delete appointment (Auth policies: RequireDoctorRole)
|
|
357
357
|
* @param {string} appointmentId
|
|
358
358
|
* @param {boolean} [isPermanent]
|
|
359
359
|
* @param {*} [options] Override http request option.
|
|
@@ -362,7 +362,7 @@ export declare const AppointmentsApiFactory: (configuration?: Configuration, bas
|
|
|
362
362
|
apiV1AppointmentsAppointmentIdDelete(appointmentId: string, isPermanent?: boolean, options?: any): AxiosPromise<boolean>;
|
|
363
363
|
/**
|
|
364
364
|
*
|
|
365
|
-
* @summary Get appointment by id (Auth
|
|
365
|
+
* @summary Get appointment by id (Auth policies: RequireDoctorOrPatientManagerRole)
|
|
366
366
|
* @param {string} appointmentId
|
|
367
367
|
* @param {string} [languageCode]
|
|
368
368
|
* @param {*} [options] Override http request option.
|
|
@@ -371,7 +371,7 @@ export declare const AppointmentsApiFactory: (configuration?: Configuration, bas
|
|
|
371
371
|
apiV1AppointmentsAppointmentIdGet(appointmentId: string, languageCode?: string, options?: any): AxiosPromise<AppointmentModel>;
|
|
372
372
|
/**
|
|
373
373
|
*
|
|
374
|
-
* @summary Delete appointment invoice (Auth
|
|
374
|
+
* @summary Delete appointment invoice (Auth policies: RequireDoctorRole)
|
|
375
375
|
* @param {string} appointmentId
|
|
376
376
|
* @param {*} [options] Override http request option.
|
|
377
377
|
* @throws {RequiredError}
|
|
@@ -379,7 +379,7 @@ export declare const AppointmentsApiFactory: (configuration?: Configuration, bas
|
|
|
379
379
|
apiV1AppointmentsAppointmentIdInvoicesDelete(appointmentId: string, options?: any): AxiosPromise<void>;
|
|
380
380
|
/**
|
|
381
381
|
*
|
|
382
|
-
* @summary Create appointment invoice (Auth
|
|
382
|
+
* @summary Create appointment invoice (Auth policies: RequireDoctorRole)
|
|
383
383
|
* @param {string} appointmentId
|
|
384
384
|
* @param {string} [languageCode]
|
|
385
385
|
* @param {*} [options] Override http request option.
|
|
@@ -388,7 +388,7 @@ export declare const AppointmentsApiFactory: (configuration?: Configuration, bas
|
|
|
388
388
|
apiV1AppointmentsAppointmentIdInvoicesPost(appointmentId: string, languageCode?: string, options?: any): AxiosPromise<void>;
|
|
389
389
|
/**
|
|
390
390
|
*
|
|
391
|
-
* @summary Set appointment paid (Auth
|
|
391
|
+
* @summary Set appointment paid (Auth policies: RequireDoctorRole)
|
|
392
392
|
* @param {string} appointmentId
|
|
393
393
|
* @param {*} [options] Override http request option.
|
|
394
394
|
* @throws {RequiredError}
|
|
@@ -396,7 +396,7 @@ export declare const AppointmentsApiFactory: (configuration?: Configuration, bas
|
|
|
396
396
|
apiV1AppointmentsAppointmentIdPaidPost(appointmentId: string, options?: any): AxiosPromise<string>;
|
|
397
397
|
/**
|
|
398
398
|
*
|
|
399
|
-
* @summary Set appointment as refunded (Auth
|
|
399
|
+
* @summary Set appointment as refunded (Auth policies: RequireDoctorRole)
|
|
400
400
|
* @param {string} appointmentId
|
|
401
401
|
* @param {string} [languageCode]
|
|
402
402
|
* @param {*} [options] Override http request option.
|
|
@@ -405,7 +405,7 @@ export declare const AppointmentsApiFactory: (configuration?: Configuration, bas
|
|
|
405
405
|
apiV1AppointmentsAppointmentIdRefundPost(appointmentId: string, languageCode?: string, options?: any): AxiosPromise<AppointmentModel>;
|
|
406
406
|
/**
|
|
407
407
|
*
|
|
408
|
-
* @summary Reject appointment (Auth
|
|
408
|
+
* @summary Reject appointment (Auth policies: RequireDoctorRole)
|
|
409
409
|
* @param {string} appointmentId
|
|
410
410
|
* @param {RejectAppointmentCommand} [rejectAppointmentCommand]
|
|
411
411
|
* @param {*} [options] Override http request option.
|
|
@@ -414,7 +414,7 @@ export declare const AppointmentsApiFactory: (configuration?: Configuration, bas
|
|
|
414
414
|
apiV1AppointmentsAppointmentIdRejectPut(appointmentId: string, rejectAppointmentCommand?: RejectAppointmentCommand, options?: any): AxiosPromise<boolean>;
|
|
415
415
|
/**
|
|
416
416
|
*
|
|
417
|
-
* @summary Reschedule appointment (Auth
|
|
417
|
+
* @summary Reschedule appointment (Auth policies: RequireDoctorRole)
|
|
418
418
|
* @param {string} appointmentId
|
|
419
419
|
* @param {RescheduleAppointmentCommand} [rescheduleAppointmentCommand]
|
|
420
420
|
* @param {*} [options] Override http request option.
|
|
@@ -423,7 +423,7 @@ export declare const AppointmentsApiFactory: (configuration?: Configuration, bas
|
|
|
423
423
|
apiV1AppointmentsAppointmentIdReschedulePut(appointmentId: string, rescheduleAppointmentCommand?: RescheduleAppointmentCommand, options?: any): AxiosPromise<AppointmentModel>;
|
|
424
424
|
/**
|
|
425
425
|
*
|
|
426
|
-
* @summary Get appointments (Auth
|
|
426
|
+
* @summary Get appointments (Auth policies: RequireDoctorOrPatientManagerRole)
|
|
427
427
|
* @param {string} [id]
|
|
428
428
|
* @param {string} [userId]
|
|
429
429
|
* @param {string} [userName]
|
|
@@ -462,7 +462,7 @@ export declare const AppointmentsApiFactory: (configuration?: Configuration, bas
|
|
|
462
462
|
apiV1AppointmentsGet(id?: string, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, dealId?: string, dealName?: string, dealPackageId?: string, hospitalSpecialtyId?: string, serviceId?: string, isOpen?: boolean, isCompleted?: boolean, start?: Date, end?: Date, requiresPaymentVerified?: boolean, refundInformationIsReady?: boolean, status?: AppointmentStatus, appointmentStatus?: Array<AppointmentStatus>, appointmentType?: AppointmentType, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, paymentEnabled?: boolean, languageCode?: string, hasPrescription?: boolean, showHidden?: boolean, isOnline?: boolean, isExternal?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<AppointmentsModel>;
|
|
463
463
|
/**
|
|
464
464
|
*
|
|
465
|
-
* @summary The patient visits and makes an appointment. (Auth
|
|
465
|
+
* @summary The patient visits and makes an appointment. (Auth policies: RequireDoctorOrPatientManagerRole)
|
|
466
466
|
* @param {CreateWalkInAppointmentCommand} [createWalkInAppointmentCommand]
|
|
467
467
|
* @param {*} [options] Override http request option.
|
|
468
468
|
* @throws {RequiredError}
|
|
@@ -881,7 +881,7 @@ export interface AppointmentsApiApiV1AppointmentsWalkinPostRequest {
|
|
|
881
881
|
export declare class AppointmentsApi extends BaseAPI {
|
|
882
882
|
/**
|
|
883
883
|
*
|
|
884
|
-
* @summary Approve appointment (Auth
|
|
884
|
+
* @summary Approve appointment (Auth policies: RequireDoctorRole)
|
|
885
885
|
* @param {AppointmentsApiApiV1AppointmentsAppointmentIdApprovePutRequest} requestParameters Request parameters.
|
|
886
886
|
* @param {*} [options] Override http request option.
|
|
887
887
|
* @throws {RequiredError}
|
|
@@ -890,7 +890,7 @@ export declare class AppointmentsApi extends BaseAPI {
|
|
|
890
890
|
apiV1AppointmentsAppointmentIdApprovePut(requestParameters: AppointmentsApiApiV1AppointmentsAppointmentIdApprovePutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
891
891
|
/**
|
|
892
892
|
*
|
|
893
|
-
* @summary Cancel appointment (Auth
|
|
893
|
+
* @summary Cancel appointment (Auth policies: RequireDoctorRole)
|
|
894
894
|
* @param {AppointmentsApiApiV1AppointmentsAppointmentIdCancelPutRequest} requestParameters Request parameters.
|
|
895
895
|
* @param {*} [options] Override http request option.
|
|
896
896
|
* @throws {RequiredError}
|
|
@@ -899,7 +899,7 @@ export declare class AppointmentsApi extends BaseAPI {
|
|
|
899
899
|
apiV1AppointmentsAppointmentIdCancelPut(requestParameters: AppointmentsApiApiV1AppointmentsAppointmentIdCancelPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
900
900
|
/**
|
|
901
901
|
*
|
|
902
|
-
* @summary Complete appointment (Auth
|
|
902
|
+
* @summary Complete appointment (Auth policies: RequireDoctorRole)
|
|
903
903
|
* @param {AppointmentsApiApiV1AppointmentsAppointmentIdCompletePostRequest} requestParameters Request parameters.
|
|
904
904
|
* @param {*} [options] Override http request option.
|
|
905
905
|
* @throws {RequiredError}
|
|
@@ -908,7 +908,7 @@ export declare class AppointmentsApi extends BaseAPI {
|
|
|
908
908
|
apiV1AppointmentsAppointmentIdCompletePost(requestParameters: AppointmentsApiApiV1AppointmentsAppointmentIdCompletePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
909
909
|
/**
|
|
910
910
|
*
|
|
911
|
-
* @summary Delete appointment (Auth
|
|
911
|
+
* @summary Delete appointment (Auth policies: RequireDoctorRole)
|
|
912
912
|
* @param {AppointmentsApiApiV1AppointmentsAppointmentIdDeleteRequest} requestParameters Request parameters.
|
|
913
913
|
* @param {*} [options] Override http request option.
|
|
914
914
|
* @throws {RequiredError}
|
|
@@ -917,7 +917,7 @@ export declare class AppointmentsApi extends BaseAPI {
|
|
|
917
917
|
apiV1AppointmentsAppointmentIdDelete(requestParameters: AppointmentsApiApiV1AppointmentsAppointmentIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
918
918
|
/**
|
|
919
919
|
*
|
|
920
|
-
* @summary Get appointment by id (Auth
|
|
920
|
+
* @summary Get appointment by id (Auth policies: RequireDoctorOrPatientManagerRole)
|
|
921
921
|
* @param {AppointmentsApiApiV1AppointmentsAppointmentIdGetRequest} requestParameters Request parameters.
|
|
922
922
|
* @param {*} [options] Override http request option.
|
|
923
923
|
* @throws {RequiredError}
|
|
@@ -926,7 +926,7 @@ export declare class AppointmentsApi extends BaseAPI {
|
|
|
926
926
|
apiV1AppointmentsAppointmentIdGet(requestParameters: AppointmentsApiApiV1AppointmentsAppointmentIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AppointmentModel, any>>;
|
|
927
927
|
/**
|
|
928
928
|
*
|
|
929
|
-
* @summary Delete appointment invoice (Auth
|
|
929
|
+
* @summary Delete appointment invoice (Auth policies: RequireDoctorRole)
|
|
930
930
|
* @param {AppointmentsApiApiV1AppointmentsAppointmentIdInvoicesDeleteRequest} requestParameters Request parameters.
|
|
931
931
|
* @param {*} [options] Override http request option.
|
|
932
932
|
* @throws {RequiredError}
|
|
@@ -935,7 +935,7 @@ export declare class AppointmentsApi extends BaseAPI {
|
|
|
935
935
|
apiV1AppointmentsAppointmentIdInvoicesDelete(requestParameters: AppointmentsApiApiV1AppointmentsAppointmentIdInvoicesDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
936
936
|
/**
|
|
937
937
|
*
|
|
938
|
-
* @summary Create appointment invoice (Auth
|
|
938
|
+
* @summary Create appointment invoice (Auth policies: RequireDoctorRole)
|
|
939
939
|
* @param {AppointmentsApiApiV1AppointmentsAppointmentIdInvoicesPostRequest} requestParameters Request parameters.
|
|
940
940
|
* @param {*} [options] Override http request option.
|
|
941
941
|
* @throws {RequiredError}
|
|
@@ -944,7 +944,7 @@ export declare class AppointmentsApi extends BaseAPI {
|
|
|
944
944
|
apiV1AppointmentsAppointmentIdInvoicesPost(requestParameters: AppointmentsApiApiV1AppointmentsAppointmentIdInvoicesPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
945
945
|
/**
|
|
946
946
|
*
|
|
947
|
-
* @summary Set appointment paid (Auth
|
|
947
|
+
* @summary Set appointment paid (Auth policies: RequireDoctorRole)
|
|
948
948
|
* @param {AppointmentsApiApiV1AppointmentsAppointmentIdPaidPostRequest} requestParameters Request parameters.
|
|
949
949
|
* @param {*} [options] Override http request option.
|
|
950
950
|
* @throws {RequiredError}
|
|
@@ -953,7 +953,7 @@ export declare class AppointmentsApi extends BaseAPI {
|
|
|
953
953
|
apiV1AppointmentsAppointmentIdPaidPost(requestParameters: AppointmentsApiApiV1AppointmentsAppointmentIdPaidPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
954
954
|
/**
|
|
955
955
|
*
|
|
956
|
-
* @summary Set appointment as refunded (Auth
|
|
956
|
+
* @summary Set appointment as refunded (Auth policies: RequireDoctorRole)
|
|
957
957
|
* @param {AppointmentsApiApiV1AppointmentsAppointmentIdRefundPostRequest} requestParameters Request parameters.
|
|
958
958
|
* @param {*} [options] Override http request option.
|
|
959
959
|
* @throws {RequiredError}
|
|
@@ -962,7 +962,7 @@ export declare class AppointmentsApi extends BaseAPI {
|
|
|
962
962
|
apiV1AppointmentsAppointmentIdRefundPost(requestParameters: AppointmentsApiApiV1AppointmentsAppointmentIdRefundPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AppointmentModel, any>>;
|
|
963
963
|
/**
|
|
964
964
|
*
|
|
965
|
-
* @summary Reject appointment (Auth
|
|
965
|
+
* @summary Reject appointment (Auth policies: RequireDoctorRole)
|
|
966
966
|
* @param {AppointmentsApiApiV1AppointmentsAppointmentIdRejectPutRequest} requestParameters Request parameters.
|
|
967
967
|
* @param {*} [options] Override http request option.
|
|
968
968
|
* @throws {RequiredError}
|
|
@@ -971,7 +971,7 @@ export declare class AppointmentsApi extends BaseAPI {
|
|
|
971
971
|
apiV1AppointmentsAppointmentIdRejectPut(requestParameters: AppointmentsApiApiV1AppointmentsAppointmentIdRejectPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
972
972
|
/**
|
|
973
973
|
*
|
|
974
|
-
* @summary Reschedule appointment (Auth
|
|
974
|
+
* @summary Reschedule appointment (Auth policies: RequireDoctorRole)
|
|
975
975
|
* @param {AppointmentsApiApiV1AppointmentsAppointmentIdReschedulePutRequest} requestParameters Request parameters.
|
|
976
976
|
* @param {*} [options] Override http request option.
|
|
977
977
|
* @throws {RequiredError}
|
|
@@ -980,7 +980,7 @@ export declare class AppointmentsApi extends BaseAPI {
|
|
|
980
980
|
apiV1AppointmentsAppointmentIdReschedulePut(requestParameters: AppointmentsApiApiV1AppointmentsAppointmentIdReschedulePutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AppointmentModel, any>>;
|
|
981
981
|
/**
|
|
982
982
|
*
|
|
983
|
-
* @summary Get appointments (Auth
|
|
983
|
+
* @summary Get appointments (Auth policies: RequireDoctorOrPatientManagerRole)
|
|
984
984
|
* @param {AppointmentsApiApiV1AppointmentsGetRequest} requestParameters Request parameters.
|
|
985
985
|
* @param {*} [options] Override http request option.
|
|
986
986
|
* @throws {RequiredError}
|
|
@@ -989,7 +989,7 @@ export declare class AppointmentsApi extends BaseAPI {
|
|
|
989
989
|
apiV1AppointmentsGet(requestParameters?: AppointmentsApiApiV1AppointmentsGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AppointmentsModel, any>>;
|
|
990
990
|
/**
|
|
991
991
|
*
|
|
992
|
-
* @summary The patient visits and makes an appointment. (Auth
|
|
992
|
+
* @summary The patient visits and makes an appointment. (Auth policies: RequireDoctorOrPatientManagerRole)
|
|
993
993
|
* @param {AppointmentsApiApiV1AppointmentsWalkinPostRequest} requestParameters Request parameters.
|
|
994
994
|
* @param {*} [options] Override http request option.
|
|
995
995
|
* @throws {RequiredError}
|