ch-admin-api-client-typescript 5.5.8 → 5.5.10
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/api/hospitals-api.d.ts +30 -30
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +26 -26
- 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/index.d.ts +2 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +2 -0
- package/lib/models/search-curation-item-input-model.d.ts +7 -0
- package/lib/models/search-curation-item-input-model.d.ts.map +1 -1
- package/lib/models/search-curation-item-model.d.ts +7 -0
- package/lib/models/search-curation-item-model.d.ts.map +1 -1
- package/lib/models/search-curation-primary-item-model.d.ts +31 -0
- package/lib/models/search-curation-primary-item-model.d.ts.map +1 -0
- package/lib/models/search-curation-primary-item-model.js +15 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +2 -0
- package/src/api/dash-board-api.ts +120 -36
- package/src/api/hospitals-api.ts +49 -49
- package/src/models/call-duration-statistics-model.ts +9 -0
- package/src/models/call-history-language-statistics-model.ts +36 -0
- package/src/models/index.ts +2 -0
- package/src/models/search-curation-item-input-model.ts +9 -0
- package/src/models/search-curation-item-model.ts +9 -0
- package/src/models/search-curation-primary-item-model.ts +36 -0
|
@@ -97,10 +97,11 @@ var DashBoardApiAxiosParamCreator = function (configuration) {
|
|
|
97
97
|
* @summary Get booking statisticss data
|
|
98
98
|
* @param {Duration} duration
|
|
99
99
|
* @param {string} [hospitalId]
|
|
100
|
+
* @param {string} [languageCode]
|
|
100
101
|
* @param {*} [options] Override http request option.
|
|
101
102
|
* @throws {RequiredError}
|
|
102
103
|
*/
|
|
103
|
-
apiV1DashboardBookingGet: function (duration, hospitalId, options) {
|
|
104
|
+
apiV1DashboardBookingGet: function (duration, hospitalId, languageCode, options) {
|
|
104
105
|
if (options === void 0) { options = {}; }
|
|
105
106
|
return __awaiter(_this, void 0, void 0, function () {
|
|
106
107
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -130,6 +131,9 @@ var DashBoardApiAxiosParamCreator = function (configuration) {
|
|
|
130
131
|
if (hospitalId !== undefined) {
|
|
131
132
|
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
132
133
|
}
|
|
134
|
+
if (languageCode !== undefined) {
|
|
135
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
136
|
+
}
|
|
133
137
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
134
138
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
135
139
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -146,10 +150,11 @@ var DashBoardApiAxiosParamCreator = function (configuration) {
|
|
|
146
150
|
* @summary Get call statisticss data
|
|
147
151
|
* @param {Duration} duration
|
|
148
152
|
* @param {string} [hospitalId]
|
|
153
|
+
* @param {string} [languageCode]
|
|
149
154
|
* @param {*} [options] Override http request option.
|
|
150
155
|
* @throws {RequiredError}
|
|
151
156
|
*/
|
|
152
|
-
apiV1DashboardCallGet: function (duration, hospitalId, options) {
|
|
157
|
+
apiV1DashboardCallGet: function (duration, hospitalId, languageCode, options) {
|
|
153
158
|
if (options === void 0) { options = {}; }
|
|
154
159
|
return __awaiter(_this, void 0, void 0, function () {
|
|
155
160
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -179,6 +184,9 @@ var DashBoardApiAxiosParamCreator = function (configuration) {
|
|
|
179
184
|
if (hospitalId !== undefined) {
|
|
180
185
|
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
181
186
|
}
|
|
187
|
+
if (languageCode !== undefined) {
|
|
188
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
189
|
+
}
|
|
182
190
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
183
191
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
184
192
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -195,10 +203,11 @@ var DashBoardApiAxiosParamCreator = function (configuration) {
|
|
|
195
203
|
* @summary Get consultation statisticss data
|
|
196
204
|
* @param {Duration} duration
|
|
197
205
|
* @param {string} [hospitalId]
|
|
206
|
+
* @param {string} [languageCode]
|
|
198
207
|
* @param {*} [options] Override http request option.
|
|
199
208
|
* @throws {RequiredError}
|
|
200
209
|
*/
|
|
201
|
-
apiV1DashboardConsultationGet: function (duration, hospitalId, options) {
|
|
210
|
+
apiV1DashboardConsultationGet: function (duration, hospitalId, languageCode, options) {
|
|
202
211
|
if (options === void 0) { options = {}; }
|
|
203
212
|
return __awaiter(_this, void 0, void 0, function () {
|
|
204
213
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -228,6 +237,9 @@ var DashBoardApiAxiosParamCreator = function (configuration) {
|
|
|
228
237
|
if (hospitalId !== undefined) {
|
|
229
238
|
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
230
239
|
}
|
|
240
|
+
if (languageCode !== undefined) {
|
|
241
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
242
|
+
}
|
|
231
243
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
232
244
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
233
245
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -244,10 +256,11 @@ var DashBoardApiAxiosParamCreator = function (configuration) {
|
|
|
244
256
|
* @summary Get general statistics data
|
|
245
257
|
* @param {Duration} duration
|
|
246
258
|
* @param {string} [hospitalId]
|
|
259
|
+
* @param {string} [languageCode]
|
|
247
260
|
* @param {*} [options] Override http request option.
|
|
248
261
|
* @throws {RequiredError}
|
|
249
262
|
*/
|
|
250
|
-
apiV1DashboardGeneralGet: function (duration, hospitalId, options) {
|
|
263
|
+
apiV1DashboardGeneralGet: function (duration, hospitalId, languageCode, options) {
|
|
251
264
|
if (options === void 0) { options = {}; }
|
|
252
265
|
return __awaiter(_this, void 0, void 0, function () {
|
|
253
266
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -277,6 +290,9 @@ var DashBoardApiAxiosParamCreator = function (configuration) {
|
|
|
277
290
|
if (hospitalId !== undefined) {
|
|
278
291
|
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
279
292
|
}
|
|
293
|
+
if (languageCode !== undefined) {
|
|
294
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
295
|
+
}
|
|
280
296
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
281
297
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
282
298
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -293,10 +309,11 @@ var DashBoardApiAxiosParamCreator = function (configuration) {
|
|
|
293
309
|
* @summary Get intergrated dashboard data
|
|
294
310
|
* @param {Duration} duration
|
|
295
311
|
* @param {string} [hospitalId]
|
|
312
|
+
* @param {string} [languageCode]
|
|
296
313
|
* @param {*} [options] Override http request option.
|
|
297
314
|
* @throws {RequiredError}
|
|
298
315
|
*/
|
|
299
|
-
apiV1DashboardGet: function (duration, hospitalId, options) {
|
|
316
|
+
apiV1DashboardGet: function (duration, hospitalId, languageCode, options) {
|
|
300
317
|
if (options === void 0) { options = {}; }
|
|
301
318
|
return __awaiter(_this, void 0, void 0, function () {
|
|
302
319
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -326,6 +343,9 @@ var DashBoardApiAxiosParamCreator = function (configuration) {
|
|
|
326
343
|
if (hospitalId !== undefined) {
|
|
327
344
|
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
328
345
|
}
|
|
346
|
+
if (languageCode !== undefined) {
|
|
347
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
348
|
+
}
|
|
329
349
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
330
350
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
331
351
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -342,10 +362,11 @@ var DashBoardApiAxiosParamCreator = function (configuration) {
|
|
|
342
362
|
* @summary Get survey form statisticss data
|
|
343
363
|
* @param {Duration} duration
|
|
344
364
|
* @param {string} [hospitalId]
|
|
365
|
+
* @param {string} [languageCode]
|
|
345
366
|
* @param {*} [options] Override http request option.
|
|
346
367
|
* @throws {RequiredError}
|
|
347
368
|
*/
|
|
348
|
-
apiV1DashboardSurveyformGet: function (duration, hospitalId, options) {
|
|
369
|
+
apiV1DashboardSurveyformGet: function (duration, hospitalId, languageCode, options) {
|
|
349
370
|
if (options === void 0) { options = {}; }
|
|
350
371
|
return __awaiter(_this, void 0, void 0, function () {
|
|
351
372
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -375,6 +396,9 @@ var DashBoardApiAxiosParamCreator = function (configuration) {
|
|
|
375
396
|
if (hospitalId !== undefined) {
|
|
376
397
|
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
377
398
|
}
|
|
399
|
+
if (languageCode !== undefined) {
|
|
400
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
401
|
+
}
|
|
378
402
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
379
403
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
380
404
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -401,15 +425,16 @@ var DashBoardApiFp = function (configuration) {
|
|
|
401
425
|
* @summary Get booking statisticss data
|
|
402
426
|
* @param {Duration} duration
|
|
403
427
|
* @param {string} [hospitalId]
|
|
428
|
+
* @param {string} [languageCode]
|
|
404
429
|
* @param {*} [options] Override http request option.
|
|
405
430
|
* @throws {RequiredError}
|
|
406
431
|
*/
|
|
407
|
-
apiV1DashboardBookingGet: function (duration, hospitalId, options) {
|
|
432
|
+
apiV1DashboardBookingGet: function (duration, hospitalId, languageCode, options) {
|
|
408
433
|
return __awaiter(this, void 0, void 0, function () {
|
|
409
434
|
var localVarAxiosArgs;
|
|
410
435
|
return __generator(this, function (_a) {
|
|
411
436
|
switch (_a.label) {
|
|
412
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DashboardBookingGet(duration, hospitalId, options)];
|
|
437
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DashboardBookingGet(duration, hospitalId, languageCode, options)];
|
|
413
438
|
case 1:
|
|
414
439
|
localVarAxiosArgs = _a.sent();
|
|
415
440
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -422,15 +447,16 @@ var DashBoardApiFp = function (configuration) {
|
|
|
422
447
|
* @summary Get call statisticss data
|
|
423
448
|
* @param {Duration} duration
|
|
424
449
|
* @param {string} [hospitalId]
|
|
450
|
+
* @param {string} [languageCode]
|
|
425
451
|
* @param {*} [options] Override http request option.
|
|
426
452
|
* @throws {RequiredError}
|
|
427
453
|
*/
|
|
428
|
-
apiV1DashboardCallGet: function (duration, hospitalId, options) {
|
|
454
|
+
apiV1DashboardCallGet: function (duration, hospitalId, languageCode, options) {
|
|
429
455
|
return __awaiter(this, void 0, void 0, function () {
|
|
430
456
|
var localVarAxiosArgs;
|
|
431
457
|
return __generator(this, function (_a) {
|
|
432
458
|
switch (_a.label) {
|
|
433
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DashboardCallGet(duration, hospitalId, options)];
|
|
459
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DashboardCallGet(duration, hospitalId, languageCode, options)];
|
|
434
460
|
case 1:
|
|
435
461
|
localVarAxiosArgs = _a.sent();
|
|
436
462
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -443,15 +469,16 @@ var DashBoardApiFp = function (configuration) {
|
|
|
443
469
|
* @summary Get consultation statisticss data
|
|
444
470
|
* @param {Duration} duration
|
|
445
471
|
* @param {string} [hospitalId]
|
|
472
|
+
* @param {string} [languageCode]
|
|
446
473
|
* @param {*} [options] Override http request option.
|
|
447
474
|
* @throws {RequiredError}
|
|
448
475
|
*/
|
|
449
|
-
apiV1DashboardConsultationGet: function (duration, hospitalId, options) {
|
|
476
|
+
apiV1DashboardConsultationGet: function (duration, hospitalId, languageCode, options) {
|
|
450
477
|
return __awaiter(this, void 0, void 0, function () {
|
|
451
478
|
var localVarAxiosArgs;
|
|
452
479
|
return __generator(this, function (_a) {
|
|
453
480
|
switch (_a.label) {
|
|
454
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DashboardConsultationGet(duration, hospitalId, options)];
|
|
481
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DashboardConsultationGet(duration, hospitalId, languageCode, options)];
|
|
455
482
|
case 1:
|
|
456
483
|
localVarAxiosArgs = _a.sent();
|
|
457
484
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -464,15 +491,16 @@ var DashBoardApiFp = function (configuration) {
|
|
|
464
491
|
* @summary Get general statistics data
|
|
465
492
|
* @param {Duration} duration
|
|
466
493
|
* @param {string} [hospitalId]
|
|
494
|
+
* @param {string} [languageCode]
|
|
467
495
|
* @param {*} [options] Override http request option.
|
|
468
496
|
* @throws {RequiredError}
|
|
469
497
|
*/
|
|
470
|
-
apiV1DashboardGeneralGet: function (duration, hospitalId, options) {
|
|
498
|
+
apiV1DashboardGeneralGet: function (duration, hospitalId, languageCode, options) {
|
|
471
499
|
return __awaiter(this, void 0, void 0, function () {
|
|
472
500
|
var localVarAxiosArgs;
|
|
473
501
|
return __generator(this, function (_a) {
|
|
474
502
|
switch (_a.label) {
|
|
475
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DashboardGeneralGet(duration, hospitalId, options)];
|
|
503
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DashboardGeneralGet(duration, hospitalId, languageCode, options)];
|
|
476
504
|
case 1:
|
|
477
505
|
localVarAxiosArgs = _a.sent();
|
|
478
506
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -485,15 +513,16 @@ var DashBoardApiFp = function (configuration) {
|
|
|
485
513
|
* @summary Get intergrated dashboard data
|
|
486
514
|
* @param {Duration} duration
|
|
487
515
|
* @param {string} [hospitalId]
|
|
516
|
+
* @param {string} [languageCode]
|
|
488
517
|
* @param {*} [options] Override http request option.
|
|
489
518
|
* @throws {RequiredError}
|
|
490
519
|
*/
|
|
491
|
-
apiV1DashboardGet: function (duration, hospitalId, options) {
|
|
520
|
+
apiV1DashboardGet: function (duration, hospitalId, languageCode, options) {
|
|
492
521
|
return __awaiter(this, void 0, void 0, function () {
|
|
493
522
|
var localVarAxiosArgs;
|
|
494
523
|
return __generator(this, function (_a) {
|
|
495
524
|
switch (_a.label) {
|
|
496
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DashboardGet(duration, hospitalId, options)];
|
|
525
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DashboardGet(duration, hospitalId, languageCode, options)];
|
|
497
526
|
case 1:
|
|
498
527
|
localVarAxiosArgs = _a.sent();
|
|
499
528
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -506,15 +535,16 @@ var DashBoardApiFp = function (configuration) {
|
|
|
506
535
|
* @summary Get survey form statisticss data
|
|
507
536
|
* @param {Duration} duration
|
|
508
537
|
* @param {string} [hospitalId]
|
|
538
|
+
* @param {string} [languageCode]
|
|
509
539
|
* @param {*} [options] Override http request option.
|
|
510
540
|
* @throws {RequiredError}
|
|
511
541
|
*/
|
|
512
|
-
apiV1DashboardSurveyformGet: function (duration, hospitalId, options) {
|
|
542
|
+
apiV1DashboardSurveyformGet: function (duration, hospitalId, languageCode, options) {
|
|
513
543
|
return __awaiter(this, void 0, void 0, function () {
|
|
514
544
|
var localVarAxiosArgs;
|
|
515
545
|
return __generator(this, function (_a) {
|
|
516
546
|
switch (_a.label) {
|
|
517
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DashboardSurveyformGet(duration, hospitalId, options)];
|
|
547
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DashboardSurveyformGet(duration, hospitalId, languageCode, options)];
|
|
518
548
|
case 1:
|
|
519
549
|
localVarAxiosArgs = _a.sent();
|
|
520
550
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -537,66 +567,72 @@ var DashBoardApiFactory = function (configuration, basePath, axios) {
|
|
|
537
567
|
* @summary Get booking statisticss data
|
|
538
568
|
* @param {Duration} duration
|
|
539
569
|
* @param {string} [hospitalId]
|
|
570
|
+
* @param {string} [languageCode]
|
|
540
571
|
* @param {*} [options] Override http request option.
|
|
541
572
|
* @throws {RequiredError}
|
|
542
573
|
*/
|
|
543
|
-
apiV1DashboardBookingGet: function (duration, hospitalId, options) {
|
|
544
|
-
return localVarFp.apiV1DashboardBookingGet(duration, hospitalId, options).then(function (request) { return request(axios, basePath); });
|
|
574
|
+
apiV1DashboardBookingGet: function (duration, hospitalId, languageCode, options) {
|
|
575
|
+
return localVarFp.apiV1DashboardBookingGet(duration, hospitalId, languageCode, options).then(function (request) { return request(axios, basePath); });
|
|
545
576
|
},
|
|
546
577
|
/**
|
|
547
578
|
*
|
|
548
579
|
* @summary Get call statisticss data
|
|
549
580
|
* @param {Duration} duration
|
|
550
581
|
* @param {string} [hospitalId]
|
|
582
|
+
* @param {string} [languageCode]
|
|
551
583
|
* @param {*} [options] Override http request option.
|
|
552
584
|
* @throws {RequiredError}
|
|
553
585
|
*/
|
|
554
|
-
apiV1DashboardCallGet: function (duration, hospitalId, options) {
|
|
555
|
-
return localVarFp.apiV1DashboardCallGet(duration, hospitalId, options).then(function (request) { return request(axios, basePath); });
|
|
586
|
+
apiV1DashboardCallGet: function (duration, hospitalId, languageCode, options) {
|
|
587
|
+
return localVarFp.apiV1DashboardCallGet(duration, hospitalId, languageCode, options).then(function (request) { return request(axios, basePath); });
|
|
556
588
|
},
|
|
557
589
|
/**
|
|
558
590
|
*
|
|
559
591
|
* @summary Get consultation statisticss data
|
|
560
592
|
* @param {Duration} duration
|
|
561
593
|
* @param {string} [hospitalId]
|
|
594
|
+
* @param {string} [languageCode]
|
|
562
595
|
* @param {*} [options] Override http request option.
|
|
563
596
|
* @throws {RequiredError}
|
|
564
597
|
*/
|
|
565
|
-
apiV1DashboardConsultationGet: function (duration, hospitalId, options) {
|
|
566
|
-
return localVarFp.apiV1DashboardConsultationGet(duration, hospitalId, options).then(function (request) { return request(axios, basePath); });
|
|
598
|
+
apiV1DashboardConsultationGet: function (duration, hospitalId, languageCode, options) {
|
|
599
|
+
return localVarFp.apiV1DashboardConsultationGet(duration, hospitalId, languageCode, options).then(function (request) { return request(axios, basePath); });
|
|
567
600
|
},
|
|
568
601
|
/**
|
|
569
602
|
*
|
|
570
603
|
* @summary Get general statistics data
|
|
571
604
|
* @param {Duration} duration
|
|
572
605
|
* @param {string} [hospitalId]
|
|
606
|
+
* @param {string} [languageCode]
|
|
573
607
|
* @param {*} [options] Override http request option.
|
|
574
608
|
* @throws {RequiredError}
|
|
575
609
|
*/
|
|
576
|
-
apiV1DashboardGeneralGet: function (duration, hospitalId, options) {
|
|
577
|
-
return localVarFp.apiV1DashboardGeneralGet(duration, hospitalId, options).then(function (request) { return request(axios, basePath); });
|
|
610
|
+
apiV1DashboardGeneralGet: function (duration, hospitalId, languageCode, options) {
|
|
611
|
+
return localVarFp.apiV1DashboardGeneralGet(duration, hospitalId, languageCode, options).then(function (request) { return request(axios, basePath); });
|
|
578
612
|
},
|
|
579
613
|
/**
|
|
580
614
|
*
|
|
581
615
|
* @summary Get intergrated dashboard data
|
|
582
616
|
* @param {Duration} duration
|
|
583
617
|
* @param {string} [hospitalId]
|
|
618
|
+
* @param {string} [languageCode]
|
|
584
619
|
* @param {*} [options] Override http request option.
|
|
585
620
|
* @throws {RequiredError}
|
|
586
621
|
*/
|
|
587
|
-
apiV1DashboardGet: function (duration, hospitalId, options) {
|
|
588
|
-
return localVarFp.apiV1DashboardGet(duration, hospitalId, options).then(function (request) { return request(axios, basePath); });
|
|
622
|
+
apiV1DashboardGet: function (duration, hospitalId, languageCode, options) {
|
|
623
|
+
return localVarFp.apiV1DashboardGet(duration, hospitalId, languageCode, options).then(function (request) { return request(axios, basePath); });
|
|
589
624
|
},
|
|
590
625
|
/**
|
|
591
626
|
*
|
|
592
627
|
* @summary Get survey form statisticss data
|
|
593
628
|
* @param {Duration} duration
|
|
594
629
|
* @param {string} [hospitalId]
|
|
630
|
+
* @param {string} [languageCode]
|
|
595
631
|
* @param {*} [options] Override http request option.
|
|
596
632
|
* @throws {RequiredError}
|
|
597
633
|
*/
|
|
598
|
-
apiV1DashboardSurveyformGet: function (duration, hospitalId, options) {
|
|
599
|
-
return localVarFp.apiV1DashboardSurveyformGet(duration, hospitalId, options).then(function (request) { return request(axios, basePath); });
|
|
634
|
+
apiV1DashboardSurveyformGet: function (duration, hospitalId, languageCode, options) {
|
|
635
|
+
return localVarFp.apiV1DashboardSurveyformGet(duration, hospitalId, languageCode, options).then(function (request) { return request(axios, basePath); });
|
|
600
636
|
},
|
|
601
637
|
};
|
|
602
638
|
};
|
|
@@ -622,7 +658,7 @@ var DashBoardApi = /** @class */ (function (_super) {
|
|
|
622
658
|
*/
|
|
623
659
|
DashBoardApi.prototype.apiV1DashboardBookingGet = function (requestParameters, options) {
|
|
624
660
|
var _this = this;
|
|
625
|
-
return (0, exports.DashBoardApiFp)(this.configuration).apiV1DashboardBookingGet(requestParameters.duration, requestParameters.hospitalId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
661
|
+
return (0, exports.DashBoardApiFp)(this.configuration).apiV1DashboardBookingGet(requestParameters.duration, requestParameters.hospitalId, requestParameters.languageCode, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
626
662
|
};
|
|
627
663
|
/**
|
|
628
664
|
*
|
|
@@ -634,7 +670,7 @@ var DashBoardApi = /** @class */ (function (_super) {
|
|
|
634
670
|
*/
|
|
635
671
|
DashBoardApi.prototype.apiV1DashboardCallGet = function (requestParameters, options) {
|
|
636
672
|
var _this = this;
|
|
637
|
-
return (0, exports.DashBoardApiFp)(this.configuration).apiV1DashboardCallGet(requestParameters.duration, requestParameters.hospitalId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
673
|
+
return (0, exports.DashBoardApiFp)(this.configuration).apiV1DashboardCallGet(requestParameters.duration, requestParameters.hospitalId, requestParameters.languageCode, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
638
674
|
};
|
|
639
675
|
/**
|
|
640
676
|
*
|
|
@@ -646,7 +682,7 @@ var DashBoardApi = /** @class */ (function (_super) {
|
|
|
646
682
|
*/
|
|
647
683
|
DashBoardApi.prototype.apiV1DashboardConsultationGet = function (requestParameters, options) {
|
|
648
684
|
var _this = this;
|
|
649
|
-
return (0, exports.DashBoardApiFp)(this.configuration).apiV1DashboardConsultationGet(requestParameters.duration, requestParameters.hospitalId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
685
|
+
return (0, exports.DashBoardApiFp)(this.configuration).apiV1DashboardConsultationGet(requestParameters.duration, requestParameters.hospitalId, requestParameters.languageCode, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
650
686
|
};
|
|
651
687
|
/**
|
|
652
688
|
*
|
|
@@ -658,7 +694,7 @@ var DashBoardApi = /** @class */ (function (_super) {
|
|
|
658
694
|
*/
|
|
659
695
|
DashBoardApi.prototype.apiV1DashboardGeneralGet = function (requestParameters, options) {
|
|
660
696
|
var _this = this;
|
|
661
|
-
return (0, exports.DashBoardApiFp)(this.configuration).apiV1DashboardGeneralGet(requestParameters.duration, requestParameters.hospitalId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
697
|
+
return (0, exports.DashBoardApiFp)(this.configuration).apiV1DashboardGeneralGet(requestParameters.duration, requestParameters.hospitalId, requestParameters.languageCode, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
662
698
|
};
|
|
663
699
|
/**
|
|
664
700
|
*
|
|
@@ -670,7 +706,7 @@ var DashBoardApi = /** @class */ (function (_super) {
|
|
|
670
706
|
*/
|
|
671
707
|
DashBoardApi.prototype.apiV1DashboardGet = function (requestParameters, options) {
|
|
672
708
|
var _this = this;
|
|
673
|
-
return (0, exports.DashBoardApiFp)(this.configuration).apiV1DashboardGet(requestParameters.duration, requestParameters.hospitalId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
709
|
+
return (0, exports.DashBoardApiFp)(this.configuration).apiV1DashboardGet(requestParameters.duration, requestParameters.hospitalId, requestParameters.languageCode, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
674
710
|
};
|
|
675
711
|
/**
|
|
676
712
|
*
|
|
@@ -682,7 +718,7 @@ var DashBoardApi = /** @class */ (function (_super) {
|
|
|
682
718
|
*/
|
|
683
719
|
DashBoardApi.prototype.apiV1DashboardSurveyformGet = function (requestParameters, options) {
|
|
684
720
|
var _this = this;
|
|
685
|
-
return (0, exports.DashBoardApiFp)(this.configuration).apiV1DashboardSurveyformGet(requestParameters.duration, requestParameters.hospitalId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
721
|
+
return (0, exports.DashBoardApiFp)(this.configuration).apiV1DashboardSurveyformGet(requestParameters.duration, requestParameters.hospitalId, requestParameters.languageCode, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
686
722
|
};
|
|
687
723
|
return DashBoardApi;
|
|
688
724
|
}(base_1.BaseAPI));
|
|
@@ -667,9 +667,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
667
667
|
*
|
|
668
668
|
* @summary Get managers
|
|
669
669
|
* @param {string} hospitalId
|
|
670
|
-
* @param {number} [page]
|
|
671
|
-
* @param {number} [limit]
|
|
672
|
-
* @param {Date} [lastRetrieved]
|
|
673
670
|
* @param {string} [id]
|
|
674
671
|
* @param {string} [fullname]
|
|
675
672
|
* @param {string} [email]
|
|
@@ -677,10 +674,13 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
677
674
|
* @param {Date} [dateOfBirth]
|
|
678
675
|
* @param {Date} [created]
|
|
679
676
|
* @param {boolean} [showHidden]
|
|
677
|
+
* @param {number} [page]
|
|
678
|
+
* @param {number} [limit]
|
|
679
|
+
* @param {Date} [lastRetrieved]
|
|
680
680
|
* @param {*} [options] Override http request option.
|
|
681
681
|
* @throws {RequiredError}
|
|
682
682
|
*/
|
|
683
|
-
apiV1HospitalsHospitalIdManagersGet: (hospitalId: string,
|
|
683
|
+
apiV1HospitalsHospitalIdManagersGet: (hospitalId: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
684
684
|
/**
|
|
685
685
|
*
|
|
686
686
|
* @summary Delete manager
|
|
@@ -2130,9 +2130,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2130
2130
|
*
|
|
2131
2131
|
* @summary Get managers
|
|
2132
2132
|
* @param {string} hospitalId
|
|
2133
|
-
* @param {number} [page]
|
|
2134
|
-
* @param {number} [limit]
|
|
2135
|
-
* @param {Date} [lastRetrieved]
|
|
2136
2133
|
* @param {string} [id]
|
|
2137
2134
|
* @param {string} [fullname]
|
|
2138
2135
|
* @param {string} [email]
|
|
@@ -2140,10 +2137,13 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2140
2137
|
* @param {Date} [dateOfBirth]
|
|
2141
2138
|
* @param {Date} [created]
|
|
2142
2139
|
* @param {boolean} [showHidden]
|
|
2140
|
+
* @param {number} [page]
|
|
2141
|
+
* @param {number} [limit]
|
|
2142
|
+
* @param {Date} [lastRetrieved]
|
|
2143
2143
|
* @param {*} [options] Override http request option.
|
|
2144
2144
|
* @throws {RequiredError}
|
|
2145
2145
|
*/
|
|
2146
|
-
apiV1HospitalsHospitalIdManagersGet(hospitalId: string,
|
|
2146
|
+
apiV1HospitalsHospitalIdManagersGet(hospitalId: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ManagersModel>>;
|
|
2147
2147
|
/**
|
|
2148
2148
|
*
|
|
2149
2149
|
* @summary Delete manager
|
|
@@ -3593,9 +3593,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
3593
3593
|
*
|
|
3594
3594
|
* @summary Get managers
|
|
3595
3595
|
* @param {string} hospitalId
|
|
3596
|
-
* @param {number} [page]
|
|
3597
|
-
* @param {number} [limit]
|
|
3598
|
-
* @param {Date} [lastRetrieved]
|
|
3599
3596
|
* @param {string} [id]
|
|
3600
3597
|
* @param {string} [fullname]
|
|
3601
3598
|
* @param {string} [email]
|
|
@@ -3603,10 +3600,13 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
3603
3600
|
* @param {Date} [dateOfBirth]
|
|
3604
3601
|
* @param {Date} [created]
|
|
3605
3602
|
* @param {boolean} [showHidden]
|
|
3603
|
+
* @param {number} [page]
|
|
3604
|
+
* @param {number} [limit]
|
|
3605
|
+
* @param {Date} [lastRetrieved]
|
|
3606
3606
|
* @param {*} [options] Override http request option.
|
|
3607
3607
|
* @throws {RequiredError}
|
|
3608
3608
|
*/
|
|
3609
|
-
apiV1HospitalsHospitalIdManagersGet(hospitalId: string,
|
|
3609
|
+
apiV1HospitalsHospitalIdManagersGet(hospitalId: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ManagersModel>;
|
|
3610
3610
|
/**
|
|
3611
3611
|
*
|
|
3612
3612
|
* @summary Delete manager
|
|
@@ -6014,24 +6014,6 @@ export interface HospitalsApiApiV1HospitalsHospitalIdManagersGetRequest {
|
|
|
6014
6014
|
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
6015
6015
|
*/
|
|
6016
6016
|
readonly hospitalId: string;
|
|
6017
|
-
/**
|
|
6018
|
-
*
|
|
6019
|
-
* @type {number}
|
|
6020
|
-
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
6021
|
-
*/
|
|
6022
|
-
readonly page?: number;
|
|
6023
|
-
/**
|
|
6024
|
-
*
|
|
6025
|
-
* @type {number}
|
|
6026
|
-
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
6027
|
-
*/
|
|
6028
|
-
readonly limit?: number;
|
|
6029
|
-
/**
|
|
6030
|
-
*
|
|
6031
|
-
* @type {Date}
|
|
6032
|
-
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
6033
|
-
*/
|
|
6034
|
-
readonly lastRetrieved?: Date;
|
|
6035
6017
|
/**
|
|
6036
6018
|
*
|
|
6037
6019
|
* @type {string}
|
|
@@ -6074,6 +6056,24 @@ export interface HospitalsApiApiV1HospitalsHospitalIdManagersGetRequest {
|
|
|
6074
6056
|
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
6075
6057
|
*/
|
|
6076
6058
|
readonly showHidden?: boolean;
|
|
6059
|
+
/**
|
|
6060
|
+
*
|
|
6061
|
+
* @type {number}
|
|
6062
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
6063
|
+
*/
|
|
6064
|
+
readonly page?: number;
|
|
6065
|
+
/**
|
|
6066
|
+
*
|
|
6067
|
+
* @type {number}
|
|
6068
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
6069
|
+
*/
|
|
6070
|
+
readonly limit?: number;
|
|
6071
|
+
/**
|
|
6072
|
+
*
|
|
6073
|
+
* @type {Date}
|
|
6074
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
6075
|
+
*/
|
|
6076
|
+
readonly lastRetrieved?: Date;
|
|
6077
6077
|
}
|
|
6078
6078
|
/**
|
|
6079
6079
|
* Request parameters for apiV1HospitalsHospitalIdManagersManagerIdDelete operation in HospitalsApi.
|