ch-admin-api-client-typescript 5.5.1 → 5.5.2

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 (93) hide show
  1. package/lib/api/dash-board-api.d.ts +302 -13
  2. package/lib/api/dash-board-api.d.ts.map +1 -1
  3. package/lib/api/dash-board-api.js +488 -15
  4. package/lib/api/deals-api.d.ts +65 -0
  5. package/lib/api/deals-api.d.ts.map +1 -1
  6. package/lib/api/deals-api.js +96 -0
  7. package/lib/api/doctor-affiliations-api.d.ts +56 -0
  8. package/lib/api/doctor-affiliations-api.d.ts.map +1 -1
  9. package/lib/api/doctor-affiliations-api.js +90 -0
  10. package/lib/api/hospitals-api.d.ts +195 -0
  11. package/lib/api/hospitals-api.d.ts.map +1 -1
  12. package/lib/api/hospitals-api.js +288 -0
  13. package/lib/models/booking-duration-statistics-model.d.ts +31 -0
  14. package/lib/models/booking-duration-statistics-model.d.ts.map +1 -0
  15. package/lib/models/booking-duration-statistics-model.js +15 -0
  16. package/lib/models/booking-statistics-model.d.ts +44 -0
  17. package/lib/models/booking-statistics-model.d.ts.map +1 -0
  18. package/lib/models/booking-statistics-model.js +15 -0
  19. package/lib/models/call-duration-statistics-model.d.ts +31 -0
  20. package/lib/models/call-duration-statistics-model.d.ts.map +1 -0
  21. package/lib/models/call-duration-statistics-model.js +15 -0
  22. package/lib/models/call-statistics-model.d.ts +38 -0
  23. package/lib/models/call-statistics-model.d.ts.map +1 -0
  24. package/lib/models/call-statistics-model.js +15 -0
  25. package/lib/models/consultation-duration-statisctics-model.d.ts +31 -0
  26. package/lib/models/consultation-duration-statisctics-model.d.ts.map +1 -0
  27. package/lib/models/consultation-duration-statisctics-model.js +15 -0
  28. package/lib/models/consultation-statistics-model.d.ts +44 -0
  29. package/lib/models/consultation-statistics-model.d.ts.map +1 -0
  30. package/lib/models/consultation-statistics-model.js +15 -0
  31. package/lib/models/create-hospital-contact-command.d.ts +0 -6
  32. package/lib/models/create-hospital-contact-command.d.ts.map +1 -1
  33. package/lib/models/dash-board-model.d.ts +15 -52
  34. package/lib/models/dash-board-model.d.ts.map +1 -1
  35. package/lib/models/delete-deal-package-appointment-timetable-overrides-command.d.ts +44 -0
  36. package/lib/models/delete-deal-package-appointment-timetable-overrides-command.d.ts.map +1 -0
  37. package/lib/models/delete-deal-package-appointment-timetable-overrides-command.js +15 -0
  38. package/lib/models/delete-doctor-affiliation-appointment-timetable-overrides-command.d.ts +44 -0
  39. package/lib/models/delete-doctor-affiliation-appointment-timetable-overrides-command.d.ts.map +1 -0
  40. package/lib/models/delete-doctor-affiliation-appointment-timetable-overrides-command.js +15 -0
  41. package/lib/models/delete-hospital-appointment-timetable-overrides-command.d.ts +44 -0
  42. package/lib/models/delete-hospital-appointment-timetable-overrides-command.d.ts.map +1 -0
  43. package/lib/models/delete-hospital-appointment-timetable-overrides-command.js +15 -0
  44. package/lib/models/delete-hospital-specialty-appointment-timetable-overrides-command.d.ts +44 -0
  45. package/lib/models/delete-hospital-specialty-appointment-timetable-overrides-command.d.ts.map +1 -0
  46. package/lib/models/delete-hospital-specialty-appointment-timetable-overrides-command.js +15 -0
  47. package/lib/models/delete-service-appointment-timetable-overrides-command.d.ts +44 -0
  48. package/lib/models/delete-service-appointment-timetable-overrides-command.d.ts.map +1 -0
  49. package/lib/models/delete-service-appointment-timetable-overrides-command.js +15 -0
  50. package/lib/models/general-statistics-model.d.ts +43 -0
  51. package/lib/models/general-statistics-model.d.ts.map +1 -0
  52. package/lib/models/general-statistics-model.js +15 -0
  53. package/lib/models/hospital-contact-item-model.d.ts +0 -6
  54. package/lib/models/hospital-contact-item-model.d.ts.map +1 -1
  55. package/lib/models/hospital-contact-model.d.ts +0 -6
  56. package/lib/models/hospital-contact-model.d.ts.map +1 -1
  57. package/lib/models/index.d.ts +14 -0
  58. package/lib/models/index.d.ts.map +1 -1
  59. package/lib/models/index.js +14 -0
  60. package/lib/models/survey-form-duration-statistics-model.d.ts +31 -0
  61. package/lib/models/survey-form-duration-statistics-model.d.ts.map +1 -0
  62. package/lib/models/survey-form-duration-statistics-model.js +15 -0
  63. package/lib/models/survey-form-statistics-model.d.ts +38 -0
  64. package/lib/models/survey-form-statistics-model.d.ts.map +1 -0
  65. package/lib/models/survey-form-statistics-model.js +15 -0
  66. package/lib/models/update-hospital-contact-command.d.ts +2 -8
  67. package/lib/models/update-hospital-contact-command.d.ts.map +1 -1
  68. package/package.json +1 -1
  69. package/src/.openapi-generator/FILES +14 -0
  70. package/src/api/dash-board-api.ts +556 -19
  71. package/src/api/deals-api.ts +113 -0
  72. package/src/api/doctor-affiliations-api.ts +100 -0
  73. package/src/api/hospitals-api.ts +339 -0
  74. package/src/models/booking-duration-statistics-model.ts +36 -0
  75. package/src/models/booking-statistics-model.ts +51 -0
  76. package/src/models/call-duration-statistics-model.ts +36 -0
  77. package/src/models/call-statistics-model.ts +45 -0
  78. package/src/models/consultation-duration-statisctics-model.ts +36 -0
  79. package/src/models/consultation-statistics-model.ts +51 -0
  80. package/src/models/create-hospital-contact-command.ts +0 -6
  81. package/src/models/dash-board-model.ts +25 -52
  82. package/src/models/delete-deal-package-appointment-timetable-overrides-command.ts +51 -0
  83. package/src/models/delete-doctor-affiliation-appointment-timetable-overrides-command.ts +51 -0
  84. package/src/models/delete-hospital-appointment-timetable-overrides-command.ts +51 -0
  85. package/src/models/delete-hospital-specialty-appointment-timetable-overrides-command.ts +51 -0
  86. package/src/models/delete-service-appointment-timetable-overrides-command.ts +51 -0
  87. package/src/models/general-statistics-model.ts +48 -0
  88. package/src/models/hospital-contact-item-model.ts +0 -6
  89. package/src/models/hospital-contact-model.ts +0 -6
  90. package/src/models/index.ts +14 -0
  91. package/src/models/survey-form-duration-statistics-model.ts +36 -0
  92. package/src/models/survey-form-statistics-model.ts +45 -0
  93. package/src/models/update-hospital-contact-command.ts +2 -8
@@ -481,6 +481,52 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
481
481
  });
482
482
  });
483
483
  },
484
+ /**
485
+ *
486
+ * @summary Delete Hospital appointment timetable overrides
487
+ * @param {string} hospitalId
488
+ * @param {DeleteHospitalAppointmentTimetableOverridesCommand} [deleteHospitalAppointmentTimetableOverridesCommand]
489
+ * @param {*} [options] Override http request option.
490
+ * @throws {RequiredError}
491
+ */
492
+ apiV1HospitalsHospitalIdAppointmenttimetableoverridesPatch: function (hospitalId, deleteHospitalAppointmentTimetableOverridesCommand, options) {
493
+ if (options === void 0) { options = {}; }
494
+ return __awaiter(_this, void 0, void 0, function () {
495
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
496
+ return __generator(this, function (_a) {
497
+ switch (_a.label) {
498
+ case 0:
499
+ // verify required parameter 'hospitalId' is not null or undefined
500
+ (0, common_1.assertParamExists)('apiV1HospitalsHospitalIdAppointmenttimetableoverridesPatch', 'hospitalId', hospitalId);
501
+ localVarPath = "/api/v1/hospitals/{hospitalId}/appointmenttimetableoverrides"
502
+ .replace("{".concat("hospitalId", "}"), encodeURIComponent(String(hospitalId)));
503
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
504
+ if (configuration) {
505
+ baseOptions = configuration.baseOptions;
506
+ }
507
+ localVarRequestOptions = __assign(__assign({ method: 'PATCH' }, baseOptions), options);
508
+ localVarHeaderParameter = {};
509
+ localVarQueryParameter = {};
510
+ // authentication oauth2 required
511
+ // oauth required
512
+ return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)];
513
+ case 1:
514
+ // authentication oauth2 required
515
+ // oauth required
516
+ _a.sent();
517
+ localVarHeaderParameter['Content-Type'] = 'application/json';
518
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
519
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
520
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
521
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(deleteHospitalAppointmentTimetableOverridesCommand, localVarRequestOptions, configuration);
522
+ return [2 /*return*/, {
523
+ url: (0, common_1.toPathString)(localVarUrlObj),
524
+ options: localVarRequestOptions,
525
+ }];
526
+ }
527
+ });
528
+ });
529
+ },
484
530
  /**
485
531
  *
486
532
  * @summary Save Hospital appointment timetable overrides
@@ -4300,6 +4346,56 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
4300
4346
  });
4301
4347
  });
4302
4348
  },
4349
+ /**
4350
+ *
4351
+ * @summary Delete HospitalSpecialty appointment timetable overrides
4352
+ * @param {string} hospitalId
4353
+ * @param {string} hospitalSpecialtyId
4354
+ * @param {DeleteHospitalSpecialtyAppointmentTimetableOverridesCommand} [deleteHospitalSpecialtyAppointmentTimetableOverridesCommand]
4355
+ * @param {*} [options] Override http request option.
4356
+ * @throws {RequiredError}
4357
+ */
4358
+ apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPatch: function (hospitalId, hospitalSpecialtyId, deleteHospitalSpecialtyAppointmentTimetableOverridesCommand, options) {
4359
+ if (options === void 0) { options = {}; }
4360
+ return __awaiter(_this, void 0, void 0, function () {
4361
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
4362
+ return __generator(this, function (_a) {
4363
+ switch (_a.label) {
4364
+ case 0:
4365
+ // verify required parameter 'hospitalId' is not null or undefined
4366
+ (0, common_1.assertParamExists)('apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPatch', 'hospitalId', hospitalId);
4367
+ // verify required parameter 'hospitalSpecialtyId' is not null or undefined
4368
+ (0, common_1.assertParamExists)('apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPatch', 'hospitalSpecialtyId', hospitalSpecialtyId);
4369
+ localVarPath = "/api/v1/hospitals/{hospitalId}/specialties/{hospitalSpecialtyId}/appointmenttimetableoverrides"
4370
+ .replace("{".concat("hospitalId", "}"), encodeURIComponent(String(hospitalId)))
4371
+ .replace("{".concat("hospitalSpecialtyId", "}"), encodeURIComponent(String(hospitalSpecialtyId)));
4372
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
4373
+ if (configuration) {
4374
+ baseOptions = configuration.baseOptions;
4375
+ }
4376
+ localVarRequestOptions = __assign(__assign({ method: 'PATCH' }, baseOptions), options);
4377
+ localVarHeaderParameter = {};
4378
+ localVarQueryParameter = {};
4379
+ // authentication oauth2 required
4380
+ // oauth required
4381
+ return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)];
4382
+ case 1:
4383
+ // authentication oauth2 required
4384
+ // oauth required
4385
+ _a.sent();
4386
+ localVarHeaderParameter['Content-Type'] = 'application/json';
4387
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
4388
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
4389
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
4390
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(deleteHospitalSpecialtyAppointmentTimetableOverridesCommand, localVarRequestOptions, configuration);
4391
+ return [2 /*return*/, {
4392
+ url: (0, common_1.toPathString)(localVarUrlObj),
4393
+ options: localVarRequestOptions,
4394
+ }];
4395
+ }
4396
+ });
4397
+ });
4398
+ },
4303
4399
  /**
4304
4400
  *
4305
4401
  * @summary Save HospitalSpecialty appointment timetable overrides
@@ -5379,6 +5475,60 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
5379
5475
  });
5380
5476
  });
5381
5477
  },
5478
+ /**
5479
+ *
5480
+ * @summary Delete Service appointment timetable overrides
5481
+ * @param {string} hospitalId
5482
+ * @param {string} specialtyId
5483
+ * @param {string} serviceId
5484
+ * @param {DeleteServiceAppointmentTimetableOverridesCommand} [deleteServiceAppointmentTimetableOverridesCommand]
5485
+ * @param {*} [options] Override http request option.
5486
+ * @throws {RequiredError}
5487
+ */
5488
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPatch: function (hospitalId, specialtyId, serviceId, deleteServiceAppointmentTimetableOverridesCommand, options) {
5489
+ if (options === void 0) { options = {}; }
5490
+ return __awaiter(_this, void 0, void 0, function () {
5491
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
5492
+ return __generator(this, function (_a) {
5493
+ switch (_a.label) {
5494
+ case 0:
5495
+ // verify required parameter 'hospitalId' is not null or undefined
5496
+ (0, common_1.assertParamExists)('apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPatch', 'hospitalId', hospitalId);
5497
+ // verify required parameter 'specialtyId' is not null or undefined
5498
+ (0, common_1.assertParamExists)('apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPatch', 'specialtyId', specialtyId);
5499
+ // verify required parameter 'serviceId' is not null or undefined
5500
+ (0, common_1.assertParamExists)('apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPatch', 'serviceId', serviceId);
5501
+ localVarPath = "/api/v1/hospitals/{hospitalId}/specialties/{specialtyId}/services/{serviceId}/appointmenttimetableoverrides"
5502
+ .replace("{".concat("hospitalId", "}"), encodeURIComponent(String(hospitalId)))
5503
+ .replace("{".concat("specialtyId", "}"), encodeURIComponent(String(specialtyId)))
5504
+ .replace("{".concat("serviceId", "}"), encodeURIComponent(String(serviceId)));
5505
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
5506
+ if (configuration) {
5507
+ baseOptions = configuration.baseOptions;
5508
+ }
5509
+ localVarRequestOptions = __assign(__assign({ method: 'PATCH' }, baseOptions), options);
5510
+ localVarHeaderParameter = {};
5511
+ localVarQueryParameter = {};
5512
+ // authentication oauth2 required
5513
+ // oauth required
5514
+ return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)];
5515
+ case 1:
5516
+ // authentication oauth2 required
5517
+ // oauth required
5518
+ _a.sent();
5519
+ localVarHeaderParameter['Content-Type'] = 'application/json';
5520
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
5521
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
5522
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
5523
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(deleteServiceAppointmentTimetableOverridesCommand, localVarRequestOptions, configuration);
5524
+ return [2 /*return*/, {
5525
+ url: (0, common_1.toPathString)(localVarUrlObj),
5526
+ options: localVarRequestOptions,
5527
+ }];
5528
+ }
5529
+ });
5530
+ });
5531
+ },
5382
5532
  /**
5383
5533
  *
5384
5534
  * @summary Save Service appointment timetable overrides
@@ -6841,6 +6991,27 @@ var HospitalsApiFp = function (configuration) {
6841
6991
  });
6842
6992
  });
6843
6993
  },
6994
+ /**
6995
+ *
6996
+ * @summary Delete Hospital appointment timetable overrides
6997
+ * @param {string} hospitalId
6998
+ * @param {DeleteHospitalAppointmentTimetableOverridesCommand} [deleteHospitalAppointmentTimetableOverridesCommand]
6999
+ * @param {*} [options] Override http request option.
7000
+ * @throws {RequiredError}
7001
+ */
7002
+ apiV1HospitalsHospitalIdAppointmenttimetableoverridesPatch: function (hospitalId, deleteHospitalAppointmentTimetableOverridesCommand, options) {
7003
+ return __awaiter(this, void 0, void 0, function () {
7004
+ var localVarAxiosArgs;
7005
+ return __generator(this, function (_a) {
7006
+ switch (_a.label) {
7007
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdAppointmenttimetableoverridesPatch(hospitalId, deleteHospitalAppointmentTimetableOverridesCommand, options)];
7008
+ case 1:
7009
+ localVarAxiosArgs = _a.sent();
7010
+ return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
7011
+ }
7012
+ });
7013
+ });
7014
+ },
6844
7015
  /**
6845
7016
  *
6846
7017
  * @summary Save Hospital appointment timetable overrides
@@ -8459,6 +8630,28 @@ var HospitalsApiFp = function (configuration) {
8459
8630
  });
8460
8631
  });
8461
8632
  },
8633
+ /**
8634
+ *
8635
+ * @summary Delete HospitalSpecialty appointment timetable overrides
8636
+ * @param {string} hospitalId
8637
+ * @param {string} hospitalSpecialtyId
8638
+ * @param {DeleteHospitalSpecialtyAppointmentTimetableOverridesCommand} [deleteHospitalSpecialtyAppointmentTimetableOverridesCommand]
8639
+ * @param {*} [options] Override http request option.
8640
+ * @throws {RequiredError}
8641
+ */
8642
+ apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPatch: function (hospitalId, hospitalSpecialtyId, deleteHospitalSpecialtyAppointmentTimetableOverridesCommand, options) {
8643
+ return __awaiter(this, void 0, void 0, function () {
8644
+ var localVarAxiosArgs;
8645
+ return __generator(this, function (_a) {
8646
+ switch (_a.label) {
8647
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPatch(hospitalId, hospitalSpecialtyId, deleteHospitalSpecialtyAppointmentTimetableOverridesCommand, options)];
8648
+ case 1:
8649
+ localVarAxiosArgs = _a.sent();
8650
+ return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
8651
+ }
8652
+ });
8653
+ });
8654
+ },
8462
8655
  /**
8463
8656
  *
8464
8657
  * @summary Save HospitalSpecialty appointment timetable overrides
@@ -8893,6 +9086,29 @@ var HospitalsApiFp = function (configuration) {
8893
9086
  });
8894
9087
  });
8895
9088
  },
9089
+ /**
9090
+ *
9091
+ * @summary Delete Service appointment timetable overrides
9092
+ * @param {string} hospitalId
9093
+ * @param {string} specialtyId
9094
+ * @param {string} serviceId
9095
+ * @param {DeleteServiceAppointmentTimetableOverridesCommand} [deleteServiceAppointmentTimetableOverridesCommand]
9096
+ * @param {*} [options] Override http request option.
9097
+ * @throws {RequiredError}
9098
+ */
9099
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPatch: function (hospitalId, specialtyId, serviceId, deleteServiceAppointmentTimetableOverridesCommand, options) {
9100
+ return __awaiter(this, void 0, void 0, function () {
9101
+ var localVarAxiosArgs;
9102
+ return __generator(this, function (_a) {
9103
+ switch (_a.label) {
9104
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPatch(hospitalId, specialtyId, serviceId, deleteServiceAppointmentTimetableOverridesCommand, options)];
9105
+ case 1:
9106
+ localVarAxiosArgs = _a.sent();
9107
+ return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
9108
+ }
9109
+ });
9110
+ });
9111
+ },
8896
9112
  /**
8897
9113
  *
8898
9114
  * @summary Save Service appointment timetable overrides
@@ -9530,6 +9746,17 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
9530
9746
  apiV1HospitalsHospitalIdAppointmenttimetableoverridesGet: function (hospitalId, includesPreviousItems, startDate, endDate, dayOfWeek, page, limit, lastRetrieved, options) {
9531
9747
  return localVarFp.apiV1HospitalsHospitalIdAppointmenttimetableoverridesGet(hospitalId, includesPreviousItems, startDate, endDate, dayOfWeek, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
9532
9748
  },
9749
+ /**
9750
+ *
9751
+ * @summary Delete Hospital appointment timetable overrides
9752
+ * @param {string} hospitalId
9753
+ * @param {DeleteHospitalAppointmentTimetableOverridesCommand} [deleteHospitalAppointmentTimetableOverridesCommand]
9754
+ * @param {*} [options] Override http request option.
9755
+ * @throws {RequiredError}
9756
+ */
9757
+ apiV1HospitalsHospitalIdAppointmenttimetableoverridesPatch: function (hospitalId, deleteHospitalAppointmentTimetableOverridesCommand, options) {
9758
+ return localVarFp.apiV1HospitalsHospitalIdAppointmenttimetableoverridesPatch(hospitalId, deleteHospitalAppointmentTimetableOverridesCommand, options).then(function (request) { return request(axios, basePath); });
9759
+ },
9533
9760
  /**
9534
9761
  *
9535
9762
  * @summary Save Hospital appointment timetable overrides
@@ -10428,6 +10655,18 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
10428
10655
  apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesGet: function (hospitalId, hospitalSpecialtyId, includesPreviousItems, startDate, endDate, dayOfWeek, page, limit, lastRetrieved, options) {
10429
10656
  return localVarFp.apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesGet(hospitalId, hospitalSpecialtyId, includesPreviousItems, startDate, endDate, dayOfWeek, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
10430
10657
  },
10658
+ /**
10659
+ *
10660
+ * @summary Delete HospitalSpecialty appointment timetable overrides
10661
+ * @param {string} hospitalId
10662
+ * @param {string} hospitalSpecialtyId
10663
+ * @param {DeleteHospitalSpecialtyAppointmentTimetableOverridesCommand} [deleteHospitalSpecialtyAppointmentTimetableOverridesCommand]
10664
+ * @param {*} [options] Override http request option.
10665
+ * @throws {RequiredError}
10666
+ */
10667
+ apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPatch: function (hospitalId, hospitalSpecialtyId, deleteHospitalSpecialtyAppointmentTimetableOverridesCommand, options) {
10668
+ return localVarFp.apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPatch(hospitalId, hospitalSpecialtyId, deleteHospitalSpecialtyAppointmentTimetableOverridesCommand, options).then(function (request) { return request(axios, basePath); });
10669
+ },
10431
10670
  /**
10432
10671
  *
10433
10672
  * @summary Save HospitalSpecialty appointment timetable overrides
@@ -10682,6 +10921,19 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
10682
10921
  apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesGet: function (hospitalId, specialtyId, serviceId, includesPreviousItems, startDate, endDate, dayOfWeek, page, limit, lastRetrieved, options) {
10683
10922
  return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesGet(hospitalId, specialtyId, serviceId, includesPreviousItems, startDate, endDate, dayOfWeek, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
10684
10923
  },
10924
+ /**
10925
+ *
10926
+ * @summary Delete Service appointment timetable overrides
10927
+ * @param {string} hospitalId
10928
+ * @param {string} specialtyId
10929
+ * @param {string} serviceId
10930
+ * @param {DeleteServiceAppointmentTimetableOverridesCommand} [deleteServiceAppointmentTimetableOverridesCommand]
10931
+ * @param {*} [options] Override http request option.
10932
+ * @throws {RequiredError}
10933
+ */
10934
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPatch: function (hospitalId, specialtyId, serviceId, deleteServiceAppointmentTimetableOverridesCommand, options) {
10935
+ return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPatch(hospitalId, specialtyId, serviceId, deleteServiceAppointmentTimetableOverridesCommand, options).then(function (request) { return request(axios, basePath); });
10936
+ },
10685
10937
  /**
10686
10938
  *
10687
10939
  * @summary Save Service appointment timetable overrides
@@ -11076,6 +11328,18 @@ var HospitalsApi = /** @class */ (function (_super) {
11076
11328
  var _this = this;
11077
11329
  return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdAppointmenttimetableoverridesGet(requestParameters.hospitalId, requestParameters.includesPreviousItems, requestParameters.startDate, requestParameters.endDate, requestParameters.dayOfWeek, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
11078
11330
  };
11331
+ /**
11332
+ *
11333
+ * @summary Delete Hospital appointment timetable overrides
11334
+ * @param {HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetableoverridesPatchRequest} requestParameters Request parameters.
11335
+ * @param {*} [options] Override http request option.
11336
+ * @throws {RequiredError}
11337
+ * @memberof HospitalsApi
11338
+ */
11339
+ HospitalsApi.prototype.apiV1HospitalsHospitalIdAppointmenttimetableoverridesPatch = function (requestParameters, options) {
11340
+ var _this = this;
11341
+ return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdAppointmenttimetableoverridesPatch(requestParameters.hospitalId, requestParameters.deleteHospitalAppointmentTimetableOverridesCommand, options).then(function (request) { return request(_this.axios, _this.basePath); });
11342
+ };
11079
11343
  /**
11080
11344
  *
11081
11345
  * @summary Save Hospital appointment timetable overrides
@@ -11940,6 +12204,18 @@ var HospitalsApi = /** @class */ (function (_super) {
11940
12204
  var _this = this;
11941
12205
  return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesGet(requestParameters.hospitalId, requestParameters.hospitalSpecialtyId, requestParameters.includesPreviousItems, requestParameters.startDate, requestParameters.endDate, requestParameters.dayOfWeek, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
11942
12206
  };
12207
+ /**
12208
+ *
12209
+ * @summary Delete HospitalSpecialty appointment timetable overrides
12210
+ * @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPatchRequest} requestParameters Request parameters.
12211
+ * @param {*} [options] Override http request option.
12212
+ * @throws {RequiredError}
12213
+ * @memberof HospitalsApi
12214
+ */
12215
+ HospitalsApi.prototype.apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPatch = function (requestParameters, options) {
12216
+ var _this = this;
12217
+ return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPatch(requestParameters.hospitalId, requestParameters.hospitalSpecialtyId, requestParameters.deleteHospitalSpecialtyAppointmentTimetableOverridesCommand, options).then(function (request) { return request(_this.axios, _this.basePath); });
12218
+ };
11943
12219
  /**
11944
12220
  *
11945
12221
  * @summary Save HospitalSpecialty appointment timetable overrides
@@ -12156,6 +12432,18 @@ var HospitalsApi = /** @class */ (function (_super) {
12156
12432
  var _this = this;
12157
12433
  return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesGet(requestParameters.hospitalId, requestParameters.specialtyId, requestParameters.serviceId, requestParameters.includesPreviousItems, requestParameters.startDate, requestParameters.endDate, requestParameters.dayOfWeek, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
12158
12434
  };
12435
+ /**
12436
+ *
12437
+ * @summary Delete Service appointment timetable overrides
12438
+ * @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPatchRequest} requestParameters Request parameters.
12439
+ * @param {*} [options] Override http request option.
12440
+ * @throws {RequiredError}
12441
+ * @memberof HospitalsApi
12442
+ */
12443
+ HospitalsApi.prototype.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPatch = function (requestParameters, options) {
12444
+ var _this = this;
12445
+ return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPatch(requestParameters.hospitalId, requestParameters.specialtyId, requestParameters.serviceId, requestParameters.deleteServiceAppointmentTimetableOverridesCommand, options).then(function (request) { return request(_this.axios, _this.basePath); });
12446
+ };
12159
12447
  /**
12160
12448
  *
12161
12449
  * @summary Save Service appointment timetable overrides
@@ -0,0 +1,31 @@
1
+ /**
2
+ * Swagger UI - Cloud Hospital Admin Api-INT
3
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
4
+ *
5
+ * The version of the OpenAPI document: 1
6
+ * Contact: hyounoosung@icloudhospital.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface BookingDurationStatisticsModel
16
+ */
17
+ export interface BookingDurationStatisticsModel {
18
+ /**
19
+ *
20
+ * @type {Date}
21
+ * @memberof BookingDurationStatisticsModel
22
+ */
23
+ 'key'?: Date;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof BookingDurationStatisticsModel
28
+ */
29
+ 'value'?: number;
30
+ }
31
+ //# sourceMappingURL=booking-duration-statistics-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"booking-duration-statistics-model.d.ts","sourceRoot":"","sources":["../../src/models/booking-duration-statistics-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,8BAA8B;IAC3C;;;;OAIG;IACH,KAAK,CAAC,EAAE,IAAI,CAAC;IACb;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB"}
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Swagger UI - Cloud Hospital Admin Api-INT
6
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
7
+ *
8
+ * The version of the OpenAPI document: 1
9
+ * Contact: hyounoosung@icloudhospital.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,44 @@
1
+ /**
2
+ * Swagger UI - Cloud Hospital Admin Api-INT
3
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
4
+ *
5
+ * The version of the OpenAPI document: 1
6
+ * Contact: hyounoosung@icloudhospital.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { BookingDurationStatisticsModel } from './booking-duration-statistics-model';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface BookingStatisticsModel
17
+ */
18
+ export interface BookingStatisticsModel {
19
+ /**
20
+ *
21
+ * @type {number}
22
+ * @memberof BookingStatisticsModel
23
+ */
24
+ 'pendingApprovalCount'?: number;
25
+ /**
26
+ *
27
+ * @type {number}
28
+ * @memberof BookingStatisticsModel
29
+ */
30
+ 'finishedCount'?: number;
31
+ /**
32
+ *
33
+ * @type {number}
34
+ * @memberof BookingStatisticsModel
35
+ */
36
+ 'revenue'?: number;
37
+ /**
38
+ *
39
+ * @type {Array<BookingDurationStatisticsModel>}
40
+ * @memberof BookingStatisticsModel
41
+ */
42
+ 'monthlyList'?: Array<BookingDurationStatisticsModel> | null;
43
+ }
44
+ //# sourceMappingURL=booking-statistics-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"booking-statistics-model.d.ts","sourceRoot":"","sources":["../../src/models/booking-statistics-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,8BAA8B,EAAE,MAAM,qCAAqC,CAAC;AAErF;;;;GAIG;AACH,MAAM,WAAW,sBAAsB;IACnC;;;;OAIG;IACH,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;;;OAIG;IACH,aAAa,CAAC,EAAE,KAAK,CAAC,8BAA8B,CAAC,GAAG,IAAI,CAAC;CAChE"}
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Swagger UI - Cloud Hospital Admin Api-INT
6
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
7
+ *
8
+ * The version of the OpenAPI document: 1
9
+ * Contact: hyounoosung@icloudhospital.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,31 @@
1
+ /**
2
+ * Swagger UI - Cloud Hospital Admin Api-INT
3
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
4
+ *
5
+ * The version of the OpenAPI document: 1
6
+ * Contact: hyounoosung@icloudhospital.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface CallDurationStatisticsModel
16
+ */
17
+ export interface CallDurationStatisticsModel {
18
+ /**
19
+ *
20
+ * @type {Date}
21
+ * @memberof CallDurationStatisticsModel
22
+ */
23
+ 'key'?: Date;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof CallDurationStatisticsModel
28
+ */
29
+ 'value'?: number;
30
+ }
31
+ //# sourceMappingURL=call-duration-statistics-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"call-duration-statistics-model.d.ts","sourceRoot":"","sources":["../../src/models/call-duration-statistics-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,2BAA2B;IACxC;;;;OAIG;IACH,KAAK,CAAC,EAAE,IAAI,CAAC;IACb;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB"}
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Swagger UI - Cloud Hospital Admin Api-INT
6
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
7
+ *
8
+ * The version of the OpenAPI document: 1
9
+ * Contact: hyounoosung@icloudhospital.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,38 @@
1
+ /**
2
+ * Swagger UI - Cloud Hospital Admin Api-INT
3
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
4
+ *
5
+ * The version of the OpenAPI document: 1
6
+ * Contact: hyounoosung@icloudhospital.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { CallDurationStatisticsModel } from './call-duration-statistics-model';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface CallStatisticsModel
17
+ */
18
+ export interface CallStatisticsModel {
19
+ /**
20
+ *
21
+ * @type {number}
22
+ * @memberof CallStatisticsModel
23
+ */
24
+ 'contactCount'?: number;
25
+ /**
26
+ *
27
+ * @type {number}
28
+ * @memberof CallStatisticsModel
29
+ */
30
+ 'callDone'?: number;
31
+ /**
32
+ *
33
+ * @type {Array<CallDurationStatisticsModel>}
34
+ * @memberof CallStatisticsModel
35
+ */
36
+ 'monthlyList'?: Array<CallDurationStatisticsModel> | null;
37
+ }
38
+ //# sourceMappingURL=call-statistics-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"call-statistics-model.d.ts","sourceRoot":"","sources":["../../src/models/call-statistics-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,2BAA2B,EAAE,MAAM,kCAAkC,CAAC;AAE/E;;;;GAIG;AACH,MAAM,WAAW,mBAAmB;IAChC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,aAAa,CAAC,EAAE,KAAK,CAAC,2BAA2B,CAAC,GAAG,IAAI,CAAC;CAC7D"}
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Swagger UI - Cloud Hospital Admin Api-INT
6
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
7
+ *
8
+ * The version of the OpenAPI document: 1
9
+ * Contact: hyounoosung@icloudhospital.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,31 @@
1
+ /**
2
+ * Swagger UI - Cloud Hospital Admin Api-INT
3
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
4
+ *
5
+ * The version of the OpenAPI document: 1
6
+ * Contact: hyounoosung@icloudhospital.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface ConsultationDurationStatiscticsModel
16
+ */
17
+ export interface ConsultationDurationStatiscticsModel {
18
+ /**
19
+ *
20
+ * @type {Date}
21
+ * @memberof ConsultationDurationStatiscticsModel
22
+ */
23
+ 'key'?: Date;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof ConsultationDurationStatiscticsModel
28
+ */
29
+ 'value'?: number;
30
+ }
31
+ //# sourceMappingURL=consultation-duration-statisctics-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"consultation-duration-statisctics-model.d.ts","sourceRoot":"","sources":["../../src/models/consultation-duration-statisctics-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,oCAAoC;IACjD;;;;OAIG;IACH,KAAK,CAAC,EAAE,IAAI,CAAC;IACb;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB"}
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Swagger UI - Cloud Hospital Admin Api-INT
6
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
7
+ *
8
+ * The version of the OpenAPI document: 1
9
+ * Contact: hyounoosung@icloudhospital.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });