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.
- package/lib/api/dash-board-api.d.ts +72 -18
- package/lib/api/dash-board-api.d.ts.map +1 -1
- package/lib/api/dash-board-api.js +72 -36
- package/lib/models/call-duration-statistics-model.d.ts +7 -0
- package/lib/models/call-duration-statistics-model.d.ts.map +1 -1
- package/lib/models/call-history-language-statistics-model.d.ts +31 -0
- package/lib/models/call-history-language-statistics-model.d.ts.map +1 -0
- package/lib/models/call-history-language-statistics-model.js +15 -0
- package/lib/models/hospital-model.d.ts +1 -1
- package/lib/models/hospital-model.d.ts.map +1 -1
- package/lib/models/index.d.ts +2 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +2 -0
- package/lib/models/survey-form-duration-statistics-model.d.ts +7 -0
- package/lib/models/survey-form-duration-statistics-model.d.ts.map +1 -1
- package/lib/models/survey-form-language-statistics-model.d.ts +31 -0
- package/lib/models/survey-form-language-statistics-model.d.ts.map +1 -0
- package/lib/models/survey-form-language-statistics-model.js +15 -0
- package/lib/models/survey-result-item-model.d.ts +6 -0
- package/lib/models/survey-result-item-model.d.ts.map +1 -1
- package/lib/models/survey-result-model.d.ts +6 -0
- package/lib/models/survey-result-model.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +2 -0
- package/src/api/dash-board-api.ts +120 -36
- package/src/models/call-duration-statistics-model.ts +9 -0
- package/src/models/call-history-language-statistics-model.ts +36 -0
- package/src/models/hospital-model.ts +1 -1
- package/src/models/index.ts +2 -0
- package/src/models/survey-form-duration-statistics-model.ts +9 -0
- package/src/models/survey-form-language-statistics-model.ts +36 -0
- package/src/models/survey-result-item-model.ts +6 -0
- 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}
|