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
@@ -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 { ConsultationDurationStatiscticsModel } from './consultation-duration-statisctics-model';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ConsultationStatisticsModel
17
+ */
18
+ export interface ConsultationStatisticsModel {
19
+ /**
20
+ *
21
+ * @type {number}
22
+ * @memberof ConsultationStatisticsModel
23
+ */
24
+ 'pendingApprovalCount'?: number;
25
+ /**
26
+ *
27
+ * @type {number}
28
+ * @memberof ConsultationStatisticsModel
29
+ */
30
+ 'finishedCount'?: number;
31
+ /**
32
+ *
33
+ * @type {number}
34
+ * @memberof ConsultationStatisticsModel
35
+ */
36
+ 'revenue'?: number;
37
+ /**
38
+ *
39
+ * @type {Array<ConsultationDurationStatiscticsModel>}
40
+ * @memberof ConsultationStatisticsModel
41
+ */
42
+ 'monthlyList'?: Array<ConsultationDurationStatiscticsModel> | null;
43
+ }
44
+ //# sourceMappingURL=consultation-statistics-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"consultation-statistics-model.d.ts","sourceRoot":"","sources":["../../src/models/consultation-statistics-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oCAAoC,EAAE,MAAM,2CAA2C,CAAC;AAEjG;;;;GAIG;AACH,MAAM,WAAW,2BAA2B;IACxC;;;;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,oCAAoC,CAAC,GAAG,IAAI,CAAC;CACtE"}
@@ -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 });
@@ -39,12 +39,6 @@ export interface CreateHospitalContactCommand {
39
39
  * @memberof CreateHospitalContactCommand
40
40
  */
41
41
  'showTargetTel'?: boolean;
42
- /**
43
- *
44
- * @type {string}
45
- * @memberof CreateHospitalContactCommand
46
- */
47
- 'email'?: string | null;
48
42
  /**
49
43
  *
50
44
  * @type {string}
@@ -1 +1 @@
1
- {"version":3,"file":"create-hospital-contact-command.d.ts","sourceRoot":"","sources":["../../src/models/create-hospital-contact-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,4BAA4B;IACzC;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB"}
1
+ {"version":3,"file":"create-hospital-contact-command.d.ts","sourceRoot":"","sources":["../../src/models/create-hospital-contact-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,4BAA4B;IACzC;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB"}
@@ -9,6 +9,11 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { BookingStatisticsModel } from './booking-statistics-model';
13
+ import { CallStatisticsModel } from './call-statistics-model';
14
+ import { ConsultationStatisticsModel } from './consultation-statistics-model';
15
+ import { GeneralStatisticsModel } from './general-statistics-model';
16
+ import { SurveyFormStatisticsModel } from './survey-form-statistics-model';
12
17
  /**
13
18
  *
14
19
  * @export
@@ -17,75 +22,33 @@
17
22
  export interface DashBoardModel {
18
23
  /**
19
24
  *
20
- * @type {number}
25
+ * @type {ConsultationStatisticsModel}
21
26
  * @memberof DashBoardModel
22
27
  */
23
- 'pendingApprovalConsultationsCount'?: number;
28
+ 'consultation'?: ConsultationStatisticsModel;
24
29
  /**
25
30
  *
26
- * @type {number}
31
+ * @type {SurveyFormStatisticsModel}
27
32
  * @memberof DashBoardModel
28
33
  */
29
- 'finishedConsultationsCount'?: number;
34
+ 'surveyForm'?: SurveyFormStatisticsModel;
30
35
  /**
31
36
  *
32
- * @type {number}
37
+ * @type {CallStatisticsModel}
33
38
  * @memberof DashBoardModel
34
39
  */
35
- 'consultationsRevenue'?: number;
40
+ 'call'?: CallStatisticsModel;
36
41
  /**
37
42
  *
38
- * @type {Array<any>}
43
+ * @type {BookingStatisticsModel}
39
44
  * @memberof DashBoardModel
40
45
  */
41
- 'monthlyConsultationList'?: Array<any> | null;
46
+ 'booking'?: BookingStatisticsModel;
42
47
  /**
43
48
  *
44
- * @type {number}
49
+ * @type {GeneralStatisticsModel}
45
50
  * @memberof DashBoardModel
46
51
  */
47
- 'pendingApprovalDealsCount'?: number;
48
- /**
49
- *
50
- * @type {number}
51
- * @memberof DashBoardModel
52
- */
53
- 'finishedDealsCount'?: number;
54
- /**
55
- *
56
- * @type {number}
57
- * @memberof DashBoardModel
58
- */
59
- 'dealsRevenue'?: number;
60
- /**
61
- *
62
- * @type {Array<any>}
63
- * @memberof DashBoardModel
64
- */
65
- 'monthlyBookingList'?: Array<any> | null;
66
- /**
67
- *
68
- * @type {number}
69
- * @memberof DashBoardModel
70
- */
71
- 'articleReleased'?: number;
72
- /**
73
- *
74
- * @type {number}
75
- * @memberof DashBoardModel
76
- */
77
- 'specialtiesUsed'?: number;
78
- /**
79
- *
80
- * @type {number}
81
- * @memberof DashBoardModel
82
- */
83
- 'doctorsReleased'?: number;
84
- /**
85
- *
86
- * @type {number}
87
- * @memberof DashBoardModel
88
- */
89
- 'totalHospitalsReleased'?: number;
52
+ 'general'?: GeneralStatisticsModel;
90
53
  }
91
54
  //# sourceMappingURL=dash-board-model.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"dash-board-model.d.ts","sourceRoot":"","sources":["../../src/models/dash-board-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,cAAc;IAC3B;;;;OAIG;IACH,mCAAmC,CAAC,EAAE,MAAM,CAAC;IAC7C;;;;OAIG;IACH,4BAA4B,CAAC,EAAE,MAAM,CAAC;IACtC;;;;OAIG;IACH,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC;;;;OAIG;IACH,yBAAyB,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;IAC9C;;;;OAIG;IACH,2BAA2B,CAAC,EAAE,MAAM,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;IACzC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,wBAAwB,CAAC,EAAE,MAAM,CAAC;CACrC"}
1
+ {"version":3,"file":"dash-board-model.d.ts","sourceRoot":"","sources":["../../src/models/dash-board-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AAGpE,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAG9D,OAAO,EAAE,2BAA2B,EAAE,MAAM,iCAAiC,CAAC;AAG9E,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AAGpE,OAAO,EAAE,yBAAyB,EAAE,MAAM,gCAAgC,CAAC;AAE3E;;;;GAIG;AACH,MAAM,WAAW,cAAc;IAC3B;;;;OAIG;IACH,cAAc,CAAC,EAAE,2BAA2B,CAAC;IAC7C;;;;OAIG;IACH,YAAY,CAAC,EAAE,yBAAyB,CAAC;IACzC;;;;OAIG;IACH,MAAM,CAAC,EAAE,mBAAmB,CAAC;IAC7B;;;;OAIG;IACH,SAAS,CAAC,EAAE,sBAAsB,CAAC;IACnC;;;;OAIG;IACH,SAAS,CAAC,EAAE,sBAAsB,CAAC;CACtC"}
@@ -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 { DayOfWeek } from './day-of-week';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface DeleteDealPackageAppointmentTimetableOverridesCommand
17
+ */
18
+ export interface DeleteDealPackageAppointmentTimetableOverridesCommand {
19
+ /**
20
+ *
21
+ * @type {Array<string>}
22
+ * @memberof DeleteDealPackageAppointmentTimetableOverridesCommand
23
+ */
24
+ 'ids'?: Array<string> | null;
25
+ /**
26
+ *
27
+ * @type {Date}
28
+ * @memberof DeleteDealPackageAppointmentTimetableOverridesCommand
29
+ */
30
+ 'dateOnly'?: Date | null;
31
+ /**
32
+ *
33
+ * @type {DayOfWeek}
34
+ * @memberof DeleteDealPackageAppointmentTimetableOverridesCommand
35
+ */
36
+ 'dayOfWeek'?: DayOfWeek;
37
+ /**
38
+ *
39
+ * @type {Date}
40
+ * @memberof DeleteDealPackageAppointmentTimetableOverridesCommand
41
+ */
42
+ 'dateBefore'?: Date | null;
43
+ }
44
+ //# sourceMappingURL=delete-deal-package-appointment-timetable-overrides-command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"delete-deal-package-appointment-timetable-overrides-command.d.ts","sourceRoot":"","sources":["../../src/models/delete-deal-package-appointment-timetable-overrides-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAE1C;;;;GAIG;AACH,MAAM,WAAW,qDAAqD;IAClE;;;;OAIG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,UAAU,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,WAAW,CAAC,EAAE,SAAS,CAAC;IACxB;;;;OAIG;IACH,YAAY,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;CAC9B"}
@@ -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 { DayOfWeek } from './day-of-week';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface DeleteDoctorAffiliationAppointmentTimetableOverridesCommand
17
+ */
18
+ export interface DeleteDoctorAffiliationAppointmentTimetableOverridesCommand {
19
+ /**
20
+ *
21
+ * @type {Array<string>}
22
+ * @memberof DeleteDoctorAffiliationAppointmentTimetableOverridesCommand
23
+ */
24
+ 'ids'?: Array<string> | null;
25
+ /**
26
+ *
27
+ * @type {Date}
28
+ * @memberof DeleteDoctorAffiliationAppointmentTimetableOverridesCommand
29
+ */
30
+ 'dateOnly'?: Date | null;
31
+ /**
32
+ *
33
+ * @type {DayOfWeek}
34
+ * @memberof DeleteDoctorAffiliationAppointmentTimetableOverridesCommand
35
+ */
36
+ 'dayOfWeek'?: DayOfWeek;
37
+ /**
38
+ *
39
+ * @type {Date}
40
+ * @memberof DeleteDoctorAffiliationAppointmentTimetableOverridesCommand
41
+ */
42
+ 'dateBefore'?: Date | null;
43
+ }
44
+ //# sourceMappingURL=delete-doctor-affiliation-appointment-timetable-overrides-command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"delete-doctor-affiliation-appointment-timetable-overrides-command.d.ts","sourceRoot":"","sources":["../../src/models/delete-doctor-affiliation-appointment-timetable-overrides-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAE1C;;;;GAIG;AACH,MAAM,WAAW,2DAA2D;IACxE;;;;OAIG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,UAAU,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,WAAW,CAAC,EAAE,SAAS,CAAC;IACxB;;;;OAIG;IACH,YAAY,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;CAC9B"}
@@ -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 { DayOfWeek } from './day-of-week';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface DeleteHospitalAppointmentTimetableOverridesCommand
17
+ */
18
+ export interface DeleteHospitalAppointmentTimetableOverridesCommand {
19
+ /**
20
+ *
21
+ * @type {Array<string>}
22
+ * @memberof DeleteHospitalAppointmentTimetableOverridesCommand
23
+ */
24
+ 'ids'?: Array<string> | null;
25
+ /**
26
+ *
27
+ * @type {Date}
28
+ * @memberof DeleteHospitalAppointmentTimetableOverridesCommand
29
+ */
30
+ 'dateOnly'?: Date | null;
31
+ /**
32
+ *
33
+ * @type {DayOfWeek}
34
+ * @memberof DeleteHospitalAppointmentTimetableOverridesCommand
35
+ */
36
+ 'dayOfWeek'?: DayOfWeek;
37
+ /**
38
+ *
39
+ * @type {Date}
40
+ * @memberof DeleteHospitalAppointmentTimetableOverridesCommand
41
+ */
42
+ 'dateBefore'?: Date | null;
43
+ }
44
+ //# sourceMappingURL=delete-hospital-appointment-timetable-overrides-command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"delete-hospital-appointment-timetable-overrides-command.d.ts","sourceRoot":"","sources":["../../src/models/delete-hospital-appointment-timetable-overrides-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAE1C;;;;GAIG;AACH,MAAM,WAAW,kDAAkD;IAC/D;;;;OAIG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,UAAU,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,WAAW,CAAC,EAAE,SAAS,CAAC;IACxB;;;;OAIG;IACH,YAAY,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;CAC9B"}
@@ -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 { DayOfWeek } from './day-of-week';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface DeleteHospitalSpecialtyAppointmentTimetableOverridesCommand
17
+ */
18
+ export interface DeleteHospitalSpecialtyAppointmentTimetableOverridesCommand {
19
+ /**
20
+ *
21
+ * @type {Array<string>}
22
+ * @memberof DeleteHospitalSpecialtyAppointmentTimetableOverridesCommand
23
+ */
24
+ 'ids'?: Array<string> | null;
25
+ /**
26
+ *
27
+ * @type {Date}
28
+ * @memberof DeleteHospitalSpecialtyAppointmentTimetableOverridesCommand
29
+ */
30
+ 'dateOnly'?: Date | null;
31
+ /**
32
+ *
33
+ * @type {DayOfWeek}
34
+ * @memberof DeleteHospitalSpecialtyAppointmentTimetableOverridesCommand
35
+ */
36
+ 'dayOfWeek'?: DayOfWeek;
37
+ /**
38
+ *
39
+ * @type {Date}
40
+ * @memberof DeleteHospitalSpecialtyAppointmentTimetableOverridesCommand
41
+ */
42
+ 'dateBefore'?: Date | null;
43
+ }
44
+ //# sourceMappingURL=delete-hospital-specialty-appointment-timetable-overrides-command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"delete-hospital-specialty-appointment-timetable-overrides-command.d.ts","sourceRoot":"","sources":["../../src/models/delete-hospital-specialty-appointment-timetable-overrides-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAE1C;;;;GAIG;AACH,MAAM,WAAW,2DAA2D;IACxE;;;;OAIG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,UAAU,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,WAAW,CAAC,EAAE,SAAS,CAAC;IACxB;;;;OAIG;IACH,YAAY,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;CAC9B"}
@@ -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 { DayOfWeek } from './day-of-week';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface DeleteServiceAppointmentTimetableOverridesCommand
17
+ */
18
+ export interface DeleteServiceAppointmentTimetableOverridesCommand {
19
+ /**
20
+ *
21
+ * @type {Array<string>}
22
+ * @memberof DeleteServiceAppointmentTimetableOverridesCommand
23
+ */
24
+ 'ids'?: Array<string> | null;
25
+ /**
26
+ *
27
+ * @type {Date}
28
+ * @memberof DeleteServiceAppointmentTimetableOverridesCommand
29
+ */
30
+ 'dateOnly'?: Date | null;
31
+ /**
32
+ *
33
+ * @type {DayOfWeek}
34
+ * @memberof DeleteServiceAppointmentTimetableOverridesCommand
35
+ */
36
+ 'dayOfWeek'?: DayOfWeek;
37
+ /**
38
+ *
39
+ * @type {Date}
40
+ * @memberof DeleteServiceAppointmentTimetableOverridesCommand
41
+ */
42
+ 'dateBefore'?: Date | null;
43
+ }
44
+ //# sourceMappingURL=delete-service-appointment-timetable-overrides-command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"delete-service-appointment-timetable-overrides-command.d.ts","sourceRoot":"","sources":["../../src/models/delete-service-appointment-timetable-overrides-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAE1C;;;;GAIG;AACH,MAAM,WAAW,iDAAiD;IAC9D;;;;OAIG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,UAAU,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,WAAW,CAAC,EAAE,SAAS,CAAC;IACxB;;;;OAIG;IACH,YAAY,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;CAC9B"}
@@ -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,43 @@
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 GeneralStatisticsModel
16
+ */
17
+ export interface GeneralStatisticsModel {
18
+ /**
19
+ *
20
+ * @type {number}
21
+ * @memberof GeneralStatisticsModel
22
+ */
23
+ 'articleReleased'?: number;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof GeneralStatisticsModel
28
+ */
29
+ 'specialtiesUsed'?: number;
30
+ /**
31
+ *
32
+ * @type {number}
33
+ * @memberof GeneralStatisticsModel
34
+ */
35
+ 'doctorsReleased'?: number;
36
+ /**
37
+ *
38
+ * @type {number}
39
+ * @memberof GeneralStatisticsModel
40
+ */
41
+ 'totalHospitalsReleased'?: number;
42
+ }
43
+ //# sourceMappingURL=general-statistics-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"general-statistics-model.d.ts","sourceRoot":"","sources":["../../src/models/general-statistics-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,sBAAsB;IACnC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,wBAAwB,CAAC,EAAE,MAAM,CAAC;CACrC"}
@@ -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 });
@@ -45,12 +45,6 @@ export interface HospitalContactItemModel {
45
45
  * @memberof HospitalContactItemModel
46
46
  */
47
47
  'showTargetTel'?: boolean;
48
- /**
49
- *
50
- * @type {string}
51
- * @memberof HospitalContactItemModel
52
- */
53
- 'email'?: string | null;
54
48
  /**
55
49
  *
56
50
  * @type {string}
@@ -1 +1 @@
1
- {"version":3,"file":"hospital-contact-item-model.d.ts","sourceRoot":"","sources":["../../src/models/hospital-contact-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,wBAAwB;IACrC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,uBAAuB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC3C"}
1
+ {"version":3,"file":"hospital-contact-item-model.d.ts","sourceRoot":"","sources":["../../src/models/hospital-contact-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,wBAAwB;IACrC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,uBAAuB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC3C"}
@@ -45,12 +45,6 @@ export interface HospitalContactModel {
45
45
  * @memberof HospitalContactModel
46
46
  */
47
47
  'showTargetTel'?: boolean;
48
- /**
49
- *
50
- * @type {string}
51
- * @memberof HospitalContactModel
52
- */
53
- 'email'?: string | null;
54
48
  /**
55
49
  *
56
50
  * @type {string}
@@ -1 +1 @@
1
- {"version":3,"file":"hospital-contact-model.d.ts","sourceRoot":"","sources":["../../src/models/hospital-contact-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACjC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,uBAAuB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC3C"}
1
+ {"version":3,"file":"hospital-contact-model.d.ts","sourceRoot":"","sources":["../../src/models/hospital-contact-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACjC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,uBAAuB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC3C"}