ch-admin-api-client-typescript 5.19.70 → 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.
- package/lib/api/hospitals-api.d.ts +434 -0
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +612 -0
- package/lib/models/create-page-command.d.ts +75 -0
- package/lib/models/create-page-command.d.ts.map +1 -0
- package/lib/models/create-page-command.js +15 -0
- package/lib/models/index.d.ts +17 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +17 -0
- package/lib/models/page-block-input-model.d.ts +101 -0
- package/lib/models/page-block-input-model.d.ts.map +1 -0
- package/lib/models/page-block-input-model.js +15 -0
- package/lib/models/page-block-link-input-model.d.ts +56 -0
- package/lib/models/page-block-link-input-model.d.ts.map +1 -0
- package/lib/models/page-block-link-input-model.js +15 -0
- package/lib/models/page-block-link-model.d.ts +68 -0
- package/lib/models/page-block-link-model.d.ts.map +1 -0
- package/lib/models/page-block-link-model.js +15 -0
- package/lib/models/page-block-link-type.d.ts +22 -0
- package/lib/models/page-block-link-type.d.ts.map +1 -0
- package/lib/models/page-block-link-type.js +25 -0
- package/lib/models/page-block-location-input-model.d.ts +49 -0
- package/lib/models/page-block-location-input-model.d.ts.map +1 -0
- package/lib/models/page-block-location-input-model.js +15 -0
- package/lib/models/page-block-location-model.d.ts +49 -0
- package/lib/models/page-block-location-model.d.ts.map +1 -0
- package/lib/models/page-block-location-model.js +15 -0
- package/lib/models/page-block-model.d.ts +113 -0
- package/lib/models/page-block-model.d.ts.map +1 -0
- package/lib/models/page-block-model.js +15 -0
- package/lib/models/page-block-type.d.ts +29 -0
- package/lib/models/page-block-type.d.ts.map +1 -0
- package/lib/models/page-block-type.js +32 -0
- package/lib/models/page-item-item-model.d.ts +69 -0
- package/lib/models/page-item-item-model.d.ts.map +1 -0
- package/lib/models/page-item-item-model.js +15 -0
- package/lib/models/page-item-model.d.ts +100 -0
- package/lib/models/page-item-model.d.ts.map +1 -0
- package/lib/models/page-item-model.js +15 -0
- package/lib/models/page-item-status.d.ts +23 -0
- package/lib/models/page-item-status.d.ts.map +1 -0
- package/lib/models/page-item-status.js +26 -0
- package/lib/models/page-items-model.d.ts +33 -0
- package/lib/models/page-items-model.d.ts.map +1 -0
- package/lib/models/page-items-model.js +15 -0
- package/lib/models/page-section-input-model.d.ts +51 -0
- package/lib/models/page-section-input-model.d.ts.map +1 -0
- package/lib/models/page-section-input-model.js +15 -0
- package/lib/models/page-section-list-type.d.ts +23 -0
- package/lib/models/page-section-list-type.d.ts.map +1 -0
- package/lib/models/page-section-list-type.js +26 -0
- package/lib/models/page-section-model.d.ts +51 -0
- package/lib/models/page-section-model.d.ts.map +1 -0
- package/lib/models/page-section-model.js +15 -0
- package/lib/models/update-page-command.d.ts +75 -0
- package/lib/models/update-page-command.d.ts.map +1 -0
- package/lib/models/update-page-command.js +15 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +17 -0
- package/src/api/hospitals-api.ts +758 -4
- package/src/models/create-page-command.ts +84 -0
- package/src/models/index.ts +17 -0
- package/src/models/page-block-input-model.ts +114 -0
- package/src/models/page-block-link-input-model.ts +63 -0
- package/src/models/page-block-link-model.ts +75 -0
- package/src/models/page-block-link-type.ts +31 -0
- package/src/models/page-block-location-input-model.ts +54 -0
- package/src/models/page-block-location-model.ts +54 -0
- package/src/models/page-block-model.ts +126 -0
- package/src/models/page-block-type.ts +38 -0
- package/src/models/page-item-item-model.ts +78 -0
- package/src/models/page-item-model.ts +111 -0
- package/src/models/page-item-status.ts +32 -0
- package/src/models/page-items-model.ts +42 -0
- package/src/models/page-section-input-model.ts +60 -0
- package/src/models/page-section-list-type.ts +32 -0
- package/src/models/page-section-model.ts +60 -0
- package/src/models/update-page-command.ts +84 -0
|
@@ -0,0 +1,84 @@
|
|
|
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 { PageItemStatus } from './page-item-status';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { PageSectionInputModel } from './page-section-input-model';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface CreatePageCommand
|
|
27
|
+
*/
|
|
28
|
+
export interface CreatePageCommand {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CreatePageCommand
|
|
33
|
+
*/
|
|
34
|
+
'languageCode'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CreatePageCommand
|
|
39
|
+
*/
|
|
40
|
+
'name'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof CreatePageCommand
|
|
45
|
+
*/
|
|
46
|
+
'description'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof CreatePageCommand
|
|
51
|
+
*/
|
|
52
|
+
'overview'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof CreatePageCommand
|
|
57
|
+
*/
|
|
58
|
+
'content'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {boolean}
|
|
62
|
+
* @memberof CreatePageCommand
|
|
63
|
+
*/
|
|
64
|
+
'isConfirmed'?: boolean;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof CreatePageCommand
|
|
69
|
+
*/
|
|
70
|
+
'customStyle'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {PageItemStatus}
|
|
74
|
+
* @memberof CreatePageCommand
|
|
75
|
+
*/
|
|
76
|
+
'status'?: PageItemStatus;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {Array<PageSectionInputModel>}
|
|
80
|
+
* @memberof CreatePageCommand
|
|
81
|
+
*/
|
|
82
|
+
'sections'?: Array<PageSectionInputModel> | null;
|
|
83
|
+
}
|
|
84
|
+
|
package/src/models/index.ts
CHANGED
|
@@ -144,6 +144,7 @@ export * from './create-manager-affiliation-command';
|
|
|
144
144
|
export * from './create-manager-command';
|
|
145
145
|
export * from './create-media-command';
|
|
146
146
|
export * from './create-notice-command';
|
|
147
|
+
export * from './create-page-command';
|
|
147
148
|
export * from './create-patient-command';
|
|
148
149
|
export * from './create-plan-command';
|
|
149
150
|
export * from './create-plan-hospital-command';
|
|
@@ -327,6 +328,21 @@ export * from './notifications-model';
|
|
|
327
328
|
export * from './number';
|
|
328
329
|
export * from './number-transaction-response';
|
|
329
330
|
export * from './numbers-search-response';
|
|
331
|
+
export * from './page-block-input-model';
|
|
332
|
+
export * from './page-block-link-input-model';
|
|
333
|
+
export * from './page-block-link-model';
|
|
334
|
+
export * from './page-block-link-type';
|
|
335
|
+
export * from './page-block-location-input-model';
|
|
336
|
+
export * from './page-block-location-model';
|
|
337
|
+
export * from './page-block-model';
|
|
338
|
+
export * from './page-block-type';
|
|
339
|
+
export * from './page-item-item-model';
|
|
340
|
+
export * from './page-item-model';
|
|
341
|
+
export * from './page-item-status';
|
|
342
|
+
export * from './page-items-model';
|
|
343
|
+
export * from './page-section-input-model';
|
|
344
|
+
export * from './page-section-list-type';
|
|
345
|
+
export * from './page-section-model';
|
|
330
346
|
export * from './paged-list-meta-data';
|
|
331
347
|
export * from './patient-item-model';
|
|
332
348
|
export * from './patient-model';
|
|
@@ -509,6 +525,7 @@ export * from './update-manager-command';
|
|
|
509
525
|
export * from './update-media-command';
|
|
510
526
|
export * from './update-notice-command';
|
|
511
527
|
export * from './update-number-command';
|
|
528
|
+
export * from './update-page-command';
|
|
512
529
|
export * from './update-patient-command';
|
|
513
530
|
export * from './update-plan-command';
|
|
514
531
|
export * from './update-plan-hospital-command';
|
|
@@ -0,0 +1,114 @@
|
|
|
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 { PageBlockLinkInputModel } from './page-block-link-input-model';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import { PageBlockLocationInputModel } from './page-block-location-input-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 PageBlockInputModel
|
|
33
|
+
*/
|
|
34
|
+
export interface PageBlockInputModel {
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof PageBlockInputModel
|
|
39
|
+
*/
|
|
40
|
+
'id'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {PageBlockType}
|
|
44
|
+
* @memberof PageBlockInputModel
|
|
45
|
+
*/
|
|
46
|
+
'blockType'?: PageBlockType;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof PageBlockInputModel
|
|
51
|
+
*/
|
|
52
|
+
'icon'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof PageBlockInputModel
|
|
57
|
+
*/
|
|
58
|
+
'customStyle'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {number}
|
|
62
|
+
* @memberof PageBlockInputModel
|
|
63
|
+
*/
|
|
64
|
+
'order'?: number;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof PageBlockInputModel
|
|
69
|
+
*/
|
|
70
|
+
'name'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof PageBlockInputModel
|
|
75
|
+
*/
|
|
76
|
+
'subtitle'?: string | null;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof PageBlockInputModel
|
|
81
|
+
*/
|
|
82
|
+
'description'?: string | null;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof PageBlockInputModel
|
|
87
|
+
*/
|
|
88
|
+
'overview'?: string | null;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof PageBlockInputModel
|
|
93
|
+
*/
|
|
94
|
+
'content'?: string | null;
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @type {Array<MediaModel>}
|
|
98
|
+
* @memberof PageBlockInputModel
|
|
99
|
+
*/
|
|
100
|
+
'medias'?: Array<MediaModel> | null;
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @type {Array<PageBlockLinkInputModel>}
|
|
104
|
+
* @memberof PageBlockInputModel
|
|
105
|
+
*/
|
|
106
|
+
'links'?: Array<PageBlockLinkInputModel> | null;
|
|
107
|
+
/**
|
|
108
|
+
*
|
|
109
|
+
* @type {Array<PageBlockLocationInputModel>}
|
|
110
|
+
* @memberof PageBlockInputModel
|
|
111
|
+
*/
|
|
112
|
+
'locations'?: Array<PageBlockLocationInputModel> | null;
|
|
113
|
+
}
|
|
114
|
+
|
|
@@ -0,0 +1,63 @@
|
|
|
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 { PageBlockLinkType } from './page-block-link-type';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface PageBlockLinkInputModel
|
|
24
|
+
*/
|
|
25
|
+
export interface PageBlockLinkInputModel {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof PageBlockLinkInputModel
|
|
30
|
+
*/
|
|
31
|
+
'id'?: string | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {PageBlockLinkType}
|
|
35
|
+
* @memberof PageBlockLinkInputModel
|
|
36
|
+
*/
|
|
37
|
+
'linkType'?: PageBlockLinkType;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof PageBlockLinkInputModel
|
|
42
|
+
*/
|
|
43
|
+
'name'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof PageBlockLinkInputModel
|
|
48
|
+
*/
|
|
49
|
+
'url'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof PageBlockLinkInputModel
|
|
54
|
+
*/
|
|
55
|
+
'customStyle'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {number}
|
|
59
|
+
* @memberof PageBlockLinkInputModel
|
|
60
|
+
*/
|
|
61
|
+
'order'?: number;
|
|
62
|
+
}
|
|
63
|
+
|
|
@@ -0,0 +1,75 @@
|
|
|
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 { PageBlockLinkType } from './page-block-link-type';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface PageBlockLinkModel
|
|
24
|
+
*/
|
|
25
|
+
export interface PageBlockLinkModel {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof PageBlockLinkModel
|
|
30
|
+
*/
|
|
31
|
+
'id'?: string;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof PageBlockLinkModel
|
|
36
|
+
*/
|
|
37
|
+
'languageCode'?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {PageBlockLinkType}
|
|
41
|
+
* @memberof PageBlockLinkModel
|
|
42
|
+
*/
|
|
43
|
+
'linkType'?: PageBlockLinkType;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof PageBlockLinkModel
|
|
48
|
+
*/
|
|
49
|
+
'customStyle'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof PageBlockLinkModel
|
|
54
|
+
*/
|
|
55
|
+
'name'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof PageBlockLinkModel
|
|
60
|
+
*/
|
|
61
|
+
'url'?: string | null;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {boolean}
|
|
65
|
+
* @memberof PageBlockLinkModel
|
|
66
|
+
*/
|
|
67
|
+
'isConfirmed'?: boolean;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {number}
|
|
71
|
+
* @memberof PageBlockLinkModel
|
|
72
|
+
*/
|
|
73
|
+
'order'?: number;
|
|
74
|
+
}
|
|
75
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
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 PageBlockLinkType = {
|
|
24
|
+
Button: 'Button',
|
|
25
|
+
Anchor: 'Anchor'
|
|
26
|
+
} as const;
|
|
27
|
+
|
|
28
|
+
export type PageBlockLinkType = typeof PageBlockLinkType[keyof typeof PageBlockLinkType];
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
@@ -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
|
+
|