ch-admin-api-client-typescript 5.19.10 → 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/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-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/index.d.ts +6 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +6 -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-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 +6 -0
- package/src/api/hospitals-api.ts +758 -4
- package/src/models/create-notice-command.ts +69 -0
- package/src/models/index.ts +6 -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-notice-command.ts +69 -0
|
@@ -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
|
+
|
package/src/models/index.ts
CHANGED
|
@@ -137,6 +137,7 @@ export * from './create-language-command';
|
|
|
137
137
|
export * from './create-manager-affiliation-command';
|
|
138
138
|
export * from './create-manager-command';
|
|
139
139
|
export * from './create-media-command';
|
|
140
|
+
export * from './create-notice-command';
|
|
140
141
|
export * from './create-patient-command';
|
|
141
142
|
export * from './create-plan-command';
|
|
142
143
|
export * from './create-plan-hospital-command';
|
|
@@ -304,6 +305,10 @@ export * from './message-type';
|
|
|
304
305
|
export * from './messages';
|
|
305
306
|
export * from './metadata';
|
|
306
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';
|
|
307
312
|
export * from './notification-code';
|
|
308
313
|
export * from './notification-model';
|
|
309
314
|
export * from './notifications-model';
|
|
@@ -486,6 +491,7 @@ export * from './update-landing-command';
|
|
|
486
491
|
export * from './update-language-command';
|
|
487
492
|
export * from './update-manager-command';
|
|
488
493
|
export * from './update-media-command';
|
|
494
|
+
export * from './update-notice-command';
|
|
489
495
|
export * from './update-number-command';
|
|
490
496
|
export * from './update-patient-command';
|
|
491
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,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
|
+
|