ch-api-client-typescript2 5.19.70 → 5.20.1

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.
Files changed (46) hide show
  1. package/lib/api/hospitals-api.d.ts +138 -0
  2. package/lib/api/hospitals-api.d.ts.map +1 -1
  3. package/lib/api/hospitals-api.js +180 -0
  4. package/lib/models/index.d.ts +9 -0
  5. package/lib/models/index.d.ts.map +1 -1
  6. package/lib/models/index.js +9 -0
  7. package/lib/models/page-block-link-model.d.ts +68 -0
  8. package/lib/models/page-block-link-model.d.ts.map +1 -0
  9. package/lib/models/page-block-link-model.js +15 -0
  10. package/lib/models/page-block-link-type.d.ts +22 -0
  11. package/lib/models/page-block-link-type.d.ts.map +1 -0
  12. package/lib/models/page-block-link-type.js +25 -0
  13. package/lib/models/page-block-location-model.d.ts +43 -0
  14. package/lib/models/page-block-location-model.d.ts.map +1 -0
  15. package/lib/models/page-block-location-model.js +15 -0
  16. package/lib/models/page-block-model.d.ts +113 -0
  17. package/lib/models/page-block-model.d.ts.map +1 -0
  18. package/lib/models/page-block-model.js +15 -0
  19. package/lib/models/page-block-type.d.ts +29 -0
  20. package/lib/models/page-block-type.d.ts.map +1 -0
  21. package/lib/models/page-block-type.js +32 -0
  22. package/lib/models/page-item-model.d.ts +93 -0
  23. package/lib/models/page-item-model.d.ts.map +1 -0
  24. package/lib/models/page-item-model.js +15 -0
  25. package/lib/models/page-item-status.d.ts +23 -0
  26. package/lib/models/page-item-status.d.ts.map +1 -0
  27. package/lib/models/page-item-status.js +26 -0
  28. package/lib/models/page-section-list-type.d.ts +23 -0
  29. package/lib/models/page-section-list-type.d.ts.map +1 -0
  30. package/lib/models/page-section-list-type.js +26 -0
  31. package/lib/models/page-section-model.d.ts +51 -0
  32. package/lib/models/page-section-model.d.ts.map +1 -0
  33. package/lib/models/page-section-model.js +15 -0
  34. package/package.json +1 -1
  35. package/src/.openapi-generator/FILES +9 -0
  36. package/src/api/hospitals-api.ts +232 -0
  37. package/src/models/index.ts +9 -0
  38. package/src/models/page-block-link-model.ts +75 -0
  39. package/src/models/page-block-link-type.ts +31 -0
  40. package/src/models/page-block-location-model.ts +48 -0
  41. package/src/models/page-block-model.ts +126 -0
  42. package/src/models/page-block-type.ts +38 -0
  43. package/src/models/page-item-model.ts +102 -0
  44. package/src/models/page-item-status.ts +32 -0
  45. package/src/models/page-section-list-type.ts +32 -0
  46. package/src/models/page-section-model.ts +60 -0
@@ -0,0 +1,126 @@
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 { MediaModel } from './media-model';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import { PageBlockLinkModel } from './page-block-link-model';
22
+ // May contain unused imports in some cases
23
+ // @ts-ignore
24
+ import { PageBlockLocationModel } from './page-block-location-model';
25
+ // May contain unused imports in some cases
26
+ // @ts-ignore
27
+ import { PageBlockType } from './page-block-type';
28
+
29
+ /**
30
+ *
31
+ * @export
32
+ * @interface PageBlockModel
33
+ */
34
+ export interface PageBlockModel {
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof PageBlockModel
39
+ */
40
+ 'id'?: string;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof PageBlockModel
45
+ */
46
+ 'languageCode'?: string | null;
47
+ /**
48
+ *
49
+ * @type {PageBlockType}
50
+ * @memberof PageBlockModel
51
+ */
52
+ 'blockType'?: PageBlockType;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof PageBlockModel
57
+ */
58
+ 'icon'?: string | null;
59
+ /**
60
+ *
61
+ * @type {string}
62
+ * @memberof PageBlockModel
63
+ */
64
+ 'customStyle'?: string | null;
65
+ /**
66
+ *
67
+ * @type {number}
68
+ * @memberof PageBlockModel
69
+ */
70
+ 'order'?: number;
71
+ /**
72
+ *
73
+ * @type {string}
74
+ * @memberof PageBlockModel
75
+ */
76
+ 'name'?: string | null;
77
+ /**
78
+ *
79
+ * @type {string}
80
+ * @memberof PageBlockModel
81
+ */
82
+ 'subtitle'?: string | null;
83
+ /**
84
+ *
85
+ * @type {string}
86
+ * @memberof PageBlockModel
87
+ */
88
+ 'description'?: string | null;
89
+ /**
90
+ *
91
+ * @type {string}
92
+ * @memberof PageBlockModel
93
+ */
94
+ 'overview'?: string | null;
95
+ /**
96
+ *
97
+ * @type {string}
98
+ * @memberof PageBlockModel
99
+ */
100
+ 'content'?: string | null;
101
+ /**
102
+ *
103
+ * @type {boolean}
104
+ * @memberof PageBlockModel
105
+ */
106
+ 'isConfirmed'?: boolean | null;
107
+ /**
108
+ *
109
+ * @type {Array<MediaModel>}
110
+ * @memberof PageBlockModel
111
+ */
112
+ 'medias'?: Array<MediaModel> | null;
113
+ /**
114
+ *
115
+ * @type {Array<PageBlockLinkModel>}
116
+ * @memberof PageBlockModel
117
+ */
118
+ 'links'?: Array<PageBlockLinkModel> | null;
119
+ /**
120
+ *
121
+ * @type {Array<PageBlockLocationModel>}
122
+ * @memberof PageBlockModel
123
+ */
124
+ 'locations'?: Array<PageBlockLocationModel> | null;
125
+ }
126
+
@@ -0,0 +1,38 @@
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
+ * @enum {string}
21
+ */
22
+
23
+ export const PageBlockType = {
24
+ Title: 'Title',
25
+ Title1: 'Title1',
26
+ Title2: 'Title2',
27
+ Title3: 'Title3',
28
+ Title4: 'Title4',
29
+ About: 'About',
30
+ ListItem: 'ListItem',
31
+ Award: 'Award',
32
+ Press: 'Press'
33
+ } as const;
34
+
35
+ export type PageBlockType = typeof PageBlockType[keyof typeof PageBlockType];
36
+
37
+
38
+
@@ -0,0 +1,102 @@
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 { PageItemStatus } from './page-item-status';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import { PageSectionModel } from './page-section-model';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface PageItemModel
27
+ */
28
+ export interface PageItemModel {
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof PageItemModel
33
+ */
34
+ 'id'?: string;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof PageItemModel
39
+ */
40
+ 'hospitalId'?: string;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof PageItemModel
45
+ */
46
+ 'languageCode'?: string | null;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof PageItemModel
51
+ */
52
+ 'customStyle'?: string | null;
53
+ /**
54
+ *
55
+ * @type {PageItemStatus}
56
+ * @memberof PageItemModel
57
+ */
58
+ 'status'?: PageItemStatus;
59
+ /**
60
+ *
61
+ * @type {Array<PageSectionModel>}
62
+ * @memberof PageItemModel
63
+ */
64
+ 'sections'?: Array<PageSectionModel> | null;
65
+ /**
66
+ *
67
+ * @type {string}
68
+ * @memberof PageItemModel
69
+ */
70
+ 'name'?: string | null;
71
+ /**
72
+ *
73
+ * @type {string}
74
+ * @memberof PageItemModel
75
+ */
76
+ 'slug'?: string | null;
77
+ /**
78
+ *
79
+ * @type {string}
80
+ * @memberof PageItemModel
81
+ */
82
+ 'description'?: string | null;
83
+ /**
84
+ *
85
+ * @type {string}
86
+ * @memberof PageItemModel
87
+ */
88
+ 'overview'?: string | null;
89
+ /**
90
+ *
91
+ * @type {string}
92
+ * @memberof PageItemModel
93
+ */
94
+ 'content'?: string | null;
95
+ /**
96
+ *
97
+ * @type {boolean}
98
+ * @memberof PageItemModel
99
+ */
100
+ 'isConfirmed'?: boolean;
101
+ }
102
+
@@ -0,0 +1,32 @@
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
+ * @enum {string}
21
+ */
22
+
23
+ export const PageItemStatus = {
24
+ Draft: 'Draft',
25
+ Active: 'Active',
26
+ Archived: 'Archived'
27
+ } as const;
28
+
29
+ export type PageItemStatus = typeof PageItemStatus[keyof typeof PageItemStatus];
30
+
31
+
32
+
@@ -0,0 +1,32 @@
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
+ * @enum {string}
21
+ */
22
+
23
+ export const PageSectionListType = {
24
+ None: 'None',
25
+ List: 'List',
26
+ Grid: 'Grid'
27
+ } as const;
28
+
29
+ export type PageSectionListType = typeof PageSectionListType[keyof typeof PageSectionListType];
30
+
31
+
32
+
@@ -0,0 +1,60 @@
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 { PageBlockModel } from './page-block-model';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import { PageSectionListType } from './page-section-list-type';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface PageSectionModel
27
+ */
28
+ export interface PageSectionModel {
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof PageSectionModel
33
+ */
34
+ 'id'?: string;
35
+ /**
36
+ *
37
+ * @type {PageSectionListType}
38
+ * @memberof PageSectionModel
39
+ */
40
+ 'listType'?: PageSectionListType;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof PageSectionModel
45
+ */
46
+ 'customStyle'?: string | null;
47
+ /**
48
+ *
49
+ * @type {number}
50
+ * @memberof PageSectionModel
51
+ */
52
+ 'order'?: number;
53
+ /**
54
+ *
55
+ * @type {Array<PageBlockModel>}
56
+ * @memberof PageSectionModel
57
+ */
58
+ 'blocks'?: Array<PageBlockModel> | null;
59
+ }
60
+