ch-admin-api-client-typescript 5.5.6 → 5.5.8
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 +8 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +8 -0
- package/lib/models/survey-form-duration-statistics-model.d.ts +7 -0
- package/lib/models/survey-form-duration-statistics-model.d.ts.map +1 -1
- package/lib/models/survey-form-language-statistics-model.d.ts +31 -0
- package/lib/models/survey-form-language-statistics-model.d.ts.map +1 -0
- package/lib/models/survey-form-language-statistics-model.js +15 -0
- package/lib/models/survey-result-item-model.d.ts +6 -0
- package/lib/models/survey-result-item-model.d.ts.map +1 -1
- package/lib/models/survey-result-model.d.ts +6 -0
- package/lib/models/survey-result-model.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 +9 -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 +8 -0
- package/src/models/survey-form-duration-statistics-model.ts +9 -0
- package/src/models/survey-form-language-statistics-model.ts +36 -0
- package/src/models/survey-result-item-model.ts +6 -0
- package/src/models/survey-result-model.ts +6 -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,105 @@
|
|
|
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
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -0,0 +1,15 @@
|
|
|
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 });
|
|
@@ -0,0 +1,148 @@
|
|
|
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 { AuditableEntityModel } from './auditable-entity-model';
|
|
13
|
+
import { DeployStatus } from './deploy-status';
|
|
14
|
+
import { DomainType } from './domain-type';
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
* @export
|
|
18
|
+
* @interface WebAppItemModel
|
|
19
|
+
*/
|
|
20
|
+
export interface WebAppItemModel {
|
|
21
|
+
/**
|
|
22
|
+
*
|
|
23
|
+
* @type {string}
|
|
24
|
+
* @memberof WebAppItemModel
|
|
25
|
+
*/
|
|
26
|
+
'id'?: string;
|
|
27
|
+
/**
|
|
28
|
+
*
|
|
29
|
+
* @type {string}
|
|
30
|
+
* @memberof WebAppItemModel
|
|
31
|
+
*/
|
|
32
|
+
'languageCode'?: string | null;
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
* @type {string}
|
|
36
|
+
* @memberof WebAppItemModel
|
|
37
|
+
*/
|
|
38
|
+
'hospitalId'?: string;
|
|
39
|
+
/**
|
|
40
|
+
*
|
|
41
|
+
* @type {string}
|
|
42
|
+
* @memberof WebAppItemModel
|
|
43
|
+
*/
|
|
44
|
+
'hospitalName'?: string | null;
|
|
45
|
+
/**
|
|
46
|
+
*
|
|
47
|
+
* @type {string}
|
|
48
|
+
* @memberof WebAppItemModel
|
|
49
|
+
*/
|
|
50
|
+
'hospitalSlug'?: string | null;
|
|
51
|
+
/**
|
|
52
|
+
*
|
|
53
|
+
* @type {string}
|
|
54
|
+
* @memberof WebAppItemModel
|
|
55
|
+
*/
|
|
56
|
+
'defaultLocale'?: string | null;
|
|
57
|
+
/**
|
|
58
|
+
*
|
|
59
|
+
* @type {string}
|
|
60
|
+
* @memberof WebAppItemModel
|
|
61
|
+
*/
|
|
62
|
+
'stsClientId'?: string | null;
|
|
63
|
+
/**
|
|
64
|
+
*
|
|
65
|
+
* @type {string}
|
|
66
|
+
* @memberof WebAppItemModel
|
|
67
|
+
*/
|
|
68
|
+
'stsClientSecret'?: string | null;
|
|
69
|
+
/**
|
|
70
|
+
*
|
|
71
|
+
* @type {string}
|
|
72
|
+
* @memberof WebAppItemModel
|
|
73
|
+
*/
|
|
74
|
+
'colorPrimary'?: string | null;
|
|
75
|
+
/**
|
|
76
|
+
*
|
|
77
|
+
* @type {string}
|
|
78
|
+
* @memberof WebAppItemModel
|
|
79
|
+
*/
|
|
80
|
+
'colorSecondary'?: string | null;
|
|
81
|
+
/**
|
|
82
|
+
*
|
|
83
|
+
* @type {string}
|
|
84
|
+
* @memberof WebAppItemModel
|
|
85
|
+
*/
|
|
86
|
+
'colorNeutral'?: string | null;
|
|
87
|
+
/**
|
|
88
|
+
*
|
|
89
|
+
* @type {string}
|
|
90
|
+
* @memberof WebAppItemModel
|
|
91
|
+
*/
|
|
92
|
+
'colorDark'?: string | null;
|
|
93
|
+
/**
|
|
94
|
+
*
|
|
95
|
+
* @type {string}
|
|
96
|
+
* @memberof WebAppItemModel
|
|
97
|
+
*/
|
|
98
|
+
'colorLight'?: string | null;
|
|
99
|
+
/**
|
|
100
|
+
*
|
|
101
|
+
* @type {string}
|
|
102
|
+
* @memberof WebAppItemModel
|
|
103
|
+
*/
|
|
104
|
+
'template'?: string | null;
|
|
105
|
+
/**
|
|
106
|
+
*
|
|
107
|
+
* @type {string}
|
|
108
|
+
* @memberof WebAppItemModel
|
|
109
|
+
*/
|
|
110
|
+
'googleClientId'?: string | null;
|
|
111
|
+
/**
|
|
112
|
+
*
|
|
113
|
+
* @type {DomainType}
|
|
114
|
+
* @memberof WebAppItemModel
|
|
115
|
+
*/
|
|
116
|
+
'domainType'?: DomainType;
|
|
117
|
+
/**
|
|
118
|
+
*
|
|
119
|
+
* @type {string}
|
|
120
|
+
* @memberof WebAppItemModel
|
|
121
|
+
*/
|
|
122
|
+
'ipAddress'?: string | null;
|
|
123
|
+
/**
|
|
124
|
+
*
|
|
125
|
+
* @type {string}
|
|
126
|
+
* @memberof WebAppItemModel
|
|
127
|
+
*/
|
|
128
|
+
'domainVerificationId'?: string | null;
|
|
129
|
+
/**
|
|
130
|
+
*
|
|
131
|
+
* @type {string}
|
|
132
|
+
* @memberof WebAppItemModel
|
|
133
|
+
*/
|
|
134
|
+
'domain'?: string | null;
|
|
135
|
+
/**
|
|
136
|
+
*
|
|
137
|
+
* @type {DeployStatus}
|
|
138
|
+
* @memberof WebAppItemModel
|
|
139
|
+
*/
|
|
140
|
+
'deployStatus'?: DeployStatus;
|
|
141
|
+
/**
|
|
142
|
+
*
|
|
143
|
+
* @type {AuditableEntityModel}
|
|
144
|
+
* @memberof WebAppItemModel
|
|
145
|
+
*/
|
|
146
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
147
|
+
}
|
|
148
|
+
//# sourceMappingURL=web-app-item-model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"web-app-item-model.d.ts","sourceRoot":"","sources":["../../src/models/web-app-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAGhE,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAG/C,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAE3C;;;;GAIG;AACH,MAAM,WAAW,eAAe;IAC5B;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;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;IAC9B;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,oBAAoB,CAAC;CAC5C"}
|
|
@@ -0,0 +1,15 @@
|
|
|
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 });
|
|
@@ -0,0 +1,148 @@
|
|
|
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 { AuditableEntityModel } from './auditable-entity-model';
|
|
13
|
+
import { DeployStatus } from './deploy-status';
|
|
14
|
+
import { DomainType } from './domain-type';
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
* @export
|
|
18
|
+
* @interface WebAppModel
|
|
19
|
+
*/
|
|
20
|
+
export interface WebAppModel {
|
|
21
|
+
/**
|
|
22
|
+
*
|
|
23
|
+
* @type {string}
|
|
24
|
+
* @memberof WebAppModel
|
|
25
|
+
*/
|
|
26
|
+
'id'?: string;
|
|
27
|
+
/**
|
|
28
|
+
*
|
|
29
|
+
* @type {string}
|
|
30
|
+
* @memberof WebAppModel
|
|
31
|
+
*/
|
|
32
|
+
'languageCode'?: string | null;
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
* @type {string}
|
|
36
|
+
* @memberof WebAppModel
|
|
37
|
+
*/
|
|
38
|
+
'hospitalId'?: string;
|
|
39
|
+
/**
|
|
40
|
+
*
|
|
41
|
+
* @type {string}
|
|
42
|
+
* @memberof WebAppModel
|
|
43
|
+
*/
|
|
44
|
+
'hospitalName'?: string | null;
|
|
45
|
+
/**
|
|
46
|
+
*
|
|
47
|
+
* @type {string}
|
|
48
|
+
* @memberof WebAppModel
|
|
49
|
+
*/
|
|
50
|
+
'hospitalSlug'?: string | null;
|
|
51
|
+
/**
|
|
52
|
+
*
|
|
53
|
+
* @type {string}
|
|
54
|
+
* @memberof WebAppModel
|
|
55
|
+
*/
|
|
56
|
+
'defaultLocale'?: string | null;
|
|
57
|
+
/**
|
|
58
|
+
*
|
|
59
|
+
* @type {string}
|
|
60
|
+
* @memberof WebAppModel
|
|
61
|
+
*/
|
|
62
|
+
'stsClientId'?: string | null;
|
|
63
|
+
/**
|
|
64
|
+
*
|
|
65
|
+
* @type {string}
|
|
66
|
+
* @memberof WebAppModel
|
|
67
|
+
*/
|
|
68
|
+
'stsClientSecret'?: string | null;
|
|
69
|
+
/**
|
|
70
|
+
*
|
|
71
|
+
* @type {string}
|
|
72
|
+
* @memberof WebAppModel
|
|
73
|
+
*/
|
|
74
|
+
'colorPrimary'?: string | null;
|
|
75
|
+
/**
|
|
76
|
+
*
|
|
77
|
+
* @type {string}
|
|
78
|
+
* @memberof WebAppModel
|
|
79
|
+
*/
|
|
80
|
+
'colorSecondary'?: string | null;
|
|
81
|
+
/**
|
|
82
|
+
*
|
|
83
|
+
* @type {string}
|
|
84
|
+
* @memberof WebAppModel
|
|
85
|
+
*/
|
|
86
|
+
'colorNeutral'?: string | null;
|
|
87
|
+
/**
|
|
88
|
+
*
|
|
89
|
+
* @type {string}
|
|
90
|
+
* @memberof WebAppModel
|
|
91
|
+
*/
|
|
92
|
+
'colorDark'?: string | null;
|
|
93
|
+
/**
|
|
94
|
+
*
|
|
95
|
+
* @type {string}
|
|
96
|
+
* @memberof WebAppModel
|
|
97
|
+
*/
|
|
98
|
+
'colorLight'?: string | null;
|
|
99
|
+
/**
|
|
100
|
+
*
|
|
101
|
+
* @type {string}
|
|
102
|
+
* @memberof WebAppModel
|
|
103
|
+
*/
|
|
104
|
+
'template'?: string | null;
|
|
105
|
+
/**
|
|
106
|
+
*
|
|
107
|
+
* @type {string}
|
|
108
|
+
* @memberof WebAppModel
|
|
109
|
+
*/
|
|
110
|
+
'googleClientId'?: string | null;
|
|
111
|
+
/**
|
|
112
|
+
*
|
|
113
|
+
* @type {DomainType}
|
|
114
|
+
* @memberof WebAppModel
|
|
115
|
+
*/
|
|
116
|
+
'domainType'?: DomainType;
|
|
117
|
+
/**
|
|
118
|
+
*
|
|
119
|
+
* @type {string}
|
|
120
|
+
* @memberof WebAppModel
|
|
121
|
+
*/
|
|
122
|
+
'ipAddress'?: string | null;
|
|
123
|
+
/**
|
|
124
|
+
*
|
|
125
|
+
* @type {string}
|
|
126
|
+
* @memberof WebAppModel
|
|
127
|
+
*/
|
|
128
|
+
'domainVerificationId'?: string | null;
|
|
129
|
+
/**
|
|
130
|
+
*
|
|
131
|
+
* @type {string}
|
|
132
|
+
* @memberof WebAppModel
|
|
133
|
+
*/
|
|
134
|
+
'domain'?: string | null;
|
|
135
|
+
/**
|
|
136
|
+
*
|
|
137
|
+
* @type {DeployStatus}
|
|
138
|
+
* @memberof WebAppModel
|
|
139
|
+
*/
|
|
140
|
+
'deployStatus'?: DeployStatus;
|
|
141
|
+
/**
|
|
142
|
+
*
|
|
143
|
+
* @type {AuditableEntityModel}
|
|
144
|
+
* @memberof WebAppModel
|
|
145
|
+
*/
|
|
146
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
147
|
+
}
|
|
148
|
+
//# sourceMappingURL=web-app-model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"web-app-model.d.ts","sourceRoot":"","sources":["../../src/models/web-app-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAGhE,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAG/C,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAE3C;;;;GAIG;AACH,MAAM,WAAW,WAAW;IACxB;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;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;IAC9B;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,oBAAoB,CAAC;CAC5C"}
|
|
@@ -0,0 +1,15 @@
|
|
|
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 });
|
|
@@ -0,0 +1,33 @@
|
|
|
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 { PagedListMetaData } from './paged-list-meta-data';
|
|
13
|
+
import { WebAppItemModel } from './web-app-item-model';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface WebAppsModel
|
|
18
|
+
*/
|
|
19
|
+
export interface WebAppsModel {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {Array<WebAppItemModel>}
|
|
23
|
+
* @memberof WebAppsModel
|
|
24
|
+
*/
|
|
25
|
+
'items'?: Array<WebAppItemModel> | null;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {PagedListMetaData}
|
|
29
|
+
* @memberof WebAppsModel
|
|
30
|
+
*/
|
|
31
|
+
'metaData'?: PagedListMetaData;
|
|
32
|
+
}
|
|
33
|
+
//# sourceMappingURL=web-apps-model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"web-apps-model.d.ts","sourceRoot":"","sources":["../../src/models/web-apps-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAG3D,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAEvD;;;;GAIG;AACH,MAAM,WAAW,YAAY;IACzB;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC;IACxC;;;;OAIG;IACH,UAAU,CAAC,EAAE,iBAAiB,CAAC;CAClC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
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 });
|
package/package.json
CHANGED
|
@@ -54,6 +54,7 @@ api/vonage-accounts-api.ts
|
|
|
54
54
|
api/vonage-applications-api.ts
|
|
55
55
|
api/vonage-numbers-api.ts
|
|
56
56
|
api/vonage-users-api.ts
|
|
57
|
+
api/web-apps-api.ts
|
|
57
58
|
base.ts
|
|
58
59
|
common.ts
|
|
59
60
|
configuration.ts
|
|
@@ -218,6 +219,7 @@ models/create-sub-account-command.ts
|
|
|
218
219
|
models/create-survey-form-command.ts
|
|
219
220
|
models/create-tag-command.ts
|
|
220
221
|
models/create-template-version-command.ts
|
|
222
|
+
models/create-web-app-command.ts
|
|
221
223
|
models/dash-board-model.ts
|
|
222
224
|
models/day-of-week.ts
|
|
223
225
|
models/deal-item-model.ts
|
|
@@ -238,6 +240,7 @@ models/delete-hospital-appointment-timetable-overrides-command.ts
|
|
|
238
240
|
models/delete-hospital-consultation-timetable-override-command.ts
|
|
239
241
|
models/delete-hospital-specialty-appointment-timetable-overrides-command.ts
|
|
240
242
|
models/delete-service-appointment-timetable-overrides-command.ts
|
|
243
|
+
models/deploy-status.ts
|
|
241
244
|
models/doctor-affiliation-item-model.ts
|
|
242
245
|
models/doctor-affiliation-model.ts
|
|
243
246
|
models/doctor-affiliations-model.ts
|
|
@@ -260,6 +263,7 @@ models/doctor-specialties-model.ts
|
|
|
260
263
|
models/doctor-specialty-model.ts
|
|
261
264
|
models/doctors-model.ts
|
|
262
265
|
models/doctors-simple-model.ts
|
|
266
|
+
models/domain-type.ts
|
|
263
267
|
models/duration.ts
|
|
264
268
|
models/faq-categories-model.ts
|
|
265
269
|
models/faq-category-item-model.ts
|
|
@@ -461,6 +465,7 @@ models/survey-form-element-option-input-model.ts
|
|
|
461
465
|
models/survey-form-element-option-model.ts
|
|
462
466
|
models/survey-form-element-types.ts
|
|
463
467
|
models/survey-form-item-model.ts
|
|
468
|
+
models/survey-form-language-statistics-model.ts
|
|
464
469
|
models/survey-form-model.ts
|
|
465
470
|
models/survey-form-statistics-model.ts
|
|
466
471
|
models/survey-form-status.ts
|
|
@@ -545,6 +550,7 @@ models/update-specialty-command.ts
|
|
|
545
550
|
models/update-specialty-type-command.ts
|
|
546
551
|
models/update-survey-form-command.ts
|
|
547
552
|
models/update-template-version-command.ts
|
|
553
|
+
models/update-web-app-command.ts
|
|
548
554
|
models/user-language-model.ts
|
|
549
555
|
models/user-location-model.ts
|
|
550
556
|
models/user-location-type.ts
|
|
@@ -554,6 +560,9 @@ models/vbc.ts
|
|
|
554
560
|
models/video.ts
|
|
555
561
|
models/voice.ts
|
|
556
562
|
models/vonage-user.ts
|
|
563
|
+
models/web-app-item-model.ts
|
|
564
|
+
models/web-app-model.ts
|
|
565
|
+
models/web-apps-model.ts
|
|
557
566
|
models/webhook.ts
|
|
558
567
|
models/working-day-item-model.ts
|
|
559
568
|
models/working-day-model.ts
|