ch-admin-api-client-typescript 5.42.5 → 5.43.12
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/content-managers-api.d.ts +421 -0
- package/lib/api/content-managers-api.d.ts.map +1 -0
- package/lib/api/content-managers-api.js +713 -0
- package/lib/api/patient-managers-api.d.ts +421 -0
- package/lib/api/patient-managers-api.d.ts.map +1 -0
- package/lib/api/patient-managers-api.js +713 -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/content-manager-item-model.d.ts +105 -0
- package/lib/models/content-manager-item-model.d.ts.map +1 -0
- package/lib/models/content-manager-item-model.js +15 -0
- package/lib/models/content-manager-model.d.ts +119 -0
- package/lib/models/content-manager-model.d.ts.map +1 -0
- package/lib/models/content-manager-model.js +15 -0
- package/lib/models/content-managers-model.d.ts +33 -0
- package/lib/models/content-managers-model.d.ts.map +1 -0
- package/lib/models/content-managers-model.js +15 -0
- package/lib/models/create-content-manager-command.d.ts +80 -0
- package/lib/models/create-content-manager-command.d.ts.map +1 -0
- package/lib/models/create-content-manager-command.js +15 -0
- package/lib/models/create-patient-manager-command.d.ts +80 -0
- package/lib/models/create-patient-manager-command.d.ts.map +1 -0
- package/lib/models/create-patient-manager-command.js +15 -0
- package/lib/models/create-service-review-command.d.ts +6 -0
- package/lib/models/create-service-review-command.d.ts.map +1 -1
- 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/patient-manager-item-model.d.ts +105 -0
- package/lib/models/patient-manager-item-model.d.ts.map +1 -0
- package/lib/models/patient-manager-item-model.js +15 -0
- package/lib/models/patient-manager-model.d.ts +119 -0
- package/lib/models/patient-manager-model.d.ts.map +1 -0
- package/lib/models/patient-manager-model.js +15 -0
- package/lib/models/patient-managers-model.d.ts +33 -0
- package/lib/models/patient-managers-model.d.ts.map +1 -0
- package/lib/models/patient-managers-model.js +15 -0
- package/lib/models/service-review-item-model.d.ts +6 -0
- package/lib/models/service-review-item-model.d.ts.map +1 -1
- package/lib/models/service-review-model.d.ts +6 -0
- package/lib/models/service-review-model.d.ts.map +1 -1
- package/lib/models/translate-command.d.ts +4 -4
- package/lib/models/translate-command.d.ts.map +1 -1
- package/lib/models/update-content-manager-command.d.ts +80 -0
- package/lib/models/update-content-manager-command.d.ts.map +1 -0
- package/lib/models/update-content-manager-command.js +15 -0
- package/lib/models/update-patient-manager-command.d.ts +80 -0
- package/lib/models/update-patient-manager-command.d.ts.map +1 -0
- package/lib/models/update-patient-manager-command.js +15 -0
- package/lib/models/update-service-review-command.d.ts +6 -0
- package/lib/models/update-service-review-command.d.ts.map +1 -1
- package/lib/models/user-type.d.ts +2 -0
- package/lib/models/user-type.d.ts.map +1 -1
- package/lib/models/user-type.js +3 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +12 -0
- package/src/api/content-managers-api.ts +740 -0
- package/src/api/patient-managers-api.ts +740 -0
- package/src/api.ts +2 -0
- package/src/models/content-manager-item-model.ts +114 -0
- package/src/models/content-manager-model.ts +132 -0
- package/src/models/content-managers-model.ts +42 -0
- package/src/models/create-content-manager-command.ts +87 -0
- package/src/models/create-patient-manager-command.ts +87 -0
- package/src/models/create-service-review-command.ts +6 -0
- package/src/models/index.ts +10 -0
- package/src/models/patient-manager-item-model.ts +114 -0
- package/src/models/patient-manager-model.ts +132 -0
- package/src/models/patient-managers-model.ts +42 -0
- package/src/models/service-review-item-model.ts +6 -0
- package/src/models/service-review-model.ts +6 -0
- package/src/models/translate-command.ts +4 -4
- package/src/models/update-content-manager-command.ts +87 -0
- package/src/models/update-patient-manager-command.ts +87 -0
- package/src/models/update-service-review-command.ts +6 -0
- package/src/models/user-type.ts +3 -1
package/src/api.ts
CHANGED
|
@@ -25,6 +25,7 @@ export * from './api/chmanagers-api';
|
|
|
25
25
|
export * from './api/call-histories-api';
|
|
26
26
|
export * from './api/chat-users-api';
|
|
27
27
|
export * from './api/communications-api';
|
|
28
|
+
export * from './api/content-managers-api';
|
|
28
29
|
export * from './api/contributors-api';
|
|
29
30
|
export * from './api/countries-api';
|
|
30
31
|
export * from './api/curations-api';
|
|
@@ -50,6 +51,7 @@ export * from './api/languages-api';
|
|
|
50
51
|
export * from './api/managers-api';
|
|
51
52
|
export * from './api/notifications-api';
|
|
52
53
|
export * from './api/patient-affiliations-api';
|
|
54
|
+
export * from './api/patient-managers-api';
|
|
53
55
|
export * from './api/patients-api';
|
|
54
56
|
export * from './api/payments-api';
|
|
55
57
|
export * from './api/plans-api';
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* CloudHospital Admin Api
|
|
5
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: developer@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 { Gender } from './gender';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface ContentManagerItemModel
|
|
27
|
+
*/
|
|
28
|
+
export interface ContentManagerItemModel {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof ContentManagerItemModel
|
|
33
|
+
*/
|
|
34
|
+
'id'?: string;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof ContentManagerItemModel
|
|
39
|
+
*/
|
|
40
|
+
'userName'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof ContentManagerItemModel
|
|
45
|
+
*/
|
|
46
|
+
'firstName'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof ContentManagerItemModel
|
|
51
|
+
*/
|
|
52
|
+
'lastName'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof ContentManagerItemModel
|
|
57
|
+
*/
|
|
58
|
+
'fullname'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof ContentManagerItemModel
|
|
63
|
+
*/
|
|
64
|
+
'phone'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof ContentManagerItemModel
|
|
69
|
+
*/
|
|
70
|
+
'email'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof ContentManagerItemModel
|
|
75
|
+
*/
|
|
76
|
+
'photo'?: string | null;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof ContentManagerItemModel
|
|
81
|
+
*/
|
|
82
|
+
'photoThumbnail'?: string | null;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {Gender}
|
|
86
|
+
* @memberof ContentManagerItemModel
|
|
87
|
+
*/
|
|
88
|
+
'gender'?: Gender;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {Date}
|
|
92
|
+
* @memberof ContentManagerItemModel
|
|
93
|
+
*/
|
|
94
|
+
'dateOfBirth'?: Date | null;
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof ContentManagerItemModel
|
|
99
|
+
*/
|
|
100
|
+
'timeZone'?: string | null;
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @type {string}
|
|
104
|
+
* @memberof ContentManagerItemModel
|
|
105
|
+
*/
|
|
106
|
+
'communicationUserId'?: string | null;
|
|
107
|
+
/**
|
|
108
|
+
*
|
|
109
|
+
* @type {AuditableEntityModel}
|
|
110
|
+
* @memberof ContentManagerItemModel
|
|
111
|
+
*/
|
|
112
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
113
|
+
}
|
|
114
|
+
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* CloudHospital Admin Api
|
|
5
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: developer@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 { Gender } from './gender';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import { UserLanguageModel } from './user-language-model';
|
|
25
|
+
// May contain unused imports in some cases
|
|
26
|
+
// @ts-ignore
|
|
27
|
+
import { UserType } from './user-type';
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @export
|
|
32
|
+
* @interface ContentManagerModel
|
|
33
|
+
*/
|
|
34
|
+
export interface ContentManagerModel {
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof ContentManagerModel
|
|
39
|
+
*/
|
|
40
|
+
'id'?: string;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof ContentManagerModel
|
|
45
|
+
*/
|
|
46
|
+
'userName'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof ContentManagerModel
|
|
51
|
+
*/
|
|
52
|
+
'firstName'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof ContentManagerModel
|
|
57
|
+
*/
|
|
58
|
+
'lastName'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof ContentManagerModel
|
|
63
|
+
*/
|
|
64
|
+
'fullname'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof ContentManagerModel
|
|
69
|
+
*/
|
|
70
|
+
'phone'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof ContentManagerModel
|
|
75
|
+
*/
|
|
76
|
+
'email'?: string | null;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof ContentManagerModel
|
|
81
|
+
*/
|
|
82
|
+
'photo'?: string | null;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof ContentManagerModel
|
|
87
|
+
*/
|
|
88
|
+
'photoThumbnail'?: string | null;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {Gender}
|
|
92
|
+
* @memberof ContentManagerModel
|
|
93
|
+
*/
|
|
94
|
+
'gender'?: Gender;
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @type {Date}
|
|
98
|
+
* @memberof ContentManagerModel
|
|
99
|
+
*/
|
|
100
|
+
'dateOfBirth'?: Date | null;
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @type {string}
|
|
104
|
+
* @memberof ContentManagerModel
|
|
105
|
+
*/
|
|
106
|
+
'timeZone'?: string | null;
|
|
107
|
+
/**
|
|
108
|
+
*
|
|
109
|
+
* @type {string}
|
|
110
|
+
* @memberof ContentManagerModel
|
|
111
|
+
*/
|
|
112
|
+
'communicationUserId'?: string | null;
|
|
113
|
+
/**
|
|
114
|
+
*
|
|
115
|
+
* @type {AuditableEntityModel}
|
|
116
|
+
* @memberof ContentManagerModel
|
|
117
|
+
*/
|
|
118
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
119
|
+
/**
|
|
120
|
+
*
|
|
121
|
+
* @type {UserType}
|
|
122
|
+
* @memberof ContentManagerModel
|
|
123
|
+
*/
|
|
124
|
+
'userType'?: UserType;
|
|
125
|
+
/**
|
|
126
|
+
*
|
|
127
|
+
* @type {Array<UserLanguageModel>}
|
|
128
|
+
* @memberof ContentManagerModel
|
|
129
|
+
*/
|
|
130
|
+
'languages'?: Array<UserLanguageModel> | null;
|
|
131
|
+
}
|
|
132
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* CloudHospital Admin Api
|
|
5
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: developer@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 { ContentManagerItemModel } from './content-manager-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 ContentManagersModel
|
|
27
|
+
*/
|
|
28
|
+
export interface ContentManagersModel {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {Array<ContentManagerItemModel>}
|
|
32
|
+
* @memberof ContentManagersModel
|
|
33
|
+
*/
|
|
34
|
+
'items'?: Array<ContentManagerItemModel> | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {PagedListMetaData}
|
|
38
|
+
* @memberof ContentManagersModel
|
|
39
|
+
*/
|
|
40
|
+
'metaData'?: PagedListMetaData;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* CloudHospital Admin Api
|
|
5
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: developer@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 { Gender } from './gender';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface CreateContentManagerCommand
|
|
24
|
+
*/
|
|
25
|
+
export interface CreateContentManagerCommand {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof CreateContentManagerCommand
|
|
30
|
+
*/
|
|
31
|
+
'userName'?: string | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof CreateContentManagerCommand
|
|
36
|
+
*/
|
|
37
|
+
'email'?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof CreateContentManagerCommand
|
|
42
|
+
*/
|
|
43
|
+
'firstName'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof CreateContentManagerCommand
|
|
48
|
+
*/
|
|
49
|
+
'lastName'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof CreateContentManagerCommand
|
|
54
|
+
*/
|
|
55
|
+
'phone'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof CreateContentManagerCommand
|
|
60
|
+
*/
|
|
61
|
+
'photo'?: string | null;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof CreateContentManagerCommand
|
|
66
|
+
*/
|
|
67
|
+
'photoThumbnail'?: string | null;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {Gender}
|
|
71
|
+
* @memberof CreateContentManagerCommand
|
|
72
|
+
*/
|
|
73
|
+
'gender'?: Gender;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {Date}
|
|
77
|
+
* @memberof CreateContentManagerCommand
|
|
78
|
+
*/
|
|
79
|
+
'dateOfBirth'?: Date | null;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {string}
|
|
83
|
+
* @memberof CreateContentManagerCommand
|
|
84
|
+
*/
|
|
85
|
+
'timeZone'?: string | null;
|
|
86
|
+
}
|
|
87
|
+
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* CloudHospital Admin Api
|
|
5
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: developer@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 { Gender } from './gender';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface CreatePatientManagerCommand
|
|
24
|
+
*/
|
|
25
|
+
export interface CreatePatientManagerCommand {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof CreatePatientManagerCommand
|
|
30
|
+
*/
|
|
31
|
+
'userName'?: string | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof CreatePatientManagerCommand
|
|
36
|
+
*/
|
|
37
|
+
'email'?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof CreatePatientManagerCommand
|
|
42
|
+
*/
|
|
43
|
+
'firstName'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof CreatePatientManagerCommand
|
|
48
|
+
*/
|
|
49
|
+
'lastName'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof CreatePatientManagerCommand
|
|
54
|
+
*/
|
|
55
|
+
'phone'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof CreatePatientManagerCommand
|
|
60
|
+
*/
|
|
61
|
+
'photo'?: string | null;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof CreatePatientManagerCommand
|
|
66
|
+
*/
|
|
67
|
+
'photoThumbnail'?: string | null;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {Gender}
|
|
71
|
+
* @memberof CreatePatientManagerCommand
|
|
72
|
+
*/
|
|
73
|
+
'gender'?: Gender;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {Date}
|
|
77
|
+
* @memberof CreatePatientManagerCommand
|
|
78
|
+
*/
|
|
79
|
+
'dateOfBirth'?: Date | null;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {string}
|
|
83
|
+
* @memberof CreatePatientManagerCommand
|
|
84
|
+
*/
|
|
85
|
+
'timeZone'?: string | null;
|
|
86
|
+
}
|
|
87
|
+
|
package/src/models/index.ts
CHANGED
|
@@ -81,6 +81,9 @@ export * from './communication-user-token-model';
|
|
|
81
81
|
export * from './confirm-email-command';
|
|
82
82
|
export * from './contact-sorting-command';
|
|
83
83
|
export * from './contact-type';
|
|
84
|
+
export * from './content-manager-item-model';
|
|
85
|
+
export * from './content-manager-model';
|
|
86
|
+
export * from './content-managers-model';
|
|
84
87
|
export * from './contribution-type';
|
|
85
88
|
export * from './contributor-item-model';
|
|
86
89
|
export * from './contributor-model';
|
|
@@ -106,6 +109,7 @@ export * from './create-article-tag-command';
|
|
|
106
109
|
export * from './create-chadmin-command';
|
|
107
110
|
export * from './create-chmanager-command';
|
|
108
111
|
export * from './create-chat-user-command';
|
|
112
|
+
export * from './create-content-manager-command';
|
|
109
113
|
export * from './create-contributor-command';
|
|
110
114
|
export * from './create-contributor-sns-handle-command';
|
|
111
115
|
export * from './create-country-command';
|
|
@@ -150,6 +154,7 @@ export * from './create-notice-command';
|
|
|
150
154
|
export * from './create-page-command';
|
|
151
155
|
export * from './create-patient-affiliation-command';
|
|
152
156
|
export * from './create-patient-command';
|
|
157
|
+
export * from './create-patient-manager-command';
|
|
153
158
|
export * from './create-plan-command';
|
|
154
159
|
export * from './create-plan-hospital-command';
|
|
155
160
|
export * from './create-policy-command';
|
|
@@ -368,6 +373,9 @@ export * from './patient-affiliation-item-model';
|
|
|
368
373
|
export * from './patient-affiliation-model';
|
|
369
374
|
export * from './patient-affiliations-model';
|
|
370
375
|
export * from './patient-item-model';
|
|
376
|
+
export * from './patient-manager-item-model';
|
|
377
|
+
export * from './patient-manager-model';
|
|
378
|
+
export * from './patient-managers-model';
|
|
371
379
|
export * from './patient-model';
|
|
372
380
|
export * from './patient-walk-in-model';
|
|
373
381
|
export * from './patients-model';
|
|
@@ -528,6 +536,7 @@ export * from './update-article-source-command';
|
|
|
528
536
|
export * from './update-chadmin-command';
|
|
529
537
|
export * from './update-chmanager-command';
|
|
530
538
|
export * from './update-chat-user-command';
|
|
539
|
+
export * from './update-content-manager-command';
|
|
531
540
|
export * from './update-content-text-only-value-domains';
|
|
532
541
|
export * from './update-contributor-command';
|
|
533
542
|
export * from './update-contributor-sns-handle-command';
|
|
@@ -570,6 +579,7 @@ export * from './update-notice-command';
|
|
|
570
579
|
export * from './update-page-command';
|
|
571
580
|
export * from './update-patient-affiliation-command';
|
|
572
581
|
export * from './update-patient-command';
|
|
582
|
+
export * from './update-patient-manager-command';
|
|
573
583
|
export * from './update-plan-command';
|
|
574
584
|
export * from './update-plan-hospital-command';
|
|
575
585
|
export * from './update-policy-command';
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* CloudHospital Admin Api
|
|
5
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: developer@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 { Gender } from './gender';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface PatientManagerItemModel
|
|
27
|
+
*/
|
|
28
|
+
export interface PatientManagerItemModel {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof PatientManagerItemModel
|
|
33
|
+
*/
|
|
34
|
+
'id'?: string;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof PatientManagerItemModel
|
|
39
|
+
*/
|
|
40
|
+
'userName'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof PatientManagerItemModel
|
|
45
|
+
*/
|
|
46
|
+
'firstName'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof PatientManagerItemModel
|
|
51
|
+
*/
|
|
52
|
+
'lastName'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof PatientManagerItemModel
|
|
57
|
+
*/
|
|
58
|
+
'fullname'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof PatientManagerItemModel
|
|
63
|
+
*/
|
|
64
|
+
'phone'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof PatientManagerItemModel
|
|
69
|
+
*/
|
|
70
|
+
'email'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof PatientManagerItemModel
|
|
75
|
+
*/
|
|
76
|
+
'photo'?: string | null;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof PatientManagerItemModel
|
|
81
|
+
*/
|
|
82
|
+
'photoThumbnail'?: string | null;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {Gender}
|
|
86
|
+
* @memberof PatientManagerItemModel
|
|
87
|
+
*/
|
|
88
|
+
'gender'?: Gender;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {Date}
|
|
92
|
+
* @memberof PatientManagerItemModel
|
|
93
|
+
*/
|
|
94
|
+
'dateOfBirth'?: Date | null;
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof PatientManagerItemModel
|
|
99
|
+
*/
|
|
100
|
+
'timeZone'?: string | null;
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @type {string}
|
|
104
|
+
* @memberof PatientManagerItemModel
|
|
105
|
+
*/
|
|
106
|
+
'communicationUserId'?: string | null;
|
|
107
|
+
/**
|
|
108
|
+
*
|
|
109
|
+
* @type {AuditableEntityModel}
|
|
110
|
+
* @memberof PatientManagerItemModel
|
|
111
|
+
*/
|
|
112
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
113
|
+
}
|
|
114
|
+
|