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
|
@@ -17,49 +17,49 @@
|
|
|
17
17
|
/**
|
|
18
18
|
*
|
|
19
19
|
* @export
|
|
20
|
-
* @interface
|
|
20
|
+
* @interface SimpleTranslationWithDescriptionModel
|
|
21
21
|
*/
|
|
22
|
-
export interface
|
|
22
|
+
export interface SimpleTranslationWithDescriptionModel {
|
|
23
23
|
/**
|
|
24
24
|
*
|
|
25
25
|
* @type {string}
|
|
26
|
-
* @memberof
|
|
26
|
+
* @memberof SimpleTranslationWithDescriptionModel
|
|
27
27
|
*/
|
|
28
28
|
'languageCode'?: string | null;
|
|
29
29
|
/**
|
|
30
30
|
*
|
|
31
31
|
* @type {string}
|
|
32
|
-
* @memberof
|
|
32
|
+
* @memberof SimpleTranslationWithDescriptionModel
|
|
33
33
|
*/
|
|
34
34
|
'name'?: string | null;
|
|
35
35
|
/**
|
|
36
36
|
*
|
|
37
37
|
* @type {string}
|
|
38
|
-
* @memberof
|
|
38
|
+
* @memberof SimpleTranslationWithDescriptionModel
|
|
39
39
|
*/
|
|
40
40
|
'normalizedName'?: string | null;
|
|
41
41
|
/**
|
|
42
42
|
*
|
|
43
43
|
* @type {string}
|
|
44
|
-
* @memberof
|
|
44
|
+
* @memberof SimpleTranslationWithDescriptionModel
|
|
45
45
|
*/
|
|
46
46
|
'slug'?: string | null;
|
|
47
47
|
/**
|
|
48
48
|
*
|
|
49
49
|
* @type {Date}
|
|
50
|
-
* @memberof
|
|
50
|
+
* @memberof SimpleTranslationWithDescriptionModel
|
|
51
51
|
*/
|
|
52
52
|
'updatedDate'?: Date | null;
|
|
53
53
|
/**
|
|
54
54
|
*
|
|
55
55
|
* @type {boolean}
|
|
56
|
-
* @memberof
|
|
56
|
+
* @memberof SimpleTranslationWithDescriptionModel
|
|
57
57
|
*/
|
|
58
58
|
'isConfirmed'?: boolean;
|
|
59
59
|
/**
|
|
60
60
|
*
|
|
61
61
|
* @type {string}
|
|
62
|
-
* @memberof
|
|
62
|
+
* @memberof SimpleTranslationWithDescriptionModel
|
|
63
63
|
*/
|
|
64
64
|
'description'?: string | null;
|
|
65
65
|
}
|
|
@@ -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 { DepartmentSubDocumentModel } from './department-sub-document-model';
|
|
@@ -293,5 +296,11 @@ export interface SpecialtyDocumentModel {
|
|
|
293
296
|
* @memberof SpecialtyDocumentModel
|
|
294
297
|
*/
|
|
295
298
|
'Medias'?: Array<MediaDocumentModel> | null;
|
|
299
|
+
/**
|
|
300
|
+
*
|
|
301
|
+
* @type {AuditableEntityDocumentModel}
|
|
302
|
+
* @memberof SpecialtyDocumentModel
|
|
303
|
+
*/
|
|
304
|
+
'AuditableEntity'?: AuditableEntityDocumentModel;
|
|
296
305
|
}
|
|
297
306
|
|
|
@@ -24,7 +24,7 @@ import { MarketingType } from './marketing-type';
|
|
|
24
24
|
import { MediaModel } from './media-model';
|
|
25
25
|
// May contain unused imports in some cases
|
|
26
26
|
// @ts-ignore
|
|
27
|
-
import {
|
|
27
|
+
import { SimpleTranslationWithDescriptionModel } from './simple-translation-with-description-model';
|
|
28
28
|
|
|
29
29
|
/**
|
|
30
30
|
*
|
|
@@ -46,10 +46,10 @@ export interface SpecialtyTypeItemModel {
|
|
|
46
46
|
'languageCode'?: string | null;
|
|
47
47
|
/**
|
|
48
48
|
*
|
|
49
|
-
* @type {Array<
|
|
49
|
+
* @type {Array<SimpleTranslationWithDescriptionModel>}
|
|
50
50
|
* @memberof SpecialtyTypeItemModel
|
|
51
51
|
*/
|
|
52
|
-
'simpleTranslations'?: Array<
|
|
52
|
+
'simpleTranslations'?: Array<SimpleTranslationWithDescriptionModel> | null;
|
|
53
53
|
/**
|
|
54
54
|
*
|
|
55
55
|
* @type {string}
|
|
@@ -27,7 +27,7 @@ import { MarketingType } from './marketing-type';
|
|
|
27
27
|
import { MediaModel } from './media-model';
|
|
28
28
|
// May contain unused imports in some cases
|
|
29
29
|
// @ts-ignore
|
|
30
|
-
import {
|
|
30
|
+
import { SimpleTranslationWithDescriptionModel } from './simple-translation-with-description-model';
|
|
31
31
|
|
|
32
32
|
/**
|
|
33
33
|
*
|
|
@@ -49,10 +49,10 @@ export interface SpecialtyTypeModel {
|
|
|
49
49
|
'languageCode'?: string | null;
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
52
|
-
* @type {Array<
|
|
52
|
+
* @type {Array<SimpleTranslationWithDescriptionModel>}
|
|
53
53
|
* @memberof SpecialtyTypeModel
|
|
54
54
|
*/
|
|
55
|
-
'simpleTranslations'?: Array<
|
|
55
|
+
'simpleTranslations'?: Array<SimpleTranslationWithDescriptionModel> | null;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {string}
|
|
File without changes
|
|
File without changes
|