ch-admin-api-client-typescript 5.19.50 → 5.19.58

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.
Files changed (62) hide show
  1. package/lib/api/appointments-api.d.ts +46 -0
  2. package/lib/api/appointments-api.d.ts.map +1 -1
  3. package/lib/api/appointments-api.js +85 -0
  4. package/lib/api/hospitals-api.d.ts +109 -36
  5. package/lib/api/hospitals-api.d.ts.map +1 -1
  6. package/lib/api/hospitals-api.js +141 -38
  7. package/lib/api/web-apps-api.d.ts +46 -0
  8. package/lib/api/web-apps-api.d.ts.map +1 -1
  9. package/lib/api/web-apps-api.js +85 -0
  10. package/lib/models/application.d.ts +7 -0
  11. package/lib/models/application.d.ts.map +1 -1
  12. package/lib/models/appointment-status.d.ts +1 -0
  13. package/lib/models/appointment-status.d.ts.map +1 -1
  14. package/lib/models/appointment-status.js +2 -1
  15. package/lib/models/create-hospital-working-day-command.d.ts +6 -0
  16. package/lib/models/create-hospital-working-day-command.d.ts.map +1 -1
  17. package/lib/models/create-service-review-command.d.ts +6 -0
  18. package/lib/models/create-service-review-command.d.ts.map +1 -1
  19. package/lib/models/hospital-contact-item-model.d.ts +7 -0
  20. package/lib/models/hospital-contact-item-model.d.ts.map +1 -1
  21. package/lib/models/hospital-contact-model.d.ts +7 -0
  22. package/lib/models/hospital-contact-model.d.ts.map +1 -1
  23. package/lib/models/index.d.ts +1 -0
  24. package/lib/models/index.d.ts.map +1 -1
  25. package/lib/models/index.js +1 -0
  26. package/lib/models/privacy-settings.d.ts +25 -0
  27. package/lib/models/privacy-settings.d.ts.map +1 -0
  28. package/lib/models/privacy-settings.js +15 -0
  29. package/lib/models/service-review-item-model.d.ts +9 -3
  30. package/lib/models/service-review-item-model.d.ts.map +1 -1
  31. package/lib/models/service-review-model.d.ts +9 -3
  32. package/lib/models/service-review-model.d.ts.map +1 -1
  33. package/lib/models/update-hospital-working-day-command.d.ts +6 -0
  34. package/lib/models/update-hospital-working-day-command.d.ts.map +1 -1
  35. package/lib/models/update-service-review-command.d.ts +6 -0
  36. package/lib/models/update-service-review-command.d.ts.map +1 -1
  37. package/lib/models/voice.d.ts +18 -0
  38. package/lib/models/voice.d.ts.map +1 -1
  39. package/lib/models/working-day-item-model.d.ts +6 -0
  40. package/lib/models/working-day-item-model.d.ts.map +1 -1
  41. package/lib/models/working-day-model.d.ts +6 -0
  42. package/lib/models/working-day-model.d.ts.map +1 -1
  43. package/package.json +1 -1
  44. package/src/.openapi-generator/FILES +1 -0
  45. package/src/api/appointments-api.ts +85 -0
  46. package/src/api/hospitals-api.ts +187 -61
  47. package/src/api/web-apps-api.ts +85 -0
  48. package/src/models/application.ts +9 -0
  49. package/src/models/appointment-status.ts +2 -1
  50. package/src/models/create-hospital-working-day-command.ts +6 -0
  51. package/src/models/create-service-review-command.ts +6 -0
  52. package/src/models/hospital-contact-item-model.ts +9 -0
  53. package/src/models/hospital-contact-model.ts +9 -0
  54. package/src/models/index.ts +1 -0
  55. package/src/models/privacy-settings.ts +30 -0
  56. package/src/models/service-review-item-model.ts +9 -3
  57. package/src/models/service-review-model.ts +9 -3
  58. package/src/models/update-hospital-working-day-command.ts +6 -0
  59. package/src/models/update-service-review-command.ts +6 -0
  60. package/src/models/voice.ts +18 -0
  61. package/src/models/working-day-item-model.ts +6 -0
  62. package/src/models/working-day-model.ts +6 -0
@@ -41,6 +41,14 @@ export declare const AppointmentsApiAxiosParamCreator: (configuration?: Configur
41
41
  * @throws {RequiredError}
42
42
  */
43
43
  apiV1AppointmentsAppointmentIdCancelPut: (appointmentId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
44
+ /**
45
+ *
46
+ * @summary Complete appointment
47
+ * @param {string} appointmentId
48
+ * @param {*} [options] Override http request option.
49
+ * @throws {RequiredError}
50
+ */
51
+ apiV1AppointmentsAppointmentIdCompletePost: (appointmentId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
44
52
  /**
45
53
  *
46
54
  * @summary Delete appointment
@@ -143,6 +151,14 @@ export declare const AppointmentsApiFp: (configuration?: Configuration) => {
143
151
  * @throws {RequiredError}
144
152
  */
145
153
  apiV1AppointmentsAppointmentIdCancelPut(appointmentId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
154
+ /**
155
+ *
156
+ * @summary Complete appointment
157
+ * @param {string} appointmentId
158
+ * @param {*} [options] Override http request option.
159
+ * @throws {RequiredError}
160
+ */
161
+ apiV1AppointmentsAppointmentIdCompletePost(appointmentId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
146
162
  /**
147
163
  *
148
164
  * @summary Delete appointment
@@ -245,6 +261,14 @@ export declare const AppointmentsApiFactory: (configuration?: Configuration, bas
245
261
  * @throws {RequiredError}
246
262
  */
247
263
  apiV1AppointmentsAppointmentIdCancelPut(appointmentId: string, options?: any): AxiosPromise<boolean>;
264
+ /**
265
+ *
266
+ * @summary Complete appointment
267
+ * @param {string} appointmentId
268
+ * @param {*} [options] Override http request option.
269
+ * @throws {RequiredError}
270
+ */
271
+ apiV1AppointmentsAppointmentIdCompletePost(appointmentId: string, options?: any): AxiosPromise<boolean>;
248
272
  /**
249
273
  *
250
274
  * @summary Delete appointment
@@ -357,6 +381,19 @@ export interface AppointmentsApiApiV1AppointmentsAppointmentIdCancelPutRequest {
357
381
  */
358
382
  readonly appointmentId: string;
359
383
  }
384
+ /**
385
+ * Request parameters for apiV1AppointmentsAppointmentIdCompletePost operation in AppointmentsApi.
386
+ * @export
387
+ * @interface AppointmentsApiApiV1AppointmentsAppointmentIdCompletePostRequest
388
+ */
389
+ export interface AppointmentsApiApiV1AppointmentsAppointmentIdCompletePostRequest {
390
+ /**
391
+ *
392
+ * @type {string}
393
+ * @memberof AppointmentsApiApiV1AppointmentsAppointmentIdCompletePost
394
+ */
395
+ readonly appointmentId: string;
396
+ }
360
397
  /**
361
398
  * Request parameters for apiV1AppointmentsAppointmentIdDelete operation in AppointmentsApi.
362
399
  * @export
@@ -646,6 +683,15 @@ export declare class AppointmentsApi extends BaseAPI {
646
683
  * @memberof AppointmentsApi
647
684
  */
648
685
  apiV1AppointmentsAppointmentIdCancelPut(requestParameters: AppointmentsApiApiV1AppointmentsAppointmentIdCancelPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
686
+ /**
687
+ *
688
+ * @summary Complete appointment
689
+ * @param {AppointmentsApiApiV1AppointmentsAppointmentIdCompletePostRequest} requestParameters Request parameters.
690
+ * @param {*} [options] Override http request option.
691
+ * @throws {RequiredError}
692
+ * @memberof AppointmentsApi
693
+ */
694
+ apiV1AppointmentsAppointmentIdCompletePost(requestParameters: AppointmentsApiApiV1AppointmentsAppointmentIdCompletePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
649
695
  /**
650
696
  *
651
697
  * @summary Delete appointment
@@ -1 +1 @@
1
- {"version":3,"file":"appointments-api.d.ts","sourceRoot":"","sources":["../../src/api/appointments-api.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"appointments-api.d.ts","sourceRoot":"","sources":["../../src/api/appointments-api.ts"],"names":[],"mappings":"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"}
@@ -181,6 +181,49 @@ var AppointmentsApiAxiosParamCreator = function (configuration) {
181
181
  });
182
182
  });
183
183
  },
184
+ /**
185
+ *
186
+ * @summary Complete appointment
187
+ * @param {string} appointmentId
188
+ * @param {*} [options] Override http request option.
189
+ * @throws {RequiredError}
190
+ */
191
+ apiV1AppointmentsAppointmentIdCompletePost: function (appointmentId, options) {
192
+ if (options === void 0) { options = {}; }
193
+ return __awaiter(_this, void 0, void 0, function () {
194
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
195
+ return __generator(this, function (_a) {
196
+ switch (_a.label) {
197
+ case 0:
198
+ // verify required parameter 'appointmentId' is not null or undefined
199
+ (0, common_1.assertParamExists)('apiV1AppointmentsAppointmentIdCompletePost', 'appointmentId', appointmentId);
200
+ localVarPath = "/api/v1/appointments/{appointmentId}/complete"
201
+ .replace("{".concat("appointmentId", "}"), encodeURIComponent(String(appointmentId)));
202
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
203
+ if (configuration) {
204
+ baseOptions = configuration.baseOptions;
205
+ }
206
+ localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
207
+ localVarHeaderParameter = {};
208
+ localVarQueryParameter = {};
209
+ // authentication oauth2 required
210
+ // oauth required
211
+ return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)];
212
+ case 1:
213
+ // authentication oauth2 required
214
+ // oauth required
215
+ _a.sent();
216
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
217
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
218
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
219
+ return [2 /*return*/, {
220
+ url: (0, common_1.toPathString)(localVarUrlObj),
221
+ options: localVarRequestOptions,
222
+ }];
223
+ }
224
+ });
225
+ });
226
+ },
184
227
  /**
185
228
  *
186
229
  * @summary Delete appointment
@@ -615,6 +658,26 @@ var AppointmentsApiFp = function (configuration) {
615
658
  });
616
659
  });
617
660
  },
661
+ /**
662
+ *
663
+ * @summary Complete appointment
664
+ * @param {string} appointmentId
665
+ * @param {*} [options] Override http request option.
666
+ * @throws {RequiredError}
667
+ */
668
+ apiV1AppointmentsAppointmentIdCompletePost: function (appointmentId, options) {
669
+ return __awaiter(this, void 0, void 0, function () {
670
+ var localVarAxiosArgs;
671
+ return __generator(this, function (_a) {
672
+ switch (_a.label) {
673
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1AppointmentsAppointmentIdCompletePost(appointmentId, options)];
674
+ case 1:
675
+ localVarAxiosArgs = _a.sent();
676
+ return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
677
+ }
678
+ });
679
+ });
680
+ },
618
681
  /**
619
682
  *
620
683
  * @summary Delete appointment
@@ -797,6 +860,16 @@ var AppointmentsApiFactory = function (configuration, basePath, axios) {
797
860
  apiV1AppointmentsAppointmentIdCancelPut: function (appointmentId, options) {
798
861
  return localVarFp.apiV1AppointmentsAppointmentIdCancelPut(appointmentId, options).then(function (request) { return request(axios, basePath); });
799
862
  },
863
+ /**
864
+ *
865
+ * @summary Complete appointment
866
+ * @param {string} appointmentId
867
+ * @param {*} [options] Override http request option.
868
+ * @throws {RequiredError}
869
+ */
870
+ apiV1AppointmentsAppointmentIdCompletePost: function (appointmentId, options) {
871
+ return localVarFp.apiV1AppointmentsAppointmentIdCompletePost(appointmentId, options).then(function (request) { return request(axios, basePath); });
872
+ },
800
873
  /**
801
874
  *
802
875
  * @summary Delete appointment
@@ -926,6 +999,18 @@ var AppointmentsApi = /** @class */ (function (_super) {
926
999
  var _this = this;
927
1000
  return (0, exports.AppointmentsApiFp)(this.configuration).apiV1AppointmentsAppointmentIdCancelPut(requestParameters.appointmentId, options).then(function (request) { return request(_this.axios, _this.basePath); });
928
1001
  };
1002
+ /**
1003
+ *
1004
+ * @summary Complete appointment
1005
+ * @param {AppointmentsApiApiV1AppointmentsAppointmentIdCompletePostRequest} requestParameters Request parameters.
1006
+ * @param {*} [options] Override http request option.
1007
+ * @throws {RequiredError}
1008
+ * @memberof AppointmentsApi
1009
+ */
1010
+ AppointmentsApi.prototype.apiV1AppointmentsAppointmentIdCompletePost = function (requestParameters, options) {
1011
+ var _this = this;
1012
+ return (0, exports.AppointmentsApiFp)(this.configuration).apiV1AppointmentsAppointmentIdCompletePost(requestParameters.appointmentId, options).then(function (request) { return request(_this.axios, _this.basePath); });
1013
+ };
929
1014
  /**
930
1015
  *
931
1016
  * @summary Delete appointment
@@ -293,10 +293,11 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
293
293
  * @summary Delete hospital contact
294
294
  * @param {string} hospitalId
295
295
  * @param {string} contactId
296
+ * @param {boolean} [isPermanent]
296
297
  * @param {*} [options] Override http request option.
297
298
  * @throws {RequiredError}
298
299
  */
299
- apiV1HospitalsHospitalIdContactsContactIdDelete: (hospitalId: string, contactId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
300
+ apiV1HospitalsHospitalIdContactsContactIdDelete: (hospitalId: string, contactId: string, isPermanent?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
300
301
  /**
301
302
  *
302
303
  * @summary Get hospital contact
@@ -316,6 +317,15 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
316
317
  * @throws {RequiredError}
317
318
  */
318
319
  apiV1HospitalsHospitalIdContactsContactIdPut: (hospitalId: string, contactId: string, updateHospitalContactCommand?: UpdateHospitalContactCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
320
+ /**
321
+ *
322
+ * @summary Reactivate hospital contact
323
+ * @param {string} hospitalId
324
+ * @param {string} contactId
325
+ * @param {*} [options] Override http request option.
326
+ * @throws {RequiredError}
327
+ */
328
+ apiV1HospitalsHospitalIdContactsContactIdReactivatePut: (hospitalId: string, contactId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
319
329
  /**
320
330
  *
321
331
  * @summary Get hospital contacts
@@ -324,13 +334,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
324
334
  * @param {ContactType} [contactType]
325
335
  * @param {string} [name]
326
336
  * @param {string} [languageCode]
337
+ * @param {boolean} [showHidden]
327
338
  * @param {number} [page]
328
339
  * @param {number} [limit]
329
340
  * @param {Date} [lastRetrieved]
330
341
  * @param {*} [options] Override http request option.
331
342
  * @throws {RequiredError}
332
343
  */
333
- apiV1HospitalsHospitalIdContactsGet: (hospitalId: string, contactId?: string, contactType?: ContactType, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
344
+ apiV1HospitalsHospitalIdContactsGet: (hospitalId: string, contactId?: string, contactType?: ContactType, name?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
334
345
  /**
335
346
  *
336
347
  * @summary Create hospital contact
@@ -767,9 +778,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
767
778
  *
768
779
  * @summary Get managers
769
780
  * @param {string} hospitalId
770
- * @param {number} [page]
771
- * @param {number} [limit]
772
- * @param {Date} [lastRetrieved]
773
781
  * @param {string} [id]
774
782
  * @param {string} [fullname]
775
783
  * @param {string} [email]
@@ -777,10 +785,13 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
777
785
  * @param {Date} [dateOfBirth]
778
786
  * @param {Date} [created]
779
787
  * @param {boolean} [showHidden]
788
+ * @param {number} [page]
789
+ * @param {number} [limit]
790
+ * @param {Date} [lastRetrieved]
780
791
  * @param {*} [options] Override http request option.
781
792
  * @throws {RequiredError}
782
793
  */
783
- apiV1HospitalsHospitalIdManagersGet: (hospitalId: string, page?: number, limit?: number, lastRetrieved?: Date, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
794
+ apiV1HospitalsHospitalIdManagersGet: (hospitalId: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
784
795
  /**
785
796
  *
786
797
  * @summary Delete manager
@@ -1961,10 +1972,11 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
1961
1972
  * @summary Delete hospital contact
1962
1973
  * @param {string} hospitalId
1963
1974
  * @param {string} contactId
1975
+ * @param {boolean} [isPermanent]
1964
1976
  * @param {*} [options] Override http request option.
1965
1977
  * @throws {RequiredError}
1966
1978
  */
1967
- apiV1HospitalsHospitalIdContactsContactIdDelete(hospitalId: string, contactId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
1979
+ apiV1HospitalsHospitalIdContactsContactIdDelete(hospitalId: string, contactId: string, isPermanent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
1968
1980
  /**
1969
1981
  *
1970
1982
  * @summary Get hospital contact
@@ -1984,6 +1996,15 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
1984
1996
  * @throws {RequiredError}
1985
1997
  */
1986
1998
  apiV1HospitalsHospitalIdContactsContactIdPut(hospitalId: string, contactId: string, updateHospitalContactCommand?: UpdateHospitalContactCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalContactModel>>;
1999
+ /**
2000
+ *
2001
+ * @summary Reactivate hospital contact
2002
+ * @param {string} hospitalId
2003
+ * @param {string} contactId
2004
+ * @param {*} [options] Override http request option.
2005
+ * @throws {RequiredError}
2006
+ */
2007
+ apiV1HospitalsHospitalIdContactsContactIdReactivatePut(hospitalId: string, contactId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
1987
2008
  /**
1988
2009
  *
1989
2010
  * @summary Get hospital contacts
@@ -1992,13 +2013,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
1992
2013
  * @param {ContactType} [contactType]
1993
2014
  * @param {string} [name]
1994
2015
  * @param {string} [languageCode]
2016
+ * @param {boolean} [showHidden]
1995
2017
  * @param {number} [page]
1996
2018
  * @param {number} [limit]
1997
2019
  * @param {Date} [lastRetrieved]
1998
2020
  * @param {*} [options] Override http request option.
1999
2021
  * @throws {RequiredError}
2000
2022
  */
2001
- apiV1HospitalsHospitalIdContactsGet(hospitalId: string, contactId?: string, contactType?: ContactType, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalContactsModel>>;
2023
+ apiV1HospitalsHospitalIdContactsGet(hospitalId: string, contactId?: string, contactType?: ContactType, name?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalContactsModel>>;
2002
2024
  /**
2003
2025
  *
2004
2026
  * @summary Create hospital contact
@@ -2435,9 +2457,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
2435
2457
  *
2436
2458
  * @summary Get managers
2437
2459
  * @param {string} hospitalId
2438
- * @param {number} [page]
2439
- * @param {number} [limit]
2440
- * @param {Date} [lastRetrieved]
2441
2460
  * @param {string} [id]
2442
2461
  * @param {string} [fullname]
2443
2462
  * @param {string} [email]
@@ -2445,10 +2464,13 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
2445
2464
  * @param {Date} [dateOfBirth]
2446
2465
  * @param {Date} [created]
2447
2466
  * @param {boolean} [showHidden]
2467
+ * @param {number} [page]
2468
+ * @param {number} [limit]
2469
+ * @param {Date} [lastRetrieved]
2448
2470
  * @param {*} [options] Override http request option.
2449
2471
  * @throws {RequiredError}
2450
2472
  */
2451
- apiV1HospitalsHospitalIdManagersGet(hospitalId: string, page?: number, limit?: number, lastRetrieved?: Date, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ManagersModel>>;
2473
+ apiV1HospitalsHospitalIdManagersGet(hospitalId: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ManagersModel>>;
2452
2474
  /**
2453
2475
  *
2454
2476
  * @summary Delete manager
@@ -3629,10 +3651,11 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
3629
3651
  * @summary Delete hospital contact
3630
3652
  * @param {string} hospitalId
3631
3653
  * @param {string} contactId
3654
+ * @param {boolean} [isPermanent]
3632
3655
  * @param {*} [options] Override http request option.
3633
3656
  * @throws {RequiredError}
3634
3657
  */
3635
- apiV1HospitalsHospitalIdContactsContactIdDelete(hospitalId: string, contactId: string, options?: any): AxiosPromise<boolean>;
3658
+ apiV1HospitalsHospitalIdContactsContactIdDelete(hospitalId: string, contactId: string, isPermanent?: boolean, options?: any): AxiosPromise<boolean>;
3636
3659
  /**
3637
3660
  *
3638
3661
  * @summary Get hospital contact
@@ -3652,6 +3675,15 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
3652
3675
  * @throws {RequiredError}
3653
3676
  */
3654
3677
  apiV1HospitalsHospitalIdContactsContactIdPut(hospitalId: string, contactId: string, updateHospitalContactCommand?: UpdateHospitalContactCommand, options?: any): AxiosPromise<HospitalContactModel>;
3678
+ /**
3679
+ *
3680
+ * @summary Reactivate hospital contact
3681
+ * @param {string} hospitalId
3682
+ * @param {string} contactId
3683
+ * @param {*} [options] Override http request option.
3684
+ * @throws {RequiredError}
3685
+ */
3686
+ apiV1HospitalsHospitalIdContactsContactIdReactivatePut(hospitalId: string, contactId: string, options?: any): AxiosPromise<boolean>;
3655
3687
  /**
3656
3688
  *
3657
3689
  * @summary Get hospital contacts
@@ -3660,13 +3692,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
3660
3692
  * @param {ContactType} [contactType]
3661
3693
  * @param {string} [name]
3662
3694
  * @param {string} [languageCode]
3695
+ * @param {boolean} [showHidden]
3663
3696
  * @param {number} [page]
3664
3697
  * @param {number} [limit]
3665
3698
  * @param {Date} [lastRetrieved]
3666
3699
  * @param {*} [options] Override http request option.
3667
3700
  * @throws {RequiredError}
3668
3701
  */
3669
- apiV1HospitalsHospitalIdContactsGet(hospitalId: string, contactId?: string, contactType?: ContactType, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalContactsModel>;
3702
+ apiV1HospitalsHospitalIdContactsGet(hospitalId: string, contactId?: string, contactType?: ContactType, name?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalContactsModel>;
3670
3703
  /**
3671
3704
  *
3672
3705
  * @summary Create hospital contact
@@ -4103,9 +4136,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
4103
4136
  *
4104
4137
  * @summary Get managers
4105
4138
  * @param {string} hospitalId
4106
- * @param {number} [page]
4107
- * @param {number} [limit]
4108
- * @param {Date} [lastRetrieved]
4109
4139
  * @param {string} [id]
4110
4140
  * @param {string} [fullname]
4111
4141
  * @param {string} [email]
@@ -4113,10 +4143,13 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
4113
4143
  * @param {Date} [dateOfBirth]
4114
4144
  * @param {Date} [created]
4115
4145
  * @param {boolean} [showHidden]
4146
+ * @param {number} [page]
4147
+ * @param {number} [limit]
4148
+ * @param {Date} [lastRetrieved]
4116
4149
  * @param {*} [options] Override http request option.
4117
4150
  * @throws {RequiredError}
4118
4151
  */
4119
- apiV1HospitalsHospitalIdManagersGet(hospitalId: string, page?: number, limit?: number, lastRetrieved?: Date, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, options?: any): AxiosPromise<ManagersModel>;
4152
+ apiV1HospitalsHospitalIdManagersGet(hospitalId: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ManagersModel>;
4120
4153
  /**
4121
4154
  *
4122
4155
  * @summary Delete manager
@@ -5615,6 +5648,12 @@ export interface HospitalsApiApiV1HospitalsHospitalIdContactsContactIdDeleteRequ
5615
5648
  * @memberof HospitalsApiApiV1HospitalsHospitalIdContactsContactIdDelete
5616
5649
  */
5617
5650
  readonly contactId: string;
5651
+ /**
5652
+ *
5653
+ * @type {boolean}
5654
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdContactsContactIdDelete
5655
+ */
5656
+ readonly isPermanent?: boolean;
5618
5657
  }
5619
5658
  /**
5620
5659
  * Request parameters for apiV1HospitalsHospitalIdContactsContactIdGet operation in HospitalsApi.
@@ -5660,6 +5699,25 @@ export interface HospitalsApiApiV1HospitalsHospitalIdContactsContactIdPutRequest
5660
5699
  */
5661
5700
  readonly updateHospitalContactCommand?: UpdateHospitalContactCommand;
5662
5701
  }
5702
+ /**
5703
+ * Request parameters for apiV1HospitalsHospitalIdContactsContactIdReactivatePut operation in HospitalsApi.
5704
+ * @export
5705
+ * @interface HospitalsApiApiV1HospitalsHospitalIdContactsContactIdReactivatePutRequest
5706
+ */
5707
+ export interface HospitalsApiApiV1HospitalsHospitalIdContactsContactIdReactivatePutRequest {
5708
+ /**
5709
+ *
5710
+ * @type {string}
5711
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdContactsContactIdReactivatePut
5712
+ */
5713
+ readonly hospitalId: string;
5714
+ /**
5715
+ *
5716
+ * @type {string}
5717
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdContactsContactIdReactivatePut
5718
+ */
5719
+ readonly contactId: string;
5720
+ }
5663
5721
  /**
5664
5722
  * Request parameters for apiV1HospitalsHospitalIdContactsGet operation in HospitalsApi.
5665
5723
  * @export
@@ -5696,6 +5754,12 @@ export interface HospitalsApiApiV1HospitalsHospitalIdContactsGetRequest {
5696
5754
  * @memberof HospitalsApiApiV1HospitalsHospitalIdContactsGet
5697
5755
  */
5698
5756
  readonly languageCode?: string;
5757
+ /**
5758
+ *
5759
+ * @type {boolean}
5760
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdContactsGet
5761
+ */
5762
+ readonly showHidden?: boolean;
5699
5763
  /**
5700
5764
  *
5701
5765
  * @type {number}
@@ -6849,24 +6913,6 @@ export interface HospitalsApiApiV1HospitalsHospitalIdManagersGetRequest {
6849
6913
  * @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
6850
6914
  */
6851
6915
  readonly hospitalId: string;
6852
- /**
6853
- *
6854
- * @type {number}
6855
- * @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
6856
- */
6857
- readonly page?: number;
6858
- /**
6859
- *
6860
- * @type {number}
6861
- * @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
6862
- */
6863
- readonly limit?: number;
6864
- /**
6865
- *
6866
- * @type {Date}
6867
- * @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
6868
- */
6869
- readonly lastRetrieved?: Date;
6870
6916
  /**
6871
6917
  *
6872
6918
  * @type {string}
@@ -6909,6 +6955,24 @@ export interface HospitalsApiApiV1HospitalsHospitalIdManagersGetRequest {
6909
6955
  * @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
6910
6956
  */
6911
6957
  readonly showHidden?: boolean;
6958
+ /**
6959
+ *
6960
+ * @type {number}
6961
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
6962
+ */
6963
+ readonly page?: number;
6964
+ /**
6965
+ *
6966
+ * @type {number}
6967
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
6968
+ */
6969
+ readonly limit?: number;
6970
+ /**
6971
+ *
6972
+ * @type {Date}
6973
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
6974
+ */
6975
+ readonly lastRetrieved?: Date;
6912
6976
  }
6913
6977
  /**
6914
6978
  * Request parameters for apiV1HospitalsHospitalIdManagersManagerIdDelete operation in HospitalsApi.
@@ -9906,6 +9970,15 @@ export declare class HospitalsApi extends BaseAPI {
9906
9970
  * @memberof HospitalsApi
9907
9971
  */
9908
9972
  apiV1HospitalsHospitalIdContactsContactIdPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdContactsContactIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalContactModel, any>>;
9973
+ /**
9974
+ *
9975
+ * @summary Reactivate hospital contact
9976
+ * @param {HospitalsApiApiV1HospitalsHospitalIdContactsContactIdReactivatePutRequest} requestParameters Request parameters.
9977
+ * @param {*} [options] Override http request option.
9978
+ * @throws {RequiredError}
9979
+ * @memberof HospitalsApi
9980
+ */
9981
+ apiV1HospitalsHospitalIdContactsContactIdReactivatePut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdContactsContactIdReactivatePutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
9909
9982
  /**
9910
9983
  *
9911
9984
  * @summary Get hospital contacts