ch-admin-api-client-typescript 5.19.69 → 5.19.71

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 (98) hide show
  1. package/lib/api/hospitals-api.d.ts +773 -6
  2. package/lib/api/hospitals-api.d.ts.map +1 -1
  3. package/lib/api/hospitals-api.js +1172 -69
  4. package/lib/models/create-hospital-rating-command.d.ts +61 -0
  5. package/lib/models/create-hospital-rating-command.d.ts.map +1 -0
  6. package/lib/models/create-hospital-rating-command.js +15 -0
  7. package/lib/models/create-page-command.d.ts +75 -0
  8. package/lib/models/create-page-command.d.ts.map +1 -0
  9. package/lib/models/create-page-command.js +15 -0
  10. package/lib/models/hospital-rating-item-model.d.ts +67 -0
  11. package/lib/models/hospital-rating-item-model.d.ts.map +1 -0
  12. package/lib/models/hospital-rating-item-model.js +15 -0
  13. package/lib/models/hospital-rating-model.d.ts +67 -0
  14. package/lib/models/hospital-rating-model.d.ts.map +1 -0
  15. package/lib/models/hospital-rating-model.js +15 -0
  16. package/lib/models/hospital-ratings-model.d.ts +33 -0
  17. package/lib/models/hospital-ratings-model.d.ts.map +1 -0
  18. package/lib/models/hospital-ratings-model.js +15 -0
  19. package/lib/models/index.d.ts +22 -0
  20. package/lib/models/index.d.ts.map +1 -1
  21. package/lib/models/index.js +22 -0
  22. package/lib/models/page-block-input-model.d.ts +101 -0
  23. package/lib/models/page-block-input-model.d.ts.map +1 -0
  24. package/lib/models/page-block-input-model.js +15 -0
  25. package/lib/models/page-block-link-input-model.d.ts +56 -0
  26. package/lib/models/page-block-link-input-model.d.ts.map +1 -0
  27. package/lib/models/page-block-link-input-model.js +15 -0
  28. package/lib/models/page-block-link-model.d.ts +68 -0
  29. package/lib/models/page-block-link-model.d.ts.map +1 -0
  30. package/lib/models/page-block-link-model.js +15 -0
  31. package/lib/models/page-block-link-type.d.ts +22 -0
  32. package/lib/models/page-block-link-type.d.ts.map +1 -0
  33. package/lib/models/page-block-link-type.js +25 -0
  34. package/lib/models/page-block-location-input-model.d.ts +49 -0
  35. package/lib/models/page-block-location-input-model.d.ts.map +1 -0
  36. package/lib/models/page-block-location-input-model.js +15 -0
  37. package/lib/models/page-block-location-model.d.ts +49 -0
  38. package/lib/models/page-block-location-model.d.ts.map +1 -0
  39. package/lib/models/page-block-location-model.js +15 -0
  40. package/lib/models/page-block-model.d.ts +113 -0
  41. package/lib/models/page-block-model.d.ts.map +1 -0
  42. package/lib/models/page-block-model.js +15 -0
  43. package/lib/models/page-block-type.d.ts +29 -0
  44. package/lib/models/page-block-type.d.ts.map +1 -0
  45. package/lib/models/page-block-type.js +32 -0
  46. package/lib/models/page-item-item-model.d.ts +69 -0
  47. package/lib/models/page-item-item-model.d.ts.map +1 -0
  48. package/lib/models/page-item-item-model.js +15 -0
  49. package/lib/models/page-item-model.d.ts +100 -0
  50. package/lib/models/page-item-model.d.ts.map +1 -0
  51. package/lib/models/page-item-model.js +15 -0
  52. package/lib/models/page-item-status.d.ts +23 -0
  53. package/lib/models/page-item-status.d.ts.map +1 -0
  54. package/lib/models/page-item-status.js +26 -0
  55. package/lib/models/page-items-model.d.ts +33 -0
  56. package/lib/models/page-items-model.d.ts.map +1 -0
  57. package/lib/models/page-items-model.js +15 -0
  58. package/lib/models/page-section-input-model.d.ts +51 -0
  59. package/lib/models/page-section-input-model.d.ts.map +1 -0
  60. package/lib/models/page-section-input-model.js +15 -0
  61. package/lib/models/page-section-list-type.d.ts +23 -0
  62. package/lib/models/page-section-list-type.d.ts.map +1 -0
  63. package/lib/models/page-section-list-type.js +26 -0
  64. package/lib/models/page-section-model.d.ts +51 -0
  65. package/lib/models/page-section-model.d.ts.map +1 -0
  66. package/lib/models/page-section-model.js +15 -0
  67. package/lib/models/update-hospital-rating-command.d.ts +61 -0
  68. package/lib/models/update-hospital-rating-command.d.ts.map +1 -0
  69. package/lib/models/update-hospital-rating-command.js +15 -0
  70. package/lib/models/update-page-command.d.ts +75 -0
  71. package/lib/models/update-page-command.d.ts.map +1 -0
  72. package/lib/models/update-page-command.js +15 -0
  73. package/package.json +1 -1
  74. package/src/.openapi-generator/FILES +22 -0
  75. package/src/api/hospitals-api.ts +1539 -201
  76. package/src/models/create-hospital-rating-command.ts +66 -0
  77. package/src/models/create-page-command.ts +84 -0
  78. package/src/models/hospital-rating-item-model.ts +72 -0
  79. package/src/models/hospital-rating-model.ts +72 -0
  80. package/src/models/hospital-ratings-model.ts +42 -0
  81. package/src/models/index.ts +22 -0
  82. package/src/models/page-block-input-model.ts +114 -0
  83. package/src/models/page-block-link-input-model.ts +63 -0
  84. package/src/models/page-block-link-model.ts +75 -0
  85. package/src/models/page-block-link-type.ts +31 -0
  86. package/src/models/page-block-location-input-model.ts +54 -0
  87. package/src/models/page-block-location-model.ts +54 -0
  88. package/src/models/page-block-model.ts +126 -0
  89. package/src/models/page-block-type.ts +38 -0
  90. package/src/models/page-item-item-model.ts +78 -0
  91. package/src/models/page-item-model.ts +111 -0
  92. package/src/models/page-item-status.ts +32 -0
  93. package/src/models/page-items-model.ts +42 -0
  94. package/src/models/page-section-input-model.ts +60 -0
  95. package/src/models/page-section-list-type.ts +32 -0
  96. package/src/models/page-section-model.ts +60 -0
  97. package/src/models/update-hospital-rating-command.ts +66 -0
  98. package/src/models/update-page-command.ts +84 -0
@@ -0,0 +1,54 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
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 PageBlockLocationInputModel
21
+ */
22
+ export interface PageBlockLocationInputModel {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof PageBlockLocationInputModel
27
+ */
28
+ 'id'?: string | null;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof PageBlockLocationInputModel
33
+ */
34
+ 'vender'?: string | null;
35
+ /**
36
+ *
37
+ * @type {number}
38
+ * @memberof PageBlockLocationInputModel
39
+ */
40
+ 'rating'?: number;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof PageBlockLocationInputModel
45
+ */
46
+ 'placeId'?: string | null;
47
+ /**
48
+ *
49
+ * @type {number}
50
+ * @memberof PageBlockLocationInputModel
51
+ */
52
+ 'order'?: number;
53
+ }
54
+
@@ -0,0 +1,54 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
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 PageBlockLocationModel
21
+ */
22
+ export interface PageBlockLocationModel {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof PageBlockLocationModel
27
+ */
28
+ 'id'?: string;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof PageBlockLocationModel
33
+ */
34
+ 'vender'?: string | null;
35
+ /**
36
+ *
37
+ * @type {number}
38
+ * @memberof PageBlockLocationModel
39
+ */
40
+ 'rating'?: number;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof PageBlockLocationModel
45
+ */
46
+ 'placeId'?: string | null;
47
+ /**
48
+ *
49
+ * @type {number}
50
+ * @memberof PageBlockLocationModel
51
+ */
52
+ 'order'?: number;
53
+ }
54
+
@@ -0,0 +1,126 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
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;
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 Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
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,78 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
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
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import { PageItemStatus } from './page-item-status';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface PageItemItemModel
27
+ */
28
+ export interface PageItemItemModel {
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof PageItemItemModel
33
+ */
34
+ 'id'?: string;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof PageItemItemModel
39
+ */
40
+ 'hospitalId'?: string;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof PageItemItemModel
45
+ */
46
+ 'languageCode'?: string | null;
47
+ /**
48
+ *
49
+ * @type {PageItemStatus}
50
+ * @memberof PageItemItemModel
51
+ */
52
+ 'status'?: PageItemStatus;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof PageItemItemModel
57
+ */
58
+ 'name'?: string | null;
59
+ /**
60
+ *
61
+ * @type {string}
62
+ * @memberof PageItemItemModel
63
+ */
64
+ 'slug'?: string | null;
65
+ /**
66
+ *
67
+ * @type {boolean}
68
+ * @memberof PageItemItemModel
69
+ */
70
+ 'isConfirmed'?: boolean;
71
+ /**
72
+ *
73
+ * @type {AuditableEntityModel}
74
+ * @memberof PageItemItemModel
75
+ */
76
+ 'auditableEntity'?: AuditableEntityModel;
77
+ }
78
+
@@ -0,0 +1,111 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
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
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import { PageItemStatus } from './page-item-status';
22
+ // May contain unused imports in some cases
23
+ // @ts-ignore
24
+ import { PageSectionModel } from './page-section-model';
25
+
26
+ /**
27
+ *
28
+ * @export
29
+ * @interface PageItemModel
30
+ */
31
+ export interface PageItemModel {
32
+ /**
33
+ *
34
+ * @type {string}
35
+ * @memberof PageItemModel
36
+ */
37
+ 'id'?: string;
38
+ /**
39
+ *
40
+ * @type {string}
41
+ * @memberof PageItemModel
42
+ */
43
+ 'hospitalId'?: string;
44
+ /**
45
+ *
46
+ * @type {string}
47
+ * @memberof PageItemModel
48
+ */
49
+ 'languageCode'?: string | null;
50
+ /**
51
+ *
52
+ * @type {PageItemStatus}
53
+ * @memberof PageItemModel
54
+ */
55
+ 'status'?: PageItemStatus;
56
+ /**
57
+ *
58
+ * @type {string}
59
+ * @memberof PageItemModel
60
+ */
61
+ 'name'?: string | null;
62
+ /**
63
+ *
64
+ * @type {string}
65
+ * @memberof PageItemModel
66
+ */
67
+ 'slug'?: string | null;
68
+ /**
69
+ *
70
+ * @type {boolean}
71
+ * @memberof PageItemModel
72
+ */
73
+ 'isConfirmed'?: boolean;
74
+ /**
75
+ *
76
+ * @type {AuditableEntityModel}
77
+ * @memberof PageItemModel
78
+ */
79
+ 'auditableEntity'?: AuditableEntityModel;
80
+ /**
81
+ *
82
+ * @type {string}
83
+ * @memberof PageItemModel
84
+ */
85
+ 'customStyle'?: string | null;
86
+ /**
87
+ *
88
+ * @type {Array<PageSectionModel>}
89
+ * @memberof PageItemModel
90
+ */
91
+ 'sections'?: Array<PageSectionModel> | null;
92
+ /**
93
+ *
94
+ * @type {string}
95
+ * @memberof PageItemModel
96
+ */
97
+ 'description'?: string | null;
98
+ /**
99
+ *
100
+ * @type {string}
101
+ * @memberof PageItemModel
102
+ */
103
+ 'overview'?: string | null;
104
+ /**
105
+ *
106
+ * @type {string}
107
+ * @memberof PageItemModel
108
+ */
109
+ 'content'?: string | null;
110
+ }
111
+
@@ -0,0 +1,32 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
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,42 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
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 { PageItemItemModel } from './page-item-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 PageItemsModel
27
+ */
28
+ export interface PageItemsModel {
29
+ /**
30
+ *
31
+ * @type {Array<PageItemItemModel>}
32
+ * @memberof PageItemsModel
33
+ */
34
+ 'items'?: Array<PageItemItemModel> | null;
35
+ /**
36
+ *
37
+ * @type {PagedListMetaData}
38
+ * @memberof PageItemsModel
39
+ */
40
+ 'metaData'?: PagedListMetaData;
41
+ }
42
+
@@ -0,0 +1,60 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
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 { PageBlockInputModel } from './page-block-input-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 PageSectionInputModel
27
+ */
28
+ export interface PageSectionInputModel {
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof PageSectionInputModel
33
+ */
34
+ 'id'?: string | null;
35
+ /**
36
+ *
37
+ * @type {PageSectionListType}
38
+ * @memberof PageSectionInputModel
39
+ */
40
+ 'listType'?: PageSectionListType;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof PageSectionInputModel
45
+ */
46
+ 'customStyle'?: string | null;
47
+ /**
48
+ *
49
+ * @type {number}
50
+ * @memberof PageSectionInputModel
51
+ */
52
+ 'order'?: number;
53
+ /**
54
+ *
55
+ * @type {Array<PageBlockInputModel>}
56
+ * @memberof PageSectionInputModel
57
+ */
58
+ 'blocks'?: Array<PageBlockInputModel> | null;
59
+ }
60
+
@@ -0,0 +1,32 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
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 Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
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
+