ch-admin-api-client-typescript 5.16.5 → 5.18.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/hospitals-api.d.ts +13 -3
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +12 -6
- package/lib/models/contact-type.d.ts +23 -0
- package/lib/models/contact-type.d.ts.map +1 -0
- package/lib/models/contact-type.js +26 -0
- package/lib/models/create-hospital-contact-command.d.ts +7 -0
- package/lib/models/create-hospital-contact-command.d.ts.map +1 -1
- package/lib/models/doctor-affiliation-simple-model.d.ts +43 -0
- package/lib/models/doctor-affiliation-simple-model.d.ts.map +1 -0
- package/lib/models/doctor-affiliation-simple-model.js +15 -0
- package/lib/models/doctor-model.d.ts +7 -0
- package/lib/models/doctor-model.d.ts.map +1 -1
- package/lib/models/hospital-contact-item-model.d.ts +7 -0
- package/lib/models/hospital-contact-item-model.d.ts.map +1 -1
- package/lib/models/hospital-contact-model.d.ts +7 -0
- package/lib/models/hospital-contact-model.d.ts.map +1 -1
- package/lib/models/index.d.ts +2 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +2 -0
- package/lib/models/manager-model.d.ts +7 -0
- package/lib/models/manager-model.d.ts.map +1 -1
- package/lib/models/update-hospital-contact-command.d.ts +7 -0
- package/lib/models/update-hospital-contact-command.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +2 -0
- package/src/api/hospitals-api.ts +22 -6
- package/src/models/contact-type.ts +32 -0
- package/src/models/create-hospital-contact-command.ts +9 -0
- package/src/models/doctor-affiliation-simple-model.ts +48 -0
- package/src/models/doctor-model.ts +9 -0
- package/src/models/hospital-contact-item-model.ts +9 -0
- package/src/models/hospital-contact-model.ts +9 -0
- package/src/models/index.ts +2 -0
- package/src/models/manager-model.ts +9 -0
- package/src/models/update-hospital-contact-command.ts +9 -0
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { ContactType } from './contact-type';
|
|
16
19
|
|
|
17
20
|
/**
|
|
18
21
|
*
|
|
@@ -32,6 +35,12 @@ export interface HospitalContactItemModel {
|
|
|
32
35
|
* @memberof HospitalContactItemModel
|
|
33
36
|
*/
|
|
34
37
|
'name'?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {ContactType}
|
|
41
|
+
* @memberof HospitalContactItemModel
|
|
42
|
+
*/
|
|
43
|
+
'contactType'?: ContactType;
|
|
35
44
|
/**
|
|
36
45
|
*
|
|
37
46
|
* @type {string}
|
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { ContactType } from './contact-type';
|
|
16
19
|
|
|
17
20
|
/**
|
|
18
21
|
*
|
|
@@ -32,6 +35,12 @@ export interface HospitalContactModel {
|
|
|
32
35
|
* @memberof HospitalContactModel
|
|
33
36
|
*/
|
|
34
37
|
'name'?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {ContactType}
|
|
41
|
+
* @memberof HospitalContactModel
|
|
42
|
+
*/
|
|
43
|
+
'contactType'?: ContactType;
|
|
35
44
|
/**
|
|
36
45
|
*
|
|
37
46
|
* @type {string}
|
package/src/models/index.ts
CHANGED
|
@@ -77,6 +77,7 @@ export * from './chat-users-model';
|
|
|
77
77
|
export * from './check-notifications-command';
|
|
78
78
|
export * from './communication-user-token-model';
|
|
79
79
|
export * from './confirm-email-command';
|
|
80
|
+
export * from './contact-type';
|
|
80
81
|
export * from './contribution-type';
|
|
81
82
|
export * from './contributor-item-model';
|
|
82
83
|
export * from './contributor-model';
|
|
@@ -173,6 +174,7 @@ export * from './delete-service-appointment-timetable-overrides-command';
|
|
|
173
174
|
export * from './deploy-status';
|
|
174
175
|
export * from './doctor-affiliation-item-model';
|
|
175
176
|
export * from './doctor-affiliation-model';
|
|
177
|
+
export * from './doctor-affiliation-simple-model';
|
|
176
178
|
export * from './doctor-affiliations-model';
|
|
177
179
|
export * from './doctor-certificate-item-model';
|
|
178
180
|
export * from './doctor-certificate-model';
|
|
@@ -21,6 +21,9 @@ import { AuditableEntity } from './auditable-entity';
|
|
|
21
21
|
import { Gender } from './gender';
|
|
22
22
|
// May contain unused imports in some cases
|
|
23
23
|
// @ts-ignore
|
|
24
|
+
import { ManagerAffiliationItemModel } from './manager-affiliation-item-model';
|
|
25
|
+
// May contain unused imports in some cases
|
|
26
|
+
// @ts-ignore
|
|
24
27
|
import { UserLanguageModel } from './user-language-model';
|
|
25
28
|
// May contain unused imports in some cases
|
|
26
29
|
// @ts-ignore
|
|
@@ -140,5 +143,11 @@ export interface ManagerModel {
|
|
|
140
143
|
* @memberof ManagerModel
|
|
141
144
|
*/
|
|
142
145
|
'affiliationsCount'?: number;
|
|
146
|
+
/**
|
|
147
|
+
*
|
|
148
|
+
* @type {Array<ManagerAffiliationItemModel>}
|
|
149
|
+
* @memberof ManagerModel
|
|
150
|
+
*/
|
|
151
|
+
'affiliations'?: Array<ManagerAffiliationItemModel> | null;
|
|
143
152
|
}
|
|
144
153
|
|
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { ContactType } from './contact-type';
|
|
16
19
|
|
|
17
20
|
/**
|
|
18
21
|
*
|
|
@@ -26,6 +29,12 @@ export interface UpdateHospitalContactCommand {
|
|
|
26
29
|
* @memberof UpdateHospitalContactCommand
|
|
27
30
|
*/
|
|
28
31
|
'name'?: string | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {ContactType}
|
|
35
|
+
* @memberof UpdateHospitalContactCommand
|
|
36
|
+
*/
|
|
37
|
+
'contactType'?: ContactType;
|
|
29
38
|
/**
|
|
30
39
|
*
|
|
31
40
|
* @type {string}
|