ch-admin-api-client-typescript 5.19.8 → 5.19.13
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/hospital-branches-api.d.ts +185 -0
- package/lib/api/hospital-branches-api.d.ts.map +1 -1
- package/lib/api/hospital-branches-api.js +283 -0
- 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/add-hospital-into-branch-command.d.ts +31 -0
- package/lib/models/add-hospital-into-branch-command.d.ts.map +1 -0
- package/lib/models/add-hospital-into-branch-command.js +15 -0
- package/lib/models/create-hospital-branch-command.d.ts +0 -6
- package/lib/models/create-hospital-branch-command.d.ts.map +1 -1
- package/lib/models/create-notice-command.d.ts +62 -0
- package/lib/models/create-notice-command.d.ts.map +1 -0
- package/lib/models/create-notice-command.js +15 -0
- package/lib/models/hospital-branch-item-mapping-model.d.ts +38 -0
- package/lib/models/hospital-branch-item-mapping-model.d.ts.map +1 -0
- package/lib/models/hospital-branch-item-mapping-model.js +15 -0
- package/lib/models/hospital-branch-item-model.d.ts +0 -12
- package/lib/models/hospital-branch-item-model.d.ts.map +1 -1
- package/lib/models/hospital-branch-model.d.ts +6 -11
- package/lib/models/hospital-branch-model.d.ts.map +1 -1
- package/lib/models/index.d.ts +9 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +9 -0
- package/lib/models/notice-item-model.d.ts +87 -0
- package/lib/models/notice-item-model.d.ts.map +1 -0
- package/lib/models/notice-item-model.js +15 -0
- package/lib/models/notice-model.d.ts +105 -0
- package/lib/models/notice-model.d.ts.map +1 -0
- package/lib/models/notice-model.js +15 -0
- package/lib/models/notice-status.d.ts +23 -0
- package/lib/models/notice-status.d.ts.map +1 -0
- package/lib/models/notice-status.js +26 -0
- package/lib/models/notices-model.d.ts +33 -0
- package/lib/models/notices-model.d.ts.map +1 -0
- package/lib/models/notices-model.js +15 -0
- package/lib/models/update-hospital-branch-item-command.d.ts +31 -0
- package/lib/models/update-hospital-branch-item-command.d.ts.map +1 -0
- package/lib/models/update-hospital-branch-item-command.js +15 -0
- package/lib/models/update-notice-command.d.ts +62 -0
- package/lib/models/update-notice-command.d.ts.map +1 -0
- package/lib/models/update-notice-command.js +15 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +9 -0
- package/src/api/hospital-branches-api.ts +324 -0
- package/src/api/hospitals-api.ts +758 -4
- package/src/models/add-hospital-into-branch-command.ts +36 -0
- package/src/models/create-hospital-branch-command.ts +0 -6
- package/src/models/create-notice-command.ts +69 -0
- package/src/models/hospital-branch-item-mapping-model.ts +45 -0
- package/src/models/hospital-branch-item-model.ts +0 -12
- package/src/models/hospital-branch-model.ts +8 -11
- package/src/models/index.ts +9 -0
- package/src/models/notice-item-model.ts +96 -0
- package/src/models/notice-model.ts +114 -0
- package/src/models/notice-status.ts +32 -0
- package/src/models/notices-model.ts +42 -0
- package/src/models/update-hospital-branch-item-command.ts +36 -0
- package/src/models/update-notice-command.ts +69 -0
|
@@ -0,0 +1,36 @@
|
|
|
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 AddHospitalIntoBranchCommand
|
|
21
|
+
*/
|
|
22
|
+
export interface AddHospitalIntoBranchCommand {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof AddHospitalIntoBranchCommand
|
|
27
|
+
*/
|
|
28
|
+
'languageCode'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof AddHospitalIntoBranchCommand
|
|
33
|
+
*/
|
|
34
|
+
'order'?: number;
|
|
35
|
+
}
|
|
36
|
+
|
|
@@ -26,12 +26,6 @@ export interface CreateHospitalBranchCommand {
|
|
|
26
26
|
* @memberof CreateHospitalBranchCommand
|
|
27
27
|
*/
|
|
28
28
|
'hospitalGroupId'?: string;
|
|
29
|
-
/**
|
|
30
|
-
*
|
|
31
|
-
* @type {string}
|
|
32
|
-
* @memberof CreateHospitalBranchCommand
|
|
33
|
-
*/
|
|
34
|
-
'hospitalId'?: string;
|
|
35
29
|
/**
|
|
36
30
|
*
|
|
37
31
|
* @type {string}
|
|
@@ -0,0 +1,69 @@
|
|
|
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 { NoticeStatus } from './notice-status';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface CreateNoticeCommand
|
|
24
|
+
*/
|
|
25
|
+
export interface CreateNoticeCommand {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {NoticeStatus}
|
|
29
|
+
* @memberof CreateNoticeCommand
|
|
30
|
+
*/
|
|
31
|
+
'status'?: NoticeStatus;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {number}
|
|
35
|
+
* @memberof CreateNoticeCommand
|
|
36
|
+
*/
|
|
37
|
+
'order'?: number;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof CreateNoticeCommand
|
|
42
|
+
*/
|
|
43
|
+
'languageCode'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof CreateNoticeCommand
|
|
48
|
+
*/
|
|
49
|
+
'name'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof CreateNoticeCommand
|
|
54
|
+
*/
|
|
55
|
+
'url'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof CreateNoticeCommand
|
|
60
|
+
*/
|
|
61
|
+
'description'?: string | null;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {boolean}
|
|
65
|
+
* @memberof CreateNoticeCommand
|
|
66
|
+
*/
|
|
67
|
+
'isConfirmed'?: boolean;
|
|
68
|
+
}
|
|
69
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
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 { HospitalSimpleItemModel } from './hospital-simple-item-model';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface HospitalBranchItemMappingModel
|
|
24
|
+
*/
|
|
25
|
+
export interface HospitalBranchItemMappingModel {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof HospitalBranchItemMappingModel
|
|
30
|
+
*/
|
|
31
|
+
'id'?: string;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof HospitalBranchItemMappingModel
|
|
36
|
+
*/
|
|
37
|
+
'hospitalId'?: string;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {HospitalSimpleItemModel}
|
|
41
|
+
* @memberof HospitalBranchItemMappingModel
|
|
42
|
+
*/
|
|
43
|
+
'hospital'?: HospitalSimpleItemModel;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -41,12 +41,6 @@ export interface HospitalBranchItemModel {
|
|
|
41
41
|
* @memberof HospitalBranchItemModel
|
|
42
42
|
*/
|
|
43
43
|
'hospitalGroupId'?: string;
|
|
44
|
-
/**
|
|
45
|
-
*
|
|
46
|
-
* @type {string}
|
|
47
|
-
* @memberof HospitalBranchItemModel
|
|
48
|
-
*/
|
|
49
|
-
'hospitalId'?: string;
|
|
50
44
|
/**
|
|
51
45
|
*
|
|
52
46
|
* @type {number}
|
|
@@ -77,11 +71,5 @@ export interface HospitalBranchItemModel {
|
|
|
77
71
|
* @memberof HospitalBranchItemModel
|
|
78
72
|
*/
|
|
79
73
|
'hospitalGroupName'?: string | null;
|
|
80
|
-
/**
|
|
81
|
-
*
|
|
82
|
-
* @type {string}
|
|
83
|
-
* @memberof HospitalBranchItemModel
|
|
84
|
-
*/
|
|
85
|
-
'hospitalName'?: string | null;
|
|
86
74
|
}
|
|
87
75
|
|
|
@@ -16,6 +16,9 @@
|
|
|
16
16
|
// May contain unused imports in some cases
|
|
17
17
|
// @ts-ignore
|
|
18
18
|
import { AuditableEntityModel } from './auditable-entity-model';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { HospitalBranchItemMappingModel } from './hospital-branch-item-mapping-model';
|
|
19
22
|
|
|
20
23
|
/**
|
|
21
24
|
*
|
|
@@ -41,12 +44,6 @@ export interface HospitalBranchModel {
|
|
|
41
44
|
* @memberof HospitalBranchModel
|
|
42
45
|
*/
|
|
43
46
|
'hospitalGroupId'?: string;
|
|
44
|
-
/**
|
|
45
|
-
*
|
|
46
|
-
* @type {string}
|
|
47
|
-
* @memberof HospitalBranchModel
|
|
48
|
-
*/
|
|
49
|
-
'hospitalId'?: string;
|
|
50
47
|
/**
|
|
51
48
|
*
|
|
52
49
|
* @type {number}
|
|
@@ -82,24 +79,24 @@ export interface HospitalBranchModel {
|
|
|
82
79
|
* @type {string}
|
|
83
80
|
* @memberof HospitalBranchModel
|
|
84
81
|
*/
|
|
85
|
-
'
|
|
82
|
+
'description'?: string | null;
|
|
86
83
|
/**
|
|
87
84
|
*
|
|
88
85
|
* @type {string}
|
|
89
86
|
* @memberof HospitalBranchModel
|
|
90
87
|
*/
|
|
91
|
-
'
|
|
88
|
+
'overview'?: string | null;
|
|
92
89
|
/**
|
|
93
90
|
*
|
|
94
91
|
* @type {string}
|
|
95
92
|
* @memberof HospitalBranchModel
|
|
96
93
|
*/
|
|
97
|
-
'
|
|
94
|
+
'content'?: string | null;
|
|
98
95
|
/**
|
|
99
96
|
*
|
|
100
|
-
* @type {
|
|
97
|
+
* @type {Array<HospitalBranchItemMappingModel>}
|
|
101
98
|
* @memberof HospitalBranchModel
|
|
102
99
|
*/
|
|
103
|
-
'
|
|
100
|
+
'hospitals'?: Array<HospitalBranchItemMappingModel> | null;
|
|
104
101
|
}
|
|
105
102
|
|
package/src/models/index.ts
CHANGED
|
@@ -5,6 +5,7 @@ export * from './account-settings-result';
|
|
|
5
5
|
export * from './accreditation-item-model';
|
|
6
6
|
export * from './accreditation-model';
|
|
7
7
|
export * from './accreditations-model';
|
|
8
|
+
export * from './add-hospital-into-branch-command';
|
|
8
9
|
export * from './admin-message-model';
|
|
9
10
|
export * from './app-version-item-model';
|
|
10
11
|
export * from './app-version-model';
|
|
@@ -136,6 +137,7 @@ export * from './create-language-command';
|
|
|
136
137
|
export * from './create-manager-affiliation-command';
|
|
137
138
|
export * from './create-manager-command';
|
|
138
139
|
export * from './create-media-command';
|
|
140
|
+
export * from './create-notice-command';
|
|
139
141
|
export * from './create-patient-command';
|
|
140
142
|
export * from './create-plan-command';
|
|
141
143
|
export * from './create-plan-hospital-command';
|
|
@@ -226,6 +228,7 @@ export * from './header-navigation-item-model';
|
|
|
226
228
|
export * from './hospital-accreditation-item-model';
|
|
227
229
|
export * from './hospital-accreditation-model';
|
|
228
230
|
export * from './hospital-accreditations-model';
|
|
231
|
+
export * from './hospital-branch-item-mapping-model';
|
|
229
232
|
export * from './hospital-branch-item-model';
|
|
230
233
|
export * from './hospital-branch-model';
|
|
231
234
|
export * from './hospital-branches-model';
|
|
@@ -302,6 +305,10 @@ export * from './message-type';
|
|
|
302
305
|
export * from './messages';
|
|
303
306
|
export * from './metadata';
|
|
304
307
|
export * from './model-file';
|
|
308
|
+
export * from './notice-item-model';
|
|
309
|
+
export * from './notice-model';
|
|
310
|
+
export * from './notice-status';
|
|
311
|
+
export * from './notices-model';
|
|
305
312
|
export * from './notification-code';
|
|
306
313
|
export * from './notification-model';
|
|
307
314
|
export * from './notifications-model';
|
|
@@ -469,6 +476,7 @@ export * from './update-faq-command';
|
|
|
469
476
|
export * from './update-grade-command';
|
|
470
477
|
export * from './update-hospital-bank-account-info-command';
|
|
471
478
|
export * from './update-hospital-branch-command';
|
|
479
|
+
export * from './update-hospital-branch-item-command';
|
|
472
480
|
export * from './update-hospital-command';
|
|
473
481
|
export * from './update-hospital-contact-command';
|
|
474
482
|
export * from './update-hospital-equipment-command';
|
|
@@ -483,6 +491,7 @@ export * from './update-landing-command';
|
|
|
483
491
|
export * from './update-language-command';
|
|
484
492
|
export * from './update-manager-command';
|
|
485
493
|
export * from './update-media-command';
|
|
494
|
+
export * from './update-notice-command';
|
|
486
495
|
export * from './update-number-command';
|
|
487
496
|
export * from './update-patient-command';
|
|
488
497
|
export * from './update-plan-command';
|
|
@@ -0,0 +1,96 @@
|
|
|
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 { NoticeStatus } from './notice-status';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface NoticeItemModel
|
|
27
|
+
*/
|
|
28
|
+
export interface NoticeItemModel {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof NoticeItemModel
|
|
33
|
+
*/
|
|
34
|
+
'id'?: string;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof NoticeItemModel
|
|
39
|
+
*/
|
|
40
|
+
'hospitalId'?: string;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof NoticeItemModel
|
|
45
|
+
*/
|
|
46
|
+
'languageCode'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {NoticeStatus}
|
|
50
|
+
* @memberof NoticeItemModel
|
|
51
|
+
*/
|
|
52
|
+
'status'?: NoticeStatus;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {number}
|
|
56
|
+
* @memberof NoticeItemModel
|
|
57
|
+
*/
|
|
58
|
+
'order'?: number;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {AuditableEntityModel}
|
|
62
|
+
* @memberof NoticeItemModel
|
|
63
|
+
*/
|
|
64
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof NoticeItemModel
|
|
69
|
+
*/
|
|
70
|
+
'hospitalName'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof NoticeItemModel
|
|
75
|
+
*/
|
|
76
|
+
'name'?: string | null;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof NoticeItemModel
|
|
81
|
+
*/
|
|
82
|
+
'slug'?: string | null;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof NoticeItemModel
|
|
87
|
+
*/
|
|
88
|
+
'url'?: string | null;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {boolean}
|
|
92
|
+
* @memberof NoticeItemModel
|
|
93
|
+
*/
|
|
94
|
+
'isConfirmed'?: boolean;
|
|
95
|
+
}
|
|
96
|
+
|
|
@@ -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 { AuditableEntityModel } from './auditable-entity-model';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { NoticeStatus } from './notice-status';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface NoticeModel
|
|
27
|
+
*/
|
|
28
|
+
export interface NoticeModel {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof NoticeModel
|
|
33
|
+
*/
|
|
34
|
+
'id'?: string;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof NoticeModel
|
|
39
|
+
*/
|
|
40
|
+
'hospitalId'?: string;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof NoticeModel
|
|
45
|
+
*/
|
|
46
|
+
'languageCode'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {NoticeStatus}
|
|
50
|
+
* @memberof NoticeModel
|
|
51
|
+
*/
|
|
52
|
+
'status'?: NoticeStatus;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {number}
|
|
56
|
+
* @memberof NoticeModel
|
|
57
|
+
*/
|
|
58
|
+
'order'?: number;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {AuditableEntityModel}
|
|
62
|
+
* @memberof NoticeModel
|
|
63
|
+
*/
|
|
64
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof NoticeModel
|
|
69
|
+
*/
|
|
70
|
+
'hospitalName'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof NoticeModel
|
|
75
|
+
*/
|
|
76
|
+
'name'?: string | null;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof NoticeModel
|
|
81
|
+
*/
|
|
82
|
+
'slug'?: string | null;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof NoticeModel
|
|
87
|
+
*/
|
|
88
|
+
'url'?: string | null;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {boolean}
|
|
92
|
+
* @memberof NoticeModel
|
|
93
|
+
*/
|
|
94
|
+
'isConfirmed'?: boolean;
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof NoticeModel
|
|
99
|
+
*/
|
|
100
|
+
'description'?: string | null;
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @type {string}
|
|
104
|
+
* @memberof NoticeModel
|
|
105
|
+
*/
|
|
106
|
+
'overview'?: string | null;
|
|
107
|
+
/**
|
|
108
|
+
*
|
|
109
|
+
* @type {string}
|
|
110
|
+
* @memberof NoticeModel
|
|
111
|
+
*/
|
|
112
|
+
'content'?: string | null;
|
|
113
|
+
}
|
|
114
|
+
|
|
@@ -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 NoticeStatus = {
|
|
24
|
+
Draft: 'Draft',
|
|
25
|
+
Active: 'Active',
|
|
26
|
+
Archived: 'Archived'
|
|
27
|
+
} as const;
|
|
28
|
+
|
|
29
|
+
export type NoticeStatus = typeof NoticeStatus[keyof typeof NoticeStatus];
|
|
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 { NoticeItemModel } from './notice-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 NoticesModel
|
|
27
|
+
*/
|
|
28
|
+
export interface NoticesModel {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {Array<NoticeItemModel>}
|
|
32
|
+
* @memberof NoticesModel
|
|
33
|
+
*/
|
|
34
|
+
'items'?: Array<NoticeItemModel> | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {PagedListMetaData}
|
|
38
|
+
* @memberof NoticesModel
|
|
39
|
+
*/
|
|
40
|
+
'metaData'?: PagedListMetaData;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
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 UpdateHospitalBranchItemCommand
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateHospitalBranchItemCommand {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof UpdateHospitalBranchItemCommand
|
|
27
|
+
*/
|
|
28
|
+
'languageCode'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof UpdateHospitalBranchItemCommand
|
|
33
|
+
*/
|
|
34
|
+
'order'?: number;
|
|
35
|
+
}
|
|
36
|
+
|
|
@@ -0,0 +1,69 @@
|
|
|
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 { NoticeStatus } from './notice-status';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface UpdateNoticeCommand
|
|
24
|
+
*/
|
|
25
|
+
export interface UpdateNoticeCommand {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {NoticeStatus}
|
|
29
|
+
* @memberof UpdateNoticeCommand
|
|
30
|
+
*/
|
|
31
|
+
'status'?: NoticeStatus;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {number}
|
|
35
|
+
* @memberof UpdateNoticeCommand
|
|
36
|
+
*/
|
|
37
|
+
'order'?: number | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof UpdateNoticeCommand
|
|
42
|
+
*/
|
|
43
|
+
'languageCode'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof UpdateNoticeCommand
|
|
48
|
+
*/
|
|
49
|
+
'name'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof UpdateNoticeCommand
|
|
54
|
+
*/
|
|
55
|
+
'url'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof UpdateNoticeCommand
|
|
60
|
+
*/
|
|
61
|
+
'description'?: string | null;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {boolean}
|
|
65
|
+
* @memberof UpdateNoticeCommand
|
|
66
|
+
*/
|
|
67
|
+
'isConfirmed'?: boolean;
|
|
68
|
+
}
|
|
69
|
+
|