ch-api-client-typescript2 5.13.6 → 5.14.3
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/curations-api.d.ts +262 -0
- package/lib/api/curations-api.d.ts.map +1 -0
- package/lib/api/curations-api.js +414 -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/article-document-model.d.ts +7 -0
- package/lib/models/article-document-model.d.ts.map +1 -1
- package/lib/models/auditable-entity-document-model.d.ts +49 -0
- package/lib/models/auditable-entity-document-model.d.ts.map +1 -0
- package/lib/models/contributor-document-model.d.ts +7 -0
- package/lib/models/contributor-document-model.d.ts.map +1 -1
- package/lib/models/country-document-model.d.ts +13 -0
- package/lib/models/country-document-model.d.ts.map +1 -1
- package/lib/models/country-model.d.ts +6 -6
- package/lib/models/country-model.d.ts.map +1 -1
- package/lib/models/country-sub-document-model.d.ts +6 -0
- package/lib/models/country-sub-document-model.d.ts.map +1 -1
- package/lib/models/curation-item-model.d.ts +73 -0
- package/lib/models/curation-item-model.d.ts.map +1 -0
- package/lib/models/curation-model.d.ts +80 -0
- package/lib/models/curation-model.d.ts.map +1 -0
- package/lib/models/curation-model.js +15 -0
- package/lib/models/curation-specialty-type-item-model.d.ts +50 -0
- package/lib/models/curation-specialty-type-item-model.d.ts.map +1 -0
- package/lib/models/curation-specialty-type-item-model.js +15 -0
- package/lib/models/curation-specialty-types-model.d.ts +33 -0
- package/lib/models/curation-specialty-types-model.d.ts.map +1 -0
- package/lib/models/curation-specialty-types-model.js +15 -0
- package/lib/models/deal-document-model.d.ts +7 -0
- package/lib/models/deal-document-model.d.ts.map +1 -1
- package/lib/models/deal-mapping-model.d.ts +3 -3
- package/lib/models/department-document-model.d.ts +13 -0
- package/lib/models/department-document-model.d.ts.map +1 -1
- package/lib/models/department-sub-document-model.d.ts +6 -0
- package/lib/models/department-sub-document-model.d.ts.map +1 -1
- package/lib/models/doctor-document-model.d.ts +7 -0
- package/lib/models/doctor-document-model.d.ts.map +1 -1
- package/lib/models/faq-category-document-model.d.ts +7 -0
- package/lib/models/faq-category-document-model.d.ts.map +1 -1
- package/lib/models/faq-document-model.d.ts +7 -0
- package/lib/models/faq-document-model.d.ts.map +1 -1
- package/lib/models/faq-item-model.d.ts +3 -3
- package/lib/models/faq-model.d.ts +3 -3
- package/lib/models/hospital-document-model.d.ts +7 -0
- package/lib/models/hospital-document-model.d.ts.map +1 -1
- package/lib/models/hospital-specialty-document-model.d.ts +7 -0
- package/lib/models/hospital-specialty-document-model.d.ts.map +1 -1
- package/lib/models/index.d.ts +7 -2
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +7 -2
- package/lib/models/service-document-model.d.ts +7 -0
- package/lib/models/service-document-model.d.ts.map +1 -1
- package/lib/models/{translation-simple-model.d.ts → simple-translation-model.d.ts} +9 -9
- package/lib/models/{translation-simple-model.d.ts.map → simple-translation-model.d.ts.map} +1 -1
- package/lib/models/simple-translation-model.js +15 -0
- package/lib/models/{translation-simple-with-description-model.d.ts → simple-translation-with-description-model.d.ts} +10 -10
- package/lib/models/{translation-simple-with-description-model.d.ts.map → simple-translation-with-description-model.d.ts.map} +1 -1
- package/lib/models/simple-translation-with-description-model.js +15 -0
- package/lib/models/specialty-document-model.d.ts +7 -0
- package/lib/models/specialty-document-model.d.ts.map +1 -1
- package/lib/models/specialty-type-item-model.d.ts +3 -3
- package/lib/models/specialty-type-model.d.ts +3 -3
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +8 -2
- package/src/api/curations-api.ts +436 -0
- package/src/api.ts +1 -0
- package/src/models/article-document-model.ts +9 -0
- package/src/models/auditable-entity-document-model.ts +54 -0
- package/src/models/contributor-document-model.ts +9 -0
- package/src/models/country-document-model.ts +15 -0
- package/src/models/country-model.ts +6 -6
- package/src/models/country-sub-document-model.ts +6 -0
- package/src/models/curation-item-model.ts +78 -0
- package/src/models/curation-model.ts +87 -0
- package/src/models/curation-specialty-type-item-model.ts +57 -0
- package/src/models/curation-specialty-types-model.ts +42 -0
- package/src/models/deal-document-model.ts +9 -0
- package/src/models/deal-mapping-model.ts +3 -3
- package/src/models/department-document-model.ts +15 -0
- package/src/models/department-sub-document-model.ts +6 -0
- package/src/models/doctor-document-model.ts +9 -0
- package/src/models/faq-category-document-model.ts +9 -0
- package/src/models/faq-document-model.ts +9 -0
- package/src/models/faq-item-model.ts +3 -3
- package/src/models/faq-model.ts +3 -3
- package/src/models/hospital-document-model.ts +9 -0
- package/src/models/hospital-specialty-document-model.ts +9 -0
- package/src/models/index.ts +7 -2
- package/src/models/service-document-model.ts +9 -0
- package/src/models/{translation-simple-model.ts → simple-translation-model.ts} +8 -8
- package/src/models/{translation-simple-with-description-model.ts → simple-translation-with-description-model.ts} +9 -9
- package/src/models/specialty-document-model.ts +9 -0
- package/src/models/specialty-type-item-model.ts +3 -3
- package/src/models/specialty-type-model.ts +3 -3
- /package/lib/models/{translation-simple-model.js → auditable-entity-document-model.js} +0 -0
- /package/lib/models/{translation-simple-with-description-model.js → curation-item-model.js} +0 -0
|
@@ -71,6 +71,12 @@ export interface CountryModel {
|
|
|
71
71
|
* @memberof CountryModel
|
|
72
72
|
*/
|
|
73
73
|
'slug'?: string | null;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {string}
|
|
77
|
+
* @memberof CountryModel
|
|
78
|
+
*/
|
|
79
|
+
'overview'?: string | null;
|
|
74
80
|
/**
|
|
75
81
|
*
|
|
76
82
|
* @type {boolean}
|
|
@@ -107,12 +113,6 @@ export interface CountryModel {
|
|
|
107
113
|
* @memberof CountryModel
|
|
108
114
|
*/
|
|
109
115
|
'auditableEntity'?: AuditableEntity;
|
|
110
|
-
/**
|
|
111
|
-
*
|
|
112
|
-
* @type {string}
|
|
113
|
-
* @memberof CountryModel
|
|
114
|
-
*/
|
|
115
|
-
'overview'?: string | null;
|
|
116
116
|
/**
|
|
117
117
|
*
|
|
118
118
|
* @type {string}
|
|
@@ -0,0 +1,78 @@
|
|
|
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
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface CurationItemModel
|
|
21
|
+
*/
|
|
22
|
+
export interface CurationItemModel {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CurationItemModel
|
|
27
|
+
*/
|
|
28
|
+
'id'?: string;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CurationItemModel
|
|
33
|
+
*/
|
|
34
|
+
'languageCode'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CurationItemModel
|
|
39
|
+
*/
|
|
40
|
+
'title'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof CurationItemModel
|
|
45
|
+
*/
|
|
46
|
+
'slug'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof CurationItemModel
|
|
51
|
+
*/
|
|
52
|
+
'url'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof CurationItemModel
|
|
57
|
+
*/
|
|
58
|
+
'photo'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof CurationItemModel
|
|
63
|
+
*/
|
|
64
|
+
'photoThumbnail'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {number}
|
|
68
|
+
* @memberof CurationItemModel
|
|
69
|
+
*/
|
|
70
|
+
'order'?: number;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {boolean}
|
|
74
|
+
* @memberof CurationItemModel
|
|
75
|
+
*/
|
|
76
|
+
'confirmed'?: boolean;
|
|
77
|
+
}
|
|
78
|
+
|
|
@@ -0,0 +1,87 @@
|
|
|
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 { AuditableEntityModel } from './auditable-entity-model';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface CurationModel
|
|
24
|
+
*/
|
|
25
|
+
export interface CurationModel {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof CurationModel
|
|
30
|
+
*/
|
|
31
|
+
'id'?: string;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof CurationModel
|
|
36
|
+
*/
|
|
37
|
+
'languageCode'?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof CurationModel
|
|
42
|
+
*/
|
|
43
|
+
'title'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof CurationModel
|
|
48
|
+
*/
|
|
49
|
+
'searchTerm'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof CurationModel
|
|
54
|
+
*/
|
|
55
|
+
'slug'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof CurationModel
|
|
60
|
+
*/
|
|
61
|
+
'url'?: string | null;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof CurationModel
|
|
66
|
+
*/
|
|
67
|
+
'description'?: string | null;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof CurationModel
|
|
72
|
+
*/
|
|
73
|
+
'overview'?: string | null;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {string}
|
|
77
|
+
* @memberof CurationModel
|
|
78
|
+
*/
|
|
79
|
+
'content'?: string | null;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {AuditableEntityModel}
|
|
83
|
+
* @memberof CurationModel
|
|
84
|
+
*/
|
|
85
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
86
|
+
}
|
|
87
|
+
|
|
@@ -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 { CurationItemModel } from './curation-item-model';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface CurationSpecialtyTypeItemModel
|
|
24
|
+
*/
|
|
25
|
+
export interface CurationSpecialtyTypeItemModel {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof CurationSpecialtyTypeItemModel
|
|
30
|
+
*/
|
|
31
|
+
'specialtyTypeId'?: string;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof CurationSpecialtyTypeItemModel
|
|
36
|
+
*/
|
|
37
|
+
'languageCode'?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof CurationSpecialtyTypeItemModel
|
|
42
|
+
*/
|
|
43
|
+
'name'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof CurationSpecialtyTypeItemModel
|
|
48
|
+
*/
|
|
49
|
+
'slug'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {Array<CurationItemModel>}
|
|
53
|
+
* @memberof CurationSpecialtyTypeItemModel
|
|
54
|
+
*/
|
|
55
|
+
'curations'?: Array<CurationItemModel> | null;
|
|
56
|
+
}
|
|
57
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
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 { CurationSpecialtyTypeItemModel } from './curation-specialty-type-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 CurationSpecialtyTypesModel
|
|
27
|
+
*/
|
|
28
|
+
export interface CurationSpecialtyTypesModel {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {Array<CurationSpecialtyTypeItemModel>}
|
|
32
|
+
* @memberof CurationSpecialtyTypesModel
|
|
33
|
+
*/
|
|
34
|
+
'items'?: Array<CurationSpecialtyTypeItemModel> | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {PagedListMetaData}
|
|
38
|
+
* @memberof CurationSpecialtyTypesModel
|
|
39
|
+
*/
|
|
40
|
+
'metaData'?: PagedListMetaData;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { AuditableEntityDocumentModel } from './auditable-entity-document-model';
|
|
16
19
|
// May contain unused imports in some cases
|
|
17
20
|
// @ts-ignore
|
|
18
21
|
import { DealServiceSubDocumentModel } from './deal-service-sub-document-model';
|
|
@@ -383,5 +386,11 @@ export interface DealDocumentModel {
|
|
|
383
386
|
* @memberof DealDocumentModel
|
|
384
387
|
*/
|
|
385
388
|
'Services'?: Array<DealServiceSubDocumentModel> | null;
|
|
389
|
+
/**
|
|
390
|
+
*
|
|
391
|
+
* @type {AuditableEntityDocumentModel}
|
|
392
|
+
* @memberof DealDocumentModel
|
|
393
|
+
*/
|
|
394
|
+
'AuditableEntity'?: AuditableEntityDocumentModel;
|
|
386
395
|
}
|
|
387
396
|
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
// May contain unused imports in some cases
|
|
17
17
|
// @ts-ignore
|
|
18
|
-
import {
|
|
18
|
+
import { SimpleTranslationModel } from './simple-translation-model';
|
|
19
19
|
|
|
20
20
|
/**
|
|
21
21
|
*
|
|
@@ -25,9 +25,9 @@ import { TranslationSimpleModel } from './translation-simple-model';
|
|
|
25
25
|
export interface DealMappingModel {
|
|
26
26
|
/**
|
|
27
27
|
*
|
|
28
|
-
* @type {Array<
|
|
28
|
+
* @type {Array<SimpleTranslationModel>}
|
|
29
29
|
* @memberof DealMappingModel
|
|
30
30
|
*/
|
|
31
|
-
'translations'?: Array<
|
|
31
|
+
'translations'?: Array<SimpleTranslationModel> | null;
|
|
32
32
|
}
|
|
33
33
|
|
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { AuditableEntityDocumentModel } from './auditable-entity-document-model';
|
|
16
19
|
// May contain unused imports in some cases
|
|
17
20
|
// @ts-ignore
|
|
18
21
|
import { MediaDocumentModel } from './media-document-model';
|
|
@@ -290,5 +293,17 @@ export interface DepartmentDocumentModel {
|
|
|
290
293
|
* @memberof DepartmentDocumentModel
|
|
291
294
|
*/
|
|
292
295
|
'Medias'?: Array<MediaDocumentModel> | null;
|
|
296
|
+
/**
|
|
297
|
+
*
|
|
298
|
+
* @type {number}
|
|
299
|
+
* @memberof DepartmentDocumentModel
|
|
300
|
+
*/
|
|
301
|
+
'Order'?: number;
|
|
302
|
+
/**
|
|
303
|
+
*
|
|
304
|
+
* @type {AuditableEntityDocumentModel}
|
|
305
|
+
* @memberof DepartmentDocumentModel
|
|
306
|
+
*/
|
|
307
|
+
'AuditableEntity'?: AuditableEntityDocumentModel;
|
|
293
308
|
}
|
|
294
309
|
|
|
@@ -257,5 +257,11 @@ export interface DepartmentSubDocumentModel {
|
|
|
257
257
|
* @memberof DepartmentSubDocumentModel
|
|
258
258
|
*/
|
|
259
259
|
'MarketingType'?: string | null;
|
|
260
|
+
/**
|
|
261
|
+
*
|
|
262
|
+
* @type {number}
|
|
263
|
+
* @memberof DepartmentSubDocumentModel
|
|
264
|
+
*/
|
|
265
|
+
'Order'?: number;
|
|
260
266
|
}
|
|
261
267
|
|
|
@@ -18,6 +18,9 @@
|
|
|
18
18
|
import { AppointmentOptionDocumentModel } from './appointment-option-document-model';
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
|
+
import { AuditableEntityDocumentModel } from './auditable-entity-document-model';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
21
24
|
import { DoctorCertificateSubDocumentModel } from './doctor-certificate-sub-document-model';
|
|
22
25
|
// May contain unused imports in some cases
|
|
23
26
|
// @ts-ignore
|
|
@@ -446,5 +449,11 @@ export interface DoctorDocumentModel {
|
|
|
446
449
|
* @memberof DoctorDocumentModel
|
|
447
450
|
*/
|
|
448
451
|
'Feature'?: FeatureDocumentModel;
|
|
452
|
+
/**
|
|
453
|
+
*
|
|
454
|
+
* @type {AuditableEntityDocumentModel}
|
|
455
|
+
* @memberof DoctorDocumentModel
|
|
456
|
+
*/
|
|
457
|
+
'AuditableEntity'?: AuditableEntityDocumentModel;
|
|
449
458
|
}
|
|
450
459
|
|
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { AuditableEntityDocumentModel } from './auditable-entity-document-model';
|
|
16
19
|
// May contain unused imports in some cases
|
|
17
20
|
// @ts-ignore
|
|
18
21
|
import { HospitalSubDocumentModel } from './hospital-sub-document-model';
|
|
@@ -266,5 +269,11 @@ export interface FaqCategoryDocumentModel {
|
|
|
266
269
|
* @memberof FaqCategoryDocumentModel
|
|
267
270
|
*/
|
|
268
271
|
'Hospital'?: HospitalSubDocumentModel;
|
|
272
|
+
/**
|
|
273
|
+
*
|
|
274
|
+
* @type {AuditableEntityDocumentModel}
|
|
275
|
+
* @memberof FaqCategoryDocumentModel
|
|
276
|
+
*/
|
|
277
|
+
'AuditableEntity'?: AuditableEntityDocumentModel;
|
|
269
278
|
}
|
|
270
279
|
|
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { AuditableEntityDocumentModel } from './auditable-entity-document-model';
|
|
16
19
|
// May contain unused imports in some cases
|
|
17
20
|
// @ts-ignore
|
|
18
21
|
import { FaqCategorySubDocumentModel } from './faq-category-sub-document-model';
|
|
@@ -275,5 +278,11 @@ export interface FaqDocumentModel {
|
|
|
275
278
|
* @memberof FaqDocumentModel
|
|
276
279
|
*/
|
|
277
280
|
'TagIds'?: Array<string> | null;
|
|
281
|
+
/**
|
|
282
|
+
*
|
|
283
|
+
* @type {AuditableEntityDocumentModel}
|
|
284
|
+
* @memberof FaqDocumentModel
|
|
285
|
+
*/
|
|
286
|
+
'AuditableEntity'?: AuditableEntityDocumentModel;
|
|
278
287
|
}
|
|
279
288
|
|
|
@@ -24,7 +24,7 @@ import { FaqTagItemModel } from './faq-tag-item-model';
|
|
|
24
24
|
import { MediaModel } from './media-model';
|
|
25
25
|
// May contain unused imports in some cases
|
|
26
26
|
// @ts-ignore
|
|
27
|
-
import {
|
|
27
|
+
import { SimpleTranslationModel } from './simple-translation-model';
|
|
28
28
|
|
|
29
29
|
/**
|
|
30
30
|
*
|
|
@@ -82,10 +82,10 @@ export interface FaqItemModel {
|
|
|
82
82
|
'hospitalId'?: string | null;
|
|
83
83
|
/**
|
|
84
84
|
*
|
|
85
|
-
* @type {
|
|
85
|
+
* @type {SimpleTranslationModel}
|
|
86
86
|
* @memberof FaqItemModel
|
|
87
87
|
*/
|
|
88
|
-
'hospitalTranslation'?:
|
|
88
|
+
'hospitalTranslation'?: SimpleTranslationModel;
|
|
89
89
|
/**
|
|
90
90
|
*
|
|
91
91
|
* @type {string}
|
package/src/models/faq-model.ts
CHANGED
|
@@ -27,7 +27,7 @@ import { LocalizedUrlModel } from './localized-url-model';
|
|
|
27
27
|
import { MediaModel } from './media-model';
|
|
28
28
|
// May contain unused imports in some cases
|
|
29
29
|
// @ts-ignore
|
|
30
|
-
import {
|
|
30
|
+
import { SimpleTranslationModel } from './simple-translation-model';
|
|
31
31
|
|
|
32
32
|
/**
|
|
33
33
|
*
|
|
@@ -85,10 +85,10 @@ export interface FaqModel {
|
|
|
85
85
|
'hospitalId'?: string | null;
|
|
86
86
|
/**
|
|
87
87
|
*
|
|
88
|
-
* @type {
|
|
88
|
+
* @type {SimpleTranslationModel}
|
|
89
89
|
* @memberof FaqModel
|
|
90
90
|
*/
|
|
91
|
-
'hospitalTranslation'?:
|
|
91
|
+
'hospitalTranslation'?: SimpleTranslationModel;
|
|
92
92
|
/**
|
|
93
93
|
*
|
|
94
94
|
* @type {string}
|
|
@@ -21,6 +21,9 @@ import { AccreditationDocumentModel } from './accreditation-document-model';
|
|
|
21
21
|
import { AppointmentOptionDocumentModel } from './appointment-option-document-model';
|
|
22
22
|
// May contain unused imports in some cases
|
|
23
23
|
// @ts-ignore
|
|
24
|
+
import { AuditableEntityDocumentModel } from './auditable-entity-document-model';
|
|
25
|
+
// May contain unused imports in some cases
|
|
26
|
+
// @ts-ignore
|
|
24
27
|
import { CountrySubDocumentModel } from './country-sub-document-model';
|
|
25
28
|
// May contain unused imports in some cases
|
|
26
29
|
// @ts-ignore
|
|
@@ -479,5 +482,11 @@ export interface HospitalDocumentModel {
|
|
|
479
482
|
* @memberof HospitalDocumentModel
|
|
480
483
|
*/
|
|
481
484
|
'TagIds'?: Array<string> | null;
|
|
485
|
+
/**
|
|
486
|
+
*
|
|
487
|
+
* @type {AuditableEntityDocumentModel}
|
|
488
|
+
* @memberof HospitalDocumentModel
|
|
489
|
+
*/
|
|
490
|
+
'AuditableEntity'?: AuditableEntityDocumentModel;
|
|
482
491
|
}
|
|
483
492
|
|
|
@@ -18,6 +18,9 @@
|
|
|
18
18
|
import { AppointmentOptionDocumentModel } from './appointment-option-document-model';
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
|
+
import { AuditableEntityDocumentModel } from './auditable-entity-document-model';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
21
24
|
import { FeatureDocumentModel } from './feature-document-model';
|
|
22
25
|
// May contain unused imports in some cases
|
|
23
26
|
// @ts-ignore
|
|
@@ -371,5 +374,11 @@ export interface HospitalSpecialtyDocumentModel {
|
|
|
371
374
|
* @memberof HospitalSpecialtyDocumentModel
|
|
372
375
|
*/
|
|
373
376
|
'Feature'?: FeatureDocumentModel;
|
|
377
|
+
/**
|
|
378
|
+
*
|
|
379
|
+
* @type {AuditableEntityDocumentModel}
|
|
380
|
+
* @memberof HospitalSpecialtyDocumentModel
|
|
381
|
+
*/
|
|
382
|
+
'AuditableEntity'?: AuditableEntityDocumentModel;
|
|
374
383
|
}
|
|
375
384
|
|
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-document-model';
|
|
35
36
|
export * from './auditable-entity-model';
|
|
36
37
|
export * from './award-model';
|
|
37
38
|
export * from './bank-account-info-item-model';
|
|
@@ -86,6 +87,10 @@ export * from './create-patient-command';
|
|
|
86
87
|
export * from './create-profile-command';
|
|
87
88
|
export * from './create-service-review-command';
|
|
88
89
|
export * from './create-survey-result-command';
|
|
90
|
+
export * from './curation-item-model';
|
|
91
|
+
export * from './curation-model';
|
|
92
|
+
export * from './curation-specialty-type-item-model';
|
|
93
|
+
export * from './curation-specialty-types-model';
|
|
89
94
|
export * from './day-of-week';
|
|
90
95
|
export * from './deal-document-model';
|
|
91
96
|
export * from './deal-item-model';
|
|
@@ -258,6 +263,8 @@ export * from './service-review-item-model';
|
|
|
258
263
|
export * from './service-review-model';
|
|
259
264
|
export * from './service-reviews-model';
|
|
260
265
|
export * from './service-sub-document-model';
|
|
266
|
+
export * from './simple-translation-model';
|
|
267
|
+
export * from './simple-translation-with-description-model';
|
|
261
268
|
export * from './sns-handle-document-model';
|
|
262
269
|
export * from './sns-handle-model';
|
|
263
270
|
export * from './sns-type';
|
|
@@ -289,8 +296,6 @@ export * from './tag-model';
|
|
|
289
296
|
export * from './tags-model';
|
|
290
297
|
export * from './translation-document-model';
|
|
291
298
|
export * from './translation-item-document-model';
|
|
292
|
-
export * from './translation-simple-model';
|
|
293
|
-
export * from './translation-simple-with-description-model';
|
|
294
299
|
export * from './update-appointment-command';
|
|
295
300
|
export * from './update-booking-command';
|
|
296
301
|
export * from './update-call-history-command';
|
|
@@ -18,6 +18,9 @@
|
|
|
18
18
|
import { AppointmentOptionDocumentModel } from './appointment-option-document-model';
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
|
+
import { AuditableEntityDocumentModel } from './auditable-entity-document-model';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
21
24
|
import { FeatureDocumentModel } from './feature-document-model';
|
|
22
25
|
// May contain unused imports in some cases
|
|
23
26
|
// @ts-ignore
|
|
@@ -353,5 +356,11 @@ export interface ServiceDocumentModel {
|
|
|
353
356
|
* @memberof ServiceDocumentModel
|
|
354
357
|
*/
|
|
355
358
|
'Feature'?: FeatureDocumentModel;
|
|
359
|
+
/**
|
|
360
|
+
*
|
|
361
|
+
* @type {AuditableEntityDocumentModel}
|
|
362
|
+
* @memberof ServiceDocumentModel
|
|
363
|
+
*/
|
|
364
|
+
'AuditableEntity'?: AuditableEntityDocumentModel;
|
|
356
365
|
}
|
|
357
366
|
|
|
@@ -17,43 +17,43 @@
|
|
|
17
17
|
/**
|
|
18
18
|
*
|
|
19
19
|
* @export
|
|
20
|
-
* @interface
|
|
20
|
+
* @interface SimpleTranslationModel
|
|
21
21
|
*/
|
|
22
|
-
export interface
|
|
22
|
+
export interface SimpleTranslationModel {
|
|
23
23
|
/**
|
|
24
24
|
*
|
|
25
25
|
* @type {string}
|
|
26
|
-
* @memberof
|
|
26
|
+
* @memberof SimpleTranslationModel
|
|
27
27
|
*/
|
|
28
28
|
'languageCode'?: string | null;
|
|
29
29
|
/**
|
|
30
30
|
*
|
|
31
31
|
* @type {string}
|
|
32
|
-
* @memberof
|
|
32
|
+
* @memberof SimpleTranslationModel
|
|
33
33
|
*/
|
|
34
34
|
'name'?: string | null;
|
|
35
35
|
/**
|
|
36
36
|
*
|
|
37
37
|
* @type {string}
|
|
38
|
-
* @memberof
|
|
38
|
+
* @memberof SimpleTranslationModel
|
|
39
39
|
*/
|
|
40
40
|
'normalizedName'?: string | null;
|
|
41
41
|
/**
|
|
42
42
|
*
|
|
43
43
|
* @type {string}
|
|
44
|
-
* @memberof
|
|
44
|
+
* @memberof SimpleTranslationModel
|
|
45
45
|
*/
|
|
46
46
|
'slug'?: string | null;
|
|
47
47
|
/**
|
|
48
48
|
*
|
|
49
49
|
* @type {Date}
|
|
50
|
-
* @memberof
|
|
50
|
+
* @memberof SimpleTranslationModel
|
|
51
51
|
*/
|
|
52
52
|
'updatedDate'?: Date | null;
|
|
53
53
|
/**
|
|
54
54
|
*
|
|
55
55
|
* @type {boolean}
|
|
56
|
-
* @memberof
|
|
56
|
+
* @memberof SimpleTranslationModel
|
|
57
57
|
*/
|
|
58
58
|
'isConfirmed'?: boolean;
|
|
59
59
|
}
|