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
|
@@ -29,55 +29,61 @@ export declare const DashBoardApiAxiosParamCreator: (configuration?: Configurati
|
|
|
29
29
|
* @summary Get booking statisticss data
|
|
30
30
|
* @param {Duration} duration
|
|
31
31
|
* @param {string} [hospitalId]
|
|
32
|
+
* @param {string} [languageCode]
|
|
32
33
|
* @param {*} [options] Override http request option.
|
|
33
34
|
* @throws {RequiredError}
|
|
34
35
|
*/
|
|
35
|
-
apiV1DashboardBookingGet: (duration: Duration, hospitalId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
36
|
+
apiV1DashboardBookingGet: (duration: Duration, hospitalId?: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
36
37
|
/**
|
|
37
38
|
*
|
|
38
39
|
* @summary Get call statisticss data
|
|
39
40
|
* @param {Duration} duration
|
|
40
41
|
* @param {string} [hospitalId]
|
|
42
|
+
* @param {string} [languageCode]
|
|
41
43
|
* @param {*} [options] Override http request option.
|
|
42
44
|
* @throws {RequiredError}
|
|
43
45
|
*/
|
|
44
|
-
apiV1DashboardCallGet: (duration: Duration, hospitalId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
46
|
+
apiV1DashboardCallGet: (duration: Duration, hospitalId?: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
45
47
|
/**
|
|
46
48
|
*
|
|
47
49
|
* @summary Get consultation statisticss data
|
|
48
50
|
* @param {Duration} duration
|
|
49
51
|
* @param {string} [hospitalId]
|
|
52
|
+
* @param {string} [languageCode]
|
|
50
53
|
* @param {*} [options] Override http request option.
|
|
51
54
|
* @throws {RequiredError}
|
|
52
55
|
*/
|
|
53
|
-
apiV1DashboardConsultationGet: (duration: Duration, hospitalId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
56
|
+
apiV1DashboardConsultationGet: (duration: Duration, hospitalId?: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
54
57
|
/**
|
|
55
58
|
*
|
|
56
59
|
* @summary Get general statistics data
|
|
57
60
|
* @param {Duration} duration
|
|
58
61
|
* @param {string} [hospitalId]
|
|
62
|
+
* @param {string} [languageCode]
|
|
59
63
|
* @param {*} [options] Override http request option.
|
|
60
64
|
* @throws {RequiredError}
|
|
61
65
|
*/
|
|
62
|
-
apiV1DashboardGeneralGet: (duration: Duration, hospitalId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
66
|
+
apiV1DashboardGeneralGet: (duration: Duration, hospitalId?: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
63
67
|
/**
|
|
64
68
|
*
|
|
65
69
|
* @summary Get intergrated dashboard data
|
|
66
70
|
* @param {Duration} duration
|
|
67
71
|
* @param {string} [hospitalId]
|
|
72
|
+
* @param {string} [languageCode]
|
|
68
73
|
* @param {*} [options] Override http request option.
|
|
69
74
|
* @throws {RequiredError}
|
|
70
75
|
*/
|
|
71
|
-
apiV1DashboardGet: (duration: Duration, hospitalId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
76
|
+
apiV1DashboardGet: (duration: Duration, hospitalId?: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
72
77
|
/**
|
|
73
78
|
*
|
|
74
79
|
* @summary Get survey form statisticss data
|
|
75
80
|
* @param {Duration} duration
|
|
76
81
|
* @param {string} [hospitalId]
|
|
82
|
+
* @param {string} [languageCode]
|
|
77
83
|
* @param {*} [options] Override http request option.
|
|
78
84
|
* @throws {RequiredError}
|
|
79
85
|
*/
|
|
80
|
-
apiV1DashboardSurveyformGet: (duration: Duration, hospitalId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
86
|
+
apiV1DashboardSurveyformGet: (duration: Duration, hospitalId?: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
81
87
|
};
|
|
82
88
|
/**
|
|
83
89
|
* DashBoardApi - functional programming interface
|
|
@@ -89,55 +95,61 @@ export declare const DashBoardApiFp: (configuration?: Configuration) => {
|
|
|
89
95
|
* @summary Get booking statisticss data
|
|
90
96
|
* @param {Duration} duration
|
|
91
97
|
* @param {string} [hospitalId]
|
|
98
|
+
* @param {string} [languageCode]
|
|
92
99
|
* @param {*} [options] Override http request option.
|
|
93
100
|
* @throws {RequiredError}
|
|
94
101
|
*/
|
|
95
|
-
apiV1DashboardBookingGet(duration: Duration, hospitalId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BookingStatisticsModel>>;
|
|
102
|
+
apiV1DashboardBookingGet(duration: Duration, hospitalId?: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BookingStatisticsModel>>;
|
|
96
103
|
/**
|
|
97
104
|
*
|
|
98
105
|
* @summary Get call statisticss data
|
|
99
106
|
* @param {Duration} duration
|
|
100
107
|
* @param {string} [hospitalId]
|
|
108
|
+
* @param {string} [languageCode]
|
|
101
109
|
* @param {*} [options] Override http request option.
|
|
102
110
|
* @throws {RequiredError}
|
|
103
111
|
*/
|
|
104
|
-
apiV1DashboardCallGet(duration: Duration, hospitalId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CallStatisticsModel>>;
|
|
112
|
+
apiV1DashboardCallGet(duration: Duration, hospitalId?: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CallStatisticsModel>>;
|
|
105
113
|
/**
|
|
106
114
|
*
|
|
107
115
|
* @summary Get consultation statisticss data
|
|
108
116
|
* @param {Duration} duration
|
|
109
117
|
* @param {string} [hospitalId]
|
|
118
|
+
* @param {string} [languageCode]
|
|
110
119
|
* @param {*} [options] Override http request option.
|
|
111
120
|
* @throws {RequiredError}
|
|
112
121
|
*/
|
|
113
|
-
apiV1DashboardConsultationGet(duration: Duration, hospitalId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConsultationStatisticsModel>>;
|
|
122
|
+
apiV1DashboardConsultationGet(duration: Duration, hospitalId?: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConsultationStatisticsModel>>;
|
|
114
123
|
/**
|
|
115
124
|
*
|
|
116
125
|
* @summary Get general statistics data
|
|
117
126
|
* @param {Duration} duration
|
|
118
127
|
* @param {string} [hospitalId]
|
|
128
|
+
* @param {string} [languageCode]
|
|
119
129
|
* @param {*} [options] Override http request option.
|
|
120
130
|
* @throws {RequiredError}
|
|
121
131
|
*/
|
|
122
|
-
apiV1DashboardGeneralGet(duration: Duration, hospitalId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GeneralStatisticsModel>>;
|
|
132
|
+
apiV1DashboardGeneralGet(duration: Duration, hospitalId?: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GeneralStatisticsModel>>;
|
|
123
133
|
/**
|
|
124
134
|
*
|
|
125
135
|
* @summary Get intergrated dashboard data
|
|
126
136
|
* @param {Duration} duration
|
|
127
137
|
* @param {string} [hospitalId]
|
|
138
|
+
* @param {string} [languageCode]
|
|
128
139
|
* @param {*} [options] Override http request option.
|
|
129
140
|
* @throws {RequiredError}
|
|
130
141
|
*/
|
|
131
|
-
apiV1DashboardGet(duration: Duration, hospitalId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DashBoardModel>>;
|
|
142
|
+
apiV1DashboardGet(duration: Duration, hospitalId?: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DashBoardModel>>;
|
|
132
143
|
/**
|
|
133
144
|
*
|
|
134
145
|
* @summary Get survey form statisticss data
|
|
135
146
|
* @param {Duration} duration
|
|
136
147
|
* @param {string} [hospitalId]
|
|
148
|
+
* @param {string} [languageCode]
|
|
137
149
|
* @param {*} [options] Override http request option.
|
|
138
150
|
* @throws {RequiredError}
|
|
139
151
|
*/
|
|
140
|
-
apiV1DashboardSurveyformGet(duration: Duration, hospitalId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SurveyFormStatisticsModel>>;
|
|
152
|
+
apiV1DashboardSurveyformGet(duration: Duration, hospitalId?: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SurveyFormStatisticsModel>>;
|
|
141
153
|
};
|
|
142
154
|
/**
|
|
143
155
|
* DashBoardApi - factory interface
|
|
@@ -149,55 +161,61 @@ export declare const DashBoardApiFactory: (configuration?: Configuration, basePa
|
|
|
149
161
|
* @summary Get booking statisticss data
|
|
150
162
|
* @param {Duration} duration
|
|
151
163
|
* @param {string} [hospitalId]
|
|
164
|
+
* @param {string} [languageCode]
|
|
152
165
|
* @param {*} [options] Override http request option.
|
|
153
166
|
* @throws {RequiredError}
|
|
154
167
|
*/
|
|
155
|
-
apiV1DashboardBookingGet(duration: Duration, hospitalId?: string, options?: any): AxiosPromise<BookingStatisticsModel>;
|
|
168
|
+
apiV1DashboardBookingGet(duration: Duration, hospitalId?: string, languageCode?: string, options?: any): AxiosPromise<BookingStatisticsModel>;
|
|
156
169
|
/**
|
|
157
170
|
*
|
|
158
171
|
* @summary Get call statisticss data
|
|
159
172
|
* @param {Duration} duration
|
|
160
173
|
* @param {string} [hospitalId]
|
|
174
|
+
* @param {string} [languageCode]
|
|
161
175
|
* @param {*} [options] Override http request option.
|
|
162
176
|
* @throws {RequiredError}
|
|
163
177
|
*/
|
|
164
|
-
apiV1DashboardCallGet(duration: Duration, hospitalId?: string, options?: any): AxiosPromise<CallStatisticsModel>;
|
|
178
|
+
apiV1DashboardCallGet(duration: Duration, hospitalId?: string, languageCode?: string, options?: any): AxiosPromise<CallStatisticsModel>;
|
|
165
179
|
/**
|
|
166
180
|
*
|
|
167
181
|
* @summary Get consultation statisticss data
|
|
168
182
|
* @param {Duration} duration
|
|
169
183
|
* @param {string} [hospitalId]
|
|
184
|
+
* @param {string} [languageCode]
|
|
170
185
|
* @param {*} [options] Override http request option.
|
|
171
186
|
* @throws {RequiredError}
|
|
172
187
|
*/
|
|
173
|
-
apiV1DashboardConsultationGet(duration: Duration, hospitalId?: string, options?: any): AxiosPromise<ConsultationStatisticsModel>;
|
|
188
|
+
apiV1DashboardConsultationGet(duration: Duration, hospitalId?: string, languageCode?: string, options?: any): AxiosPromise<ConsultationStatisticsModel>;
|
|
174
189
|
/**
|
|
175
190
|
*
|
|
176
191
|
* @summary Get general statistics data
|
|
177
192
|
* @param {Duration} duration
|
|
178
193
|
* @param {string} [hospitalId]
|
|
194
|
+
* @param {string} [languageCode]
|
|
179
195
|
* @param {*} [options] Override http request option.
|
|
180
196
|
* @throws {RequiredError}
|
|
181
197
|
*/
|
|
182
|
-
apiV1DashboardGeneralGet(duration: Duration, hospitalId?: string, options?: any): AxiosPromise<GeneralStatisticsModel>;
|
|
198
|
+
apiV1DashboardGeneralGet(duration: Duration, hospitalId?: string, languageCode?: string, options?: any): AxiosPromise<GeneralStatisticsModel>;
|
|
183
199
|
/**
|
|
184
200
|
*
|
|
185
201
|
* @summary Get intergrated dashboard data
|
|
186
202
|
* @param {Duration} duration
|
|
187
203
|
* @param {string} [hospitalId]
|
|
204
|
+
* @param {string} [languageCode]
|
|
188
205
|
* @param {*} [options] Override http request option.
|
|
189
206
|
* @throws {RequiredError}
|
|
190
207
|
*/
|
|
191
|
-
apiV1DashboardGet(duration: Duration, hospitalId?: string, options?: any): AxiosPromise<DashBoardModel>;
|
|
208
|
+
apiV1DashboardGet(duration: Duration, hospitalId?: string, languageCode?: string, options?: any): AxiosPromise<DashBoardModel>;
|
|
192
209
|
/**
|
|
193
210
|
*
|
|
194
211
|
* @summary Get survey form statisticss data
|
|
195
212
|
* @param {Duration} duration
|
|
196
213
|
* @param {string} [hospitalId]
|
|
214
|
+
* @param {string} [languageCode]
|
|
197
215
|
* @param {*} [options] Override http request option.
|
|
198
216
|
* @throws {RequiredError}
|
|
199
217
|
*/
|
|
200
|
-
apiV1DashboardSurveyformGet(duration: Duration, hospitalId?: string, options?: any): AxiosPromise<SurveyFormStatisticsModel>;
|
|
218
|
+
apiV1DashboardSurveyformGet(duration: Duration, hospitalId?: string, languageCode?: string, options?: any): AxiosPromise<SurveyFormStatisticsModel>;
|
|
201
219
|
};
|
|
202
220
|
/**
|
|
203
221
|
* Request parameters for apiV1DashboardBookingGet operation in DashBoardApi.
|
|
@@ -217,6 +235,12 @@ export interface DashBoardApiApiV1DashboardBookingGetRequest {
|
|
|
217
235
|
* @memberof DashBoardApiApiV1DashboardBookingGet
|
|
218
236
|
*/
|
|
219
237
|
readonly hospitalId?: string;
|
|
238
|
+
/**
|
|
239
|
+
*
|
|
240
|
+
* @type {string}
|
|
241
|
+
* @memberof DashBoardApiApiV1DashboardBookingGet
|
|
242
|
+
*/
|
|
243
|
+
readonly languageCode?: string;
|
|
220
244
|
}
|
|
221
245
|
/**
|
|
222
246
|
* Request parameters for apiV1DashboardCallGet operation in DashBoardApi.
|
|
@@ -236,6 +260,12 @@ export interface DashBoardApiApiV1DashboardCallGetRequest {
|
|
|
236
260
|
* @memberof DashBoardApiApiV1DashboardCallGet
|
|
237
261
|
*/
|
|
238
262
|
readonly hospitalId?: string;
|
|
263
|
+
/**
|
|
264
|
+
*
|
|
265
|
+
* @type {string}
|
|
266
|
+
* @memberof DashBoardApiApiV1DashboardCallGet
|
|
267
|
+
*/
|
|
268
|
+
readonly languageCode?: string;
|
|
239
269
|
}
|
|
240
270
|
/**
|
|
241
271
|
* Request parameters for apiV1DashboardConsultationGet operation in DashBoardApi.
|
|
@@ -255,6 +285,12 @@ export interface DashBoardApiApiV1DashboardConsultationGetRequest {
|
|
|
255
285
|
* @memberof DashBoardApiApiV1DashboardConsultationGet
|
|
256
286
|
*/
|
|
257
287
|
readonly hospitalId?: string;
|
|
288
|
+
/**
|
|
289
|
+
*
|
|
290
|
+
* @type {string}
|
|
291
|
+
* @memberof DashBoardApiApiV1DashboardConsultationGet
|
|
292
|
+
*/
|
|
293
|
+
readonly languageCode?: string;
|
|
258
294
|
}
|
|
259
295
|
/**
|
|
260
296
|
* Request parameters for apiV1DashboardGeneralGet operation in DashBoardApi.
|
|
@@ -274,6 +310,12 @@ export interface DashBoardApiApiV1DashboardGeneralGetRequest {
|
|
|
274
310
|
* @memberof DashBoardApiApiV1DashboardGeneralGet
|
|
275
311
|
*/
|
|
276
312
|
readonly hospitalId?: string;
|
|
313
|
+
/**
|
|
314
|
+
*
|
|
315
|
+
* @type {string}
|
|
316
|
+
* @memberof DashBoardApiApiV1DashboardGeneralGet
|
|
317
|
+
*/
|
|
318
|
+
readonly languageCode?: string;
|
|
277
319
|
}
|
|
278
320
|
/**
|
|
279
321
|
* Request parameters for apiV1DashboardGet operation in DashBoardApi.
|
|
@@ -293,6 +335,12 @@ export interface DashBoardApiApiV1DashboardGetRequest {
|
|
|
293
335
|
* @memberof DashBoardApiApiV1DashboardGet
|
|
294
336
|
*/
|
|
295
337
|
readonly hospitalId?: string;
|
|
338
|
+
/**
|
|
339
|
+
*
|
|
340
|
+
* @type {string}
|
|
341
|
+
* @memberof DashBoardApiApiV1DashboardGet
|
|
342
|
+
*/
|
|
343
|
+
readonly languageCode?: string;
|
|
296
344
|
}
|
|
297
345
|
/**
|
|
298
346
|
* Request parameters for apiV1DashboardSurveyformGet operation in DashBoardApi.
|
|
@@ -312,6 +360,12 @@ export interface DashBoardApiApiV1DashboardSurveyformGetRequest {
|
|
|
312
360
|
* @memberof DashBoardApiApiV1DashboardSurveyformGet
|
|
313
361
|
*/
|
|
314
362
|
readonly hospitalId?: string;
|
|
363
|
+
/**
|
|
364
|
+
*
|
|
365
|
+
* @type {string}
|
|
366
|
+
* @memberof DashBoardApiApiV1DashboardSurveyformGet
|
|
367
|
+
*/
|
|
368
|
+
readonly languageCode?: string;
|
|
315
369
|
}
|
|
316
370
|
/**
|
|
317
371
|
* DashBoardApi - object-oriented interface
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dash-board-api.d.ts","sourceRoot":"","sources":["../../src/api/dash-board-api.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAoB,EAAE,YAAY,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,OAAO,CAAC;AACrF,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAKjD,OAAO,EAAiC,WAAW,EAAE,OAAO,EAAiB,MAAM,SAAS,CAAC;AAE7F,OAAO,EAAE,sBAAsB,EAAE,MAAM,WAAW,CAAC;AAEnD,OAAO,EAAE,mBAAmB,EAAE,MAAM,WAAW,CAAC;AAEhD,OAAO,EAAE,2BAA2B,EAAE,MAAM,WAAW,CAAC;AAExD,OAAO,EAAE,cAAc,EAAE,MAAM,WAAW,CAAC;AAE3C,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;AAErC,OAAO,EAAE,sBAAsB,EAAE,MAAM,WAAW,CAAC;AAEnD,OAAO,EAAE,yBAAyB,EAAE,MAAM,WAAW,CAAC;AACtD;;;GAGG;AACH,eAAO,MAAM,6BAA6B,mBAA6B,aAAa;IAE5E
|
|
1
|
+
{"version":3,"file":"dash-board-api.d.ts","sourceRoot":"","sources":["../../src/api/dash-board-api.ts"],"names":[],"mappings":"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"}
|