ch-admin-api-client-typescript 5.1.9 → 5.2.1
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/grades-api.d.ts +339 -0
- package/lib/api/grades-api.d.ts.map +1 -0
- package/lib/api/grades-api.js +600 -0
- package/lib/api/hospitals-api.d.ts +343 -0
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +497 -0
- package/lib/api/survey-results-api.d.ts +12 -3
- package/lib/api/survey-results-api.d.ts.map +1 -1
- package/lib/api/survey-results-api.js +12 -6
- package/lib/api.d.ts +1 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1 -0
- package/lib/models/contact-scope.d.ts +22 -0
- package/lib/models/contact-scope.d.ts.map +1 -0
- package/lib/models/contact-scope.js +25 -0
- package/lib/models/create-grade-command.d.ts +44 -0
- package/lib/models/create-grade-command.d.ts.map +1 -0
- package/lib/models/create-hospital-command.d.ts +6 -0
- package/lib/models/create-hospital-command.d.ts.map +1 -1
- package/lib/models/create-hospital-contact-command.d.ts +62 -0
- package/lib/models/create-hospital-contact-command.d.ts.map +1 -0
- package/lib/models/create-hospital-contact-command.js +15 -0
- package/lib/models/create-survey-form-command.d.ts +6 -0
- package/lib/models/create-survey-form-command.d.ts.map +1 -1
- package/lib/models/grade-item-model.d.ts +57 -0
- package/lib/models/grade-item-model.d.ts.map +1 -0
- package/lib/models/grade-item-model.js +15 -0
- package/lib/models/grade-model.d.ts +57 -0
- package/lib/models/grade-model.d.ts.map +1 -0
- package/lib/models/grade-model.js +15 -0
- package/lib/models/grade-targets.d.ts +22 -0
- package/lib/models/grade-targets.d.ts.map +1 -0
- package/lib/models/grade-targets.js +25 -0
- package/lib/models/grades-model.d.ts +33 -0
- package/lib/models/grades-model.d.ts.map +1 -0
- package/lib/models/grades-model.js +15 -0
- package/lib/models/hospital-contact-item-model.d.ts +80 -0
- package/lib/models/hospital-contact-item-model.d.ts.map +1 -0
- package/lib/models/hospital-contact-item-model.js +15 -0
- package/lib/models/hospital-contact-model.d.ts +80 -0
- package/lib/models/hospital-contact-model.d.ts.map +1 -0
- package/lib/models/hospital-contact-model.js +15 -0
- package/lib/models/hospital-contacts-model.d.ts +33 -0
- package/lib/models/hospital-contacts-model.d.ts.map +1 -0
- package/lib/models/hospital-contacts-model.js +15 -0
- package/lib/models/hospital-item-model.d.ts +13 -0
- package/lib/models/hospital-item-model.d.ts.map +1 -1
- package/lib/models/hospital-model.d.ts +13 -0
- package/lib/models/hospital-model.d.ts.map +1 -1
- package/lib/models/index.d.ts +12 -1
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +12 -1
- package/lib/models/survey-form-item-model.d.ts +6 -0
- package/lib/models/survey-form-item-model.d.ts.map +1 -1
- package/lib/models/survey-form-model.d.ts +6 -0
- package/lib/models/survey-form-model.d.ts.map +1 -1
- package/lib/models/survey-results-model.d.ts +3 -3
- package/lib/models/survey-results-model.d.ts.map +1 -1
- package/lib/models/update-grade-command.d.ts +37 -0
- package/lib/models/update-grade-command.d.ts.map +1 -0
- package/lib/models/update-grade-command.js +15 -0
- package/lib/models/update-hospital-command.d.ts +6 -0
- package/lib/models/update-hospital-command.d.ts.map +1 -1
- package/lib/models/update-hospital-contact-command.d.ts +62 -0
- package/lib/models/update-hospital-contact-command.d.ts.map +1 -0
- package/lib/models/update-hospital-contact-command.js +15 -0
- package/lib/models/update-survey-form-command.d.ts +6 -0
- package/lib/models/update-survey-form-command.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +13 -1
- package/src/api/grades-api.ts +595 -0
- package/src/api/hospitals-api.ts +600 -0
- package/src/api/survey-results-api.ts +20 -6
- package/src/api.ts +1 -0
- package/src/models/contact-scope.ts +31 -0
- package/src/models/create-grade-command.ts +51 -0
- package/src/models/create-hospital-command.ts +6 -0
- package/src/models/create-hospital-contact-command.ts +69 -0
- package/src/models/create-survey-form-command.ts +6 -0
- package/src/models/grade-item-model.ts +66 -0
- package/src/models/grade-model.ts +66 -0
- package/src/models/grade-targets.ts +31 -0
- package/src/models/grades-model.ts +42 -0
- package/src/models/hospital-contact-item-model.ts +87 -0
- package/src/models/{survey-result-item-model.ts → hospital-contact-model.ts} +27 -21
- package/src/models/hospital-contacts-model.ts +42 -0
- package/src/models/hospital-item-model.ts +15 -0
- package/src/models/hospital-model.ts +15 -0
- package/src/models/index.ts +12 -1
- package/src/models/survey-form-item-model.ts +6 -0
- package/src/models/survey-form-model.ts +6 -0
- package/src/models/survey-results-model.ts +3 -3
- package/src/models/update-grade-command.ts +42 -0
- package/src/models/update-hospital-command.ts +6 -0
- package/src/models/update-hospital-contact-command.ts +69 -0
- package/src/models/update-survey-form-command.ts +6 -0
- package/lib/models/survey-result-item-model.d.ts +0 -74
- package/lib/models/survey-result-item-model.d.ts.map +0 -1
- /package/lib/models/{survey-result-item-model.js → create-grade-command.js} +0 -0
|
@@ -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 { HospitalContactItemModel } from './hospital-contact-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 HospitalContactsModel
|
|
27
|
+
*/
|
|
28
|
+
export interface HospitalContactsModel {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {Array<HospitalContactItemModel>}
|
|
32
|
+
* @memberof HospitalContactsModel
|
|
33
|
+
*/
|
|
34
|
+
'items'?: Array<HospitalContactItemModel> | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {PagedListMetaData}
|
|
38
|
+
* @memberof HospitalContactsModel
|
|
39
|
+
*/
|
|
40
|
+
'metaData'?: PagedListMetaData;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -21,6 +21,9 @@ import { AppointmentOptionModel } from './appointment-option-model';
|
|
|
21
21
|
import { AuditableEntity } from './auditable-entity';
|
|
22
22
|
// May contain unused imports in some cases
|
|
23
23
|
// @ts-ignore
|
|
24
|
+
import { GradeModel } from './grade-model';
|
|
25
|
+
// May contain unused imports in some cases
|
|
26
|
+
// @ts-ignore
|
|
24
27
|
import { HospitalConsultationOptionModel } from './hospital-consultation-option-model';
|
|
25
28
|
// May contain unused imports in some cases
|
|
26
29
|
// @ts-ignore
|
|
@@ -146,6 +149,18 @@ export interface HospitalItemModel {
|
|
|
146
149
|
* @memberof HospitalItemModel
|
|
147
150
|
*/
|
|
148
151
|
'appointmentOption'?: AppointmentOptionModel;
|
|
152
|
+
/**
|
|
153
|
+
*
|
|
154
|
+
* @type {string}
|
|
155
|
+
* @memberof HospitalItemModel
|
|
156
|
+
*/
|
|
157
|
+
'gradeId'?: string | null;
|
|
158
|
+
/**
|
|
159
|
+
*
|
|
160
|
+
* @type {GradeModel}
|
|
161
|
+
* @memberof HospitalItemModel
|
|
162
|
+
*/
|
|
163
|
+
'grade'?: GradeModel;
|
|
149
164
|
/**
|
|
150
165
|
*
|
|
151
166
|
* @type {AuditableEntity}
|
|
@@ -21,6 +21,9 @@ import { AppointmentOptionModel } from './appointment-option-model';
|
|
|
21
21
|
import { AuditableEntity } from './auditable-entity';
|
|
22
22
|
// May contain unused imports in some cases
|
|
23
23
|
// @ts-ignore
|
|
24
|
+
import { GradeModel } from './grade-model';
|
|
25
|
+
// May contain unused imports in some cases
|
|
26
|
+
// @ts-ignore
|
|
24
27
|
import { HospitalConsultationOptionModel } from './hospital-consultation-option-model';
|
|
25
28
|
// May contain unused imports in some cases
|
|
26
29
|
// @ts-ignore
|
|
@@ -149,6 +152,18 @@ export interface HospitalModel {
|
|
|
149
152
|
* @memberof HospitalModel
|
|
150
153
|
*/
|
|
151
154
|
'appointmentOption'?: AppointmentOptionModel;
|
|
155
|
+
/**
|
|
156
|
+
*
|
|
157
|
+
* @type {string}
|
|
158
|
+
* @memberof HospitalModel
|
|
159
|
+
*/
|
|
160
|
+
'gradeId'?: string | null;
|
|
161
|
+
/**
|
|
162
|
+
*
|
|
163
|
+
* @type {GradeModel}
|
|
164
|
+
* @memberof HospitalModel
|
|
165
|
+
*/
|
|
166
|
+
'grade'?: GradeModel;
|
|
152
167
|
/**
|
|
153
168
|
*
|
|
154
169
|
* @type {AuditableEntity}
|
package/src/models/index.ts
CHANGED
|
@@ -71,6 +71,7 @@ export * from './consultation-model';
|
|
|
71
71
|
export * from './consultation-status';
|
|
72
72
|
export * from './consultation-type';
|
|
73
73
|
export * from './consultations-model';
|
|
74
|
+
export * from './contact-scope';
|
|
74
75
|
export * from './contribution-type';
|
|
75
76
|
export * from './contributor-item-model';
|
|
76
77
|
export * from './contributor-model';
|
|
@@ -105,9 +106,11 @@ export * from './create-doctor-specialty-command';
|
|
|
105
106
|
export * from './create-faq-category-command';
|
|
106
107
|
export * from './create-faq-command';
|
|
107
108
|
export * from './create-faq-tag-command';
|
|
109
|
+
export * from './create-grade-command';
|
|
108
110
|
export * from './create-hospital-accreditation-command';
|
|
109
111
|
export * from './create-hospital-command';
|
|
110
112
|
export * from './create-hospital-consultation-timetable-command';
|
|
113
|
+
export * from './create-hospital-contact-command';
|
|
111
114
|
export * from './create-hospital-equipment-command';
|
|
112
115
|
export * from './create-hospital-evaluation-command';
|
|
113
116
|
export * from './create-hospital-language-command';
|
|
@@ -178,6 +181,10 @@ export * from './faq-tag-model';
|
|
|
178
181
|
export * from './faq-tags-model';
|
|
179
182
|
export * from './faqs-model';
|
|
180
183
|
export * from './gender';
|
|
184
|
+
export * from './grade-item-model';
|
|
185
|
+
export * from './grade-model';
|
|
186
|
+
export * from './grade-targets';
|
|
187
|
+
export * from './grades-model';
|
|
181
188
|
export * from './group-channel';
|
|
182
189
|
export * from './group-channel-list';
|
|
183
190
|
export * from './header-navigation-item-model';
|
|
@@ -191,6 +198,9 @@ export * from './hospital-consultation-timetable-override-item-model';
|
|
|
191
198
|
export * from './hospital-consultation-timetable-override-model';
|
|
192
199
|
export * from './hospital-consultation-timetable-overrides-model';
|
|
193
200
|
export * from './hospital-consultation-timetables-model';
|
|
201
|
+
export * from './hospital-contact-item-model';
|
|
202
|
+
export * from './hospital-contact-model';
|
|
203
|
+
export * from './hospital-contacts-model';
|
|
194
204
|
export * from './hospital-equipment-item-model';
|
|
195
205
|
export * from './hospital-equipment-model';
|
|
196
206
|
export * from './hospital-equipments-model';
|
|
@@ -320,7 +330,6 @@ export * from './survey-form-status';
|
|
|
320
330
|
export * from './survey-forms-model';
|
|
321
331
|
export * from './survey-result-element-model';
|
|
322
332
|
export * from './survey-result-element-value-model';
|
|
323
|
-
export * from './survey-result-item-model';
|
|
324
333
|
export * from './survey-result-model';
|
|
325
334
|
export * from './survey-result-user-model';
|
|
326
335
|
export * from './survey-results-model';
|
|
@@ -359,8 +368,10 @@ export * from './update-doctor-portfolio-command';
|
|
|
359
368
|
export * from './update-doctor-specialty-command';
|
|
360
369
|
export * from './update-faq-category-command';
|
|
361
370
|
export * from './update-faq-command';
|
|
371
|
+
export * from './update-grade-command';
|
|
362
372
|
export * from './update-hospital-command';
|
|
363
373
|
export * from './update-hospital-consultation-timetable-command';
|
|
374
|
+
export * from './update-hospital-contact-command';
|
|
364
375
|
export * from './update-hospital-equipment-command';
|
|
365
376
|
export * from './update-hospital-language-command';
|
|
366
377
|
export * from './update-hospital-service-command';
|
|
@@ -50,6 +50,12 @@ export interface SurveyFormItemModel {
|
|
|
50
50
|
* @memberof SurveyFormItemModel
|
|
51
51
|
*/
|
|
52
52
|
'status'?: SurveyFormStatus;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof SurveyFormItemModel
|
|
57
|
+
*/
|
|
58
|
+
'urlAfterDone'?: string | null;
|
|
53
59
|
/**
|
|
54
60
|
*
|
|
55
61
|
* @type {string}
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
import { PagedListMetaData } from './paged-list-meta-data';
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
|
-
import {
|
|
21
|
+
import { SurveyResultModel } from './survey-result-model';
|
|
22
22
|
|
|
23
23
|
/**
|
|
24
24
|
*
|
|
@@ -28,10 +28,10 @@ import { SurveyResultItemModel } from './survey-result-item-model';
|
|
|
28
28
|
export interface SurveyResultsModel {
|
|
29
29
|
/**
|
|
30
30
|
*
|
|
31
|
-
* @type {Array<
|
|
31
|
+
* @type {Array<SurveyResultModel>}
|
|
32
32
|
* @memberof SurveyResultsModel
|
|
33
33
|
*/
|
|
34
|
-
'items'?: Array<
|
|
34
|
+
'items'?: Array<SurveyResultModel> | null;
|
|
35
35
|
/**
|
|
36
36
|
*
|
|
37
37
|
* @type {PagedListMetaData}
|
|
@@ -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 UpdateGradeCommand
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateGradeCommand {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof UpdateGradeCommand
|
|
27
|
+
*/
|
|
28
|
+
'name'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof UpdateGradeCommand
|
|
33
|
+
*/
|
|
34
|
+
'searchBonus'?: number;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof UpdateGradeCommand
|
|
39
|
+
*/
|
|
40
|
+
'order'?: number;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -170,6 +170,12 @@ export interface UpdateHospitalCommand {
|
|
|
170
170
|
* @memberof UpdateHospitalCommand
|
|
171
171
|
*/
|
|
172
172
|
'confirmed'?: boolean;
|
|
173
|
+
/**
|
|
174
|
+
*
|
|
175
|
+
* @type {string}
|
|
176
|
+
* @memberof UpdateHospitalCommand
|
|
177
|
+
*/
|
|
178
|
+
'gradeId'?: string | null;
|
|
173
179
|
/**
|
|
174
180
|
*
|
|
175
181
|
* @type {AppointmentOptionModel}
|
|
@@ -0,0 +1,69 @@
|
|
|
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 { ContactScope } from './contact-scope';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface UpdateHospitalContactCommand
|
|
24
|
+
*/
|
|
25
|
+
export interface UpdateHospitalContactCommand {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof UpdateHospitalContactCommand
|
|
30
|
+
*/
|
|
31
|
+
'name'?: string | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {ContactScope}
|
|
35
|
+
* @memberof UpdateHospitalContactCommand
|
|
36
|
+
*/
|
|
37
|
+
'scope'?: ContactScope;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof UpdateHospitalContactCommand
|
|
42
|
+
*/
|
|
43
|
+
'tel'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof UpdateHospitalContactCommand
|
|
48
|
+
*/
|
|
49
|
+
'targetTel'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof UpdateHospitalContactCommand
|
|
54
|
+
*/
|
|
55
|
+
'email'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof UpdateHospitalContactCommand
|
|
60
|
+
*/
|
|
61
|
+
'languageCode'?: string | null;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {number}
|
|
65
|
+
* @memberof UpdateHospitalContactCommand
|
|
66
|
+
*/
|
|
67
|
+
'order'?: number;
|
|
68
|
+
}
|
|
69
|
+
|
|
@@ -38,6 +38,12 @@ export interface UpdateSurveyFormCommand {
|
|
|
38
38
|
* @memberof UpdateSurveyFormCommand
|
|
39
39
|
*/
|
|
40
40
|
'status'?: SurveyFormStatus;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof UpdateSurveyFormCommand
|
|
45
|
+
*/
|
|
46
|
+
'urlAfterDone'?: string | null;
|
|
41
47
|
/**
|
|
42
48
|
*
|
|
43
49
|
* @type {string}
|
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
3
|
-
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1
|
|
6
|
-
* Contact: hyounoosung@icloudhospital.com
|
|
7
|
-
*
|
|
8
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
-
* https://openapi-generator.tech
|
|
10
|
-
* Do not edit the class manually.
|
|
11
|
-
*/
|
|
12
|
-
import { SurveyResultUserModel } from './survey-result-user-model';
|
|
13
|
-
/**
|
|
14
|
-
*
|
|
15
|
-
* @export
|
|
16
|
-
* @interface SurveyResultItemModel
|
|
17
|
-
*/
|
|
18
|
-
export interface SurveyResultItemModel {
|
|
19
|
-
/**
|
|
20
|
-
*
|
|
21
|
-
* @type {string}
|
|
22
|
-
* @memberof SurveyResultItemModel
|
|
23
|
-
*/
|
|
24
|
-
'id'?: string;
|
|
25
|
-
/**
|
|
26
|
-
*
|
|
27
|
-
* @type {string}
|
|
28
|
-
* @memberof SurveyResultItemModel
|
|
29
|
-
*/
|
|
30
|
-
'surveyFormId'?: string;
|
|
31
|
-
/**
|
|
32
|
-
*
|
|
33
|
-
* @type {string}
|
|
34
|
-
* @memberof SurveyResultItemModel
|
|
35
|
-
*/
|
|
36
|
-
'surveyFormName'?: string | null;
|
|
37
|
-
/**
|
|
38
|
-
*
|
|
39
|
-
* @type {string}
|
|
40
|
-
* @memberof SurveyResultItemModel
|
|
41
|
-
*/
|
|
42
|
-
'hospitalId'?: string;
|
|
43
|
-
/**
|
|
44
|
-
*
|
|
45
|
-
* @type {string}
|
|
46
|
-
* @memberof SurveyResultItemModel
|
|
47
|
-
*/
|
|
48
|
-
'hospitalName'?: string | null;
|
|
49
|
-
/**
|
|
50
|
-
*
|
|
51
|
-
* @type {string}
|
|
52
|
-
* @memberof SurveyResultItemModel
|
|
53
|
-
*/
|
|
54
|
-
'languageCode'?: string | null;
|
|
55
|
-
/**
|
|
56
|
-
*
|
|
57
|
-
* @type {string}
|
|
58
|
-
* @memberof SurveyResultItemModel
|
|
59
|
-
*/
|
|
60
|
-
'userId'?: string | null;
|
|
61
|
-
/**
|
|
62
|
-
*
|
|
63
|
-
* @type {SurveyResultUserModel}
|
|
64
|
-
* @memberof SurveyResultItemModel
|
|
65
|
-
*/
|
|
66
|
-
'user'?: SurveyResultUserModel;
|
|
67
|
-
/**
|
|
68
|
-
*
|
|
69
|
-
* @type {Date}
|
|
70
|
-
* @memberof SurveyResultItemModel
|
|
71
|
-
*/
|
|
72
|
-
'createdDate'?: Date;
|
|
73
|
-
}
|
|
74
|
-
//# sourceMappingURL=survey-result-item-model.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"survey-result-item-model.d.ts","sourceRoot":"","sources":["../../src/models/survey-result-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC;AAEnE;;;;GAIG;AACH,MAAM,WAAW,qBAAqB;IAClC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;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,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,MAAM,CAAC,EAAE,qBAAqB,CAAC;IAC/B;;;;OAIG;IACH,aAAa,CAAC,EAAE,IAAI,CAAC;CACxB"}
|
|
File without changes
|