ch-admin-api-client-typescript 5.5.6 → 5.5.7
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 +394 -0
- package/lib/api/web-apps-api.d.ts.map +1 -0
- package/lib/api/web-apps-api.js +636 -0
- package/lib/api.d.ts +1 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1 -0
- package/lib/models/create-web-app-command.d.ts +104 -0
- package/lib/models/create-web-app-command.d.ts.map +1 -0
- package/lib/models/create-web-app-command.js +15 -0
- package/lib/models/deploy-status.d.ts +28 -0
- package/lib/models/deploy-status.d.ts.map +1 -0
- package/lib/models/deploy-status.js +31 -0
- package/lib/models/domain-type.d.ts +22 -0
- package/lib/models/domain-type.d.ts.map +1 -0
- package/lib/models/domain-type.js +25 -0
- package/lib/models/hospital-model.d.ts +19 -0
- package/lib/models/hospital-model.d.ts.map +1 -1
- package/lib/models/index.d.ts +7 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +7 -0
- package/lib/models/update-web-app-command.d.ts +105 -0
- package/lib/models/update-web-app-command.d.ts.map +1 -0
- package/lib/models/update-web-app-command.js +15 -0
- package/lib/models/web-app-item-model.d.ts +148 -0
- package/lib/models/web-app-item-model.d.ts.map +1 -0
- package/lib/models/web-app-item-model.js +15 -0
- package/lib/models/web-app-model.d.ts +148 -0
- package/lib/models/web-app-model.d.ts.map +1 -0
- package/lib/models/web-app-model.js +15 -0
- package/lib/models/web-apps-model.d.ts +33 -0
- package/lib/models/web-apps-model.d.ts.map +1 -0
- package/lib/models/web-apps-model.js +15 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +8 -0
- package/src/api/web-apps-api.ts +681 -0
- package/src/api.ts +1 -0
- package/src/models/create-web-app-command.ts +111 -0
- package/src/models/deploy-status.ts +37 -0
- package/src/models/domain-type.ts +31 -0
- package/src/models/hospital-model.ts +21 -0
- package/src/models/index.ts +7 -0
- package/src/models/update-web-app-command.ts +114 -0
- package/src/models/web-app-item-model.ts +159 -0
- package/src/models/web-app-model.ts +159 -0
- package/src/models/web-apps-model.ts +42 -0
|
@@ -0,0 +1,111 @@
|
|
|
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
|
+
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @enum {string}
|
|
21
|
+
*/
|
|
22
|
+
|
|
23
|
+
export const DeployStatus = {
|
|
24
|
+
New: 'New',
|
|
25
|
+
Paid: 'Paid',
|
|
26
|
+
RefundRequested: 'RefundRequested',
|
|
27
|
+
Refunded: 'Refunded',
|
|
28
|
+
Approved: 'Approved',
|
|
29
|
+
Deploying: 'Deploying',
|
|
30
|
+
Deployed: 'Deployed',
|
|
31
|
+
Suspended: 'Suspended'
|
|
32
|
+
} as const;
|
|
33
|
+
|
|
34
|
+
export type DeployStatus = typeof DeployStatus[keyof typeof DeployStatus];
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @enum {string}
|
|
21
|
+
*/
|
|
22
|
+
|
|
23
|
+
export const DomainType = {
|
|
24
|
+
Subdomain: 'Subdomain',
|
|
25
|
+
Customdomain: 'Customdomain'
|
|
26
|
+
} as const;
|
|
27
|
+
|
|
28
|
+
export type DomainType = typeof DomainType[keyof typeof DomainType];
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
@@ -21,6 +21,9 @@ import { AppointmentOptionModel } from './appointment-option-model';
|
|
|
21
21
|
import { AuditableEntityModel } from './auditable-entity-model';
|
|
22
22
|
// May contain unused imports in some cases
|
|
23
23
|
// @ts-ignore
|
|
24
|
+
import { DeployStatus } from './deploy-status';
|
|
25
|
+
// May contain unused imports in some cases
|
|
26
|
+
// @ts-ignore
|
|
24
27
|
import { FeatureModel } from './feature-model';
|
|
25
28
|
// May contain unused imports in some cases
|
|
26
29
|
// @ts-ignore
|
|
@@ -266,5 +269,23 @@ export interface HospitalModel {
|
|
|
266
269
|
* @memberof HospitalModel
|
|
267
270
|
*/
|
|
268
271
|
'tags'?: Array<HospitalTagItemModel> | null;
|
|
272
|
+
/**
|
|
273
|
+
*
|
|
274
|
+
* @type {string}
|
|
275
|
+
* @memberof HospitalModel
|
|
276
|
+
*/
|
|
277
|
+
'webAppId'?: string;
|
|
278
|
+
/**
|
|
279
|
+
*
|
|
280
|
+
* @type {string}
|
|
281
|
+
* @memberof HospitalModel
|
|
282
|
+
*/
|
|
283
|
+
'domain'?: string | null;
|
|
284
|
+
/**
|
|
285
|
+
*
|
|
286
|
+
* @type {DeployStatus}
|
|
287
|
+
* @memberof HospitalModel
|
|
288
|
+
*/
|
|
289
|
+
'deployStatus'?: DeployStatus;
|
|
269
290
|
}
|
|
270
291
|
|
package/src/models/index.ts
CHANGED
|
@@ -157,6 +157,7 @@ export * from './create-sub-account-command';
|
|
|
157
157
|
export * from './create-survey-form-command';
|
|
158
158
|
export * from './create-tag-command';
|
|
159
159
|
export * from './create-template-version-command';
|
|
160
|
+
export * from './create-web-app-command';
|
|
160
161
|
export * from './dash-board-model';
|
|
161
162
|
export * from './day-of-week';
|
|
162
163
|
export * from './deal-item-model';
|
|
@@ -177,6 +178,7 @@ export * from './delete-hospital-appointment-timetable-overrides-command';
|
|
|
177
178
|
export * from './delete-hospital-consultation-timetable-override-command';
|
|
178
179
|
export * from './delete-hospital-specialty-appointment-timetable-overrides-command';
|
|
179
180
|
export * from './delete-service-appointment-timetable-overrides-command';
|
|
181
|
+
export * from './deploy-status';
|
|
180
182
|
export * from './doctor-affiliation-item-model';
|
|
181
183
|
export * from './doctor-affiliation-model';
|
|
182
184
|
export * from './doctor-affiliations-model';
|
|
@@ -199,6 +201,7 @@ export * from './doctor-specialties-model';
|
|
|
199
201
|
export * from './doctor-specialty-model';
|
|
200
202
|
export * from './doctors-model';
|
|
201
203
|
export * from './doctors-simple-model';
|
|
204
|
+
export * from './domain-type';
|
|
202
205
|
export * from './duration';
|
|
203
206
|
export * from './faq-categories-model';
|
|
204
207
|
export * from './faq-category-item-model';
|
|
@@ -483,6 +486,7 @@ export * from './update-specialty-command';
|
|
|
483
486
|
export * from './update-specialty-type-command';
|
|
484
487
|
export * from './update-survey-form-command';
|
|
485
488
|
export * from './update-template-version-command';
|
|
489
|
+
export * from './update-web-app-command';
|
|
486
490
|
export * from './user';
|
|
487
491
|
export * from './user-language-model';
|
|
488
492
|
export * from './user-location-model';
|
|
@@ -492,6 +496,9 @@ export * from './vbc';
|
|
|
492
496
|
export * from './video';
|
|
493
497
|
export * from './voice';
|
|
494
498
|
export * from './vonage-user';
|
|
499
|
+
export * from './web-app-item-model';
|
|
500
|
+
export * from './web-app-model';
|
|
501
|
+
export * from './web-apps-model';
|
|
495
502
|
export * from './webhook';
|
|
496
503
|
export * from './working-day-item-model';
|
|
497
504
|
export * from './working-day-model';
|
|
@@ -0,0 +1,114 @@
|
|
|
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
|
+
|
|
@@ -0,0 +1,159 @@
|
|
|
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 { AuditableEntityModel } from './auditable-entity-model';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { DeployStatus } from './deploy-status';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import { DomainType } from './domain-type';
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @export
|
|
29
|
+
* @interface WebAppItemModel
|
|
30
|
+
*/
|
|
31
|
+
export interface WebAppItemModel {
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof WebAppItemModel
|
|
36
|
+
*/
|
|
37
|
+
'id'?: string;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof WebAppItemModel
|
|
42
|
+
*/
|
|
43
|
+
'languageCode'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof WebAppItemModel
|
|
48
|
+
*/
|
|
49
|
+
'hospitalId'?: string;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof WebAppItemModel
|
|
54
|
+
*/
|
|
55
|
+
'hospitalName'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof WebAppItemModel
|
|
60
|
+
*/
|
|
61
|
+
'hospitalSlug'?: string | null;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof WebAppItemModel
|
|
66
|
+
*/
|
|
67
|
+
'defaultLocale'?: string | null;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof WebAppItemModel
|
|
72
|
+
*/
|
|
73
|
+
'stsClientId'?: string | null;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {string}
|
|
77
|
+
* @memberof WebAppItemModel
|
|
78
|
+
*/
|
|
79
|
+
'stsClientSecret'?: string | null;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {string}
|
|
83
|
+
* @memberof WebAppItemModel
|
|
84
|
+
*/
|
|
85
|
+
'colorPrimary'?: string | null;
|
|
86
|
+
/**
|
|
87
|
+
*
|
|
88
|
+
* @type {string}
|
|
89
|
+
* @memberof WebAppItemModel
|
|
90
|
+
*/
|
|
91
|
+
'colorSecondary'?: string | null;
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* @type {string}
|
|
95
|
+
* @memberof WebAppItemModel
|
|
96
|
+
*/
|
|
97
|
+
'colorNeutral'?: string | null;
|
|
98
|
+
/**
|
|
99
|
+
*
|
|
100
|
+
* @type {string}
|
|
101
|
+
* @memberof WebAppItemModel
|
|
102
|
+
*/
|
|
103
|
+
'colorDark'?: string | null;
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
* @type {string}
|
|
107
|
+
* @memberof WebAppItemModel
|
|
108
|
+
*/
|
|
109
|
+
'colorLight'?: string | null;
|
|
110
|
+
/**
|
|
111
|
+
*
|
|
112
|
+
* @type {string}
|
|
113
|
+
* @memberof WebAppItemModel
|
|
114
|
+
*/
|
|
115
|
+
'template'?: string | null;
|
|
116
|
+
/**
|
|
117
|
+
*
|
|
118
|
+
* @type {string}
|
|
119
|
+
* @memberof WebAppItemModel
|
|
120
|
+
*/
|
|
121
|
+
'googleClientId'?: string | null;
|
|
122
|
+
/**
|
|
123
|
+
*
|
|
124
|
+
* @type {DomainType}
|
|
125
|
+
* @memberof WebAppItemModel
|
|
126
|
+
*/
|
|
127
|
+
'domainType'?: DomainType;
|
|
128
|
+
/**
|
|
129
|
+
*
|
|
130
|
+
* @type {string}
|
|
131
|
+
* @memberof WebAppItemModel
|
|
132
|
+
*/
|
|
133
|
+
'ipAddress'?: string | null;
|
|
134
|
+
/**
|
|
135
|
+
*
|
|
136
|
+
* @type {string}
|
|
137
|
+
* @memberof WebAppItemModel
|
|
138
|
+
*/
|
|
139
|
+
'domainVerificationId'?: string | null;
|
|
140
|
+
/**
|
|
141
|
+
*
|
|
142
|
+
* @type {string}
|
|
143
|
+
* @memberof WebAppItemModel
|
|
144
|
+
*/
|
|
145
|
+
'domain'?: string | null;
|
|
146
|
+
/**
|
|
147
|
+
*
|
|
148
|
+
* @type {DeployStatus}
|
|
149
|
+
* @memberof WebAppItemModel
|
|
150
|
+
*/
|
|
151
|
+
'deployStatus'?: DeployStatus;
|
|
152
|
+
/**
|
|
153
|
+
*
|
|
154
|
+
* @type {AuditableEntityModel}
|
|
155
|
+
* @memberof WebAppItemModel
|
|
156
|
+
*/
|
|
157
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
158
|
+
}
|
|
159
|
+
|
|
@@ -0,0 +1,159 @@
|
|
|
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 { AuditableEntityModel } from './auditable-entity-model';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { DeployStatus } from './deploy-status';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import { DomainType } from './domain-type';
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @export
|
|
29
|
+
* @interface WebAppModel
|
|
30
|
+
*/
|
|
31
|
+
export interface WebAppModel {
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof WebAppModel
|
|
36
|
+
*/
|
|
37
|
+
'id'?: string;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof WebAppModel
|
|
42
|
+
*/
|
|
43
|
+
'languageCode'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof WebAppModel
|
|
48
|
+
*/
|
|
49
|
+
'hospitalId'?: string;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof WebAppModel
|
|
54
|
+
*/
|
|
55
|
+
'hospitalName'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof WebAppModel
|
|
60
|
+
*/
|
|
61
|
+
'hospitalSlug'?: string | null;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof WebAppModel
|
|
66
|
+
*/
|
|
67
|
+
'defaultLocale'?: string | null;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof WebAppModel
|
|
72
|
+
*/
|
|
73
|
+
'stsClientId'?: string | null;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {string}
|
|
77
|
+
* @memberof WebAppModel
|
|
78
|
+
*/
|
|
79
|
+
'stsClientSecret'?: string | null;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {string}
|
|
83
|
+
* @memberof WebAppModel
|
|
84
|
+
*/
|
|
85
|
+
'colorPrimary'?: string | null;
|
|
86
|
+
/**
|
|
87
|
+
*
|
|
88
|
+
* @type {string}
|
|
89
|
+
* @memberof WebAppModel
|
|
90
|
+
*/
|
|
91
|
+
'colorSecondary'?: string | null;
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* @type {string}
|
|
95
|
+
* @memberof WebAppModel
|
|
96
|
+
*/
|
|
97
|
+
'colorNeutral'?: string | null;
|
|
98
|
+
/**
|
|
99
|
+
*
|
|
100
|
+
* @type {string}
|
|
101
|
+
* @memberof WebAppModel
|
|
102
|
+
*/
|
|
103
|
+
'colorDark'?: string | null;
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
* @type {string}
|
|
107
|
+
* @memberof WebAppModel
|
|
108
|
+
*/
|
|
109
|
+
'colorLight'?: string | null;
|
|
110
|
+
/**
|
|
111
|
+
*
|
|
112
|
+
* @type {string}
|
|
113
|
+
* @memberof WebAppModel
|
|
114
|
+
*/
|
|
115
|
+
'template'?: string | null;
|
|
116
|
+
/**
|
|
117
|
+
*
|
|
118
|
+
* @type {string}
|
|
119
|
+
* @memberof WebAppModel
|
|
120
|
+
*/
|
|
121
|
+
'googleClientId'?: string | null;
|
|
122
|
+
/**
|
|
123
|
+
*
|
|
124
|
+
* @type {DomainType}
|
|
125
|
+
* @memberof WebAppModel
|
|
126
|
+
*/
|
|
127
|
+
'domainType'?: DomainType;
|
|
128
|
+
/**
|
|
129
|
+
*
|
|
130
|
+
* @type {string}
|
|
131
|
+
* @memberof WebAppModel
|
|
132
|
+
*/
|
|
133
|
+
'ipAddress'?: string | null;
|
|
134
|
+
/**
|
|
135
|
+
*
|
|
136
|
+
* @type {string}
|
|
137
|
+
* @memberof WebAppModel
|
|
138
|
+
*/
|
|
139
|
+
'domainVerificationId'?: string | null;
|
|
140
|
+
/**
|
|
141
|
+
*
|
|
142
|
+
* @type {string}
|
|
143
|
+
* @memberof WebAppModel
|
|
144
|
+
*/
|
|
145
|
+
'domain'?: string | null;
|
|
146
|
+
/**
|
|
147
|
+
*
|
|
148
|
+
* @type {DeployStatus}
|
|
149
|
+
* @memberof WebAppModel
|
|
150
|
+
*/
|
|
151
|
+
'deployStatus'?: DeployStatus;
|
|
152
|
+
/**
|
|
153
|
+
*
|
|
154
|
+
* @type {AuditableEntityModel}
|
|
155
|
+
* @memberof WebAppModel
|
|
156
|
+
*/
|
|
157
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
158
|
+
}
|
|
159
|
+
|