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
@@ -32,6 +32,9 @@ import { CreateLandingCommand } from '../models';
32
32
  import { CreateMediaCommand } from '../models';
33
33
  import { CreatePolicyCommand } from '../models';
34
34
  import { DayOfWeek } from '../models';
35
+ import { DeleteHospitalAppointmentTimetableOverridesCommand } from '../models';
36
+ import { DeleteHospitalSpecialtyAppointmentTimetableOverridesCommand } from '../models';
37
+ import { DeleteServiceAppointmentTimetableOverridesCommand } from '../models';
35
38
  import { FooterNavigationItemModel } from '../models';
36
39
  import { HospitalAccreditationModel } from '../models';
37
40
  import { HospitalAccreditationsModel } from '../models';
@@ -166,6 +169,15 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
166
169
  * @throws {RequiredError}
167
170
  */
168
171
  apiV1HospitalsHospitalIdAppointmenttimetableoverridesGet: (hospitalId: string, includesPreviousItems?: boolean, startDate?: Date, endDate?: Date, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
172
+ /**
173
+ *
174
+ * @summary Delete Hospital appointment timetable overrides
175
+ * @param {string} hospitalId
176
+ * @param {DeleteHospitalAppointmentTimetableOverridesCommand} [deleteHospitalAppointmentTimetableOverridesCommand]
177
+ * @param {*} [options] Override http request option.
178
+ * @throws {RequiredError}
179
+ */
180
+ apiV1HospitalsHospitalIdAppointmenttimetableoverridesPatch: (hospitalId: string, deleteHospitalAppointmentTimetableOverridesCommand?: DeleteHospitalAppointmentTimetableOverridesCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
169
181
  /**
170
182
  *
171
183
  * @summary Save Hospital appointment timetable overrides
@@ -920,6 +932,16 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
920
932
  * @throws {RequiredError}
921
933
  */
922
934
  apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesGet: (hospitalId: string, hospitalSpecialtyId: string, includesPreviousItems?: boolean, startDate?: Date, endDate?: Date, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
935
+ /**
936
+ *
937
+ * @summary Delete HospitalSpecialty appointment timetable overrides
938
+ * @param {string} hospitalId
939
+ * @param {string} hospitalSpecialtyId
940
+ * @param {DeleteHospitalSpecialtyAppointmentTimetableOverridesCommand} [deleteHospitalSpecialtyAppointmentTimetableOverridesCommand]
941
+ * @param {*} [options] Override http request option.
942
+ * @throws {RequiredError}
943
+ */
944
+ apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPatch: (hospitalId: string, hospitalSpecialtyId: string, deleteHospitalSpecialtyAppointmentTimetableOverridesCommand?: DeleteHospitalSpecialtyAppointmentTimetableOverridesCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
923
945
  /**
924
946
  *
925
947
  * @summary Save HospitalSpecialty appointment timetable overrides
@@ -1138,6 +1160,17 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
1138
1160
  * @throws {RequiredError}
1139
1161
  */
1140
1162
  apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesGet: (hospitalId: string, specialtyId: string, serviceId: string, includesPreviousItems?: boolean, startDate?: Date, endDate?: Date, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1163
+ /**
1164
+ *
1165
+ * @summary Delete Service appointment timetable overrides
1166
+ * @param {string} hospitalId
1167
+ * @param {string} specialtyId
1168
+ * @param {string} serviceId
1169
+ * @param {DeleteServiceAppointmentTimetableOverridesCommand} [deleteServiceAppointmentTimetableOverridesCommand]
1170
+ * @param {*} [options] Override http request option.
1171
+ * @throws {RequiredError}
1172
+ */
1173
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPatch: (hospitalId: string, specialtyId: string, serviceId: string, deleteServiceAppointmentTimetableOverridesCommand?: DeleteServiceAppointmentTimetableOverridesCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1141
1174
  /**
1142
1175
  *
1143
1176
  * @summary Save Service appointment timetable overrides
@@ -1483,6 +1516,15 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
1483
1516
  * @throws {RequiredError}
1484
1517
  */
1485
1518
  apiV1HospitalsHospitalIdAppointmenttimetableoverridesGet(hospitalId: string, includesPreviousItems?: boolean, startDate?: Date, endDate?: Date, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentTimetableOverridesModel>>;
1519
+ /**
1520
+ *
1521
+ * @summary Delete Hospital appointment timetable overrides
1522
+ * @param {string} hospitalId
1523
+ * @param {DeleteHospitalAppointmentTimetableOverridesCommand} [deleteHospitalAppointmentTimetableOverridesCommand]
1524
+ * @param {*} [options] Override http request option.
1525
+ * @throws {RequiredError}
1526
+ */
1527
+ apiV1HospitalsHospitalIdAppointmenttimetableoverridesPatch(hospitalId: string, deleteHospitalAppointmentTimetableOverridesCommand?: DeleteHospitalAppointmentTimetableOverridesCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
1486
1528
  /**
1487
1529
  *
1488
1530
  * @summary Save Hospital appointment timetable overrides
@@ -2237,6 +2279,16 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
2237
2279
  * @throws {RequiredError}
2238
2280
  */
2239
2281
  apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesGet(hospitalId: string, hospitalSpecialtyId: string, includesPreviousItems?: boolean, startDate?: Date, endDate?: Date, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentTimetableOverridesModel>>;
2282
+ /**
2283
+ *
2284
+ * @summary Delete HospitalSpecialty appointment timetable overrides
2285
+ * @param {string} hospitalId
2286
+ * @param {string} hospitalSpecialtyId
2287
+ * @param {DeleteHospitalSpecialtyAppointmentTimetableOverridesCommand} [deleteHospitalSpecialtyAppointmentTimetableOverridesCommand]
2288
+ * @param {*} [options] Override http request option.
2289
+ * @throws {RequiredError}
2290
+ */
2291
+ apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPatch(hospitalId: string, hospitalSpecialtyId: string, deleteHospitalSpecialtyAppointmentTimetableOverridesCommand?: DeleteHospitalSpecialtyAppointmentTimetableOverridesCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
2240
2292
  /**
2241
2293
  *
2242
2294
  * @summary Save HospitalSpecialty appointment timetable overrides
@@ -2455,6 +2507,17 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
2455
2507
  * @throws {RequiredError}
2456
2508
  */
2457
2509
  apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesGet(hospitalId: string, specialtyId: string, serviceId: string, includesPreviousItems?: boolean, startDate?: Date, endDate?: Date, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentTimetableOverridesModel>>;
2510
+ /**
2511
+ *
2512
+ * @summary Delete Service appointment timetable overrides
2513
+ * @param {string} hospitalId
2514
+ * @param {string} specialtyId
2515
+ * @param {string} serviceId
2516
+ * @param {DeleteServiceAppointmentTimetableOverridesCommand} [deleteServiceAppointmentTimetableOverridesCommand]
2517
+ * @param {*} [options] Override http request option.
2518
+ * @throws {RequiredError}
2519
+ */
2520
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPatch(hospitalId: string, specialtyId: string, serviceId: string, deleteServiceAppointmentTimetableOverridesCommand?: DeleteServiceAppointmentTimetableOverridesCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
2458
2521
  /**
2459
2522
  *
2460
2523
  * @summary Save Service appointment timetable overrides
@@ -2800,6 +2863,15 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
2800
2863
  * @throws {RequiredError}
2801
2864
  */
2802
2865
  apiV1HospitalsHospitalIdAppointmenttimetableoverridesGet(hospitalId: string, includesPreviousItems?: boolean, startDate?: Date, endDate?: Date, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<AppointmentTimetableOverridesModel>;
2866
+ /**
2867
+ *
2868
+ * @summary Delete Hospital appointment timetable overrides
2869
+ * @param {string} hospitalId
2870
+ * @param {DeleteHospitalAppointmentTimetableOverridesCommand} [deleteHospitalAppointmentTimetableOverridesCommand]
2871
+ * @param {*} [options] Override http request option.
2872
+ * @throws {RequiredError}
2873
+ */
2874
+ apiV1HospitalsHospitalIdAppointmenttimetableoverridesPatch(hospitalId: string, deleteHospitalAppointmentTimetableOverridesCommand?: DeleteHospitalAppointmentTimetableOverridesCommand, options?: any): AxiosPromise<boolean>;
2803
2875
  /**
2804
2876
  *
2805
2877
  * @summary Save Hospital appointment timetable overrides
@@ -3554,6 +3626,16 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
3554
3626
  * @throws {RequiredError}
3555
3627
  */
3556
3628
  apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesGet(hospitalId: string, hospitalSpecialtyId: string, includesPreviousItems?: boolean, startDate?: Date, endDate?: Date, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<AppointmentTimetableOverridesModel>;
3629
+ /**
3630
+ *
3631
+ * @summary Delete HospitalSpecialty appointment timetable overrides
3632
+ * @param {string} hospitalId
3633
+ * @param {string} hospitalSpecialtyId
3634
+ * @param {DeleteHospitalSpecialtyAppointmentTimetableOverridesCommand} [deleteHospitalSpecialtyAppointmentTimetableOverridesCommand]
3635
+ * @param {*} [options] Override http request option.
3636
+ * @throws {RequiredError}
3637
+ */
3638
+ apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPatch(hospitalId: string, hospitalSpecialtyId: string, deleteHospitalSpecialtyAppointmentTimetableOverridesCommand?: DeleteHospitalSpecialtyAppointmentTimetableOverridesCommand, options?: any): AxiosPromise<boolean>;
3557
3639
  /**
3558
3640
  *
3559
3641
  * @summary Save HospitalSpecialty appointment timetable overrides
@@ -3772,6 +3854,17 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
3772
3854
  * @throws {RequiredError}
3773
3855
  */
3774
3856
  apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesGet(hospitalId: string, specialtyId: string, serviceId: string, includesPreviousItems?: boolean, startDate?: Date, endDate?: Date, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<AppointmentTimetableOverridesModel>;
3857
+ /**
3858
+ *
3859
+ * @summary Delete Service appointment timetable overrides
3860
+ * @param {string} hospitalId
3861
+ * @param {string} specialtyId
3862
+ * @param {string} serviceId
3863
+ * @param {DeleteServiceAppointmentTimetableOverridesCommand} [deleteServiceAppointmentTimetableOverridesCommand]
3864
+ * @param {*} [options] Override http request option.
3865
+ * @throws {RequiredError}
3866
+ */
3867
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPatch(hospitalId: string, specialtyId: string, serviceId: string, deleteServiceAppointmentTimetableOverridesCommand?: DeleteServiceAppointmentTimetableOverridesCommand, options?: any): AxiosPromise<boolean>;
3775
3868
  /**
3776
3869
  *
3777
3870
  * @summary Save Service appointment timetable overrides
@@ -4292,6 +4385,25 @@ export interface HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetableoverrid
4292
4385
  */
4293
4386
  readonly lastRetrieved?: Date;
4294
4387
  }
4388
+ /**
4389
+ * Request parameters for apiV1HospitalsHospitalIdAppointmenttimetableoverridesPatch operation in HospitalsApi.
4390
+ * @export
4391
+ * @interface HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetableoverridesPatchRequest
4392
+ */
4393
+ export interface HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetableoverridesPatchRequest {
4394
+ /**
4395
+ *
4396
+ * @type {string}
4397
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetableoverridesPatch
4398
+ */
4399
+ readonly hospitalId: string;
4400
+ /**
4401
+ *
4402
+ * @type {DeleteHospitalAppointmentTimetableOverridesCommand}
4403
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetableoverridesPatch
4404
+ */
4405
+ readonly deleteHospitalAppointmentTimetableOverridesCommand?: DeleteHospitalAppointmentTimetableOverridesCommand;
4406
+ }
4295
4407
  /**
4296
4408
  * Request parameters for apiV1HospitalsHospitalIdAppointmenttimetableoverridesPost operation in HospitalsApi.
4297
4409
  * @export
@@ -6296,6 +6408,31 @@ export interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialt
6296
6408
  */
6297
6409
  readonly lastRetrieved?: Date;
6298
6410
  }
6411
+ /**
6412
+ * Request parameters for apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPatch operation in HospitalsApi.
6413
+ * @export
6414
+ * @interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPatchRequest
6415
+ */
6416
+ export interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPatchRequest {
6417
+ /**
6418
+ *
6419
+ * @type {string}
6420
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPatch
6421
+ */
6422
+ readonly hospitalId: string;
6423
+ /**
6424
+ *
6425
+ * @type {string}
6426
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPatch
6427
+ */
6428
+ readonly hospitalSpecialtyId: string;
6429
+ /**
6430
+ *
6431
+ * @type {DeleteHospitalSpecialtyAppointmentTimetableOverridesCommand}
6432
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPatch
6433
+ */
6434
+ readonly deleteHospitalSpecialtyAppointmentTimetableOverridesCommand?: DeleteHospitalSpecialtyAppointmentTimetableOverridesCommand;
6435
+ }
6299
6436
  /**
6300
6437
  * Request parameters for apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPost operation in HospitalsApi.
6301
6438
  * @export
@@ -6974,6 +7111,37 @@ export interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServi
6974
7111
  */
6975
7112
  readonly lastRetrieved?: Date;
6976
7113
  }
7114
+ /**
7115
+ * Request parameters for apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPatch operation in HospitalsApi.
7116
+ * @export
7117
+ * @interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPatchRequest
7118
+ */
7119
+ export interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPatchRequest {
7120
+ /**
7121
+ *
7122
+ * @type {string}
7123
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPatch
7124
+ */
7125
+ readonly hospitalId: string;
7126
+ /**
7127
+ *
7128
+ * @type {string}
7129
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPatch
7130
+ */
7131
+ readonly specialtyId: string;
7132
+ /**
7133
+ *
7134
+ * @type {string}
7135
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPatch
7136
+ */
7137
+ readonly serviceId: string;
7138
+ /**
7139
+ *
7140
+ * @type {DeleteServiceAppointmentTimetableOverridesCommand}
7141
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPatch
7142
+ */
7143
+ readonly deleteServiceAppointmentTimetableOverridesCommand?: DeleteServiceAppointmentTimetableOverridesCommand;
7144
+ }
6977
7145
  /**
6978
7146
  * Request parameters for apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPost operation in HospitalsApi.
6979
7147
  * @export
@@ -7796,6 +7964,15 @@ export declare class HospitalsApi extends BaseAPI {
7796
7964
  * @memberof HospitalsApi
7797
7965
  */
7798
7966
  apiV1HospitalsHospitalIdAppointmenttimetableoverridesGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetableoverridesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AppointmentTimetableOverridesModel, any>>;
7967
+ /**
7968
+ *
7969
+ * @summary Delete Hospital appointment timetable overrides
7970
+ * @param {HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetableoverridesPatchRequest} requestParameters Request parameters.
7971
+ * @param {*} [options] Override http request option.
7972
+ * @throws {RequiredError}
7973
+ * @memberof HospitalsApi
7974
+ */
7975
+ apiV1HospitalsHospitalIdAppointmenttimetableoverridesPatch(requestParameters: HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetableoverridesPatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
7799
7976
  /**
7800
7977
  *
7801
7978
  * @summary Save Hospital appointment timetable overrides
@@ -8444,6 +8621,15 @@ export declare class HospitalsApi extends BaseAPI {
8444
8621
  * @memberof HospitalsApi
8445
8622
  */
8446
8623
  apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AppointmentTimetableOverridesModel, any>>;
8624
+ /**
8625
+ *
8626
+ * @summary Delete HospitalSpecialty appointment timetable overrides
8627
+ * @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPatchRequest} requestParameters Request parameters.
8628
+ * @param {*} [options] Override http request option.
8629
+ * @throws {RequiredError}
8630
+ * @memberof HospitalsApi
8631
+ */
8632
+ apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPatch(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetableoverridesPatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
8447
8633
  /**
8448
8634
  *
8449
8635
  * @summary Save HospitalSpecialty appointment timetable overrides
@@ -8606,6 +8792,15 @@ export declare class HospitalsApi extends BaseAPI {
8606
8792
  * @memberof HospitalsApi
8607
8793
  */
8608
8794
  apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AppointmentTimetableOverridesModel, any>>;
8795
+ /**
8796
+ *
8797
+ * @summary Delete Service appointment timetable overrides
8798
+ * @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPatchRequest} requestParameters Request parameters.
8799
+ * @param {*} [options] Override http request option.
8800
+ * @throws {RequiredError}
8801
+ * @memberof HospitalsApi
8802
+ */
8803
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPatch(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetableoverridesPatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
8609
8804
  /**
8610
8805
  *
8611
8806
  * @summary Save Service appointment timetable overrides