ch-admin-api-client-typescript 5.14.9 → 5.14.11
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/web-apps-api.d.ts +30 -299
- package/lib/api/web-apps-api.d.ts.map +1 -1
- package/lib/api/web-apps-api.js +40 -228
- package/lib/models/create-web-app-command.d.ts +44 -0
- package/lib/models/create-web-app-command.d.ts.map +1 -0
- package/lib/models/{domain-type.js → create-web-app-command.js} +0 -10
- package/lib/models/hospital-model.d.ts +7 -1
- package/lib/models/hospital-model.d.ts.map +1 -1
- package/lib/models/index.d.ts +3 -1
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +3 -1
- package/lib/models/update-web-app-command.d.ts +45 -0
- package/lib/models/update-web-app-command.d.ts.map +1 -0
- package/{src/models/domain-type.ts → lib/models/update-web-app-command.js} +2 -18
- package/lib/models/web-app-environment-model.d.ts +31 -0
- package/lib/models/web-app-environment-model.d.ts.map +1 -0
- package/lib/models/{domain-type.d.ts → web-app-environment-model.js} +4 -11
- package/lib/models/web-app-item-model.d.ts +7 -68
- package/lib/models/web-app-item-model.d.ts.map +1 -1
- package/lib/models/web-app-model.d.ts +14 -68
- package/lib/models/web-app-model.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +3 -1
- package/src/api/web-apps-api.ts +51 -479
- package/src/models/create-web-app-command.ts +51 -0
- package/src/models/hospital-model.ts +7 -1
- package/src/models/index.ts +3 -1
- package/src/models/update-web-app-command.ts +54 -0
- package/src/models/web-app-environment-model.ts +36 -0
- package/src/models/web-app-item-model.ts +7 -70
- package/src/models/web-app-model.ts +14 -68
- package/lib/models/domain-type.d.ts.map +0 -1
package/lib/api/web-apps-api.js
CHANGED
|
@@ -96,11 +96,10 @@ var WebAppsApiAxiosParamCreator = function (configuration) {
|
|
|
96
96
|
*
|
|
97
97
|
* @summary Retrive all WebApp configuration
|
|
98
98
|
* @param {string} [id]
|
|
99
|
-
* @param {string} [stsClientId]
|
|
100
99
|
* @param {string} [hospitalId]
|
|
101
100
|
* @param {string} [hospitalName]
|
|
102
|
-
* @param {string} [
|
|
103
|
-
* @param {
|
|
101
|
+
* @param {string} [appName]
|
|
102
|
+
* @param {string} [hostName]
|
|
104
103
|
* @param {DeployStatus} [deployStatus]
|
|
105
104
|
* @param {string} [languageCode]
|
|
106
105
|
* @param {number} [page]
|
|
@@ -109,7 +108,7 @@ var WebAppsApiAxiosParamCreator = function (configuration) {
|
|
|
109
108
|
* @param {*} [options] Override http request option.
|
|
110
109
|
* @throws {RequiredError}
|
|
111
110
|
*/
|
|
112
|
-
apiV1WebappsGet: function (id,
|
|
111
|
+
apiV1WebappsGet: function (id, hospitalId, hospitalName, appName, hostName, deployStatus, languageCode, page, limit, lastRetrieved, options) {
|
|
113
112
|
if (options === void 0) { options = {}; }
|
|
114
113
|
return __awaiter(_this, void 0, void 0, function () {
|
|
115
114
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -134,20 +133,17 @@ var WebAppsApiAxiosParamCreator = function (configuration) {
|
|
|
134
133
|
if (id !== undefined) {
|
|
135
134
|
localVarQueryParameter['Id'] = id;
|
|
136
135
|
}
|
|
137
|
-
if (stsClientId !== undefined) {
|
|
138
|
-
localVarQueryParameter['StsClientId'] = stsClientId;
|
|
139
|
-
}
|
|
140
136
|
if (hospitalId !== undefined) {
|
|
141
137
|
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
142
138
|
}
|
|
143
139
|
if (hospitalName !== undefined) {
|
|
144
140
|
localVarQueryParameter['HospitalName'] = hospitalName;
|
|
145
141
|
}
|
|
146
|
-
if (
|
|
147
|
-
localVarQueryParameter['
|
|
142
|
+
if (appName !== undefined) {
|
|
143
|
+
localVarQueryParameter['AppName'] = appName;
|
|
148
144
|
}
|
|
149
|
-
if (
|
|
150
|
-
localVarQueryParameter['
|
|
145
|
+
if (hostName !== undefined) {
|
|
146
|
+
localVarQueryParameter['HostName'] = hostName;
|
|
151
147
|
}
|
|
152
148
|
if (deployStatus !== undefined) {
|
|
153
149
|
localVarQueryParameter['DeployStatus'] = deployStatus;
|
|
@@ -275,29 +271,14 @@ var WebAppsApiAxiosParamCreator = function (configuration) {
|
|
|
275
271
|
*
|
|
276
272
|
* @summary Update WebApp configuration
|
|
277
273
|
* @param {string} id
|
|
278
|
-
* @param {
|
|
279
|
-
* @param {string} [stsClientId]
|
|
280
|
-
* @param {string} [stsClientSecret]
|
|
281
|
-
* @param {string} [colorPrimary]
|
|
282
|
-
* @param {string} [colorSecondary]
|
|
283
|
-
* @param {string} [colorNeutral]
|
|
284
|
-
* @param {string} [colorDark]
|
|
285
|
-
* @param {string} [colorLight]
|
|
286
|
-
* @param {string} [template]
|
|
287
|
-
* @param {string} [googleClientId]
|
|
288
|
-
* @param {DomainType} [domainType]
|
|
289
|
-
* @param {string} [iPAddress]
|
|
290
|
-
* @param {string} [domainVerificationId]
|
|
291
|
-
* @param {string} [domain]
|
|
292
|
-
* @param {DeployStatus} [deployStatus]
|
|
293
|
-
* @param {File} [formFile]
|
|
274
|
+
* @param {UpdateWebAppCommand} [updateWebAppCommand]
|
|
294
275
|
* @param {*} [options] Override http request option.
|
|
295
276
|
* @throws {RequiredError}
|
|
296
277
|
*/
|
|
297
|
-
apiV1WebappsIdPut: function (id,
|
|
278
|
+
apiV1WebappsIdPut: function (id, updateWebAppCommand, options) {
|
|
298
279
|
if (options === void 0) { options = {}; }
|
|
299
280
|
return __awaiter(_this, void 0, void 0, function () {
|
|
300
|
-
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter,
|
|
281
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
301
282
|
return __generator(this, function (_a) {
|
|
302
283
|
switch (_a.label) {
|
|
303
284
|
case 0:
|
|
@@ -312,7 +293,6 @@ var WebAppsApiAxiosParamCreator = function (configuration) {
|
|
|
312
293
|
localVarRequestOptions = __assign(__assign({ method: 'PUT' }, baseOptions), options);
|
|
313
294
|
localVarHeaderParameter = {};
|
|
314
295
|
localVarQueryParameter = {};
|
|
315
|
-
localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)();
|
|
316
296
|
// authentication oauth2 required
|
|
317
297
|
// oauth required
|
|
318
298
|
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)];
|
|
@@ -320,59 +300,11 @@ var WebAppsApiAxiosParamCreator = function (configuration) {
|
|
|
320
300
|
// authentication oauth2 required
|
|
321
301
|
// oauth required
|
|
322
302
|
_a.sent();
|
|
323
|
-
|
|
324
|
-
localVarFormParams.append('Id', id2);
|
|
325
|
-
}
|
|
326
|
-
if (stsClientId !== undefined) {
|
|
327
|
-
localVarFormParams.append('StsClientId', stsClientId);
|
|
328
|
-
}
|
|
329
|
-
if (stsClientSecret !== undefined) {
|
|
330
|
-
localVarFormParams.append('StsClientSecret', stsClientSecret);
|
|
331
|
-
}
|
|
332
|
-
if (colorPrimary !== undefined) {
|
|
333
|
-
localVarFormParams.append('ColorPrimary', colorPrimary);
|
|
334
|
-
}
|
|
335
|
-
if (colorSecondary !== undefined) {
|
|
336
|
-
localVarFormParams.append('ColorSecondary', colorSecondary);
|
|
337
|
-
}
|
|
338
|
-
if (colorNeutral !== undefined) {
|
|
339
|
-
localVarFormParams.append('ColorNeutral', colorNeutral);
|
|
340
|
-
}
|
|
341
|
-
if (colorDark !== undefined) {
|
|
342
|
-
localVarFormParams.append('ColorDark', colorDark);
|
|
343
|
-
}
|
|
344
|
-
if (colorLight !== undefined) {
|
|
345
|
-
localVarFormParams.append('ColorLight', colorLight);
|
|
346
|
-
}
|
|
347
|
-
if (template !== undefined) {
|
|
348
|
-
localVarFormParams.append('Template', template);
|
|
349
|
-
}
|
|
350
|
-
if (googleClientId !== undefined) {
|
|
351
|
-
localVarFormParams.append('GoogleClientId', googleClientId);
|
|
352
|
-
}
|
|
353
|
-
if (domainType !== undefined) {
|
|
354
|
-
localVarFormParams.append('DomainType', new Blob([JSON.stringify(domainType)], { type: "application/json", }));
|
|
355
|
-
}
|
|
356
|
-
if (iPAddress !== undefined) {
|
|
357
|
-
localVarFormParams.append('IPAddress', iPAddress);
|
|
358
|
-
}
|
|
359
|
-
if (domainVerificationId !== undefined) {
|
|
360
|
-
localVarFormParams.append('DomainVerificationId', domainVerificationId);
|
|
361
|
-
}
|
|
362
|
-
if (domain !== undefined) {
|
|
363
|
-
localVarFormParams.append('Domain', domain);
|
|
364
|
-
}
|
|
365
|
-
if (deployStatus !== undefined) {
|
|
366
|
-
localVarFormParams.append('DeployStatus', new Blob([JSON.stringify(deployStatus)], { type: "application/json", }));
|
|
367
|
-
}
|
|
368
|
-
if (formFile !== undefined) {
|
|
369
|
-
localVarFormParams.append('FormFile', formFile);
|
|
370
|
-
}
|
|
371
|
-
localVarHeaderParameter['Content-Type'] = 'multipart/form-data';
|
|
303
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
372
304
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
373
305
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
374
306
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
375
|
-
localVarRequestOptions.data =
|
|
307
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(updateWebAppCommand, localVarRequestOptions, configuration);
|
|
376
308
|
return [2 /*return*/, {
|
|
377
309
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
378
310
|
options: localVarRequestOptions,
|
|
@@ -384,28 +316,14 @@ var WebAppsApiAxiosParamCreator = function (configuration) {
|
|
|
384
316
|
/**
|
|
385
317
|
*
|
|
386
318
|
* @summary Create WebApp configuration
|
|
387
|
-
* @param {
|
|
388
|
-
* @param {string} [stsClientId]
|
|
389
|
-
* @param {string} [stsClientSecret]
|
|
390
|
-
* @param {string} [colorPrimary]
|
|
391
|
-
* @param {string} [colorSecondary]
|
|
392
|
-
* @param {string} [colorNeutral]
|
|
393
|
-
* @param {string} [colorDark]
|
|
394
|
-
* @param {string} [colorLight]
|
|
395
|
-
* @param {string} [template]
|
|
396
|
-
* @param {string} [googleClientId]
|
|
397
|
-
* @param {DomainType} [domainType]
|
|
398
|
-
* @param {string} [iPAddress]
|
|
399
|
-
* @param {string} [domainVerificationId]
|
|
400
|
-
* @param {string} [domain]
|
|
401
|
-
* @param {File} [favicon]
|
|
319
|
+
* @param {CreateWebAppCommand} [createWebAppCommand]
|
|
402
320
|
* @param {*} [options] Override http request option.
|
|
403
321
|
* @throws {RequiredError}
|
|
404
322
|
*/
|
|
405
|
-
apiV1WebappsPost: function (
|
|
323
|
+
apiV1WebappsPost: function (createWebAppCommand, options) {
|
|
406
324
|
if (options === void 0) { options = {}; }
|
|
407
325
|
return __awaiter(_this, void 0, void 0, function () {
|
|
408
|
-
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter,
|
|
326
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
409
327
|
return __generator(this, function (_a) {
|
|
410
328
|
switch (_a.label) {
|
|
411
329
|
case 0:
|
|
@@ -417,7 +335,6 @@ var WebAppsApiAxiosParamCreator = function (configuration) {
|
|
|
417
335
|
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
|
|
418
336
|
localVarHeaderParameter = {};
|
|
419
337
|
localVarQueryParameter = {};
|
|
420
|
-
localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)();
|
|
421
338
|
// authentication oauth2 required
|
|
422
339
|
// oauth required
|
|
423
340
|
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)];
|
|
@@ -425,56 +342,11 @@ var WebAppsApiAxiosParamCreator = function (configuration) {
|
|
|
425
342
|
// authentication oauth2 required
|
|
426
343
|
// oauth required
|
|
427
344
|
_a.sent();
|
|
428
|
-
|
|
429
|
-
localVarFormParams.append('HospitalId', hospitalId);
|
|
430
|
-
}
|
|
431
|
-
if (stsClientId !== undefined) {
|
|
432
|
-
localVarFormParams.append('StsClientId', stsClientId);
|
|
433
|
-
}
|
|
434
|
-
if (stsClientSecret !== undefined) {
|
|
435
|
-
localVarFormParams.append('StsClientSecret', stsClientSecret);
|
|
436
|
-
}
|
|
437
|
-
if (colorPrimary !== undefined) {
|
|
438
|
-
localVarFormParams.append('ColorPrimary', colorPrimary);
|
|
439
|
-
}
|
|
440
|
-
if (colorSecondary !== undefined) {
|
|
441
|
-
localVarFormParams.append('ColorSecondary', colorSecondary);
|
|
442
|
-
}
|
|
443
|
-
if (colorNeutral !== undefined) {
|
|
444
|
-
localVarFormParams.append('ColorNeutral', colorNeutral);
|
|
445
|
-
}
|
|
446
|
-
if (colorDark !== undefined) {
|
|
447
|
-
localVarFormParams.append('ColorDark', colorDark);
|
|
448
|
-
}
|
|
449
|
-
if (colorLight !== undefined) {
|
|
450
|
-
localVarFormParams.append('ColorLight', colorLight);
|
|
451
|
-
}
|
|
452
|
-
if (template !== undefined) {
|
|
453
|
-
localVarFormParams.append('Template', template);
|
|
454
|
-
}
|
|
455
|
-
if (googleClientId !== undefined) {
|
|
456
|
-
localVarFormParams.append('GoogleClientId', googleClientId);
|
|
457
|
-
}
|
|
458
|
-
if (domainType !== undefined) {
|
|
459
|
-
localVarFormParams.append('DomainType', new Blob([JSON.stringify(domainType)], { type: "application/json", }));
|
|
460
|
-
}
|
|
461
|
-
if (iPAddress !== undefined) {
|
|
462
|
-
localVarFormParams.append('IPAddress', iPAddress);
|
|
463
|
-
}
|
|
464
|
-
if (domainVerificationId !== undefined) {
|
|
465
|
-
localVarFormParams.append('DomainVerificationId', domainVerificationId);
|
|
466
|
-
}
|
|
467
|
-
if (domain !== undefined) {
|
|
468
|
-
localVarFormParams.append('Domain', domain);
|
|
469
|
-
}
|
|
470
|
-
if (favicon !== undefined) {
|
|
471
|
-
localVarFormParams.append('Favicon', favicon);
|
|
472
|
-
}
|
|
473
|
-
localVarHeaderParameter['Content-Type'] = 'multipart/form-data';
|
|
345
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
474
346
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
475
347
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
476
348
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
477
|
-
localVarRequestOptions.data =
|
|
349
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(createWebAppCommand, localVarRequestOptions, configuration);
|
|
478
350
|
return [2 /*return*/, {
|
|
479
351
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
480
352
|
options: localVarRequestOptions,
|
|
@@ -497,11 +369,10 @@ var WebAppsApiFp = function (configuration) {
|
|
|
497
369
|
*
|
|
498
370
|
* @summary Retrive all WebApp configuration
|
|
499
371
|
* @param {string} [id]
|
|
500
|
-
* @param {string} [stsClientId]
|
|
501
372
|
* @param {string} [hospitalId]
|
|
502
373
|
* @param {string} [hospitalName]
|
|
503
|
-
* @param {string} [
|
|
504
|
-
* @param {
|
|
374
|
+
* @param {string} [appName]
|
|
375
|
+
* @param {string} [hostName]
|
|
505
376
|
* @param {DeployStatus} [deployStatus]
|
|
506
377
|
* @param {string} [languageCode]
|
|
507
378
|
* @param {number} [page]
|
|
@@ -510,12 +381,12 @@ var WebAppsApiFp = function (configuration) {
|
|
|
510
381
|
* @param {*} [options] Override http request option.
|
|
511
382
|
* @throws {RequiredError}
|
|
512
383
|
*/
|
|
513
|
-
apiV1WebappsGet: function (id,
|
|
384
|
+
apiV1WebappsGet: function (id, hospitalId, hospitalName, appName, hostName, deployStatus, languageCode, page, limit, lastRetrieved, options) {
|
|
514
385
|
return __awaiter(this, void 0, void 0, function () {
|
|
515
386
|
var localVarAxiosArgs;
|
|
516
387
|
return __generator(this, function (_a) {
|
|
517
388
|
switch (_a.label) {
|
|
518
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1WebappsGet(id,
|
|
389
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1WebappsGet(id, hospitalId, hospitalName, appName, hostName, deployStatus, languageCode, page, limit, lastRetrieved, options)];
|
|
519
390
|
case 1:
|
|
520
391
|
localVarAxiosArgs = _a.sent();
|
|
521
392
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -569,31 +440,16 @@ var WebAppsApiFp = function (configuration) {
|
|
|
569
440
|
*
|
|
570
441
|
* @summary Update WebApp configuration
|
|
571
442
|
* @param {string} id
|
|
572
|
-
* @param {
|
|
573
|
-
* @param {string} [stsClientId]
|
|
574
|
-
* @param {string} [stsClientSecret]
|
|
575
|
-
* @param {string} [colorPrimary]
|
|
576
|
-
* @param {string} [colorSecondary]
|
|
577
|
-
* @param {string} [colorNeutral]
|
|
578
|
-
* @param {string} [colorDark]
|
|
579
|
-
* @param {string} [colorLight]
|
|
580
|
-
* @param {string} [template]
|
|
581
|
-
* @param {string} [googleClientId]
|
|
582
|
-
* @param {DomainType} [domainType]
|
|
583
|
-
* @param {string} [iPAddress]
|
|
584
|
-
* @param {string} [domainVerificationId]
|
|
585
|
-
* @param {string} [domain]
|
|
586
|
-
* @param {DeployStatus} [deployStatus]
|
|
587
|
-
* @param {File} [formFile]
|
|
443
|
+
* @param {UpdateWebAppCommand} [updateWebAppCommand]
|
|
588
444
|
* @param {*} [options] Override http request option.
|
|
589
445
|
* @throws {RequiredError}
|
|
590
446
|
*/
|
|
591
|
-
apiV1WebappsIdPut: function (id,
|
|
447
|
+
apiV1WebappsIdPut: function (id, updateWebAppCommand, options) {
|
|
592
448
|
return __awaiter(this, void 0, void 0, function () {
|
|
593
449
|
var localVarAxiosArgs;
|
|
594
450
|
return __generator(this, function (_a) {
|
|
595
451
|
switch (_a.label) {
|
|
596
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1WebappsIdPut(id,
|
|
452
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1WebappsIdPut(id, updateWebAppCommand, options)];
|
|
597
453
|
case 1:
|
|
598
454
|
localVarAxiosArgs = _a.sent();
|
|
599
455
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -604,30 +460,16 @@ var WebAppsApiFp = function (configuration) {
|
|
|
604
460
|
/**
|
|
605
461
|
*
|
|
606
462
|
* @summary Create WebApp configuration
|
|
607
|
-
* @param {
|
|
608
|
-
* @param {string} [stsClientId]
|
|
609
|
-
* @param {string} [stsClientSecret]
|
|
610
|
-
* @param {string} [colorPrimary]
|
|
611
|
-
* @param {string} [colorSecondary]
|
|
612
|
-
* @param {string} [colorNeutral]
|
|
613
|
-
* @param {string} [colorDark]
|
|
614
|
-
* @param {string} [colorLight]
|
|
615
|
-
* @param {string} [template]
|
|
616
|
-
* @param {string} [googleClientId]
|
|
617
|
-
* @param {DomainType} [domainType]
|
|
618
|
-
* @param {string} [iPAddress]
|
|
619
|
-
* @param {string} [domainVerificationId]
|
|
620
|
-
* @param {string} [domain]
|
|
621
|
-
* @param {File} [favicon]
|
|
463
|
+
* @param {CreateWebAppCommand} [createWebAppCommand]
|
|
622
464
|
* @param {*} [options] Override http request option.
|
|
623
465
|
* @throws {RequiredError}
|
|
624
466
|
*/
|
|
625
|
-
apiV1WebappsPost: function (
|
|
467
|
+
apiV1WebappsPost: function (createWebAppCommand, options) {
|
|
626
468
|
return __awaiter(this, void 0, void 0, function () {
|
|
627
469
|
var localVarAxiosArgs;
|
|
628
470
|
return __generator(this, function (_a) {
|
|
629
471
|
switch (_a.label) {
|
|
630
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1WebappsPost(
|
|
472
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1WebappsPost(createWebAppCommand, options)];
|
|
631
473
|
case 1:
|
|
632
474
|
localVarAxiosArgs = _a.sent();
|
|
633
475
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -649,11 +491,10 @@ var WebAppsApiFactory = function (configuration, basePath, axios) {
|
|
|
649
491
|
*
|
|
650
492
|
* @summary Retrive all WebApp configuration
|
|
651
493
|
* @param {string} [id]
|
|
652
|
-
* @param {string} [stsClientId]
|
|
653
494
|
* @param {string} [hospitalId]
|
|
654
495
|
* @param {string} [hospitalName]
|
|
655
|
-
* @param {string} [
|
|
656
|
-
* @param {
|
|
496
|
+
* @param {string} [appName]
|
|
497
|
+
* @param {string} [hostName]
|
|
657
498
|
* @param {DeployStatus} [deployStatus]
|
|
658
499
|
* @param {string} [languageCode]
|
|
659
500
|
* @param {number} [page]
|
|
@@ -662,8 +503,8 @@ var WebAppsApiFactory = function (configuration, basePath, axios) {
|
|
|
662
503
|
* @param {*} [options] Override http request option.
|
|
663
504
|
* @throws {RequiredError}
|
|
664
505
|
*/
|
|
665
|
-
apiV1WebappsGet: function (id,
|
|
666
|
-
return localVarFp.apiV1WebappsGet(id,
|
|
506
|
+
apiV1WebappsGet: function (id, hospitalId, hospitalName, appName, hostName, deployStatus, languageCode, page, limit, lastRetrieved, options) {
|
|
507
|
+
return localVarFp.apiV1WebappsGet(id, hospitalId, hospitalName, appName, hostName, deployStatus, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
667
508
|
},
|
|
668
509
|
/**
|
|
669
510
|
*
|
|
@@ -691,51 +532,22 @@ var WebAppsApiFactory = function (configuration, basePath, axios) {
|
|
|
691
532
|
*
|
|
692
533
|
* @summary Update WebApp configuration
|
|
693
534
|
* @param {string} id
|
|
694
|
-
* @param {
|
|
695
|
-
* @param {string} [stsClientId]
|
|
696
|
-
* @param {string} [stsClientSecret]
|
|
697
|
-
* @param {string} [colorPrimary]
|
|
698
|
-
* @param {string} [colorSecondary]
|
|
699
|
-
* @param {string} [colorNeutral]
|
|
700
|
-
* @param {string} [colorDark]
|
|
701
|
-
* @param {string} [colorLight]
|
|
702
|
-
* @param {string} [template]
|
|
703
|
-
* @param {string} [googleClientId]
|
|
704
|
-
* @param {DomainType} [domainType]
|
|
705
|
-
* @param {string} [iPAddress]
|
|
706
|
-
* @param {string} [domainVerificationId]
|
|
707
|
-
* @param {string} [domain]
|
|
708
|
-
* @param {DeployStatus} [deployStatus]
|
|
709
|
-
* @param {File} [formFile]
|
|
535
|
+
* @param {UpdateWebAppCommand} [updateWebAppCommand]
|
|
710
536
|
* @param {*} [options] Override http request option.
|
|
711
537
|
* @throws {RequiredError}
|
|
712
538
|
*/
|
|
713
|
-
apiV1WebappsIdPut: function (id,
|
|
714
|
-
return localVarFp.apiV1WebappsIdPut(id,
|
|
539
|
+
apiV1WebappsIdPut: function (id, updateWebAppCommand, options) {
|
|
540
|
+
return localVarFp.apiV1WebappsIdPut(id, updateWebAppCommand, options).then(function (request) { return request(axios, basePath); });
|
|
715
541
|
},
|
|
716
542
|
/**
|
|
717
543
|
*
|
|
718
544
|
* @summary Create WebApp configuration
|
|
719
|
-
* @param {
|
|
720
|
-
* @param {string} [stsClientId]
|
|
721
|
-
* @param {string} [stsClientSecret]
|
|
722
|
-
* @param {string} [colorPrimary]
|
|
723
|
-
* @param {string} [colorSecondary]
|
|
724
|
-
* @param {string} [colorNeutral]
|
|
725
|
-
* @param {string} [colorDark]
|
|
726
|
-
* @param {string} [colorLight]
|
|
727
|
-
* @param {string} [template]
|
|
728
|
-
* @param {string} [googleClientId]
|
|
729
|
-
* @param {DomainType} [domainType]
|
|
730
|
-
* @param {string} [iPAddress]
|
|
731
|
-
* @param {string} [domainVerificationId]
|
|
732
|
-
* @param {string} [domain]
|
|
733
|
-
* @param {File} [favicon]
|
|
545
|
+
* @param {CreateWebAppCommand} [createWebAppCommand]
|
|
734
546
|
* @param {*} [options] Override http request option.
|
|
735
547
|
* @throws {RequiredError}
|
|
736
548
|
*/
|
|
737
|
-
apiV1WebappsPost: function (
|
|
738
|
-
return localVarFp.apiV1WebappsPost(
|
|
549
|
+
apiV1WebappsPost: function (createWebAppCommand, options) {
|
|
550
|
+
return localVarFp.apiV1WebappsPost(createWebAppCommand, options).then(function (request) { return request(axios, basePath); });
|
|
739
551
|
},
|
|
740
552
|
};
|
|
741
553
|
};
|
|
@@ -762,7 +574,7 @@ var WebAppsApi = /** @class */ (function (_super) {
|
|
|
762
574
|
WebAppsApi.prototype.apiV1WebappsGet = function (requestParameters, options) {
|
|
763
575
|
var _this = this;
|
|
764
576
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
765
|
-
return (0, exports.WebAppsApiFp)(this.configuration).apiV1WebappsGet(requestParameters.id, requestParameters.
|
|
577
|
+
return (0, exports.WebAppsApiFp)(this.configuration).apiV1WebappsGet(requestParameters.id, requestParameters.hospitalId, requestParameters.hospitalName, requestParameters.appName, requestParameters.hostName, requestParameters.deployStatus, requestParameters.languageCode, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
766
578
|
};
|
|
767
579
|
/**
|
|
768
580
|
*
|
|
@@ -798,7 +610,7 @@ var WebAppsApi = /** @class */ (function (_super) {
|
|
|
798
610
|
*/
|
|
799
611
|
WebAppsApi.prototype.apiV1WebappsIdPut = function (requestParameters, options) {
|
|
800
612
|
var _this = this;
|
|
801
|
-
return (0, exports.WebAppsApiFp)(this.configuration).apiV1WebappsIdPut(requestParameters.id, requestParameters.
|
|
613
|
+
return (0, exports.WebAppsApiFp)(this.configuration).apiV1WebappsIdPut(requestParameters.id, requestParameters.updateWebAppCommand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
802
614
|
};
|
|
803
615
|
/**
|
|
804
616
|
*
|
|
@@ -811,7 +623,7 @@ var WebAppsApi = /** @class */ (function (_super) {
|
|
|
811
623
|
WebAppsApi.prototype.apiV1WebappsPost = function (requestParameters, options) {
|
|
812
624
|
var _this = this;
|
|
813
625
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
814
|
-
return (0, exports.WebAppsApiFp)(this.configuration).apiV1WebappsPost(requestParameters.
|
|
626
|
+
return (0, exports.WebAppsApiFp)(this.configuration).apiV1WebappsPost(requestParameters.createWebAppCommand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
815
627
|
};
|
|
816
628
|
return WebAppsApi;
|
|
817
629
|
}(base_1.BaseAPI));
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
3
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1
|
|
6
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { WebAppEnvironmentModel } from './web-app-environment-model';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreateWebAppCommand
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateWebAppCommand {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof CreateWebAppCommand
|
|
23
|
+
*/
|
|
24
|
+
'hospitalId'?: string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof CreateWebAppCommand
|
|
29
|
+
*/
|
|
30
|
+
'appName'?: string | null;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof CreateWebAppCommand
|
|
35
|
+
*/
|
|
36
|
+
'hostName'?: string | null;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {Array<WebAppEnvironmentModel>}
|
|
40
|
+
* @memberof CreateWebAppCommand
|
|
41
|
+
*/
|
|
42
|
+
'webAppEnvironments'?: Array<WebAppEnvironmentModel> | null;
|
|
43
|
+
}
|
|
44
|
+
//# sourceMappingURL=create-web-app-command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-web-app-command.d.ts","sourceRoot":"","sources":["../../src/models/create-web-app-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AAErE;;;;GAIG;AACH,MAAM,WAAW,mBAAmB;IAChC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,KAAK,CAAC,sBAAsB,CAAC,GAAG,IAAI,CAAC;CAC/D"}
|
|
@@ -13,13 +13,3 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.DomainType = void 0;
|
|
17
|
-
/**
|
|
18
|
-
*
|
|
19
|
-
* @export
|
|
20
|
-
* @enum {string}
|
|
21
|
-
*/
|
|
22
|
-
exports.DomainType = {
|
|
23
|
-
Subdomain: 'Subdomain',
|
|
24
|
-
Customdomain: 'Customdomain'
|
|
25
|
-
};
|
|
@@ -278,7 +278,13 @@ export interface HospitalModel {
|
|
|
278
278
|
* @type {string}
|
|
279
279
|
* @memberof HospitalModel
|
|
280
280
|
*/
|
|
281
|
-
'
|
|
281
|
+
'appName'?: string | null;
|
|
282
|
+
/**
|
|
283
|
+
*
|
|
284
|
+
* @type {string}
|
|
285
|
+
* @memberof HospitalModel
|
|
286
|
+
*/
|
|
287
|
+
'hostName'?: string | null;
|
|
282
288
|
/**
|
|
283
289
|
*
|
|
284
290
|
* @type {DeployStatus}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hospital-model.d.ts","sourceRoot":"","sources":["../../src/models/hospital-model.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"hospital-model.d.ts","sourceRoot":"","sources":["../../src/models/hospital-model.ts"],"names":[],"mappings":"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"}
|
package/lib/models/index.d.ts
CHANGED
|
@@ -166,6 +166,7 @@ export * from './create-sub-account-command';
|
|
|
166
166
|
export * from './create-survey-form-command';
|
|
167
167
|
export * from './create-tag-command';
|
|
168
168
|
export * from './create-template-version-command';
|
|
169
|
+
export * from './create-web-app-command';
|
|
169
170
|
export * from './curation-model';
|
|
170
171
|
export * from './curations-model';
|
|
171
172
|
export * from './dash-board-model';
|
|
@@ -211,7 +212,6 @@ export * from './doctor-specialties-model';
|
|
|
211
212
|
export * from './doctor-specialty-model';
|
|
212
213
|
export * from './doctors-model';
|
|
213
214
|
export * from './doctors-simple-model';
|
|
214
|
-
export * from './domain-type';
|
|
215
215
|
export * from './duration';
|
|
216
216
|
export * from './faq-categories-model';
|
|
217
217
|
export * from './faq-category-item-model';
|
|
@@ -510,6 +510,7 @@ export * from './update-specialty-command';
|
|
|
510
510
|
export * from './update-specialty-type-command';
|
|
511
511
|
export * from './update-survey-form-command';
|
|
512
512
|
export * from './update-template-version-command';
|
|
513
|
+
export * from './update-web-app-command';
|
|
513
514
|
export * from './upi-payment-model';
|
|
514
515
|
export * from './user';
|
|
515
516
|
export * from './user-language-model';
|
|
@@ -520,6 +521,7 @@ export * from './vbc';
|
|
|
520
521
|
export * from './video';
|
|
521
522
|
export * from './voice';
|
|
522
523
|
export * from './vonage-user';
|
|
524
|
+
export * from './web-app-environment-model';
|
|
523
525
|
export * from './web-app-item-model';
|
|
524
526
|
export * from './web-app-model';
|
|
525
527
|
export * from './web-apps-model';
|