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,51 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
8
+ * Contact: hyounoosung@icloudhospital.com
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { ConsultationDurationStatiscticsModel } from './consultation-duration-statisctics-model';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface ConsultationStatisticsModel
24
+ */
25
+ export interface ConsultationStatisticsModel {
26
+ /**
27
+ *
28
+ * @type {number}
29
+ * @memberof ConsultationStatisticsModel
30
+ */
31
+ 'pendingApprovalCount'?: number;
32
+ /**
33
+ *
34
+ * @type {number}
35
+ * @memberof ConsultationStatisticsModel
36
+ */
37
+ 'finishedCount'?: number;
38
+ /**
39
+ *
40
+ * @type {number}
41
+ * @memberof ConsultationStatisticsModel
42
+ */
43
+ 'revenue'?: number;
44
+ /**
45
+ *
46
+ * @type {Array<ConsultationDurationStatiscticsModel>}
47
+ * @memberof ConsultationStatisticsModel
48
+ */
49
+ 'monthlyList'?: Array<ConsultationDurationStatiscticsModel> | null;
50
+ }
51
+
@@ -44,12 +44,6 @@ export interface CreateHospitalContactCommand {
44
44
  * @memberof CreateHospitalContactCommand
45
45
  */
46
46
  'showTargetTel'?: boolean;
47
- /**
48
- *
49
- * @type {string}
50
- * @memberof CreateHospitalContactCommand
51
- */
52
- 'email'?: string | null;
53
47
  /**
54
48
  *
55
49
  * @type {string}
@@ -13,6 +13,21 @@
13
13
  */
14
14
 
15
15
 
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { BookingStatisticsModel } from './booking-statistics-model';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import { CallStatisticsModel } from './call-statistics-model';
22
+ // May contain unused imports in some cases
23
+ // @ts-ignore
24
+ import { ConsultationStatisticsModel } from './consultation-statistics-model';
25
+ // May contain unused imports in some cases
26
+ // @ts-ignore
27
+ import { GeneralStatisticsModel } from './general-statistics-model';
28
+ // May contain unused imports in some cases
29
+ // @ts-ignore
30
+ import { SurveyFormStatisticsModel } from './survey-form-statistics-model';
16
31
 
17
32
  /**
18
33
  *
@@ -22,75 +37,33 @@
22
37
  export interface DashBoardModel {
23
38
  /**
24
39
  *
25
- * @type {number}
40
+ * @type {ConsultationStatisticsModel}
26
41
  * @memberof DashBoardModel
27
42
  */
28
- 'pendingApprovalConsultationsCount'?: number;
43
+ 'consultation'?: ConsultationStatisticsModel;
29
44
  /**
30
45
  *
31
- * @type {number}
46
+ * @type {SurveyFormStatisticsModel}
32
47
  * @memberof DashBoardModel
33
48
  */
34
- 'finishedConsultationsCount'?: number;
49
+ 'surveyForm'?: SurveyFormStatisticsModel;
35
50
  /**
36
51
  *
37
- * @type {number}
52
+ * @type {CallStatisticsModel}
38
53
  * @memberof DashBoardModel
39
54
  */
40
- 'consultationsRevenue'?: number;
55
+ 'call'?: CallStatisticsModel;
41
56
  /**
42
57
  *
43
- * @type {Array<any>}
58
+ * @type {BookingStatisticsModel}
44
59
  * @memberof DashBoardModel
45
60
  */
46
- 'monthlyConsultationList'?: Array<any> | null;
61
+ 'booking'?: BookingStatisticsModel;
47
62
  /**
48
63
  *
49
- * @type {number}
64
+ * @type {GeneralStatisticsModel}
50
65
  * @memberof DashBoardModel
51
66
  */
52
- 'pendingApprovalDealsCount'?: number;
53
- /**
54
- *
55
- * @type {number}
56
- * @memberof DashBoardModel
57
- */
58
- 'finishedDealsCount'?: number;
59
- /**
60
- *
61
- * @type {number}
62
- * @memberof DashBoardModel
63
- */
64
- 'dealsRevenue'?: number;
65
- /**
66
- *
67
- * @type {Array<any>}
68
- * @memberof DashBoardModel
69
- */
70
- 'monthlyBookingList'?: Array<any> | null;
71
- /**
72
- *
73
- * @type {number}
74
- * @memberof DashBoardModel
75
- */
76
- 'articleReleased'?: number;
77
- /**
78
- *
79
- * @type {number}
80
- * @memberof DashBoardModel
81
- */
82
- 'specialtiesUsed'?: number;
83
- /**
84
- *
85
- * @type {number}
86
- * @memberof DashBoardModel
87
- */
88
- 'doctorsReleased'?: number;
89
- /**
90
- *
91
- * @type {number}
92
- * @memberof DashBoardModel
93
- */
94
- 'totalHospitalsReleased'?: number;
67
+ 'general'?: GeneralStatisticsModel;
95
68
  }
96
69
 
@@ -0,0 +1,51 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
8
+ * Contact: hyounoosung@icloudhospital.com
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { DayOfWeek } from './day-of-week';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface DeleteDealPackageAppointmentTimetableOverridesCommand
24
+ */
25
+ export interface DeleteDealPackageAppointmentTimetableOverridesCommand {
26
+ /**
27
+ *
28
+ * @type {Array<string>}
29
+ * @memberof DeleteDealPackageAppointmentTimetableOverridesCommand
30
+ */
31
+ 'ids'?: Array<string> | null;
32
+ /**
33
+ *
34
+ * @type {Date}
35
+ * @memberof DeleteDealPackageAppointmentTimetableOverridesCommand
36
+ */
37
+ 'dateOnly'?: Date | null;
38
+ /**
39
+ *
40
+ * @type {DayOfWeek}
41
+ * @memberof DeleteDealPackageAppointmentTimetableOverridesCommand
42
+ */
43
+ 'dayOfWeek'?: DayOfWeek;
44
+ /**
45
+ *
46
+ * @type {Date}
47
+ * @memberof DeleteDealPackageAppointmentTimetableOverridesCommand
48
+ */
49
+ 'dateBefore'?: Date | null;
50
+ }
51
+
@@ -0,0 +1,51 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
8
+ * Contact: hyounoosung@icloudhospital.com
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { DayOfWeek } from './day-of-week';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface DeleteDoctorAffiliationAppointmentTimetableOverridesCommand
24
+ */
25
+ export interface DeleteDoctorAffiliationAppointmentTimetableOverridesCommand {
26
+ /**
27
+ *
28
+ * @type {Array<string>}
29
+ * @memberof DeleteDoctorAffiliationAppointmentTimetableOverridesCommand
30
+ */
31
+ 'ids'?: Array<string> | null;
32
+ /**
33
+ *
34
+ * @type {Date}
35
+ * @memberof DeleteDoctorAffiliationAppointmentTimetableOverridesCommand
36
+ */
37
+ 'dateOnly'?: Date | null;
38
+ /**
39
+ *
40
+ * @type {DayOfWeek}
41
+ * @memberof DeleteDoctorAffiliationAppointmentTimetableOverridesCommand
42
+ */
43
+ 'dayOfWeek'?: DayOfWeek;
44
+ /**
45
+ *
46
+ * @type {Date}
47
+ * @memberof DeleteDoctorAffiliationAppointmentTimetableOverridesCommand
48
+ */
49
+ 'dateBefore'?: Date | null;
50
+ }
51
+
@@ -0,0 +1,51 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
8
+ * Contact: hyounoosung@icloudhospital.com
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { DayOfWeek } from './day-of-week';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface DeleteHospitalAppointmentTimetableOverridesCommand
24
+ */
25
+ export interface DeleteHospitalAppointmentTimetableOverridesCommand {
26
+ /**
27
+ *
28
+ * @type {Array<string>}
29
+ * @memberof DeleteHospitalAppointmentTimetableOverridesCommand
30
+ */
31
+ 'ids'?: Array<string> | null;
32
+ /**
33
+ *
34
+ * @type {Date}
35
+ * @memberof DeleteHospitalAppointmentTimetableOverridesCommand
36
+ */
37
+ 'dateOnly'?: Date | null;
38
+ /**
39
+ *
40
+ * @type {DayOfWeek}
41
+ * @memberof DeleteHospitalAppointmentTimetableOverridesCommand
42
+ */
43
+ 'dayOfWeek'?: DayOfWeek;
44
+ /**
45
+ *
46
+ * @type {Date}
47
+ * @memberof DeleteHospitalAppointmentTimetableOverridesCommand
48
+ */
49
+ 'dateBefore'?: Date | null;
50
+ }
51
+
@@ -0,0 +1,51 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
8
+ * Contact: hyounoosung@icloudhospital.com
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { DayOfWeek } from './day-of-week';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface DeleteHospitalSpecialtyAppointmentTimetableOverridesCommand
24
+ */
25
+ export interface DeleteHospitalSpecialtyAppointmentTimetableOverridesCommand {
26
+ /**
27
+ *
28
+ * @type {Array<string>}
29
+ * @memberof DeleteHospitalSpecialtyAppointmentTimetableOverridesCommand
30
+ */
31
+ 'ids'?: Array<string> | null;
32
+ /**
33
+ *
34
+ * @type {Date}
35
+ * @memberof DeleteHospitalSpecialtyAppointmentTimetableOverridesCommand
36
+ */
37
+ 'dateOnly'?: Date | null;
38
+ /**
39
+ *
40
+ * @type {DayOfWeek}
41
+ * @memberof DeleteHospitalSpecialtyAppointmentTimetableOverridesCommand
42
+ */
43
+ 'dayOfWeek'?: DayOfWeek;
44
+ /**
45
+ *
46
+ * @type {Date}
47
+ * @memberof DeleteHospitalSpecialtyAppointmentTimetableOverridesCommand
48
+ */
49
+ 'dateBefore'?: Date | null;
50
+ }
51
+
@@ -0,0 +1,51 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
8
+ * Contact: hyounoosung@icloudhospital.com
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { DayOfWeek } from './day-of-week';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface DeleteServiceAppointmentTimetableOverridesCommand
24
+ */
25
+ export interface DeleteServiceAppointmentTimetableOverridesCommand {
26
+ /**
27
+ *
28
+ * @type {Array<string>}
29
+ * @memberof DeleteServiceAppointmentTimetableOverridesCommand
30
+ */
31
+ 'ids'?: Array<string> | null;
32
+ /**
33
+ *
34
+ * @type {Date}
35
+ * @memberof DeleteServiceAppointmentTimetableOverridesCommand
36
+ */
37
+ 'dateOnly'?: Date | null;
38
+ /**
39
+ *
40
+ * @type {DayOfWeek}
41
+ * @memberof DeleteServiceAppointmentTimetableOverridesCommand
42
+ */
43
+ 'dayOfWeek'?: DayOfWeek;
44
+ /**
45
+ *
46
+ * @type {Date}
47
+ * @memberof DeleteServiceAppointmentTimetableOverridesCommand
48
+ */
49
+ 'dateBefore'?: Date | null;
50
+ }
51
+
@@ -0,0 +1,48 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
8
+ * Contact: hyounoosung@icloudhospital.com
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface GeneralStatisticsModel
21
+ */
22
+ export interface GeneralStatisticsModel {
23
+ /**
24
+ *
25
+ * @type {number}
26
+ * @memberof GeneralStatisticsModel
27
+ */
28
+ 'articleReleased'?: number;
29
+ /**
30
+ *
31
+ * @type {number}
32
+ * @memberof GeneralStatisticsModel
33
+ */
34
+ 'specialtiesUsed'?: number;
35
+ /**
36
+ *
37
+ * @type {number}
38
+ * @memberof GeneralStatisticsModel
39
+ */
40
+ 'doctorsReleased'?: number;
41
+ /**
42
+ *
43
+ * @type {number}
44
+ * @memberof GeneralStatisticsModel
45
+ */
46
+ 'totalHospitalsReleased'?: number;
47
+ }
48
+
@@ -50,12 +50,6 @@ export interface HospitalContactItemModel {
50
50
  * @memberof HospitalContactItemModel
51
51
  */
52
52
  'showTargetTel'?: boolean;
53
- /**
54
- *
55
- * @type {string}
56
- * @memberof HospitalContactItemModel
57
- */
58
- 'email'?: string | null;
59
53
  /**
60
54
  *
61
55
  * @type {string}
@@ -50,12 +50,6 @@ export interface HospitalContactModel {
50
50
  * @memberof HospitalContactModel
51
51
  */
52
52
  'showTargetTel'?: boolean;
53
- /**
54
- *
55
- * @type {string}
56
- * @memberof HospitalContactModel
57
- */
58
- 'email'?: string | null;
59
53
  /**
60
54
  *
61
55
  * @type {string}
@@ -55,8 +55,10 @@ export * from './batch-service-appointment-timetables-command';
55
55
  export * from './batch-update-appointment-timetable-model';
56
56
  export * from './batch-update-hospital-consultation-timetable-model';
57
57
  export * from './booking-change-log-model';
58
+ export * from './booking-duration-statistics-model';
58
59
  export * from './booking-item-model';
59
60
  export * from './booking-model';
61
+ export * from './booking-statistics-model';
60
62
  export * from './booking-status';
61
63
  export * from './bookings-model';
62
64
  export * from './buy-number-command';
@@ -66,10 +68,12 @@ export * from './chadmins-model';
66
68
  export * from './chmanager-item-model';
67
69
  export * from './chmanager-model';
68
70
  export * from './chmanagers-model';
71
+ export * from './call-duration-statistics-model';
69
72
  export * from './call-histories-model';
70
73
  export * from './call-history-change-log-model';
71
74
  export * from './call-history-item-model';
72
75
  export * from './call-history-model';
76
+ export * from './call-statistics-model';
73
77
  export * from './call-status';
74
78
  export * from './cancel-number-command';
75
79
  export * from './change-email-command';
@@ -79,8 +83,10 @@ export * from './check-notifications-command';
79
83
  export * from './communication-user-token-model';
80
84
  export * from './confirm-email-command';
81
85
  export * from './consultation-change-log-model';
86
+ export * from './consultation-duration-statisctics-model';
82
87
  export * from './consultation-item-model';
83
88
  export * from './consultation-model';
89
+ export * from './consultation-statistics-model';
84
90
  export * from './consultation-status';
85
91
  export * from './consultation-type';
86
92
  export * from './consultations-model';
@@ -164,7 +170,12 @@ export * from './deal-services-model';
164
170
  export * from './deals-model';
165
171
  export * from './deals-simple-model';
166
172
  export * from './delete-application-command';
173
+ export * from './delete-deal-package-appointment-timetable-overrides-command';
174
+ export * from './delete-doctor-affiliation-appointment-timetable-overrides-command';
175
+ export * from './delete-hospital-appointment-timetable-overrides-command';
167
176
  export * from './delete-hospital-consultation-timetable-override-command';
177
+ export * from './delete-hospital-specialty-appointment-timetable-overrides-command';
178
+ export * from './delete-service-appointment-timetable-overrides-command';
168
179
  export * from './doctor-affiliation-item-model';
169
180
  export * from './doctor-affiliation-model';
170
181
  export * from './doctor-affiliations-model';
@@ -203,6 +214,7 @@ export * from './feature-input-model';
203
214
  export * from './feature-model';
204
215
  export * from './footer-navigation-item-model';
205
216
  export * from './gender';
217
+ export * from './general-statistics-model';
206
218
  export * from './get-transfer-balance-embeded';
207
219
  export * from './get-transfer-balance-result';
208
220
  export * from './grade-item-model';
@@ -373,6 +385,7 @@ export * from './string-filter-types';
373
385
  export * from './string-string-ienumerable-key-value-pair';
374
386
  export * from './sub-account';
375
387
  export * from './subscription-model';
388
+ export * from './survey-form-duration-statistics-model';
376
389
  export * from './survey-form-element-input-model';
377
390
  export * from './survey-form-element-model';
378
391
  export * from './survey-form-element-option-input-model';
@@ -380,6 +393,7 @@ export * from './survey-form-element-option-model';
380
393
  export * from './survey-form-element-types';
381
394
  export * from './survey-form-item-model';
382
395
  export * from './survey-form-model';
396
+ export * from './survey-form-statistics-model';
383
397
  export * from './survey-form-status';
384
398
  export * from './survey-forms-model';
385
399
  export * from './survey-result-element-model';
@@ -0,0 +1,36 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
8
+ * Contact: hyounoosung@icloudhospital.com
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface SurveyFormDurationStatisticsModel
21
+ */
22
+ export interface SurveyFormDurationStatisticsModel {
23
+ /**
24
+ *
25
+ * @type {Date}
26
+ * @memberof SurveyFormDurationStatisticsModel
27
+ */
28
+ 'key'?: Date;
29
+ /**
30
+ *
31
+ * @type {number}
32
+ * @memberof SurveyFormDurationStatisticsModel
33
+ */
34
+ 'value'?: number;
35
+ }
36
+
@@ -0,0 +1,45 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
8
+ * Contact: hyounoosung@icloudhospital.com
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { SurveyFormDurationStatisticsModel } from './survey-form-duration-statistics-model';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface SurveyFormStatisticsModel
24
+ */
25
+ export interface SurveyFormStatisticsModel {
26
+ /**
27
+ *
28
+ * @type {number}
29
+ * @memberof SurveyFormStatisticsModel
30
+ */
31
+ 'totalFormsCount'?: number;
32
+ /**
33
+ *
34
+ * @type {number}
35
+ * @memberof SurveyFormStatisticsModel
36
+ */
37
+ 'totalResultsCount'?: number;
38
+ /**
39
+ *
40
+ * @type {Array<SurveyFormDurationStatisticsModel>}
41
+ * @memberof SurveyFormStatisticsModel
42
+ */
43
+ 'monthlyList'?: Array<SurveyFormDurationStatisticsModel> | null;
44
+ }
45
+
@@ -43,13 +43,7 @@ export interface UpdateHospitalContactCommand {
43
43
  * @type {boolean}
44
44
  * @memberof UpdateHospitalContactCommand
45
45
  */
46
- 'showTargetTel'?: boolean;
47
- /**
48
- *
49
- * @type {string}
50
- * @memberof UpdateHospitalContactCommand
51
- */
52
- 'email'?: string | null;
46
+ 'showTargetTel'?: boolean | null;
53
47
  /**
54
48
  *
55
49
  * @type {string}
@@ -61,6 +55,6 @@ export interface UpdateHospitalContactCommand {
61
55
  * @type {number}
62
56
  * @memberof UpdateHospitalContactCommand
63
57
  */
64
- 'order'?: number;
58
+ 'order'?: number | null;
65
59
  }
66
60