ch-admin-api-client-typescript 5.14.8 → 5.14.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api/web-apps-api.d.ts +30 -299
- package/lib/api/web-apps-api.d.ts.map +1 -1
- package/lib/api/web-apps-api.js +40 -228
- package/lib/models/create-hospital-command.d.ts +0 -7
- package/lib/models/create-hospital-command.d.ts.map +1 -1
- package/lib/models/create-web-app-command.d.ts +44 -0
- package/lib/models/create-web-app-command.d.ts.map +1 -0
- package/lib/models/{domain-type.js → create-web-app-command.js} +0 -10
- package/lib/models/hospital-model.d.ts +7 -1
- package/lib/models/hospital-model.d.ts.map +1 -1
- package/lib/models/index.d.ts +3 -1
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +3 -1
- package/lib/models/update-hospital-command.d.ts +0 -7
- package/lib/models/update-hospital-command.d.ts.map +1 -1
- package/lib/models/update-web-app-command.d.ts +45 -0
- package/lib/models/update-web-app-command.d.ts.map +1 -0
- package/{src/models/domain-type.ts → lib/models/update-web-app-command.js} +2 -18
- package/lib/models/web-app-environment-model.d.ts +31 -0
- package/lib/models/web-app-environment-model.d.ts.map +1 -0
- package/lib/models/{domain-type.d.ts → web-app-environment-model.js} +4 -11
- package/lib/models/web-app-item-model.d.ts +7 -68
- package/lib/models/web-app-item-model.d.ts.map +1 -1
- package/lib/models/web-app-model.d.ts +14 -68
- package/lib/models/web-app-model.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +3 -1
- package/src/api/web-apps-api.ts +51 -479
- package/src/models/create-hospital-command.ts +0 -9
- package/src/models/create-web-app-command.ts +51 -0
- package/src/models/hospital-model.ts +7 -1
- package/src/models/index.ts +3 -1
- package/src/models/update-hospital-command.ts +0 -9
- package/src/models/update-web-app-command.ts +54 -0
- package/src/models/web-app-environment-model.ts +36 -0
- package/src/models/web-app-item-model.ts +7 -70
- package/src/models/web-app-model.ts +14 -68
- package/lib/models/domain-type.d.ts.map +0 -1
|
@@ -31,9 +31,6 @@ import { LocationModel } from './location-model';
|
|
|
31
31
|
// May contain unused imports in some cases
|
|
32
32
|
// @ts-ignore
|
|
33
33
|
import { MarketingType } from './marketing-type';
|
|
34
|
-
// May contain unused imports in some cases
|
|
35
|
-
// @ts-ignore
|
|
36
|
-
import { PaymentMethod } from './payment-method';
|
|
37
34
|
|
|
38
35
|
/**
|
|
39
36
|
*
|
|
@@ -227,11 +224,5 @@ export interface CreateHospitalCommand {
|
|
|
227
224
|
* @memberof CreateHospitalCommand
|
|
228
225
|
*/
|
|
229
226
|
'tags'?: Array<HospitalTagItemModel> | null;
|
|
230
|
-
/**
|
|
231
|
-
*
|
|
232
|
-
* @type {Array<PaymentMethod>}
|
|
233
|
-
* @memberof CreateHospitalCommand
|
|
234
|
-
*/
|
|
235
|
-
'paymentMethods'?: Array<PaymentMethod> | null;
|
|
236
227
|
}
|
|
237
228
|
|
|
@@ -0,0 +1,51 @@
|
|
|
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 { WebAppEnvironmentModel } from './web-app-environment-model';
|
|
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
|
+
'appName'?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof CreateWebAppCommand
|
|
42
|
+
*/
|
|
43
|
+
'hostName'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {Array<WebAppEnvironmentModel>}
|
|
47
|
+
* @memberof CreateWebAppCommand
|
|
48
|
+
*/
|
|
49
|
+
'webAppEnvironments'?: Array<WebAppEnvironmentModel> | null;
|
|
50
|
+
}
|
|
51
|
+
|
|
@@ -307,7 +307,13 @@ export interface HospitalModel {
|
|
|
307
307
|
* @type {string}
|
|
308
308
|
* @memberof HospitalModel
|
|
309
309
|
*/
|
|
310
|
-
'
|
|
310
|
+
'appName'?: string | null;
|
|
311
|
+
/**
|
|
312
|
+
*
|
|
313
|
+
* @type {string}
|
|
314
|
+
* @memberof HospitalModel
|
|
315
|
+
*/
|
|
316
|
+
'hostName'?: string | null;
|
|
311
317
|
/**
|
|
312
318
|
*
|
|
313
319
|
* @type {DeployStatus}
|
package/src/models/index.ts
CHANGED
|
@@ -166,6 +166,7 @@ export * from './create-sub-account-command';
|
|
|
166
166
|
export * from './create-survey-form-command';
|
|
167
167
|
export * from './create-tag-command';
|
|
168
168
|
export * from './create-template-version-command';
|
|
169
|
+
export * from './create-web-app-command';
|
|
169
170
|
export * from './curation-model';
|
|
170
171
|
export * from './curations-model';
|
|
171
172
|
export * from './dash-board-model';
|
|
@@ -211,7 +212,6 @@ export * from './doctor-specialties-model';
|
|
|
211
212
|
export * from './doctor-specialty-model';
|
|
212
213
|
export * from './doctors-model';
|
|
213
214
|
export * from './doctors-simple-model';
|
|
214
|
-
export * from './domain-type';
|
|
215
215
|
export * from './duration';
|
|
216
216
|
export * from './faq-categories-model';
|
|
217
217
|
export * from './faq-category-item-model';
|
|
@@ -510,6 +510,7 @@ export * from './update-specialty-command';
|
|
|
510
510
|
export * from './update-specialty-type-command';
|
|
511
511
|
export * from './update-survey-form-command';
|
|
512
512
|
export * from './update-template-version-command';
|
|
513
|
+
export * from './update-web-app-command';
|
|
513
514
|
export * from './upi-payment-model';
|
|
514
515
|
export * from './user';
|
|
515
516
|
export * from './user-language-model';
|
|
@@ -520,6 +521,7 @@ export * from './vbc';
|
|
|
520
521
|
export * from './video';
|
|
521
522
|
export * from './voice';
|
|
522
523
|
export * from './vonage-user';
|
|
524
|
+
export * from './web-app-environment-model';
|
|
523
525
|
export * from './web-app-item-model';
|
|
524
526
|
export * from './web-app-model';
|
|
525
527
|
export * from './web-apps-model';
|
|
@@ -31,9 +31,6 @@ import { LocationModel } from './location-model';
|
|
|
31
31
|
// May contain unused imports in some cases
|
|
32
32
|
// @ts-ignore
|
|
33
33
|
import { MarketingType } from './marketing-type';
|
|
34
|
-
// May contain unused imports in some cases
|
|
35
|
-
// @ts-ignore
|
|
36
|
-
import { PaymentMethod } from './payment-method';
|
|
37
34
|
|
|
38
35
|
/**
|
|
39
36
|
*
|
|
@@ -239,11 +236,5 @@ export interface UpdateHospitalCommand {
|
|
|
239
236
|
* @memberof UpdateHospitalCommand
|
|
240
237
|
*/
|
|
241
238
|
'tags'?: Array<HospitalTagItemModel> | null;
|
|
242
|
-
/**
|
|
243
|
-
*
|
|
244
|
-
* @type {Array<PaymentMethod>}
|
|
245
|
-
* @memberof UpdateHospitalCommand
|
|
246
|
-
*/
|
|
247
|
-
'paymentMethods'?: Array<PaymentMethod> | null;
|
|
248
239
|
}
|
|
249
240
|
|
|
@@ -0,0 +1,54 @@
|
|
|
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 { WebAppEnvironmentModel } from './web-app-environment-model';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface UpdateWebAppCommand
|
|
27
|
+
*/
|
|
28
|
+
export interface UpdateWebAppCommand {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof UpdateWebAppCommand
|
|
33
|
+
*/
|
|
34
|
+
'appName'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof UpdateWebAppCommand
|
|
39
|
+
*/
|
|
40
|
+
'hostName'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {Array<WebAppEnvironmentModel>}
|
|
44
|
+
* @memberof UpdateWebAppCommand
|
|
45
|
+
*/
|
|
46
|
+
'webAppEnvironments'?: Array<WebAppEnvironmentModel> | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {DeployStatus}
|
|
50
|
+
* @memberof UpdateWebAppCommand
|
|
51
|
+
*/
|
|
52
|
+
'deployStatus'?: DeployStatus;
|
|
53
|
+
}
|
|
54
|
+
|
|
@@ -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 WebAppEnvironmentModel
|
|
21
|
+
*/
|
|
22
|
+
export interface WebAppEnvironmentModel {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof WebAppEnvironmentModel
|
|
27
|
+
*/
|
|
28
|
+
'key'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof WebAppEnvironmentModel
|
|
33
|
+
*/
|
|
34
|
+
'value'?: string | null;
|
|
35
|
+
}
|
|
36
|
+
|
|
@@ -19,9 +19,6 @@ import { AuditableEntityModel } from './auditable-entity-model';
|
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
21
|
import { DeployStatus } from './deploy-status';
|
|
22
|
-
// May contain unused imports in some cases
|
|
23
|
-
// @ts-ignore
|
|
24
|
-
import { DomainType } from './domain-type';
|
|
25
22
|
|
|
26
23
|
/**
|
|
27
24
|
*
|
|
@@ -46,103 +43,43 @@ export interface WebAppItemModel {
|
|
|
46
43
|
* @type {string}
|
|
47
44
|
* @memberof WebAppItemModel
|
|
48
45
|
*/
|
|
49
|
-
'
|
|
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;
|
|
46
|
+
'stage'?: string | null;
|
|
68
47
|
/**
|
|
69
48
|
*
|
|
70
49
|
* @type {string}
|
|
71
50
|
* @memberof WebAppItemModel
|
|
72
51
|
*/
|
|
73
|
-
'
|
|
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;
|
|
52
|
+
'hospitalId'?: string;
|
|
110
53
|
/**
|
|
111
54
|
*
|
|
112
55
|
* @type {string}
|
|
113
56
|
* @memberof WebAppItemModel
|
|
114
57
|
*/
|
|
115
|
-
'
|
|
58
|
+
'hospitalName'?: string | null;
|
|
116
59
|
/**
|
|
117
60
|
*
|
|
118
61
|
* @type {string}
|
|
119
62
|
* @memberof WebAppItemModel
|
|
120
63
|
*/
|
|
121
|
-
'
|
|
122
|
-
/**
|
|
123
|
-
*
|
|
124
|
-
* @type {DomainType}
|
|
125
|
-
* @memberof WebAppItemModel
|
|
126
|
-
*/
|
|
127
|
-
'domainType'?: DomainType;
|
|
64
|
+
'hospitalSlug'?: string | null;
|
|
128
65
|
/**
|
|
129
66
|
*
|
|
130
67
|
* @type {string}
|
|
131
68
|
* @memberof WebAppItemModel
|
|
132
69
|
*/
|
|
133
|
-
'
|
|
70
|
+
'defaultLocale'?: string | null;
|
|
134
71
|
/**
|
|
135
72
|
*
|
|
136
73
|
* @type {string}
|
|
137
74
|
* @memberof WebAppItemModel
|
|
138
75
|
*/
|
|
139
|
-
'
|
|
76
|
+
'appName'?: string | null;
|
|
140
77
|
/**
|
|
141
78
|
*
|
|
142
79
|
* @type {string}
|
|
143
80
|
* @memberof WebAppItemModel
|
|
144
81
|
*/
|
|
145
|
-
'
|
|
82
|
+
'hostName'?: string | null;
|
|
146
83
|
/**
|
|
147
84
|
*
|
|
148
85
|
* @type {DeployStatus}
|
|
@@ -21,7 +21,7 @@ import { AuditableEntityModel } from './auditable-entity-model';
|
|
|
21
21
|
import { DeployStatus } from './deploy-status';
|
|
22
22
|
// May contain unused imports in some cases
|
|
23
23
|
// @ts-ignore
|
|
24
|
-
import {
|
|
24
|
+
import { WebAppEnvironmentModel } from './web-app-environment-model';
|
|
25
25
|
|
|
26
26
|
/**
|
|
27
27
|
*
|
|
@@ -46,103 +46,43 @@ export interface WebAppModel {
|
|
|
46
46
|
* @type {string}
|
|
47
47
|
* @memberof WebAppModel
|
|
48
48
|
*/
|
|
49
|
-
'
|
|
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;
|
|
49
|
+
'stage'?: string | null;
|
|
62
50
|
/**
|
|
63
51
|
*
|
|
64
52
|
* @type {string}
|
|
65
53
|
* @memberof WebAppModel
|
|
66
54
|
*/
|
|
67
|
-
'
|
|
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;
|
|
55
|
+
'hospitalId'?: string;
|
|
110
56
|
/**
|
|
111
57
|
*
|
|
112
58
|
* @type {string}
|
|
113
59
|
* @memberof WebAppModel
|
|
114
60
|
*/
|
|
115
|
-
'
|
|
61
|
+
'hospitalName'?: string | null;
|
|
116
62
|
/**
|
|
117
63
|
*
|
|
118
64
|
* @type {string}
|
|
119
65
|
* @memberof WebAppModel
|
|
120
66
|
*/
|
|
121
|
-
'
|
|
122
|
-
/**
|
|
123
|
-
*
|
|
124
|
-
* @type {DomainType}
|
|
125
|
-
* @memberof WebAppModel
|
|
126
|
-
*/
|
|
127
|
-
'domainType'?: DomainType;
|
|
67
|
+
'hospitalSlug'?: string | null;
|
|
128
68
|
/**
|
|
129
69
|
*
|
|
130
70
|
* @type {string}
|
|
131
71
|
* @memberof WebAppModel
|
|
132
72
|
*/
|
|
133
|
-
'
|
|
73
|
+
'defaultLocale'?: string | null;
|
|
134
74
|
/**
|
|
135
75
|
*
|
|
136
76
|
* @type {string}
|
|
137
77
|
* @memberof WebAppModel
|
|
138
78
|
*/
|
|
139
|
-
'
|
|
79
|
+
'appName'?: string | null;
|
|
140
80
|
/**
|
|
141
81
|
*
|
|
142
82
|
* @type {string}
|
|
143
83
|
* @memberof WebAppModel
|
|
144
84
|
*/
|
|
145
|
-
'
|
|
85
|
+
'hostName'?: string | null;
|
|
146
86
|
/**
|
|
147
87
|
*
|
|
148
88
|
* @type {DeployStatus}
|
|
@@ -155,5 +95,11 @@ export interface WebAppModel {
|
|
|
155
95
|
* @memberof WebAppModel
|
|
156
96
|
*/
|
|
157
97
|
'auditableEntity'?: AuditableEntityModel;
|
|
98
|
+
/**
|
|
99
|
+
*
|
|
100
|
+
* @type {Array<WebAppEnvironmentModel>}
|
|
101
|
+
* @memberof WebAppModel
|
|
102
|
+
*/
|
|
103
|
+
'webAppEnvironments'?: Array<WebAppEnvironmentModel> | null;
|
|
158
104
|
}
|
|
159
105
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"domain-type.d.ts","sourceRoot":"","sources":["../../src/models/domain-type.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AAEH,eAAO,MAAM,UAAU;;;CAGb,CAAC;AAEX,MAAM,MAAM,UAAU,GAAG,OAAO,UAAU,CAAC,MAAM,OAAO,UAAU,CAAC,CAAC"}
|