ch-api-client-typescript2 5.13.5 → 5.14.0
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/country-model.d.ts +6 -6
- package/lib/models/country-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-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-mapping-model.d.ts +3 -3
- package/lib/models/faq-item-model.d.ts +3 -3
- package/lib/models/faq-model.d.ts +3 -3
- package/lib/models/index.d.ts +6 -2
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +6 -2
- 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-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 +7 -2
- package/src/api/curations-api.ts +436 -0
- package/src/api.ts +1 -0
- package/src/models/country-model.ts +6 -6
- 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-mapping-model.ts +3 -3
- package/src/models/faq-item-model.ts +3 -3
- package/src/models/faq-model.ts +3 -3
- package/src/models/index.ts +6 -2
- 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-type-item-model.ts +3 -3
- package/src/models/specialty-type-model.ts +3 -3
- /package/lib/models/{translation-simple-model.js → curation-item-model.js} +0 -0
- /package/lib/models/{translation-simple-with-description-model.js → curation-model.js} +0 -0
|
@@ -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
|
+
|
|
@@ -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
|
|
|
@@ -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}
|
package/src/models/index.ts
CHANGED
|
@@ -86,6 +86,10 @@ export * from './create-patient-command';
|
|
|
86
86
|
export * from './create-profile-command';
|
|
87
87
|
export * from './create-service-review-command';
|
|
88
88
|
export * from './create-survey-result-command';
|
|
89
|
+
export * from './curation-item-model';
|
|
90
|
+
export * from './curation-model';
|
|
91
|
+
export * from './curation-specialty-type-item-model';
|
|
92
|
+
export * from './curation-specialty-types-model';
|
|
89
93
|
export * from './day-of-week';
|
|
90
94
|
export * from './deal-document-model';
|
|
91
95
|
export * from './deal-item-model';
|
|
@@ -258,6 +262,8 @@ export * from './service-review-item-model';
|
|
|
258
262
|
export * from './service-review-model';
|
|
259
263
|
export * from './service-reviews-model';
|
|
260
264
|
export * from './service-sub-document-model';
|
|
265
|
+
export * from './simple-translation-model';
|
|
266
|
+
export * from './simple-translation-with-description-model';
|
|
261
267
|
export * from './sns-handle-document-model';
|
|
262
268
|
export * from './sns-handle-model';
|
|
263
269
|
export * from './sns-type';
|
|
@@ -289,8 +295,6 @@ export * from './tag-model';
|
|
|
289
295
|
export * from './tags-model';
|
|
290
296
|
export * from './translation-document-model';
|
|
291
297
|
export * from './translation-item-document-model';
|
|
292
|
-
export * from './translation-simple-model';
|
|
293
|
-
export * from './translation-simple-with-description-model';
|
|
294
298
|
export * from './update-appointment-command';
|
|
295
299
|
export * from './update-booking-command';
|
|
296
300
|
export * from './update-call-history-command';
|
|
@@ -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
|
}
|
|
@@ -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
|
}
|
|
@@ -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
|