ch-admin-api-client-typescript 5.5.7 → 5.5.9

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 (33) hide show
  1. package/lib/api/dash-board-api.d.ts +72 -18
  2. package/lib/api/dash-board-api.d.ts.map +1 -1
  3. package/lib/api/dash-board-api.js +72 -36
  4. package/lib/models/call-duration-statistics-model.d.ts +7 -0
  5. package/lib/models/call-duration-statistics-model.d.ts.map +1 -1
  6. package/lib/models/call-history-language-statistics-model.d.ts +31 -0
  7. package/lib/models/call-history-language-statistics-model.d.ts.map +1 -0
  8. package/lib/models/call-history-language-statistics-model.js +15 -0
  9. package/lib/models/hospital-model.d.ts +1 -1
  10. package/lib/models/hospital-model.d.ts.map +1 -1
  11. package/lib/models/index.d.ts +2 -0
  12. package/lib/models/index.d.ts.map +1 -1
  13. package/lib/models/index.js +2 -0
  14. package/lib/models/survey-form-duration-statistics-model.d.ts +7 -0
  15. package/lib/models/survey-form-duration-statistics-model.d.ts.map +1 -1
  16. package/lib/models/survey-form-language-statistics-model.d.ts +31 -0
  17. package/lib/models/survey-form-language-statistics-model.d.ts.map +1 -0
  18. package/lib/models/survey-form-language-statistics-model.js +15 -0
  19. package/lib/models/survey-result-item-model.d.ts +6 -0
  20. package/lib/models/survey-result-item-model.d.ts.map +1 -1
  21. package/lib/models/survey-result-model.d.ts +6 -0
  22. package/lib/models/survey-result-model.d.ts.map +1 -1
  23. package/package.json +1 -1
  24. package/src/.openapi-generator/FILES +2 -0
  25. package/src/api/dash-board-api.ts +120 -36
  26. package/src/models/call-duration-statistics-model.ts +9 -0
  27. package/src/models/call-history-language-statistics-model.ts +36 -0
  28. package/src/models/hospital-model.ts +1 -1
  29. package/src/models/index.ts +2 -0
  30. package/src/models/survey-form-duration-statistics-model.ts +9 -0
  31. package/src/models/survey-form-language-statistics-model.ts +36 -0
  32. package/src/models/survey-result-item-model.ts +6 -0
  33. package/src/models/survey-result-model.ts +6 -0
@@ -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 SurveyFormLanguageStatisticsModel
21
+ */
22
+ export interface SurveyFormLanguageStatisticsModel {
23
+ /**
24
+ *
25
+ * @type {number}
26
+ * @memberof SurveyFormLanguageStatisticsModel
27
+ */
28
+ 'value'?: number;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof SurveyFormLanguageStatisticsModel
33
+ */
34
+ 'languageCode'?: string | null;
35
+ }
36
+
@@ -86,5 +86,11 @@ export interface SurveyResultItemModel {
86
86
  * @memberof SurveyResultItemModel
87
87
  */
88
88
  'elements'?: Array<SurveyResultElementModel> | null;
89
+ /**
90
+ *
91
+ * @type {boolean}
92
+ * @memberof SurveyResultItemModel
93
+ */
94
+ 'notificationSent'?: boolean;
89
95
  }
90
96
 
@@ -86,6 +86,12 @@ export interface SurveyResultModel {
86
86
  * @memberof SurveyResultModel
87
87
  */
88
88
  'elements'?: Array<SurveyResultElementModel> | null;
89
+ /**
90
+ *
91
+ * @type {boolean}
92
+ * @memberof SurveyResultModel
93
+ */
94
+ 'notificationSent'?: boolean;
89
95
  /**
90
96
  *
91
97
  * @type {string}