ch-admin-api-client-typescript 5.5.5 → 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/hospitals-api.d.ts +629 -0
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +949 -41
- 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-hospital-command.d.ts +7 -0
- package/lib/models/create-hospital-command.d.ts.map +1 -1
- package/lib/models/create-hospital-tag-command.d.ts +31 -0
- package/lib/models/create-hospital-tag-command.d.ts.map +1 -0
- package/lib/models/create-hospital-tag-command.js +15 -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 +26 -0
- package/lib/models/hospital-model.d.ts.map +1 -1
- package/lib/models/hospital-tag-item-model.d.ts +31 -0
- package/lib/models/hospital-tag-item-model.d.ts.map +1 -0
- package/lib/models/hospital-tag-item-model.js +15 -0
- package/lib/models/hospital-tag-model.d.ts +37 -0
- package/lib/models/hospital-tag-model.d.ts.map +1 -0
- package/lib/models/hospital-tag-model.js +15 -0
- package/lib/models/hospital-tags-model.d.ts +33 -0
- package/lib/models/hospital-tags-model.d.ts.map +1 -0
- package/lib/models/hospital-tags-model.js +15 -0
- package/lib/models/index.d.ts +11 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +11 -0
- package/lib/models/search-curation-item-input-model.d.ts +6 -0
- package/lib/models/search-curation-item-input-model.d.ts.map +1 -1
- package/lib/models/search-curation-item-model.d.ts +6 -0
- package/lib/models/search-curation-item-model.d.ts.map +1 -1
- package/lib/models/update-hospital-command.d.ts +7 -0
- package/lib/models/update-hospital-command.d.ts.map +1 -1
- 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 +12 -0
- package/src/api/hospitals-api.ts +1194 -91
- package/src/api/web-apps-api.ts +681 -0
- package/src/api.ts +1 -0
- package/src/models/create-hospital-command.ts +9 -0
- package/src/models/create-hospital-tag-command.ts +36 -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 +30 -0
- package/src/models/hospital-tag-item-model.ts +36 -0
- package/src/models/hospital-tag-model.ts +42 -0
- package/src/models/hospital-tags-model.ts +42 -0
- package/src/models/index.ts +11 -0
- package/src/models/search-curation-item-input-model.ts +6 -0
- package/src/models/search-curation-item-model.ts +6 -0
- package/src/models/update-hospital-command.ts +9 -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
|
@@ -24,6 +24,9 @@ import { FeatureInputModel } from './feature-input-model';
|
|
|
24
24
|
import { HospitalConsultationOptionModel } from './hospital-consultation-option-model';
|
|
25
25
|
// May contain unused imports in some cases
|
|
26
26
|
// @ts-ignore
|
|
27
|
+
import { HospitalTagItemModel } from './hospital-tag-item-model';
|
|
28
|
+
// May contain unused imports in some cases
|
|
29
|
+
// @ts-ignore
|
|
27
30
|
import { LocationModel } from './location-model';
|
|
28
31
|
// May contain unused imports in some cases
|
|
29
32
|
// @ts-ignore
|
|
@@ -197,5 +200,11 @@ export interface CreateHospitalCommand {
|
|
|
197
200
|
* @memberof CreateHospitalCommand
|
|
198
201
|
*/
|
|
199
202
|
'feature'?: FeatureInputModel;
|
|
203
|
+
/**
|
|
204
|
+
*
|
|
205
|
+
* @type {Array<HospitalTagItemModel>}
|
|
206
|
+
* @memberof CreateHospitalCommand
|
|
207
|
+
*/
|
|
208
|
+
'tags'?: Array<HospitalTagItemModel> | null;
|
|
200
209
|
}
|
|
201
210
|
|
|
@@ -0,0 +1,36 @@
|
|
|
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
|
+
* @interface CreateHospitalTagCommand
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateHospitalTagCommand {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CreateHospitalTagCommand
|
|
27
|
+
*/
|
|
28
|
+
'tagId'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof CreateHospitalTagCommand
|
|
33
|
+
*/
|
|
34
|
+
'order'?: number;
|
|
35
|
+
}
|
|
36
|
+
|
|
@@ -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
|
|
@@ -33,6 +36,9 @@ import { HospitalConsultationOptionModel } from './hospital-consultation-option-
|
|
|
33
36
|
import { HospitalLanguageItemModel } from './hospital-language-item-model';
|
|
34
37
|
// May contain unused imports in some cases
|
|
35
38
|
// @ts-ignore
|
|
39
|
+
import { HospitalTagItemModel } from './hospital-tag-item-model';
|
|
40
|
+
// May contain unused imports in some cases
|
|
41
|
+
// @ts-ignore
|
|
36
42
|
import { LocationModel } from './location-model';
|
|
37
43
|
// May contain unused imports in some cases
|
|
38
44
|
// @ts-ignore
|
|
@@ -257,5 +263,29 @@ export interface HospitalModel {
|
|
|
257
263
|
* @memberof HospitalModel
|
|
258
264
|
*/
|
|
259
265
|
'feature'?: FeatureModel;
|
|
266
|
+
/**
|
|
267
|
+
*
|
|
268
|
+
* @type {Array<HospitalTagItemModel>}
|
|
269
|
+
* @memberof HospitalModel
|
|
270
|
+
*/
|
|
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;
|
|
260
290
|
}
|
|
261
291
|
|
|
@@ -0,0 +1,36 @@
|
|
|
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
|
+
* @interface HospitalTagItemModel
|
|
21
|
+
*/
|
|
22
|
+
export interface HospitalTagItemModel {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof HospitalTagItemModel
|
|
27
|
+
*/
|
|
28
|
+
'tagId'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof HospitalTagItemModel
|
|
33
|
+
*/
|
|
34
|
+
'order'?: number;
|
|
35
|
+
}
|
|
36
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
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
|
+
* @interface HospitalTagModel
|
|
21
|
+
*/
|
|
22
|
+
export interface HospitalTagModel {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof HospitalTagModel
|
|
27
|
+
*/
|
|
28
|
+
'tagId'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof HospitalTagModel
|
|
33
|
+
*/
|
|
34
|
+
'order'?: number;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof HospitalTagModel
|
|
39
|
+
*/
|
|
40
|
+
'hospitalId'?: string;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
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 { HospitalTagItemModel } from './hospital-tag-item-model';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { PagedListMetaData } from './paged-list-meta-data';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface HospitalTagsModel
|
|
27
|
+
*/
|
|
28
|
+
export interface HospitalTagsModel {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {Array<HospitalTagItemModel>}
|
|
32
|
+
* @memberof HospitalTagsModel
|
|
33
|
+
*/
|
|
34
|
+
'items'?: Array<HospitalTagItemModel> | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {PagedListMetaData}
|
|
38
|
+
* @memberof HospitalTagsModel
|
|
39
|
+
*/
|
|
40
|
+
'metaData'?: PagedListMetaData;
|
|
41
|
+
}
|
|
42
|
+
|
package/src/models/index.ts
CHANGED
|
@@ -136,6 +136,7 @@ export * from './create-hospital-language-command';
|
|
|
136
136
|
export * from './create-hospital-service-command';
|
|
137
137
|
export * from './create-hospital-sns-handle-command';
|
|
138
138
|
export * from './create-hospital-specialty-command';
|
|
139
|
+
export * from './create-hospital-tag-command';
|
|
139
140
|
export * from './create-hospital-working-day-command';
|
|
140
141
|
export * from './create-landing-command';
|
|
141
142
|
export * from './create-language-command';
|
|
@@ -156,6 +157,7 @@ export * from './create-sub-account-command';
|
|
|
156
157
|
export * from './create-survey-form-command';
|
|
157
158
|
export * from './create-tag-command';
|
|
158
159
|
export * from './create-template-version-command';
|
|
160
|
+
export * from './create-web-app-command';
|
|
159
161
|
export * from './dash-board-model';
|
|
160
162
|
export * from './day-of-week';
|
|
161
163
|
export * from './deal-item-model';
|
|
@@ -176,6 +178,7 @@ export * from './delete-hospital-appointment-timetable-overrides-command';
|
|
|
176
178
|
export * from './delete-hospital-consultation-timetable-override-command';
|
|
177
179
|
export * from './delete-hospital-specialty-appointment-timetable-overrides-command';
|
|
178
180
|
export * from './delete-service-appointment-timetable-overrides-command';
|
|
181
|
+
export * from './deploy-status';
|
|
179
182
|
export * from './doctor-affiliation-item-model';
|
|
180
183
|
export * from './doctor-affiliation-model';
|
|
181
184
|
export * from './doctor-affiliations-model';
|
|
@@ -198,6 +201,7 @@ export * from './doctor-specialties-model';
|
|
|
198
201
|
export * from './doctor-specialty-model';
|
|
199
202
|
export * from './doctors-model';
|
|
200
203
|
export * from './doctors-simple-model';
|
|
204
|
+
export * from './domain-type';
|
|
201
205
|
export * from './duration';
|
|
202
206
|
export * from './faq-categories-model';
|
|
203
207
|
export * from './faq-category-item-model';
|
|
@@ -258,6 +262,9 @@ export * from './hospital-specialties-simple-model';
|
|
|
258
262
|
export * from './hospital-specialty-item-model';
|
|
259
263
|
export * from './hospital-specialty-model';
|
|
260
264
|
export * from './hospital-specialty-simple-item-model';
|
|
265
|
+
export * from './hospital-tag-item-model';
|
|
266
|
+
export * from './hospital-tag-model';
|
|
267
|
+
export * from './hospital-tags-model';
|
|
261
268
|
export * from './hospitals-model';
|
|
262
269
|
export * from './hospitals-simple-model';
|
|
263
270
|
export * from './http-status-code';
|
|
@@ -479,6 +486,7 @@ export * from './update-specialty-command';
|
|
|
479
486
|
export * from './update-specialty-type-command';
|
|
480
487
|
export * from './update-survey-form-command';
|
|
481
488
|
export * from './update-template-version-command';
|
|
489
|
+
export * from './update-web-app-command';
|
|
482
490
|
export * from './user';
|
|
483
491
|
export * from './user-language-model';
|
|
484
492
|
export * from './user-location-model';
|
|
@@ -488,6 +496,9 @@ export * from './vbc';
|
|
|
488
496
|
export * from './video';
|
|
489
497
|
export * from './voice';
|
|
490
498
|
export * from './vonage-user';
|
|
499
|
+
export * from './web-app-item-model';
|
|
500
|
+
export * from './web-app-model';
|
|
501
|
+
export * from './web-apps-model';
|
|
491
502
|
export * from './webhook';
|
|
492
503
|
export * from './working-day-item-model';
|
|
493
504
|
export * from './working-day-model';
|
|
@@ -38,6 +38,12 @@ export interface SearchCurationItemInputModel {
|
|
|
38
38
|
* @memberof SearchCurationItemInputModel
|
|
39
39
|
*/
|
|
40
40
|
'searchTerm'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof SearchCurationItemInputModel
|
|
45
|
+
*/
|
|
46
|
+
'slug'?: string | null;
|
|
41
47
|
/**
|
|
42
48
|
*
|
|
43
49
|
* @type {string}
|
|
@@ -38,6 +38,12 @@ export interface SearchCurationItemModel {
|
|
|
38
38
|
* @memberof SearchCurationItemModel
|
|
39
39
|
*/
|
|
40
40
|
'searchTerm'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof SearchCurationItemModel
|
|
45
|
+
*/
|
|
46
|
+
'slug'?: string | null;
|
|
41
47
|
/**
|
|
42
48
|
*
|
|
43
49
|
* @type {string}
|
|
@@ -24,6 +24,9 @@ import { FeatureInputModel } from './feature-input-model';
|
|
|
24
24
|
import { HospitalConsultationOptionModel } from './hospital-consultation-option-model';
|
|
25
25
|
// May contain unused imports in some cases
|
|
26
26
|
// @ts-ignore
|
|
27
|
+
import { HospitalTagItemModel } from './hospital-tag-item-model';
|
|
28
|
+
// May contain unused imports in some cases
|
|
29
|
+
// @ts-ignore
|
|
27
30
|
import { LocationModel } from './location-model';
|
|
28
31
|
// May contain unused imports in some cases
|
|
29
32
|
// @ts-ignore
|
|
@@ -209,5 +212,11 @@ export interface UpdateHospitalCommand {
|
|
|
209
212
|
* @memberof UpdateHospitalCommand
|
|
210
213
|
*/
|
|
211
214
|
'feature'?: FeatureInputModel;
|
|
215
|
+
/**
|
|
216
|
+
*
|
|
217
|
+
* @type {Array<HospitalTagItemModel>}
|
|
218
|
+
* @memberof UpdateHospitalCommand
|
|
219
|
+
*/
|
|
220
|
+
'tags'?: Array<HospitalTagItemModel> | null;
|
|
212
221
|
}
|
|
213
222
|
|
|
@@ -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
|
+
|