ch-admin-api-client-typescript 5.14.26 → 5.15.0
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 +402 -0
- package/lib/api/hospital-branches-api.d.ts.map +1 -0
- package/lib/api/hospital-branches-api.js +697 -0
- package/lib/api/hospital-groups-api.d.ts +402 -0
- package/lib/api/hospital-groups-api.d.ts.map +1 -0
- package/lib/api/hospital-groups-api.js +697 -0
- package/lib/api.d.ts +2 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +2 -0
- package/lib/models/create-hospital-branch-command.d.ts +73 -0
- package/lib/models/create-hospital-branch-command.d.ts.map +1 -0
- package/lib/models/create-hospital-branch-command.js +15 -0
- package/lib/models/create-hospital-group-command.d.ts +67 -0
- package/lib/models/create-hospital-group-command.d.ts.map +1 -0
- package/lib/models/create-hospital-group-command.js +15 -0
- package/lib/models/hospital-branch-item-model.d.ts +80 -0
- package/lib/models/hospital-branch-item-model.d.ts.map +1 -0
- package/lib/models/hospital-branch-item-model.js +15 -0
- package/lib/models/hospital-branch-model.d.ts +98 -0
- package/lib/models/hospital-branch-model.d.ts.map +1 -0
- package/lib/models/hospital-branch-model.js +15 -0
- package/lib/models/hospital-branches-model.d.ts +33 -0
- package/lib/models/hospital-branches-model.d.ts.map +1 -0
- package/lib/models/hospital-branches-model.js +15 -0
- package/lib/models/hospital-group-item-model.d.ts +62 -0
- package/lib/models/hospital-group-item-model.d.ts.map +1 -0
- package/lib/models/hospital-group-item-model.js +15 -0
- package/lib/models/hospital-group-model.d.ts +80 -0
- package/lib/models/hospital-group-model.d.ts.map +1 -0
- package/lib/models/hospital-group-model.js +15 -0
- package/lib/models/hospital-groups-model.d.ts +33 -0
- package/lib/models/hospital-groups-model.d.ts.map +1 -0
- package/lib/models/hospital-groups-model.js +15 -0
- package/lib/models/index.d.ts +10 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +10 -0
- package/lib/models/update-hospital-branch-command.d.ts +61 -0
- package/lib/models/update-hospital-branch-command.d.ts.map +1 -0
- package/lib/models/update-hospital-branch-command.js +15 -0
- package/lib/models/update-hospital-group-command.d.ts +67 -0
- package/lib/models/update-hospital-group-command.d.ts.map +1 -0
- package/lib/models/update-hospital-group-command.js +15 -0
- package/lib/models/update-web-app-command.d.ts +2 -2
- package/lib/models/web-app-item-model.d.ts +2 -2
- package/lib/models/web-app-model.d.ts +2 -2
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +12 -0
- package/src/api/hospital-branches-api.ts +706 -0
- package/src/api/hospital-groups-api.ts +706 -0
- package/src/api.ts +2 -0
- package/src/models/create-hospital-branch-command.ts +78 -0
- package/src/models/create-hospital-group-command.ts +72 -0
- package/src/models/hospital-branch-item-model.ts +87 -0
- package/src/models/hospital-branch-model.ts +105 -0
- package/src/models/hospital-branches-model.ts +42 -0
- package/src/models/hospital-group-item-model.ts +69 -0
- package/src/models/hospital-group-model.ts +87 -0
- package/src/models/hospital-groups-model.ts +42 -0
- package/src/models/index.ts +10 -0
- package/src/models/update-hospital-branch-command.ts +66 -0
- package/src/models/update-hospital-group-command.ts +72 -0
- package/src/models/update-web-app-command.ts +2 -2
- package/src/models/web-app-item-model.ts +2 -2
- package/src/models/web-app-model.ts +2 -2
package/src/api.ts
CHANGED
|
@@ -40,6 +40,8 @@ export * from './api/faqs-api';
|
|
|
40
40
|
export * from './api/grades-api';
|
|
41
41
|
export * from './api/group-channels-api';
|
|
42
42
|
export * from './api/header-navigations-api';
|
|
43
|
+
export * from './api/hospital-branches-api';
|
|
44
|
+
export * from './api/hospital-groups-api';
|
|
43
45
|
export * from './api/hospitals-api';
|
|
44
46
|
export * from './api/hospitals-consultation-timetable-overrides-api';
|
|
45
47
|
export * from './api/hospitals-consultation-timetables-api';
|
|
@@ -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
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface CreateHospitalBranchCommand
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateHospitalBranchCommand {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CreateHospitalBranchCommand
|
|
27
|
+
*/
|
|
28
|
+
'hospitalGroupId'?: string;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CreateHospitalBranchCommand
|
|
33
|
+
*/
|
|
34
|
+
'hospitalId'?: string;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CreateHospitalBranchCommand
|
|
39
|
+
*/
|
|
40
|
+
'languageCode'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof CreateHospitalBranchCommand
|
|
45
|
+
*/
|
|
46
|
+
'name'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof CreateHospitalBranchCommand
|
|
51
|
+
*/
|
|
52
|
+
'description'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof CreateHospitalBranchCommand
|
|
57
|
+
*/
|
|
58
|
+
'overview'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof CreateHospitalBranchCommand
|
|
63
|
+
*/
|
|
64
|
+
'content'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {boolean}
|
|
68
|
+
* @memberof CreateHospitalBranchCommand
|
|
69
|
+
*/
|
|
70
|
+
'isConfirmed'?: boolean;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {number}
|
|
74
|
+
* @memberof CreateHospitalBranchCommand
|
|
75
|
+
*/
|
|
76
|
+
'order'?: number;
|
|
77
|
+
}
|
|
78
|
+
|
|
@@ -0,0 +1,72 @@
|
|
|
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 CreateHospitalGroupCommand
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateHospitalGroupCommand {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CreateHospitalGroupCommand
|
|
27
|
+
*/
|
|
28
|
+
'languageCode'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CreateHospitalGroupCommand
|
|
33
|
+
*/
|
|
34
|
+
'name'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CreateHospitalGroupCommand
|
|
39
|
+
*/
|
|
40
|
+
'description'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof CreateHospitalGroupCommand
|
|
45
|
+
*/
|
|
46
|
+
'overview'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof CreateHospitalGroupCommand
|
|
51
|
+
*/
|
|
52
|
+
'content'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {boolean}
|
|
56
|
+
* @memberof CreateHospitalGroupCommand
|
|
57
|
+
*/
|
|
58
|
+
'isConfirmed'?: boolean;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof CreateHospitalGroupCommand
|
|
63
|
+
*/
|
|
64
|
+
'logo'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof CreateHospitalGroupCommand
|
|
69
|
+
*/
|
|
70
|
+
'primaryHospitalId'?: string;
|
|
71
|
+
}
|
|
72
|
+
|
|
@@ -0,0 +1,87 @@
|
|
|
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
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface HospitalBranchItemModel
|
|
24
|
+
*/
|
|
25
|
+
export interface HospitalBranchItemModel {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof HospitalBranchItemModel
|
|
30
|
+
*/
|
|
31
|
+
'id'?: string;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof HospitalBranchItemModel
|
|
36
|
+
*/
|
|
37
|
+
'languageCode'?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof HospitalBranchItemModel
|
|
42
|
+
*/
|
|
43
|
+
'hospitalGroupId'?: string;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof HospitalBranchItemModel
|
|
48
|
+
*/
|
|
49
|
+
'hospitalId'?: string;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {number}
|
|
53
|
+
* @memberof HospitalBranchItemModel
|
|
54
|
+
*/
|
|
55
|
+
'order'?: number;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof HospitalBranchItemModel
|
|
60
|
+
*/
|
|
61
|
+
'name'?: string | null;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {boolean}
|
|
65
|
+
* @memberof HospitalBranchItemModel
|
|
66
|
+
*/
|
|
67
|
+
'isConfirmed'?: boolean;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {AuditableEntityModel}
|
|
71
|
+
* @memberof HospitalBranchItemModel
|
|
72
|
+
*/
|
|
73
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {string}
|
|
77
|
+
* @memberof HospitalBranchItemModel
|
|
78
|
+
*/
|
|
79
|
+
'hospitalGroupName'?: string | null;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {string}
|
|
83
|
+
* @memberof HospitalBranchItemModel
|
|
84
|
+
*/
|
|
85
|
+
'hospitalName'?: string | null;
|
|
86
|
+
}
|
|
87
|
+
|
|
@@ -0,0 +1,105 @@
|
|
|
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
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface HospitalBranchModel
|
|
24
|
+
*/
|
|
25
|
+
export interface HospitalBranchModel {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof HospitalBranchModel
|
|
30
|
+
*/
|
|
31
|
+
'id'?: string;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof HospitalBranchModel
|
|
36
|
+
*/
|
|
37
|
+
'languageCode'?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof HospitalBranchModel
|
|
42
|
+
*/
|
|
43
|
+
'hospitalGroupId'?: string;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof HospitalBranchModel
|
|
48
|
+
*/
|
|
49
|
+
'hospitalId'?: string;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {number}
|
|
53
|
+
* @memberof HospitalBranchModel
|
|
54
|
+
*/
|
|
55
|
+
'order'?: number;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof HospitalBranchModel
|
|
60
|
+
*/
|
|
61
|
+
'name'?: string | null;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {boolean}
|
|
65
|
+
* @memberof HospitalBranchModel
|
|
66
|
+
*/
|
|
67
|
+
'isConfirmed'?: boolean;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {AuditableEntityModel}
|
|
71
|
+
* @memberof HospitalBranchModel
|
|
72
|
+
*/
|
|
73
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {string}
|
|
77
|
+
* @memberof HospitalBranchModel
|
|
78
|
+
*/
|
|
79
|
+
'hospitalGroupName'?: string | null;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {string}
|
|
83
|
+
* @memberof HospitalBranchModel
|
|
84
|
+
*/
|
|
85
|
+
'hospitalName'?: string | null;
|
|
86
|
+
/**
|
|
87
|
+
*
|
|
88
|
+
* @type {string}
|
|
89
|
+
* @memberof HospitalBranchModel
|
|
90
|
+
*/
|
|
91
|
+
'desciption'?: string | null;
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* @type {string}
|
|
95
|
+
* @memberof HospitalBranchModel
|
|
96
|
+
*/
|
|
97
|
+
'overview'?: string | null;
|
|
98
|
+
/**
|
|
99
|
+
*
|
|
100
|
+
* @type {string}
|
|
101
|
+
* @memberof HospitalBranchModel
|
|
102
|
+
*/
|
|
103
|
+
'content'?: string | null;
|
|
104
|
+
}
|
|
105
|
+
|
|
@@ -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 { HospitalBranchItemModel } from './hospital-branch-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 HospitalBranchesModel
|
|
27
|
+
*/
|
|
28
|
+
export interface HospitalBranchesModel {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {Array<HospitalBranchItemModel>}
|
|
32
|
+
* @memberof HospitalBranchesModel
|
|
33
|
+
*/
|
|
34
|
+
'items'?: Array<HospitalBranchItemModel> | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {PagedListMetaData}
|
|
38
|
+
* @memberof HospitalBranchesModel
|
|
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 { AuditableEntityModel } from './auditable-entity-model';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface HospitalGroupItemModel
|
|
24
|
+
*/
|
|
25
|
+
export interface HospitalGroupItemModel {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof HospitalGroupItemModel
|
|
30
|
+
*/
|
|
31
|
+
'id'?: string;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof HospitalGroupItemModel
|
|
36
|
+
*/
|
|
37
|
+
'logo'?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof HospitalGroupItemModel
|
|
42
|
+
*/
|
|
43
|
+
'primaryHospitalId'?: string;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof HospitalGroupItemModel
|
|
48
|
+
*/
|
|
49
|
+
'languageCode'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof HospitalGroupItemModel
|
|
54
|
+
*/
|
|
55
|
+
'name'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {boolean}
|
|
59
|
+
* @memberof HospitalGroupItemModel
|
|
60
|
+
*/
|
|
61
|
+
'isConfirmed'?: boolean;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {AuditableEntityModel}
|
|
65
|
+
* @memberof HospitalGroupItemModel
|
|
66
|
+
*/
|
|
67
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
68
|
+
}
|
|
69
|
+
|
|
@@ -0,0 +1,87 @@
|
|
|
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
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface HospitalGroupModel
|
|
24
|
+
*/
|
|
25
|
+
export interface HospitalGroupModel {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof HospitalGroupModel
|
|
30
|
+
*/
|
|
31
|
+
'id'?: string;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof HospitalGroupModel
|
|
36
|
+
*/
|
|
37
|
+
'logo'?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof HospitalGroupModel
|
|
42
|
+
*/
|
|
43
|
+
'primaryHospitalId'?: string;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof HospitalGroupModel
|
|
48
|
+
*/
|
|
49
|
+
'languageCode'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof HospitalGroupModel
|
|
54
|
+
*/
|
|
55
|
+
'name'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {boolean}
|
|
59
|
+
* @memberof HospitalGroupModel
|
|
60
|
+
*/
|
|
61
|
+
'isConfirmed'?: boolean;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {AuditableEntityModel}
|
|
65
|
+
* @memberof HospitalGroupModel
|
|
66
|
+
*/
|
|
67
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof HospitalGroupModel
|
|
72
|
+
*/
|
|
73
|
+
'description'?: string | null;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {string}
|
|
77
|
+
* @memberof HospitalGroupModel
|
|
78
|
+
*/
|
|
79
|
+
'overview'?: string | null;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {string}
|
|
83
|
+
* @memberof HospitalGroupModel
|
|
84
|
+
*/
|
|
85
|
+
'content'?: string | null;
|
|
86
|
+
}
|
|
87
|
+
|
|
@@ -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 { HospitalGroupItemModel } from './hospital-group-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 HospitalGroupsModel
|
|
27
|
+
*/
|
|
28
|
+
export interface HospitalGroupsModel {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {Array<HospitalGroupItemModel>}
|
|
32
|
+
* @memberof HospitalGroupsModel
|
|
33
|
+
*/
|
|
34
|
+
'items'?: Array<HospitalGroupItemModel> | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {PagedListMetaData}
|
|
38
|
+
* @memberof HospitalGroupsModel
|
|
39
|
+
*/
|
|
40
|
+
'metaData'?: PagedListMetaData;
|
|
41
|
+
}
|
|
42
|
+
|
package/src/models/index.ts
CHANGED
|
@@ -135,11 +135,13 @@ export * from './create-faq-tag-command';
|
|
|
135
135
|
export * from './create-grade-command';
|
|
136
136
|
export * from './create-hospital-accreditation-command';
|
|
137
137
|
export * from './create-hospital-bank-account-info-command';
|
|
138
|
+
export * from './create-hospital-branch-command';
|
|
138
139
|
export * from './create-hospital-command';
|
|
139
140
|
export * from './create-hospital-consultation-timetable-command';
|
|
140
141
|
export * from './create-hospital-contact-command';
|
|
141
142
|
export * from './create-hospital-equipment-command';
|
|
142
143
|
export * from './create-hospital-evaluation-command';
|
|
144
|
+
export * from './create-hospital-group-command';
|
|
143
145
|
export * from './create-hospital-language-command';
|
|
144
146
|
export * from './create-hospital-payment-method-command';
|
|
145
147
|
export * from './create-hospital-service-command';
|
|
@@ -242,6 +244,9 @@ export * from './header-navigation-item-model';
|
|
|
242
244
|
export * from './hospital-accreditation-item-model';
|
|
243
245
|
export * from './hospital-accreditation-model';
|
|
244
246
|
export * from './hospital-accreditations-model';
|
|
247
|
+
export * from './hospital-branch-item-model';
|
|
248
|
+
export * from './hospital-branch-model';
|
|
249
|
+
export * from './hospital-branches-model';
|
|
245
250
|
export * from './hospital-consultation-option-model';
|
|
246
251
|
export * from './hospital-consultation-timetable-item-model';
|
|
247
252
|
export * from './hospital-consultation-timetable-model';
|
|
@@ -258,6 +263,9 @@ export * from './hospital-equipments-model';
|
|
|
258
263
|
export * from './hospital-evaluation-item-model';
|
|
259
264
|
export * from './hospital-evaluation-model';
|
|
260
265
|
export * from './hospital-evaluations-model';
|
|
266
|
+
export * from './hospital-group-item-model';
|
|
267
|
+
export * from './hospital-group-model';
|
|
268
|
+
export * from './hospital-groups-model';
|
|
261
269
|
export * from './hospital-item-model';
|
|
262
270
|
export * from './hospital-language-item-model';
|
|
263
271
|
export * from './hospital-languages-model';
|
|
@@ -485,10 +493,12 @@ export * from './update-faq-category-command';
|
|
|
485
493
|
export * from './update-faq-command';
|
|
486
494
|
export * from './update-grade-command';
|
|
487
495
|
export * from './update-hospital-bank-account-info-command';
|
|
496
|
+
export * from './update-hospital-branch-command';
|
|
488
497
|
export * from './update-hospital-command';
|
|
489
498
|
export * from './update-hospital-consultation-timetable-command';
|
|
490
499
|
export * from './update-hospital-contact-command';
|
|
491
500
|
export * from './update-hospital-equipment-command';
|
|
501
|
+
export * from './update-hospital-group-command';
|
|
492
502
|
export * from './update-hospital-language-command';
|
|
493
503
|
export * from './update-hospital-payment-method-command';
|
|
494
504
|
export * from './update-hospital-service-command';
|
|
@@ -0,0 +1,66 @@
|
|
|
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 UpdateHospitalBranchCommand
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateHospitalBranchCommand {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof UpdateHospitalBranchCommand
|
|
27
|
+
*/
|
|
28
|
+
'languageCode'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof UpdateHospitalBranchCommand
|
|
33
|
+
*/
|
|
34
|
+
'name'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof UpdateHospitalBranchCommand
|
|
39
|
+
*/
|
|
40
|
+
'description'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof UpdateHospitalBranchCommand
|
|
45
|
+
*/
|
|
46
|
+
'overview'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof UpdateHospitalBranchCommand
|
|
51
|
+
*/
|
|
52
|
+
'content'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {boolean}
|
|
56
|
+
* @memberof UpdateHospitalBranchCommand
|
|
57
|
+
*/
|
|
58
|
+
'isConfirmed'?: boolean;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {number}
|
|
62
|
+
* @memberof UpdateHospitalBranchCommand
|
|
63
|
+
*/
|
|
64
|
+
'order'?: number | null;
|
|
65
|
+
}
|
|
66
|
+
|