ch-api-client-typescript2 5.4.6 → 5.4.9
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/deals-api.d.ts +34 -116
- package/lib/api/deals-api.d.ts.map +1 -1
- package/lib/api/deals-api.js +41 -150
- package/lib/api/doctor-affiliations-api.d.ts +12 -3
- package/lib/api/doctor-affiliations-api.d.ts.map +1 -1
- package/lib/api/doctor-affiliations-api.js +12 -6
- package/lib/api/hospitals-api.d.ts +36 -9
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +36 -18
- package/lib/models/appointment-type.d.ts +0 -1
- package/lib/models/appointment-type.d.ts.map +1 -1
- package/lib/models/appointment-type.js +0 -1
- package/lib/models/auditable-entity-model.d.ts +67 -0
- package/lib/models/auditable-entity-model.d.ts.map +1 -0
- package/lib/models/create-appointment-command.d.ts +0 -6
- package/lib/models/create-appointment-command.d.ts.map +1 -1
- package/lib/models/deal-document-model.d.ts +3 -16
- package/lib/models/deal-document-model.d.ts.map +1 -1
- package/lib/models/deal-item-model.d.ts +26 -8
- package/lib/models/deal-item-model.d.ts.map +1 -1
- package/lib/models/deal-model.d.ts +26 -8
- package/lib/models/deal-model.d.ts.map +1 -1
- package/lib/models/deal-package-item-model.d.ts +34 -3
- package/lib/models/deal-package-item-model.d.ts.map +1 -1
- package/lib/models/deal-package-model.d.ts +34 -3
- package/lib/models/deal-package-model.d.ts.map +1 -1
- package/lib/models/doctor-affiliation-item-model.d.ts +26 -8
- package/lib/models/doctor-affiliation-item-model.d.ts.map +1 -1
- package/lib/models/doctor-affiliation-model.d.ts +26 -8
- package/lib/models/doctor-affiliation-model.d.ts.map +1 -1
- package/lib/models/doctor-document-model.d.ts +3 -9
- package/lib/models/doctor-document-model.d.ts.map +1 -1
- package/lib/models/doctor-item-model.d.ts +0 -7
- package/lib/models/doctor-item-model.d.ts.map +1 -1
- package/lib/models/doctor-model.d.ts +0 -7
- package/lib/models/doctor-model.d.ts.map +1 -1
- package/lib/models/hospital-document-model.d.ts +3 -9
- package/lib/models/hospital-document-model.d.ts.map +1 -1
- package/lib/models/hospital-feature-detail-document-model.d.ts +56 -0
- package/lib/models/hospital-feature-detail-document-model.d.ts.map +1 -0
- package/lib/models/hospital-feature-detail-model.d.ts +56 -0
- package/lib/models/hospital-feature-detail-model.d.ts.map +1 -0
- package/lib/models/hospital-feature-detail-model.js +15 -0
- package/lib/models/hospital-feature-document-model.d.ts +32 -0
- package/lib/models/hospital-feature-document-model.d.ts.map +1 -0
- package/lib/models/hospital-feature-document-model.js +15 -0
- package/lib/models/hospital-feature-domain-document-model.d.ts +50 -0
- package/lib/models/hospital-feature-domain-document-model.d.ts.map +1 -0
- package/lib/models/hospital-feature-domain-document-model.js +15 -0
- package/lib/models/hospital-feature-domain-model.d.ts +50 -0
- package/lib/models/hospital-feature-domain-model.d.ts.map +1 -0
- package/lib/models/hospital-feature-domain-model.js +15 -0
- package/lib/models/{feature-document-model.d.ts → hospital-feature-model.d.ts} +10 -15
- package/lib/models/hospital-feature-model.d.ts.map +1 -0
- package/lib/models/hospital-feature-model.js +15 -0
- package/lib/models/hospital-item-model.d.ts +22 -4
- package/lib/models/hospital-item-model.d.ts.map +1 -1
- package/lib/models/hospital-model.d.ts +22 -4
- package/lib/models/hospital-model.d.ts.map +1 -1
- package/lib/models/hospital-service-item-model.d.ts +34 -3
- package/lib/models/hospital-service-item-model.d.ts.map +1 -1
- package/lib/models/hospital-service-model.d.ts +34 -3
- package/lib/models/hospital-service-model.d.ts.map +1 -1
- package/lib/models/hospital-specialty-item-model.d.ts +34 -3
- package/lib/models/hospital-specialty-item-model.d.ts.map +1 -1
- package/lib/models/hospital-specialty-model.d.ts +34 -3
- package/lib/models/hospital-specialty-model.d.ts.map +1 -1
- package/lib/models/hospital-sub-document-model.d.ts +7 -0
- package/lib/models/hospital-sub-document-model.d.ts.map +1 -1
- package/lib/models/index.d.ts +9 -2
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +9 -2
- package/lib/models/survey-form-simple-mapping-model.d.ts +39 -0
- package/lib/models/survey-form-simple-mapping-model.d.ts.map +1 -0
- package/lib/models/survey-form-simple-mapping-model.js +15 -0
- package/lib/models/{feature-model.d.ts → survey-form-sub-document-model.d.ts} +9 -15
- package/lib/models/survey-form-sub-document-model.d.ts.map +1 -0
- package/lib/models/survey-form-sub-document-model.js +15 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +9 -2
- package/src/api/deals-api.ts +58 -199
- package/src/api/doctor-affiliations-api.ts +20 -6
- package/src/api/hospitals-api.ts +60 -18
- package/src/models/appointment-type.ts +0 -1
- package/src/models/auditable-entity-model.ts +72 -0
- package/src/models/create-appointment-command.ts +0 -6
- package/src/models/deal-document-model.ts +3 -18
- package/src/models/deal-item-model.ts +26 -8
- package/src/models/deal-model.ts +26 -8
- package/src/models/deal-package-item-model.ts +36 -3
- package/src/models/deal-package-model.ts +36 -3
- package/src/models/doctor-affiliation-item-model.ts +26 -8
- package/src/models/doctor-affiliation-model.ts +26 -8
- package/src/models/doctor-document-model.ts +3 -9
- package/src/models/doctor-item-model.ts +0 -9
- package/src/models/doctor-model.ts +0 -9
- package/src/models/hospital-document-model.ts +5 -11
- package/src/models/hospital-feature-detail-document-model.ts +63 -0
- package/src/models/hospital-feature-detail-model.ts +63 -0
- package/src/models/hospital-feature-document-model.ts +39 -0
- package/src/models/hospital-feature-domain-document-model.ts +57 -0
- package/src/models/hospital-feature-domain-model.ts +57 -0
- package/src/models/{feature-document-model.ts → hospital-feature-model.ts} +11 -14
- package/src/models/hospital-item-model.ts +24 -6
- package/src/models/hospital-model.ts +24 -6
- package/src/models/hospital-service-item-model.ts +36 -3
- package/src/models/hospital-service-model.ts +36 -3
- package/src/models/hospital-specialty-item-model.ts +36 -3
- package/src/models/hospital-specialty-model.ts +36 -3
- package/src/models/hospital-sub-document-model.ts +9 -0
- package/src/models/index.ts +9 -2
- package/src/models/survey-form-simple-mapping-model.ts +48 -0
- package/src/models/{feature-model.ts → survey-form-sub-document-model.ts} +8 -14
- package/lib/models/feature-document-model.d.ts.map +0 -1
- package/lib/models/feature-model.d.ts.map +0 -1
- /package/lib/models/{feature-document-model.js → auditable-entity-model.js} +0 -0
- /package/lib/models/{feature-model.js → hospital-feature-detail-document-model.js} +0 -0
|
@@ -21,9 +21,6 @@ import { AppointmentOptionModel } from './appointment-option-model';
|
|
|
21
21
|
import { AwardModel } from './award-model';
|
|
22
22
|
// May contain unused imports in some cases
|
|
23
23
|
// @ts-ignore
|
|
24
|
-
import { FeatureModel } from './feature-model';
|
|
25
|
-
// May contain unused imports in some cases
|
|
26
|
-
// @ts-ignore
|
|
27
24
|
import { GradeModel } from './grade-model';
|
|
28
25
|
// May contain unused imports in some cases
|
|
29
26
|
// @ts-ignore
|
|
@@ -39,6 +36,9 @@ import { HospitalContactItemModel } from './hospital-contact-item-model';
|
|
|
39
36
|
import { HospitalEvaluationItemModel } from './hospital-evaluation-item-model';
|
|
40
37
|
// May contain unused imports in some cases
|
|
41
38
|
// @ts-ignore
|
|
39
|
+
import { HospitalFeatureModel } from './hospital-feature-model';
|
|
40
|
+
// May contain unused imports in some cases
|
|
41
|
+
// @ts-ignore
|
|
42
42
|
import { HospitalLanguageItemModel } from './hospital-language-item-model';
|
|
43
43
|
// May contain unused imports in some cases
|
|
44
44
|
// @ts-ignore
|
|
@@ -154,7 +154,25 @@ export interface HospitalModel {
|
|
|
154
154
|
* @type {string}
|
|
155
155
|
* @memberof HospitalModel
|
|
156
156
|
*/
|
|
157
|
-
'
|
|
157
|
+
'chSurveyFormId'?: string | null;
|
|
158
|
+
/**
|
|
159
|
+
*
|
|
160
|
+
* @type {string}
|
|
161
|
+
* @memberof HospitalModel
|
|
162
|
+
*/
|
|
163
|
+
'saasSurveyFormId'?: string | null;
|
|
164
|
+
/**
|
|
165
|
+
*
|
|
166
|
+
* @type {string}
|
|
167
|
+
* @memberof HospitalModel
|
|
168
|
+
*/
|
|
169
|
+
'formUrlForChLink'?: string | null;
|
|
170
|
+
/**
|
|
171
|
+
*
|
|
172
|
+
* @type {string}
|
|
173
|
+
* @memberof HospitalModel
|
|
174
|
+
*/
|
|
175
|
+
'formUrlForSaasLink'?: string | null;
|
|
158
176
|
/**
|
|
159
177
|
*
|
|
160
178
|
* @type {string}
|
|
@@ -181,10 +199,10 @@ export interface HospitalModel {
|
|
|
181
199
|
'appointmentOption'?: AppointmentOptionModel;
|
|
182
200
|
/**
|
|
183
201
|
*
|
|
184
|
-
* @type {
|
|
202
|
+
* @type {HospitalFeatureModel}
|
|
185
203
|
* @memberof HospitalModel
|
|
186
204
|
*/
|
|
187
|
-
'feature'?:
|
|
205
|
+
'feature'?: HospitalFeatureModel;
|
|
188
206
|
/**
|
|
189
207
|
*
|
|
190
208
|
* @type {GradeModel}
|
|
@@ -18,7 +18,10 @@
|
|
|
18
18
|
import { AppointmentOptionModel } from './appointment-option-model';
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
|
-
import {
|
|
21
|
+
import { AuditableEntityModel } from './auditable-entity-model';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import { HospitalFeatureModel } from './hospital-feature-model';
|
|
22
25
|
// May contain unused imports in some cases
|
|
23
26
|
// @ts-ignore
|
|
24
27
|
import { Procedure } from './procedure';
|
|
@@ -133,9 +136,39 @@ export interface HospitalServiceItemModel {
|
|
|
133
136
|
'appointmentOption'?: AppointmentOptionModel;
|
|
134
137
|
/**
|
|
135
138
|
*
|
|
136
|
-
* @type {
|
|
139
|
+
* @type {HospitalFeatureModel}
|
|
140
|
+
* @memberof HospitalServiceItemModel
|
|
141
|
+
*/
|
|
142
|
+
'feature'?: HospitalFeatureModel;
|
|
143
|
+
/**
|
|
144
|
+
*
|
|
145
|
+
* @type {string}
|
|
146
|
+
* @memberof HospitalServiceItemModel
|
|
147
|
+
*/
|
|
148
|
+
'chSurveyFormId'?: string | null;
|
|
149
|
+
/**
|
|
150
|
+
*
|
|
151
|
+
* @type {string}
|
|
152
|
+
* @memberof HospitalServiceItemModel
|
|
153
|
+
*/
|
|
154
|
+
'saasSurveyFormId'?: string | null;
|
|
155
|
+
/**
|
|
156
|
+
*
|
|
157
|
+
* @type {string}
|
|
158
|
+
* @memberof HospitalServiceItemModel
|
|
159
|
+
*/
|
|
160
|
+
'formUrlForChLink'?: string | null;
|
|
161
|
+
/**
|
|
162
|
+
*
|
|
163
|
+
* @type {string}
|
|
164
|
+
* @memberof HospitalServiceItemModel
|
|
165
|
+
*/
|
|
166
|
+
'formUrlForSaasLink'?: string | null;
|
|
167
|
+
/**
|
|
168
|
+
*
|
|
169
|
+
* @type {AuditableEntityModel}
|
|
137
170
|
* @memberof HospitalServiceItemModel
|
|
138
171
|
*/
|
|
139
|
-
'auditableEntity'?:
|
|
172
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
140
173
|
}
|
|
141
174
|
|
|
@@ -18,7 +18,10 @@
|
|
|
18
18
|
import { AppointmentOptionModel } from './appointment-option-model';
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
|
-
import {
|
|
21
|
+
import { AuditableEntityModel } from './auditable-entity-model';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import { HospitalFeatureModel } from './hospital-feature-model';
|
|
22
25
|
// May contain unused imports in some cases
|
|
23
26
|
// @ts-ignore
|
|
24
27
|
import { LocalizedUrlModel } from './localized-url-model';
|
|
@@ -139,10 +142,40 @@ export interface HospitalServiceModel {
|
|
|
139
142
|
'appointmentOption'?: AppointmentOptionModel;
|
|
140
143
|
/**
|
|
141
144
|
*
|
|
142
|
-
* @type {
|
|
145
|
+
* @type {HospitalFeatureModel}
|
|
146
|
+
* @memberof HospitalServiceModel
|
|
147
|
+
*/
|
|
148
|
+
'feature'?: HospitalFeatureModel;
|
|
149
|
+
/**
|
|
150
|
+
*
|
|
151
|
+
* @type {string}
|
|
152
|
+
* @memberof HospitalServiceModel
|
|
153
|
+
*/
|
|
154
|
+
'chSurveyFormId'?: string | null;
|
|
155
|
+
/**
|
|
156
|
+
*
|
|
157
|
+
* @type {string}
|
|
158
|
+
* @memberof HospitalServiceModel
|
|
159
|
+
*/
|
|
160
|
+
'saasSurveyFormId'?: string | null;
|
|
161
|
+
/**
|
|
162
|
+
*
|
|
163
|
+
* @type {string}
|
|
164
|
+
* @memberof HospitalServiceModel
|
|
165
|
+
*/
|
|
166
|
+
'formUrlForChLink'?: string | null;
|
|
167
|
+
/**
|
|
168
|
+
*
|
|
169
|
+
* @type {string}
|
|
170
|
+
* @memberof HospitalServiceModel
|
|
171
|
+
*/
|
|
172
|
+
'formUrlForSaasLink'?: string | null;
|
|
173
|
+
/**
|
|
174
|
+
*
|
|
175
|
+
* @type {AuditableEntityModel}
|
|
143
176
|
* @memberof HospitalServiceModel
|
|
144
177
|
*/
|
|
145
|
-
'auditableEntity'?:
|
|
178
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
146
179
|
/**
|
|
147
180
|
*
|
|
148
181
|
* @type {string}
|
|
@@ -18,7 +18,10 @@
|
|
|
18
18
|
import { AppointmentOptionModel } from './appointment-option-model';
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
|
-
import {
|
|
21
|
+
import { AuditableEntityModel } from './auditable-entity-model';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import { HospitalFeatureModel } from './hospital-feature-model';
|
|
22
25
|
// May contain unused imports in some cases
|
|
23
26
|
// @ts-ignore
|
|
24
27
|
import { MarketingType } from './marketing-type';
|
|
@@ -133,9 +136,39 @@ export interface HospitalSpecialtyItemModel {
|
|
|
133
136
|
'appointmentOption'?: AppointmentOptionModel;
|
|
134
137
|
/**
|
|
135
138
|
*
|
|
136
|
-
* @type {
|
|
139
|
+
* @type {HospitalFeatureModel}
|
|
140
|
+
* @memberof HospitalSpecialtyItemModel
|
|
141
|
+
*/
|
|
142
|
+
'feature'?: HospitalFeatureModel;
|
|
143
|
+
/**
|
|
144
|
+
*
|
|
145
|
+
* @type {string}
|
|
146
|
+
* @memberof HospitalSpecialtyItemModel
|
|
147
|
+
*/
|
|
148
|
+
'chSurveyFormId'?: string | null;
|
|
149
|
+
/**
|
|
150
|
+
*
|
|
151
|
+
* @type {string}
|
|
152
|
+
* @memberof HospitalSpecialtyItemModel
|
|
153
|
+
*/
|
|
154
|
+
'saasSurveyFormId'?: string | null;
|
|
155
|
+
/**
|
|
156
|
+
*
|
|
157
|
+
* @type {string}
|
|
158
|
+
* @memberof HospitalSpecialtyItemModel
|
|
159
|
+
*/
|
|
160
|
+
'formUrlForChLink'?: string | null;
|
|
161
|
+
/**
|
|
162
|
+
*
|
|
163
|
+
* @type {string}
|
|
164
|
+
* @memberof HospitalSpecialtyItemModel
|
|
165
|
+
*/
|
|
166
|
+
'formUrlForSaasLink'?: string | null;
|
|
167
|
+
/**
|
|
168
|
+
*
|
|
169
|
+
* @type {AuditableEntityModel}
|
|
137
170
|
* @memberof HospitalSpecialtyItemModel
|
|
138
171
|
*/
|
|
139
|
-
'auditableEntity'?:
|
|
172
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
140
173
|
}
|
|
141
174
|
|
|
@@ -18,7 +18,10 @@
|
|
|
18
18
|
import { AppointmentOptionModel } from './appointment-option-model';
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
|
-
import {
|
|
21
|
+
import { AuditableEntityModel } from './auditable-entity-model';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import { HospitalFeatureModel } from './hospital-feature-model';
|
|
22
25
|
// May contain unused imports in some cases
|
|
23
26
|
// @ts-ignore
|
|
24
27
|
import { LocalizedUrlModel } from './localized-url-model';
|
|
@@ -139,10 +142,40 @@ export interface HospitalSpecialtyModel {
|
|
|
139
142
|
'appointmentOption'?: AppointmentOptionModel;
|
|
140
143
|
/**
|
|
141
144
|
*
|
|
142
|
-
* @type {
|
|
145
|
+
* @type {HospitalFeatureModel}
|
|
146
|
+
* @memberof HospitalSpecialtyModel
|
|
147
|
+
*/
|
|
148
|
+
'feature'?: HospitalFeatureModel;
|
|
149
|
+
/**
|
|
150
|
+
*
|
|
151
|
+
* @type {string}
|
|
152
|
+
* @memberof HospitalSpecialtyModel
|
|
153
|
+
*/
|
|
154
|
+
'chSurveyFormId'?: string | null;
|
|
155
|
+
/**
|
|
156
|
+
*
|
|
157
|
+
* @type {string}
|
|
158
|
+
* @memberof HospitalSpecialtyModel
|
|
159
|
+
*/
|
|
160
|
+
'saasSurveyFormId'?: string | null;
|
|
161
|
+
/**
|
|
162
|
+
*
|
|
163
|
+
* @type {string}
|
|
164
|
+
* @memberof HospitalSpecialtyModel
|
|
165
|
+
*/
|
|
166
|
+
'formUrlForChLink'?: string | null;
|
|
167
|
+
/**
|
|
168
|
+
*
|
|
169
|
+
* @type {string}
|
|
170
|
+
* @memberof HospitalSpecialtyModel
|
|
171
|
+
*/
|
|
172
|
+
'formUrlForSaasLink'?: string | null;
|
|
173
|
+
/**
|
|
174
|
+
*
|
|
175
|
+
* @type {AuditableEntityModel}
|
|
143
176
|
* @memberof HospitalSpecialtyModel
|
|
144
177
|
*/
|
|
145
|
-
'auditableEntity'?:
|
|
178
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
146
179
|
/**
|
|
147
180
|
*
|
|
148
181
|
* @type {string}
|
|
@@ -18,6 +18,9 @@
|
|
|
18
18
|
import { GradeDocumentModel } from './grade-document-model';
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
|
+
import { HospitalFeatureDocumentModel } from './hospital-feature-document-model';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
21
24
|
import { TranslationItemDocumentModel } from './translation-item-document-model';
|
|
22
25
|
|
|
23
26
|
/**
|
|
@@ -290,5 +293,11 @@ export interface HospitalSubDocumentModel {
|
|
|
290
293
|
* @memberof HospitalSubDocumentModel
|
|
291
294
|
*/
|
|
292
295
|
'Grade'?: GradeDocumentModel;
|
|
296
|
+
/**
|
|
297
|
+
*
|
|
298
|
+
* @type {HospitalFeatureDocumentModel}
|
|
299
|
+
* @memberof HospitalSubDocumentModel
|
|
300
|
+
*/
|
|
301
|
+
'Feature'?: HospitalFeatureDocumentModel;
|
|
293
302
|
}
|
|
294
303
|
|
package/src/models/index.ts
CHANGED
|
@@ -32,6 +32,7 @@ export * from './article-tag-model';
|
|
|
32
32
|
export * from './article-tags-model';
|
|
33
33
|
export * from './articles-model';
|
|
34
34
|
export * from './auditable-entity';
|
|
35
|
+
export * from './auditable-entity-model';
|
|
35
36
|
export * from './award-model';
|
|
36
37
|
export * from './booking-change-log-model';
|
|
37
38
|
export * from './booking-item-model';
|
|
@@ -142,8 +143,6 @@ export * from './faq-tag-item-model';
|
|
|
142
143
|
export * from './faq-tag-model';
|
|
143
144
|
export * from './faq-tags-model';
|
|
144
145
|
export * from './faqs-model';
|
|
145
|
-
export * from './feature-document-model';
|
|
146
|
-
export * from './feature-model';
|
|
147
146
|
export * from './footer-navigation-item-model';
|
|
148
147
|
export * from './gender';
|
|
149
148
|
export * from './geography-point';
|
|
@@ -164,6 +163,12 @@ export * from './hospital-equipments-model';
|
|
|
164
163
|
export * from './hospital-evaluation-item-model';
|
|
165
164
|
export * from './hospital-evaluation-model';
|
|
166
165
|
export * from './hospital-evaluations-model';
|
|
166
|
+
export * from './hospital-feature-detail-document-model';
|
|
167
|
+
export * from './hospital-feature-detail-model';
|
|
168
|
+
export * from './hospital-feature-document-model';
|
|
169
|
+
export * from './hospital-feature-domain-document-model';
|
|
170
|
+
export * from './hospital-feature-domain-model';
|
|
171
|
+
export * from './hospital-feature-model';
|
|
167
172
|
export * from './hospital-item-model';
|
|
168
173
|
export * from './hospital-language-item-model';
|
|
169
174
|
export * from './hospital-languages-model';
|
|
@@ -265,7 +270,9 @@ export * from './survey-form-element-model';
|
|
|
265
270
|
export * from './survey-form-element-option-model';
|
|
266
271
|
export * from './survey-form-element-types';
|
|
267
272
|
export * from './survey-form-model';
|
|
273
|
+
export * from './survey-form-simple-mapping-model';
|
|
268
274
|
export * from './survey-form-status';
|
|
275
|
+
export * from './survey-form-sub-document-model';
|
|
269
276
|
export * from './survey-result-element-input-model';
|
|
270
277
|
export * from './survey-result-element-value-input-model';
|
|
271
278
|
export * from './tag-document-model';
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2
|
|
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 { SurveyFormStatus } from './survey-form-status';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { TranslationSimpleModel } from './translation-simple-model';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface SurveyFormSimpleMappingModel
|
|
27
|
+
*/
|
|
28
|
+
export interface SurveyFormSimpleMappingModel {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof SurveyFormSimpleMappingModel
|
|
33
|
+
*/
|
|
34
|
+
'id'?: string;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {SurveyFormStatus}
|
|
38
|
+
* @memberof SurveyFormSimpleMappingModel
|
|
39
|
+
*/
|
|
40
|
+
'status'?: SurveyFormStatus;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {Array<TranslationSimpleModel>}
|
|
44
|
+
* @memberof SurveyFormSimpleMappingModel
|
|
45
|
+
*/
|
|
46
|
+
'translations'?: Array<TranslationSimpleModel> | null;
|
|
47
|
+
}
|
|
48
|
+
|
|
@@ -17,26 +17,20 @@
|
|
|
17
17
|
/**
|
|
18
18
|
*
|
|
19
19
|
* @export
|
|
20
|
-
* @interface
|
|
20
|
+
* @interface SurveyFormSubDocumentModel
|
|
21
21
|
*/
|
|
22
|
-
export interface
|
|
22
|
+
export interface SurveyFormSubDocumentModel {
|
|
23
23
|
/**
|
|
24
24
|
*
|
|
25
|
-
* @type {
|
|
26
|
-
* @memberof
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof SurveyFormSubDocumentModel
|
|
27
27
|
*/
|
|
28
|
-
'
|
|
28
|
+
'id'?: string;
|
|
29
29
|
/**
|
|
30
30
|
*
|
|
31
|
-
* @type {
|
|
32
|
-
* @memberof
|
|
31
|
+
* @type {Array<string>}
|
|
32
|
+
* @memberof SurveyFormSubDocumentModel
|
|
33
33
|
*/
|
|
34
|
-
'
|
|
35
|
-
/**
|
|
36
|
-
*
|
|
37
|
-
* @type {boolean}
|
|
38
|
-
* @memberof FeatureModel
|
|
39
|
-
*/
|
|
40
|
-
'enquiryFormEnabled'?: boolean;
|
|
34
|
+
'translatedLanguageCodes'?: Array<string> | null;
|
|
41
35
|
}
|
|
42
36
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"feature-document-model.d.ts","sourceRoot":"","sources":["../../src/models/feature-document-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACjC;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,OAAO,CAAC;CAClC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"feature-model.d.ts","sourceRoot":"","sources":["../../src/models/feature-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,YAAY;IACzB;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,OAAO,CAAC;CAClC"}
|
|
File without changes
|
|
File without changes
|