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,7 +21,7 @@ import { AppointmentOptionModel } from './appointment-option-model';
|
|
|
21
21
|
import { DoctorSpecialtyItemModel } from './doctor-specialty-item-model';
|
|
22
22
|
// May contain unused imports in some cases
|
|
23
23
|
// @ts-ignore
|
|
24
|
-
import {
|
|
24
|
+
import { HospitalFeatureModel } from './hospital-feature-model';
|
|
25
25
|
// May contain unused imports in some cases
|
|
26
26
|
// @ts-ignore
|
|
27
27
|
import { LocationModel } from './location-model';
|
|
@@ -197,29 +197,47 @@ export interface DoctorAffiliationItemModel {
|
|
|
197
197
|
* @memberof DoctorAffiliationItemModel
|
|
198
198
|
*/
|
|
199
199
|
'specialtiesSummerized'?: string | null;
|
|
200
|
+
/**
|
|
201
|
+
*
|
|
202
|
+
* @type {number}
|
|
203
|
+
* @memberof DoctorAffiliationItemModel
|
|
204
|
+
*/
|
|
205
|
+
'order'?: number;
|
|
206
|
+
/**
|
|
207
|
+
*
|
|
208
|
+
* @type {AppointmentOptionModel}
|
|
209
|
+
* @memberof DoctorAffiliationItemModel
|
|
210
|
+
*/
|
|
211
|
+
'appointmentOption'?: AppointmentOptionModel;
|
|
212
|
+
/**
|
|
213
|
+
*
|
|
214
|
+
* @type {HospitalFeatureModel}
|
|
215
|
+
* @memberof DoctorAffiliationItemModel
|
|
216
|
+
*/
|
|
217
|
+
'feature'?: HospitalFeatureModel;
|
|
200
218
|
/**
|
|
201
219
|
*
|
|
202
220
|
* @type {string}
|
|
203
221
|
* @memberof DoctorAffiliationItemModel
|
|
204
222
|
*/
|
|
205
|
-
'
|
|
223
|
+
'chSurveyFormId'?: string | null;
|
|
206
224
|
/**
|
|
207
225
|
*
|
|
208
|
-
* @type {
|
|
226
|
+
* @type {string}
|
|
209
227
|
* @memberof DoctorAffiliationItemModel
|
|
210
228
|
*/
|
|
211
|
-
'
|
|
229
|
+
'saasSurveyFormId'?: string | null;
|
|
212
230
|
/**
|
|
213
231
|
*
|
|
214
|
-
* @type {
|
|
232
|
+
* @type {string}
|
|
215
233
|
* @memberof DoctorAffiliationItemModel
|
|
216
234
|
*/
|
|
217
|
-
'
|
|
235
|
+
'formUrlForChLink'?: string | null;
|
|
218
236
|
/**
|
|
219
237
|
*
|
|
220
|
-
* @type {
|
|
238
|
+
* @type {string}
|
|
221
239
|
* @memberof DoctorAffiliationItemModel
|
|
222
240
|
*/
|
|
223
|
-
'
|
|
241
|
+
'formUrlForSaasLink'?: string | null;
|
|
224
242
|
}
|
|
225
243
|
|
|
@@ -24,7 +24,7 @@ import { DoctorLanguageModel } from './doctor-language-model';
|
|
|
24
24
|
import { DoctorSpecialtyItemModel } from './doctor-specialty-item-model';
|
|
25
25
|
// May contain unused imports in some cases
|
|
26
26
|
// @ts-ignore
|
|
27
|
-
import {
|
|
27
|
+
import { HospitalFeatureModel } from './hospital-feature-model';
|
|
28
28
|
// May contain unused imports in some cases
|
|
29
29
|
// @ts-ignore
|
|
30
30
|
import { LocalizedUrlModel } from './localized-url-model';
|
|
@@ -206,30 +206,48 @@ export interface DoctorAffiliationModel {
|
|
|
206
206
|
* @memberof DoctorAffiliationModel
|
|
207
207
|
*/
|
|
208
208
|
'specialtiesSummerized'?: string | null;
|
|
209
|
+
/**
|
|
210
|
+
*
|
|
211
|
+
* @type {number}
|
|
212
|
+
* @memberof DoctorAffiliationModel
|
|
213
|
+
*/
|
|
214
|
+
'order'?: number;
|
|
215
|
+
/**
|
|
216
|
+
*
|
|
217
|
+
* @type {AppointmentOptionModel}
|
|
218
|
+
* @memberof DoctorAffiliationModel
|
|
219
|
+
*/
|
|
220
|
+
'appointmentOption'?: AppointmentOptionModel;
|
|
221
|
+
/**
|
|
222
|
+
*
|
|
223
|
+
* @type {HospitalFeatureModel}
|
|
224
|
+
* @memberof DoctorAffiliationModel
|
|
225
|
+
*/
|
|
226
|
+
'feature'?: HospitalFeatureModel;
|
|
209
227
|
/**
|
|
210
228
|
*
|
|
211
229
|
* @type {string}
|
|
212
230
|
* @memberof DoctorAffiliationModel
|
|
213
231
|
*/
|
|
214
|
-
'
|
|
232
|
+
'chSurveyFormId'?: string | null;
|
|
215
233
|
/**
|
|
216
234
|
*
|
|
217
|
-
* @type {
|
|
235
|
+
* @type {string}
|
|
218
236
|
* @memberof DoctorAffiliationModel
|
|
219
237
|
*/
|
|
220
|
-
'
|
|
238
|
+
'saasSurveyFormId'?: string | null;
|
|
221
239
|
/**
|
|
222
240
|
*
|
|
223
|
-
* @type {
|
|
241
|
+
* @type {string}
|
|
224
242
|
* @memberof DoctorAffiliationModel
|
|
225
243
|
*/
|
|
226
|
-
'
|
|
244
|
+
'formUrlForChLink'?: string | null;
|
|
227
245
|
/**
|
|
228
246
|
*
|
|
229
|
-
* @type {
|
|
247
|
+
* @type {string}
|
|
230
248
|
* @memberof DoctorAffiliationModel
|
|
231
249
|
*/
|
|
232
|
-
'
|
|
250
|
+
'formUrlForSaasLink'?: string | null;
|
|
233
251
|
/**
|
|
234
252
|
*
|
|
235
253
|
* @type {string}
|
|
@@ -24,7 +24,7 @@ import { DoctorCertificateSubDocumentModel } from './doctor-certificate-sub-docu
|
|
|
24
24
|
import { DoctorSpecialtySubDocumentModel } from './doctor-specialty-sub-document-model';
|
|
25
25
|
// May contain unused imports in some cases
|
|
26
26
|
// @ts-ignore
|
|
27
|
-
import {
|
|
27
|
+
import { HospitalFeatureDocumentModel } from './hospital-feature-document-model';
|
|
28
28
|
// May contain unused imports in some cases
|
|
29
29
|
// @ts-ignore
|
|
30
30
|
import { HospitalSubDocumentModel } from './hospital-sub-document-model';
|
|
@@ -314,12 +314,6 @@ export interface DoctorDocumentModel {
|
|
|
314
314
|
* @memberof DoctorDocumentModel
|
|
315
315
|
*/
|
|
316
316
|
'PhotoThumbnail'?: string | null;
|
|
317
|
-
/**
|
|
318
|
-
*
|
|
319
|
-
* @type {string}
|
|
320
|
-
* @memberof DoctorDocumentModel
|
|
321
|
-
*/
|
|
322
|
-
'FormUrl'?: string | null;
|
|
323
317
|
/**
|
|
324
318
|
*
|
|
325
319
|
* @type {string}
|
|
@@ -418,9 +412,9 @@ export interface DoctorDocumentModel {
|
|
|
418
412
|
'DoctorLanguages'?: Array<UserLanguageDocumentModel> | null;
|
|
419
413
|
/**
|
|
420
414
|
*
|
|
421
|
-
* @type {
|
|
415
|
+
* @type {HospitalFeatureDocumentModel}
|
|
422
416
|
* @memberof DoctorDocumentModel
|
|
423
417
|
*/
|
|
424
|
-
'Feature'?:
|
|
418
|
+
'Feature'?: HospitalFeatureDocumentModel;
|
|
425
419
|
}
|
|
426
420
|
|
|
@@ -13,9 +13,6 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
// May contain unused imports in some cases
|
|
17
|
-
// @ts-ignore
|
|
18
|
-
import { FeatureModel } from './feature-model';
|
|
19
16
|
|
|
20
17
|
/**
|
|
21
18
|
*
|
|
@@ -71,11 +68,5 @@ export interface DoctorItemModel {
|
|
|
71
68
|
* @memberof DoctorItemModel
|
|
72
69
|
*/
|
|
73
70
|
'timeZone'?: string | null;
|
|
74
|
-
/**
|
|
75
|
-
*
|
|
76
|
-
* @type {FeatureModel}
|
|
77
|
-
* @memberof DoctorItemModel
|
|
78
|
-
*/
|
|
79
|
-
'feature'?: FeatureModel;
|
|
80
71
|
}
|
|
81
72
|
|
|
@@ -18,9 +18,6 @@
|
|
|
18
18
|
import { AuditableEntity } from './auditable-entity';
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
|
-
import { FeatureModel } from './feature-model';
|
|
22
|
-
// May contain unused imports in some cases
|
|
23
|
-
// @ts-ignore
|
|
24
21
|
import { Gender } from './gender';
|
|
25
22
|
// May contain unused imports in some cases
|
|
26
23
|
// @ts-ignore
|
|
@@ -143,11 +140,5 @@ export interface DoctorModel {
|
|
|
143
140
|
* @memberof DoctorModel
|
|
144
141
|
*/
|
|
145
142
|
'startPracticeDate'?: Date | null;
|
|
146
|
-
/**
|
|
147
|
-
*
|
|
148
|
-
* @type {FeatureModel}
|
|
149
|
-
* @memberof DoctorModel
|
|
150
|
-
*/
|
|
151
|
-
'feature'?: FeatureModel;
|
|
152
143
|
}
|
|
153
144
|
|
|
@@ -24,15 +24,15 @@ import { AppointmentOptionDocumentModel } from './appointment-option-document-mo
|
|
|
24
24
|
import { CountrySubDocumentModel } from './country-sub-document-model';
|
|
25
25
|
// May contain unused imports in some cases
|
|
26
26
|
// @ts-ignore
|
|
27
|
-
import { FeatureDocumentModel } from './feature-document-model';
|
|
28
|
-
// May contain unused imports in some cases
|
|
29
|
-
// @ts-ignore
|
|
30
27
|
import { GradeDocumentModel } from './grade-document-model';
|
|
31
28
|
// May contain unused imports in some cases
|
|
32
29
|
// @ts-ignore
|
|
33
30
|
import { HospitalContactDocumentModel } from './hospital-contact-document-model';
|
|
34
31
|
// May contain unused imports in some cases
|
|
35
32
|
// @ts-ignore
|
|
33
|
+
import { HospitalFeatureDocumentModel } from './hospital-feature-document-model';
|
|
34
|
+
// May contain unused imports in some cases
|
|
35
|
+
// @ts-ignore
|
|
36
36
|
import { HospitalSpecialtySubDocumentModel } from './hospital-specialty-sub-document-model';
|
|
37
37
|
// May contain unused imports in some cases
|
|
38
38
|
// @ts-ignore
|
|
@@ -356,12 +356,6 @@ export interface HospitalDocumentModel {
|
|
|
356
356
|
* @memberof HospitalDocumentModel
|
|
357
357
|
*/
|
|
358
358
|
'MarketingType'?: string | null;
|
|
359
|
-
/**
|
|
360
|
-
*
|
|
361
|
-
* @type {string}
|
|
362
|
-
* @memberof HospitalDocumentModel
|
|
363
|
-
*/
|
|
364
|
-
'FormUrl'?: string | null;
|
|
365
359
|
/**
|
|
366
360
|
*
|
|
367
361
|
* @type {string}
|
|
@@ -454,9 +448,9 @@ export interface HospitalDocumentModel {
|
|
|
454
448
|
'Contacts'?: Array<HospitalContactDocumentModel> | null;
|
|
455
449
|
/**
|
|
456
450
|
*
|
|
457
|
-
* @type {
|
|
451
|
+
* @type {HospitalFeatureDocumentModel}
|
|
458
452
|
* @memberof HospitalDocumentModel
|
|
459
453
|
*/
|
|
460
|
-
'Feature'?:
|
|
454
|
+
'Feature'?: HospitalFeatureDocumentModel;
|
|
461
455
|
}
|
|
462
456
|
|
|
@@ -0,0 +1,63 @@
|
|
|
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 { SurveyFormSubDocumentModel } from './survey-form-sub-document-model';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface HospitalFeatureDetailDocumentModel
|
|
24
|
+
*/
|
|
25
|
+
export interface HospitalFeatureDetailDocumentModel {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {boolean}
|
|
29
|
+
* @memberof HospitalFeatureDetailDocumentModel
|
|
30
|
+
*/
|
|
31
|
+
'IsEnabledAppointment'?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {boolean}
|
|
35
|
+
* @memberof HospitalFeatureDetailDocumentModel
|
|
36
|
+
*/
|
|
37
|
+
'IsEnabledChat'?: boolean;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {boolean}
|
|
41
|
+
* @memberof HospitalFeatureDetailDocumentModel
|
|
42
|
+
*/
|
|
43
|
+
'IsEnabledCall'?: boolean;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {boolean}
|
|
47
|
+
* @memberof HospitalFeatureDetailDocumentModel
|
|
48
|
+
*/
|
|
49
|
+
'IsEnabledForm'?: boolean;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof HospitalFeatureDetailDocumentModel
|
|
54
|
+
*/
|
|
55
|
+
'SurveyFormId'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {SurveyFormSubDocumentModel}
|
|
59
|
+
* @memberof HospitalFeatureDetailDocumentModel
|
|
60
|
+
*/
|
|
61
|
+
'SurveyForm'?: SurveyFormSubDocumentModel;
|
|
62
|
+
}
|
|
63
|
+
|
|
@@ -0,0 +1,63 @@
|
|
|
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 { SurveyFormSimpleMappingModel } from './survey-form-simple-mapping-model';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface HospitalFeatureDetailModel
|
|
24
|
+
*/
|
|
25
|
+
export interface HospitalFeatureDetailModel {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {boolean}
|
|
29
|
+
* @memberof HospitalFeatureDetailModel
|
|
30
|
+
*/
|
|
31
|
+
'isEnabledAppointment'?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {boolean}
|
|
35
|
+
* @memberof HospitalFeatureDetailModel
|
|
36
|
+
*/
|
|
37
|
+
'isEnabledChat'?: boolean;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {boolean}
|
|
41
|
+
* @memberof HospitalFeatureDetailModel
|
|
42
|
+
*/
|
|
43
|
+
'isEnabledCall'?: boolean;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {boolean}
|
|
47
|
+
* @memberof HospitalFeatureDetailModel
|
|
48
|
+
*/
|
|
49
|
+
'isEnabledForm'?: boolean;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof HospitalFeatureDetailModel
|
|
54
|
+
*/
|
|
55
|
+
'surveyFormId'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {SurveyFormSimpleMappingModel}
|
|
59
|
+
* @memberof HospitalFeatureDetailModel
|
|
60
|
+
*/
|
|
61
|
+
'surveyForm'?: SurveyFormSimpleMappingModel;
|
|
62
|
+
}
|
|
63
|
+
|
|
@@ -0,0 +1,39 @@
|
|
|
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 { HospitalFeatureDomainDocumentModel } from './hospital-feature-domain-document-model';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface HospitalFeatureDocumentModel
|
|
24
|
+
*/
|
|
25
|
+
export interface HospitalFeatureDocumentModel {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {HospitalFeatureDomainDocumentModel}
|
|
29
|
+
* @memberof HospitalFeatureDocumentModel
|
|
30
|
+
*/
|
|
31
|
+
'Ch'?: HospitalFeatureDomainDocumentModel;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {HospitalFeatureDomainDocumentModel}
|
|
35
|
+
* @memberof HospitalFeatureDocumentModel
|
|
36
|
+
*/
|
|
37
|
+
'Saas'?: HospitalFeatureDomainDocumentModel;
|
|
38
|
+
}
|
|
39
|
+
|
|
@@ -0,0 +1,57 @@
|
|
|
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 { HospitalFeatureDetailDocumentModel } from './hospital-feature-detail-document-model';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface HospitalFeatureDomainDocumentModel
|
|
24
|
+
*/
|
|
25
|
+
export interface HospitalFeatureDomainDocumentModel {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {HospitalFeatureDetailDocumentModel}
|
|
29
|
+
* @memberof HospitalFeatureDomainDocumentModel
|
|
30
|
+
*/
|
|
31
|
+
'Hospital'?: HospitalFeatureDetailDocumentModel;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {HospitalFeatureDetailDocumentModel}
|
|
35
|
+
* @memberof HospitalFeatureDomainDocumentModel
|
|
36
|
+
*/
|
|
37
|
+
'Doctor'?: HospitalFeatureDetailDocumentModel;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {HospitalFeatureDetailDocumentModel}
|
|
41
|
+
* @memberof HospitalFeatureDomainDocumentModel
|
|
42
|
+
*/
|
|
43
|
+
'Deal'?: HospitalFeatureDetailDocumentModel;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {HospitalFeatureDetailDocumentModel}
|
|
47
|
+
* @memberof HospitalFeatureDomainDocumentModel
|
|
48
|
+
*/
|
|
49
|
+
'HospitalSpecialty'?: HospitalFeatureDetailDocumentModel;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {HospitalFeatureDetailDocumentModel}
|
|
53
|
+
* @memberof HospitalFeatureDomainDocumentModel
|
|
54
|
+
*/
|
|
55
|
+
'Service'?: HospitalFeatureDetailDocumentModel;
|
|
56
|
+
}
|
|
57
|
+
|
|
@@ -0,0 +1,57 @@
|
|
|
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 { HospitalFeatureDetailModel } from './hospital-feature-detail-model';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface HospitalFeatureDomainModel
|
|
24
|
+
*/
|
|
25
|
+
export interface HospitalFeatureDomainModel {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {HospitalFeatureDetailModel}
|
|
29
|
+
* @memberof HospitalFeatureDomainModel
|
|
30
|
+
*/
|
|
31
|
+
'hospital'?: HospitalFeatureDetailModel;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {HospitalFeatureDetailModel}
|
|
35
|
+
* @memberof HospitalFeatureDomainModel
|
|
36
|
+
*/
|
|
37
|
+
'doctor'?: HospitalFeatureDetailModel;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {HospitalFeatureDetailModel}
|
|
41
|
+
* @memberof HospitalFeatureDomainModel
|
|
42
|
+
*/
|
|
43
|
+
'deal'?: HospitalFeatureDetailModel;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {HospitalFeatureDetailModel}
|
|
47
|
+
* @memberof HospitalFeatureDomainModel
|
|
48
|
+
*/
|
|
49
|
+
'hospitalSpecialty'?: HospitalFeatureDetailModel;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {HospitalFeatureDetailModel}
|
|
53
|
+
* @memberof HospitalFeatureDomainModel
|
|
54
|
+
*/
|
|
55
|
+
'service'?: HospitalFeatureDetailModel;
|
|
56
|
+
}
|
|
57
|
+
|
|
@@ -13,30 +13,27 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { HospitalFeatureDomainModel } from './hospital-feature-domain-model';
|
|
16
19
|
|
|
17
20
|
/**
|
|
18
21
|
*
|
|
19
22
|
* @export
|
|
20
|
-
* @interface
|
|
23
|
+
* @interface HospitalFeatureModel
|
|
21
24
|
*/
|
|
22
|
-
export interface
|
|
25
|
+
export interface HospitalFeatureModel {
|
|
23
26
|
/**
|
|
24
27
|
*
|
|
25
|
-
* @type {
|
|
26
|
-
* @memberof
|
|
28
|
+
* @type {HospitalFeatureDomainModel}
|
|
29
|
+
* @memberof HospitalFeatureModel
|
|
27
30
|
*/
|
|
28
|
-
'
|
|
31
|
+
'ch'?: HospitalFeatureDomainModel;
|
|
29
32
|
/**
|
|
30
33
|
*
|
|
31
|
-
* @type {
|
|
32
|
-
* @memberof
|
|
34
|
+
* @type {HospitalFeatureDomainModel}
|
|
35
|
+
* @memberof HospitalFeatureModel
|
|
33
36
|
*/
|
|
34
|
-
'
|
|
35
|
-
/**
|
|
36
|
-
*
|
|
37
|
-
* @type {boolean}
|
|
38
|
-
* @memberof FeatureDocumentModel
|
|
39
|
-
*/
|
|
40
|
-
'EnquiryFormEnabled'?: boolean;
|
|
37
|
+
'saas'?: HospitalFeatureDomainModel;
|
|
41
38
|
}
|
|
42
39
|
|
|
@@ -18,15 +18,15 @@
|
|
|
18
18
|
import { AppointmentOptionModel } from './appointment-option-model';
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
|
-
import { FeatureModel } from './feature-model';
|
|
22
|
-
// May contain unused imports in some cases
|
|
23
|
-
// @ts-ignore
|
|
24
21
|
import { GradeModel } from './grade-model';
|
|
25
22
|
// May contain unused imports in some cases
|
|
26
23
|
// @ts-ignore
|
|
27
24
|
import { HospitalAccreditationItemModel } from './hospital-accreditation-item-model';
|
|
28
25
|
// May contain unused imports in some cases
|
|
29
26
|
// @ts-ignore
|
|
27
|
+
import { HospitalFeatureModel } from './hospital-feature-model';
|
|
28
|
+
// May contain unused imports in some cases
|
|
29
|
+
// @ts-ignore
|
|
30
30
|
import { HospitalSpecialtySimpleItemModel } from './hospital-specialty-simple-item-model';
|
|
31
31
|
// May contain unused imports in some cases
|
|
32
32
|
// @ts-ignore
|
|
@@ -127,7 +127,25 @@ export interface HospitalItemModel {
|
|
|
127
127
|
* @type {string}
|
|
128
128
|
* @memberof HospitalItemModel
|
|
129
129
|
*/
|
|
130
|
-
'
|
|
130
|
+
'chSurveyFormId'?: string | null;
|
|
131
|
+
/**
|
|
132
|
+
*
|
|
133
|
+
* @type {string}
|
|
134
|
+
* @memberof HospitalItemModel
|
|
135
|
+
*/
|
|
136
|
+
'saasSurveyFormId'?: string | null;
|
|
137
|
+
/**
|
|
138
|
+
*
|
|
139
|
+
* @type {string}
|
|
140
|
+
* @memberof HospitalItemModel
|
|
141
|
+
*/
|
|
142
|
+
'formUrlForChLink'?: string | null;
|
|
143
|
+
/**
|
|
144
|
+
*
|
|
145
|
+
* @type {string}
|
|
146
|
+
* @memberof HospitalItemModel
|
|
147
|
+
*/
|
|
148
|
+
'formUrlForSaasLink'?: string | null;
|
|
131
149
|
/**
|
|
132
150
|
*
|
|
133
151
|
* @type {string}
|
|
@@ -154,10 +172,10 @@ export interface HospitalItemModel {
|
|
|
154
172
|
'appointmentOption'?: AppointmentOptionModel;
|
|
155
173
|
/**
|
|
156
174
|
*
|
|
157
|
-
* @type {
|
|
175
|
+
* @type {HospitalFeatureModel}
|
|
158
176
|
* @memberof HospitalItemModel
|
|
159
177
|
*/
|
|
160
|
-
'feature'?:
|
|
178
|
+
'feature'?: HospitalFeatureModel;
|
|
161
179
|
/**
|
|
162
180
|
*
|
|
163
181
|
* @type {GradeModel}
|