ch-admin-api-client-typescript 5.9.12 → 5.10.0
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/survey-results-api.d.ts +4 -0
- package/lib/api/survey-results-api.d.ts.map +1 -1
- package/lib/api/survey-results-api.js +4 -0
- package/lib/api/web-apps-api.d.ts +277 -18
- package/lib/api/web-apps-api.d.ts.map +1 -1
- package/lib/api/web-apps-api.js +206 -24
- package/lib/models/create-deal-command.d.ts +6 -0
- package/lib/models/create-deal-command.d.ts.map +1 -1
- package/lib/models/create-hospital-command.d.ts +12 -0
- package/lib/models/create-hospital-command.d.ts.map +1 -1
- package/lib/models/hospital-item-model.d.ts +12 -0
- package/lib/models/hospital-item-model.d.ts.map +1 -1
- package/lib/models/hospital-model.d.ts +12 -0
- package/lib/models/hospital-model.d.ts.map +1 -1
- package/lib/models/index.d.ts +0 -2
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +0 -2
- package/lib/models/survey-result-element-model.d.ts +7 -0
- package/lib/models/survey-result-element-model.d.ts.map +1 -1
- package/lib/models/survey-result-item-model.d.ts +0 -7
- package/lib/models/survey-result-item-model.d.ts.map +1 -1
- package/lib/models/survey-result-model.d.ts +4 -4
- package/lib/models/survey-result-model.d.ts.map +1 -1
- package/lib/models/update-deal-command.d.ts +6 -0
- package/lib/models/update-deal-command.d.ts.map +1 -1
- package/lib/models/update-hospital-command.d.ts +12 -0
- package/lib/models/update-hospital-command.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +0 -2
- package/src/api/survey-results-api.ts +4 -0
- package/src/api/web-apps-api.ts +444 -32
- package/src/models/create-deal-command.ts +6 -0
- package/src/models/create-hospital-command.ts +12 -0
- package/src/models/hospital-item-model.ts +12 -0
- package/src/models/hospital-model.ts +12 -0
- package/src/models/index.ts +0 -2
- package/src/models/survey-result-element-model.ts +9 -0
- package/src/models/survey-result-item-model.ts +0 -9
- package/src/models/survey-result-model.ts +4 -4
- package/src/models/update-deal-command.ts +6 -0
- package/src/models/update-hospital-command.ts +12 -0
- package/lib/models/create-web-app-command.d.ts +0 -104
- package/lib/models/create-web-app-command.d.ts.map +0 -1
- package/lib/models/create-web-app-command.js +0 -15
- package/lib/models/update-web-app-command.d.ts +0 -105
- package/lib/models/update-web-app-command.d.ts.map +0 -1
- package/lib/models/update-web-app-command.js +0 -15
- package/src/models/create-web-app-command.ts +0 -111
- package/src/models/update-web-app-command.ts +0 -114
package/src/models/index.ts
CHANGED
|
@@ -162,7 +162,6 @@ export * from './create-sub-account-command';
|
|
|
162
162
|
export * from './create-survey-form-command';
|
|
163
163
|
export * from './create-tag-command';
|
|
164
164
|
export * from './create-template-version-command';
|
|
165
|
-
export * from './create-web-app-command';
|
|
166
165
|
export * from './dash-board-model';
|
|
167
166
|
export * from './day-of-week';
|
|
168
167
|
export * from './deal-item-model';
|
|
@@ -496,7 +495,6 @@ export * from './update-specialty-command';
|
|
|
496
495
|
export * from './update-specialty-type-command';
|
|
497
496
|
export * from './update-survey-form-command';
|
|
498
497
|
export * from './update-template-version-command';
|
|
499
|
-
export * from './update-web-app-command';
|
|
500
498
|
export * from './user';
|
|
501
499
|
export * from './user-language-model';
|
|
502
500
|
export * from './user-location-model';
|
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { SurveyFormElementTypes } from './survey-form-element-types';
|
|
16
19
|
// May contain unused imports in some cases
|
|
17
20
|
// @ts-ignore
|
|
18
21
|
import { SurveyResultElementValueModel } from './survey-result-element-value-model';
|
|
@@ -35,6 +38,12 @@ export interface SurveyResultElementModel {
|
|
|
35
38
|
* @memberof SurveyResultElementModel
|
|
36
39
|
*/
|
|
37
40
|
'order'?: number;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {SurveyFormElementTypes}
|
|
44
|
+
* @memberof SurveyResultElementModel
|
|
45
|
+
*/
|
|
46
|
+
'elementType'?: SurveyFormElementTypes;
|
|
38
47
|
/**
|
|
39
48
|
*
|
|
40
49
|
* @type {Array<SurveyResultElementValueModel>}
|
|
@@ -13,9 +13,6 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
// May contain unused imports in some cases
|
|
17
|
-
// @ts-ignore
|
|
18
|
-
import { SurveyResultElementModel } from './survey-result-element-model';
|
|
19
16
|
// May contain unused imports in some cases
|
|
20
17
|
// @ts-ignore
|
|
21
18
|
import { SurveyResultUserModel } from './survey-result-user-model';
|
|
@@ -86,12 +83,6 @@ export interface SurveyResultItemModel {
|
|
|
86
83
|
* @memberof SurveyResultItemModel
|
|
87
84
|
*/
|
|
88
85
|
'createdDate'?: Date;
|
|
89
|
-
/**
|
|
90
|
-
*
|
|
91
|
-
* @type {Array<SurveyResultElementModel>}
|
|
92
|
-
* @memberof SurveyResultItemModel
|
|
93
|
-
*/
|
|
94
|
-
'elements'?: Array<SurveyResultElementModel> | null;
|
|
95
86
|
/**
|
|
96
87
|
*
|
|
97
88
|
* @type {boolean}
|
|
@@ -88,16 +88,16 @@ export interface SurveyResultModel {
|
|
|
88
88
|
'createdDate'?: Date;
|
|
89
89
|
/**
|
|
90
90
|
*
|
|
91
|
-
* @type {
|
|
91
|
+
* @type {boolean}
|
|
92
92
|
* @memberof SurveyResultModel
|
|
93
93
|
*/
|
|
94
|
-
'
|
|
94
|
+
'notificationSent'?: boolean;
|
|
95
95
|
/**
|
|
96
96
|
*
|
|
97
|
-
* @type {
|
|
97
|
+
* @type {Array<SurveyResultElementModel>}
|
|
98
98
|
* @memberof SurveyResultModel
|
|
99
99
|
*/
|
|
100
|
-
'
|
|
100
|
+
'elements'?: Array<SurveyResultElementModel> | null;
|
|
101
101
|
/**
|
|
102
102
|
*
|
|
103
103
|
* @type {string}
|
|
@@ -77,6 +77,18 @@ export interface UpdateHospitalCommand {
|
|
|
77
77
|
* @memberof UpdateHospitalCommand
|
|
78
78
|
*/
|
|
79
79
|
'logo'?: string | null;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {string}
|
|
83
|
+
* @memberof UpdateHospitalCommand
|
|
84
|
+
*/
|
|
85
|
+
'logoTransparent'?: string | null;
|
|
86
|
+
/**
|
|
87
|
+
*
|
|
88
|
+
* @type {string}
|
|
89
|
+
* @memberof UpdateHospitalCommand
|
|
90
|
+
*/
|
|
91
|
+
'logoWhite'?: string | null;
|
|
80
92
|
/**
|
|
81
93
|
*
|
|
82
94
|
* @type {string}
|
|
@@ -1,104 +0,0 @@
|
|
|
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 { DomainType } from './domain-type';
|
|
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
|
-
'stsClientId'?: string | null;
|
|
31
|
-
/**
|
|
32
|
-
*
|
|
33
|
-
* @type {string}
|
|
34
|
-
* @memberof CreateWebAppCommand
|
|
35
|
-
*/
|
|
36
|
-
'stsClientSecret'?: string | null;
|
|
37
|
-
/**
|
|
38
|
-
*
|
|
39
|
-
* @type {string}
|
|
40
|
-
* @memberof CreateWebAppCommand
|
|
41
|
-
*/
|
|
42
|
-
'colorPrimary'?: string | null;
|
|
43
|
-
/**
|
|
44
|
-
*
|
|
45
|
-
* @type {string}
|
|
46
|
-
* @memberof CreateWebAppCommand
|
|
47
|
-
*/
|
|
48
|
-
'colorSecondary'?: string | null;
|
|
49
|
-
/**
|
|
50
|
-
*
|
|
51
|
-
* @type {string}
|
|
52
|
-
* @memberof CreateWebAppCommand
|
|
53
|
-
*/
|
|
54
|
-
'colorNeutral'?: string | null;
|
|
55
|
-
/**
|
|
56
|
-
*
|
|
57
|
-
* @type {string}
|
|
58
|
-
* @memberof CreateWebAppCommand
|
|
59
|
-
*/
|
|
60
|
-
'colorDark'?: string | null;
|
|
61
|
-
/**
|
|
62
|
-
*
|
|
63
|
-
* @type {string}
|
|
64
|
-
* @memberof CreateWebAppCommand
|
|
65
|
-
*/
|
|
66
|
-
'colorLight'?: string | null;
|
|
67
|
-
/**
|
|
68
|
-
*
|
|
69
|
-
* @type {string}
|
|
70
|
-
* @memberof CreateWebAppCommand
|
|
71
|
-
*/
|
|
72
|
-
'template'?: string | null;
|
|
73
|
-
/**
|
|
74
|
-
*
|
|
75
|
-
* @type {string}
|
|
76
|
-
* @memberof CreateWebAppCommand
|
|
77
|
-
*/
|
|
78
|
-
'googleClientId'?: string | null;
|
|
79
|
-
/**
|
|
80
|
-
*
|
|
81
|
-
* @type {DomainType}
|
|
82
|
-
* @memberof CreateWebAppCommand
|
|
83
|
-
*/
|
|
84
|
-
'domainType'?: DomainType;
|
|
85
|
-
/**
|
|
86
|
-
*
|
|
87
|
-
* @type {string}
|
|
88
|
-
* @memberof CreateWebAppCommand
|
|
89
|
-
*/
|
|
90
|
-
'ipAddress'?: string | null;
|
|
91
|
-
/**
|
|
92
|
-
*
|
|
93
|
-
* @type {string}
|
|
94
|
-
* @memberof CreateWebAppCommand
|
|
95
|
-
*/
|
|
96
|
-
'domainVerificationId'?: string | null;
|
|
97
|
-
/**
|
|
98
|
-
*
|
|
99
|
-
* @type {string}
|
|
100
|
-
* @memberof CreateWebAppCommand
|
|
101
|
-
*/
|
|
102
|
-
'domain'?: string | null;
|
|
103
|
-
}
|
|
104
|
-
//# sourceMappingURL=create-web-app-command.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
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,UAAU,EAAE,MAAM,eAAe,CAAC;AAE3C;;;;GAIG;AACH,MAAM,WAAW,mBAAmB;IAChC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,YAAY,CAAC,EAAE,UAAU,CAAC;IAC1B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,sBAAsB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC5B"}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
6
|
-
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
-
*
|
|
8
|
-
* The version of the OpenAPI document: 1
|
|
9
|
-
* Contact: hyounoosung@icloudhospital.com
|
|
10
|
-
*
|
|
11
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
-
* https://openapi-generator.tech
|
|
13
|
-
* Do not edit the class manually.
|
|
14
|
-
*/
|
|
15
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,105 +0,0 @@
|
|
|
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 { DeployStatus } from './deploy-status';
|
|
13
|
-
import { DomainType } from './domain-type';
|
|
14
|
-
/**
|
|
15
|
-
*
|
|
16
|
-
* @export
|
|
17
|
-
* @interface UpdateWebAppCommand
|
|
18
|
-
*/
|
|
19
|
-
export interface UpdateWebAppCommand {
|
|
20
|
-
/**
|
|
21
|
-
*
|
|
22
|
-
* @type {string}
|
|
23
|
-
* @memberof UpdateWebAppCommand
|
|
24
|
-
*/
|
|
25
|
-
'stsClientId'?: string | null;
|
|
26
|
-
/**
|
|
27
|
-
*
|
|
28
|
-
* @type {string}
|
|
29
|
-
* @memberof UpdateWebAppCommand
|
|
30
|
-
*/
|
|
31
|
-
'stsClientSecret'?: string | null;
|
|
32
|
-
/**
|
|
33
|
-
*
|
|
34
|
-
* @type {string}
|
|
35
|
-
* @memberof UpdateWebAppCommand
|
|
36
|
-
*/
|
|
37
|
-
'colorPrimary'?: string | null;
|
|
38
|
-
/**
|
|
39
|
-
*
|
|
40
|
-
* @type {string}
|
|
41
|
-
* @memberof UpdateWebAppCommand
|
|
42
|
-
*/
|
|
43
|
-
'colorSecondary'?: string | null;
|
|
44
|
-
/**
|
|
45
|
-
*
|
|
46
|
-
* @type {string}
|
|
47
|
-
* @memberof UpdateWebAppCommand
|
|
48
|
-
*/
|
|
49
|
-
'colorNeutral'?: string | null;
|
|
50
|
-
/**
|
|
51
|
-
*
|
|
52
|
-
* @type {string}
|
|
53
|
-
* @memberof UpdateWebAppCommand
|
|
54
|
-
*/
|
|
55
|
-
'colorDark'?: string | null;
|
|
56
|
-
/**
|
|
57
|
-
*
|
|
58
|
-
* @type {string}
|
|
59
|
-
* @memberof UpdateWebAppCommand
|
|
60
|
-
*/
|
|
61
|
-
'colorLight'?: string | null;
|
|
62
|
-
/**
|
|
63
|
-
*
|
|
64
|
-
* @type {string}
|
|
65
|
-
* @memberof UpdateWebAppCommand
|
|
66
|
-
*/
|
|
67
|
-
'template'?: string | null;
|
|
68
|
-
/**
|
|
69
|
-
*
|
|
70
|
-
* @type {string}
|
|
71
|
-
* @memberof UpdateWebAppCommand
|
|
72
|
-
*/
|
|
73
|
-
'googleClientId'?: string | null;
|
|
74
|
-
/**
|
|
75
|
-
*
|
|
76
|
-
* @type {DomainType}
|
|
77
|
-
* @memberof UpdateWebAppCommand
|
|
78
|
-
*/
|
|
79
|
-
'domainType'?: DomainType;
|
|
80
|
-
/**
|
|
81
|
-
*
|
|
82
|
-
* @type {string}
|
|
83
|
-
* @memberof UpdateWebAppCommand
|
|
84
|
-
*/
|
|
85
|
-
'ipAddress'?: string | null;
|
|
86
|
-
/**
|
|
87
|
-
*
|
|
88
|
-
* @type {string}
|
|
89
|
-
* @memberof UpdateWebAppCommand
|
|
90
|
-
*/
|
|
91
|
-
'domainVerificationId'?: string | null;
|
|
92
|
-
/**
|
|
93
|
-
*
|
|
94
|
-
* @type {string}
|
|
95
|
-
* @memberof UpdateWebAppCommand
|
|
96
|
-
*/
|
|
97
|
-
'domain'?: string | null;
|
|
98
|
-
/**
|
|
99
|
-
*
|
|
100
|
-
* @type {DeployStatus}
|
|
101
|
-
* @memberof UpdateWebAppCommand
|
|
102
|
-
*/
|
|
103
|
-
'deployStatus'?: DeployStatus;
|
|
104
|
-
}
|
|
105
|
-
//# sourceMappingURL=update-web-app-command.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"update-web-app-command.d.ts","sourceRoot":"","sources":["../../src/models/update-web-app-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAG/C,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAE3C;;;;GAIG;AACH,MAAM,WAAW,mBAAmB;IAChC;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,YAAY,CAAC,EAAE,UAAU,CAAC;IAC1B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,sBAAsB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,cAAc,CAAC,EAAE,YAAY,CAAC;CACjC"}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
6
|
-
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
-
*
|
|
8
|
-
* The version of the OpenAPI document: 1
|
|
9
|
-
* Contact: hyounoosung@icloudhospital.com
|
|
10
|
-
*
|
|
11
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
-
* https://openapi-generator.tech
|
|
13
|
-
* Do not edit the class manually.
|
|
14
|
-
*/
|
|
15
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,111 +0,0 @@
|
|
|
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
|
-
// May contain unused imports in some cases
|
|
17
|
-
// @ts-ignore
|
|
18
|
-
import { DomainType } from './domain-type';
|
|
19
|
-
|
|
20
|
-
/**
|
|
21
|
-
*
|
|
22
|
-
* @export
|
|
23
|
-
* @interface CreateWebAppCommand
|
|
24
|
-
*/
|
|
25
|
-
export interface CreateWebAppCommand {
|
|
26
|
-
/**
|
|
27
|
-
*
|
|
28
|
-
* @type {string}
|
|
29
|
-
* @memberof CreateWebAppCommand
|
|
30
|
-
*/
|
|
31
|
-
'hospitalId'?: string;
|
|
32
|
-
/**
|
|
33
|
-
*
|
|
34
|
-
* @type {string}
|
|
35
|
-
* @memberof CreateWebAppCommand
|
|
36
|
-
*/
|
|
37
|
-
'stsClientId'?: string | null;
|
|
38
|
-
/**
|
|
39
|
-
*
|
|
40
|
-
* @type {string}
|
|
41
|
-
* @memberof CreateWebAppCommand
|
|
42
|
-
*/
|
|
43
|
-
'stsClientSecret'?: string | null;
|
|
44
|
-
/**
|
|
45
|
-
*
|
|
46
|
-
* @type {string}
|
|
47
|
-
* @memberof CreateWebAppCommand
|
|
48
|
-
*/
|
|
49
|
-
'colorPrimary'?: string | null;
|
|
50
|
-
/**
|
|
51
|
-
*
|
|
52
|
-
* @type {string}
|
|
53
|
-
* @memberof CreateWebAppCommand
|
|
54
|
-
*/
|
|
55
|
-
'colorSecondary'?: string | null;
|
|
56
|
-
/**
|
|
57
|
-
*
|
|
58
|
-
* @type {string}
|
|
59
|
-
* @memberof CreateWebAppCommand
|
|
60
|
-
*/
|
|
61
|
-
'colorNeutral'?: string | null;
|
|
62
|
-
/**
|
|
63
|
-
*
|
|
64
|
-
* @type {string}
|
|
65
|
-
* @memberof CreateWebAppCommand
|
|
66
|
-
*/
|
|
67
|
-
'colorDark'?: string | null;
|
|
68
|
-
/**
|
|
69
|
-
*
|
|
70
|
-
* @type {string}
|
|
71
|
-
* @memberof CreateWebAppCommand
|
|
72
|
-
*/
|
|
73
|
-
'colorLight'?: string | null;
|
|
74
|
-
/**
|
|
75
|
-
*
|
|
76
|
-
* @type {string}
|
|
77
|
-
* @memberof CreateWebAppCommand
|
|
78
|
-
*/
|
|
79
|
-
'template'?: string | null;
|
|
80
|
-
/**
|
|
81
|
-
*
|
|
82
|
-
* @type {string}
|
|
83
|
-
* @memberof CreateWebAppCommand
|
|
84
|
-
*/
|
|
85
|
-
'googleClientId'?: string | null;
|
|
86
|
-
/**
|
|
87
|
-
*
|
|
88
|
-
* @type {DomainType}
|
|
89
|
-
* @memberof CreateWebAppCommand
|
|
90
|
-
*/
|
|
91
|
-
'domainType'?: DomainType;
|
|
92
|
-
/**
|
|
93
|
-
*
|
|
94
|
-
* @type {string}
|
|
95
|
-
* @memberof CreateWebAppCommand
|
|
96
|
-
*/
|
|
97
|
-
'ipAddress'?: string | null;
|
|
98
|
-
/**
|
|
99
|
-
*
|
|
100
|
-
* @type {string}
|
|
101
|
-
* @memberof CreateWebAppCommand
|
|
102
|
-
*/
|
|
103
|
-
'domainVerificationId'?: string | null;
|
|
104
|
-
/**
|
|
105
|
-
*
|
|
106
|
-
* @type {string}
|
|
107
|
-
* @memberof CreateWebAppCommand
|
|
108
|
-
*/
|
|
109
|
-
'domain'?: string | null;
|
|
110
|
-
}
|
|
111
|
-
|
|
@@ -1,114 +0,0 @@
|
|
|
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
|
-
// May contain unused imports in some cases
|
|
17
|
-
// @ts-ignore
|
|
18
|
-
import { DeployStatus } from './deploy-status';
|
|
19
|
-
// May contain unused imports in some cases
|
|
20
|
-
// @ts-ignore
|
|
21
|
-
import { DomainType } from './domain-type';
|
|
22
|
-
|
|
23
|
-
/**
|
|
24
|
-
*
|
|
25
|
-
* @export
|
|
26
|
-
* @interface UpdateWebAppCommand
|
|
27
|
-
*/
|
|
28
|
-
export interface UpdateWebAppCommand {
|
|
29
|
-
/**
|
|
30
|
-
*
|
|
31
|
-
* @type {string}
|
|
32
|
-
* @memberof UpdateWebAppCommand
|
|
33
|
-
*/
|
|
34
|
-
'stsClientId'?: string | null;
|
|
35
|
-
/**
|
|
36
|
-
*
|
|
37
|
-
* @type {string}
|
|
38
|
-
* @memberof UpdateWebAppCommand
|
|
39
|
-
*/
|
|
40
|
-
'stsClientSecret'?: string | null;
|
|
41
|
-
/**
|
|
42
|
-
*
|
|
43
|
-
* @type {string}
|
|
44
|
-
* @memberof UpdateWebAppCommand
|
|
45
|
-
*/
|
|
46
|
-
'colorPrimary'?: string | null;
|
|
47
|
-
/**
|
|
48
|
-
*
|
|
49
|
-
* @type {string}
|
|
50
|
-
* @memberof UpdateWebAppCommand
|
|
51
|
-
*/
|
|
52
|
-
'colorSecondary'?: string | null;
|
|
53
|
-
/**
|
|
54
|
-
*
|
|
55
|
-
* @type {string}
|
|
56
|
-
* @memberof UpdateWebAppCommand
|
|
57
|
-
*/
|
|
58
|
-
'colorNeutral'?: string | null;
|
|
59
|
-
/**
|
|
60
|
-
*
|
|
61
|
-
* @type {string}
|
|
62
|
-
* @memberof UpdateWebAppCommand
|
|
63
|
-
*/
|
|
64
|
-
'colorDark'?: string | null;
|
|
65
|
-
/**
|
|
66
|
-
*
|
|
67
|
-
* @type {string}
|
|
68
|
-
* @memberof UpdateWebAppCommand
|
|
69
|
-
*/
|
|
70
|
-
'colorLight'?: string | null;
|
|
71
|
-
/**
|
|
72
|
-
*
|
|
73
|
-
* @type {string}
|
|
74
|
-
* @memberof UpdateWebAppCommand
|
|
75
|
-
*/
|
|
76
|
-
'template'?: string | null;
|
|
77
|
-
/**
|
|
78
|
-
*
|
|
79
|
-
* @type {string}
|
|
80
|
-
* @memberof UpdateWebAppCommand
|
|
81
|
-
*/
|
|
82
|
-
'googleClientId'?: string | null;
|
|
83
|
-
/**
|
|
84
|
-
*
|
|
85
|
-
* @type {DomainType}
|
|
86
|
-
* @memberof UpdateWebAppCommand
|
|
87
|
-
*/
|
|
88
|
-
'domainType'?: DomainType;
|
|
89
|
-
/**
|
|
90
|
-
*
|
|
91
|
-
* @type {string}
|
|
92
|
-
* @memberof UpdateWebAppCommand
|
|
93
|
-
*/
|
|
94
|
-
'ipAddress'?: string | null;
|
|
95
|
-
/**
|
|
96
|
-
*
|
|
97
|
-
* @type {string}
|
|
98
|
-
* @memberof UpdateWebAppCommand
|
|
99
|
-
*/
|
|
100
|
-
'domainVerificationId'?: string | null;
|
|
101
|
-
/**
|
|
102
|
-
*
|
|
103
|
-
* @type {string}
|
|
104
|
-
* @memberof UpdateWebAppCommand
|
|
105
|
-
*/
|
|
106
|
-
'domain'?: string | null;
|
|
107
|
-
/**
|
|
108
|
-
*
|
|
109
|
-
* @type {DeployStatus}
|
|
110
|
-
* @memberof UpdateWebAppCommand
|
|
111
|
-
*/
|
|
112
|
-
'deployStatus'?: DeployStatus;
|
|
113
|
-
}
|
|
114
|
-
|