ch-admin-api-client-typescript 5.22.1 → 5.23.2
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/patient-affiliations-api.d.ts +216 -0
- package/lib/api/patient-affiliations-api.d.ts.map +1 -0
- package/lib/api/patient-affiliations-api.js +358 -0
- package/lib/api/patients-api.d.ts +191 -3
- package/lib/api/patients-api.d.ts.map +1 -1
- package/lib/api/patients-api.js +289 -6
- package/lib/api.d.ts +1 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1 -0
- package/lib/models/chadmin-item-model.d.ts +3 -3
- package/lib/models/chadmin-item-model.d.ts.map +1 -1
- package/lib/models/chadmin-model.d.ts +3 -3
- package/lib/models/chadmin-model.d.ts.map +1 -1
- package/lib/models/chmanager-item-model.d.ts +3 -3
- package/lib/models/chmanager-item-model.d.ts.map +1 -1
- package/lib/models/chmanager-model.d.ts +3 -3
- package/lib/models/chmanager-model.d.ts.map +1 -1
- package/lib/models/create-article-command.d.ts +6 -0
- package/lib/models/create-article-command.d.ts.map +1 -1
- package/lib/models/create-patient-affiliation-command.d.ts +109 -0
- package/lib/models/create-patient-affiliation-command.d.ts.map +1 -0
- package/lib/models/create-patient-affiliation-command.js +15 -0
- package/lib/models/create-patient-command.d.ts +90 -0
- package/lib/models/create-patient-command.d.ts.map +1 -1
- package/lib/models/doctor-item-model.d.ts +3 -3
- package/lib/models/doctor-item-model.d.ts.map +1 -1
- package/lib/models/doctor-model.d.ts +3 -3
- package/lib/models/doctor-model.d.ts.map +1 -1
- package/lib/models/get-patient-walk-in-query.d.ts +37 -0
- package/lib/models/get-patient-walk-in-query.d.ts.map +1 -0
- package/lib/models/get-patient-walk-in-query.js +15 -0
- package/lib/models/index.d.ts +7 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +7 -0
- package/lib/models/manager-item-model.d.ts +3 -3
- package/lib/models/manager-item-model.d.ts.map +1 -1
- package/lib/models/manager-model.d.ts +3 -3
- package/lib/models/manager-model.d.ts.map +1 -1
- package/lib/models/patient-affiliation-item-model.d.ts +153 -0
- package/lib/models/patient-affiliation-item-model.d.ts.map +1 -0
- package/lib/models/patient-affiliation-item-model.js +15 -0
- package/lib/models/patient-affiliation-model.d.ts +153 -0
- package/lib/models/patient-affiliation-model.d.ts.map +1 -0
- package/lib/models/patient-affiliation-model.js +15 -0
- package/lib/models/patient-affiliations-model.d.ts +33 -0
- package/lib/models/patient-affiliations-model.d.ts.map +1 -0
- package/lib/models/patient-affiliations-model.js +15 -0
- package/lib/models/patient-item-model.d.ts +3 -3
- package/lib/models/patient-item-model.d.ts.map +1 -1
- package/lib/models/patient-model.d.ts +3 -3
- package/lib/models/patient-model.d.ts.map +1 -1
- package/lib/models/patient-walk-in-model.d.ts +32 -0
- package/lib/models/patient-walk-in-model.d.ts.map +1 -0
- package/lib/models/patient-walk-in-model.js +15 -0
- package/lib/models/update-article-command.d.ts +6 -0
- package/lib/models/update-article-command.d.ts.map +1 -1
- package/lib/models/update-patient-affiliation-command.d.ts +115 -0
- package/lib/models/update-patient-affiliation-command.d.ts.map +1 -0
- package/lib/models/update-patient-affiliation-command.js +15 -0
- package/lib/models/user-model.d.ts +3 -3
- package/lib/models/user-model.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +8 -0
- package/src/api/patient-affiliations-api.ts +361 -0
- package/src/api/patients-api.ts +337 -6
- package/src/api.ts +1 -0
- package/src/models/chadmin-item-model.ts +3 -3
- package/src/models/chadmin-model.ts +3 -3
- package/src/models/chmanager-item-model.ts +3 -3
- package/src/models/chmanager-model.ts +3 -3
- package/src/models/create-article-command.ts +6 -0
- package/src/models/create-patient-affiliation-command.ts +114 -0
- package/src/models/create-patient-command.ts +90 -0
- package/src/models/doctor-item-model.ts +3 -3
- package/src/models/doctor-model.ts +3 -3
- package/src/models/get-patient-walk-in-query.ts +42 -0
- package/src/models/index.ts +7 -0
- package/src/models/manager-item-model.ts +3 -3
- package/src/models/manager-model.ts +3 -3
- package/src/models/patient-affiliation-item-model.ts +162 -0
- package/src/models/patient-affiliation-model.ts +162 -0
- package/src/models/patient-affiliations-model.ts +42 -0
- package/src/models/patient-item-model.ts +3 -3
- package/src/models/patient-model.ts +3 -3
- package/src/models/patient-walk-in-model.ts +39 -0
- package/src/models/update-article-command.ts +6 -0
- package/src/models/update-patient-affiliation-command.ts +120 -0
- package/src/models/user-model.ts +3 -3
|
@@ -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 { PagedListMetaData } from './paged-list-meta-data';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { PatientAffiliationItemModel } from './patient-affiliation-item-model';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface PatientAffiliationsModel
|
|
27
|
+
*/
|
|
28
|
+
export interface PatientAffiliationsModel {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {Array<PatientAffiliationItemModel>}
|
|
32
|
+
* @memberof PatientAffiliationsModel
|
|
33
|
+
*/
|
|
34
|
+
'items'?: Array<PatientAffiliationItemModel> | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {PagedListMetaData}
|
|
38
|
+
* @memberof PatientAffiliationsModel
|
|
39
|
+
*/
|
|
40
|
+
'metaData'?: PagedListMetaData;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
// May contain unused imports in some cases
|
|
17
17
|
// @ts-ignore
|
|
18
|
-
import {
|
|
18
|
+
import { AuditableEntityModel } from './auditable-entity-model';
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
21
|
import { Gender } from './gender';
|
|
@@ -109,10 +109,10 @@ export interface PatientItemModel {
|
|
|
109
109
|
'communicationUserId'?: string | null;
|
|
110
110
|
/**
|
|
111
111
|
*
|
|
112
|
-
* @type {
|
|
112
|
+
* @type {AuditableEntityModel}
|
|
113
113
|
* @memberof PatientItemModel
|
|
114
114
|
*/
|
|
115
|
-
'auditableEntity'?:
|
|
115
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
116
116
|
/**
|
|
117
117
|
*
|
|
118
118
|
* @type {MembershipModel}
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
// May contain unused imports in some cases
|
|
17
17
|
// @ts-ignore
|
|
18
|
-
import {
|
|
18
|
+
import { AuditableEntityModel } from './auditable-entity-model';
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
21
|
import { Gender } from './gender';
|
|
@@ -115,10 +115,10 @@ export interface PatientModel {
|
|
|
115
115
|
'communicationUserId'?: string | null;
|
|
116
116
|
/**
|
|
117
117
|
*
|
|
118
|
-
* @type {
|
|
118
|
+
* @type {AuditableEntityModel}
|
|
119
119
|
* @memberof PatientModel
|
|
120
120
|
*/
|
|
121
|
-
'auditableEntity'?:
|
|
121
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
122
122
|
/**
|
|
123
123
|
*
|
|
124
124
|
* @type {string}
|
|
@@ -0,0 +1,39 @@
|
|
|
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 { PatientItemModel } from './patient-item-model';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface PatientWalkInModel
|
|
24
|
+
*/
|
|
25
|
+
export interface PatientWalkInModel {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {boolean}
|
|
29
|
+
* @memberof PatientWalkInModel
|
|
30
|
+
*/
|
|
31
|
+
'hasPatientAffiliation'?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {PatientItemModel}
|
|
35
|
+
* @memberof PatientWalkInModel
|
|
36
|
+
*/
|
|
37
|
+
'patient'?: PatientItemModel;
|
|
38
|
+
}
|
|
39
|
+
|
|
@@ -74,6 +74,12 @@ export interface UpdateArticleCommand {
|
|
|
74
74
|
* @memberof UpdateArticleCommand
|
|
75
75
|
*/
|
|
76
76
|
'hospitalId'?: string;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof UpdateArticleCommand
|
|
81
|
+
*/
|
|
82
|
+
'specialtyTypeId'?: string | null;
|
|
77
83
|
/**
|
|
78
84
|
*
|
|
79
85
|
* @type {string}
|
|
@@ -0,0 +1,120 @@
|
|
|
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 UpdatePatientAffiliationCommand
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdatePatientAffiliationCommand {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof UpdatePatientAffiliationCommand
|
|
27
|
+
*/
|
|
28
|
+
'languageCode'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof UpdatePatientAffiliationCommand
|
|
33
|
+
*/
|
|
34
|
+
'name'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {boolean}
|
|
38
|
+
* @memberof UpdatePatientAffiliationCommand
|
|
39
|
+
*/
|
|
40
|
+
'isConfirmed'?: boolean;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {number}
|
|
44
|
+
* @memberof UpdatePatientAffiliationCommand
|
|
45
|
+
*/
|
|
46
|
+
'height'?: number | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof UpdatePatientAffiliationCommand
|
|
51
|
+
*/
|
|
52
|
+
'heightUnit'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {number}
|
|
56
|
+
* @memberof UpdatePatientAffiliationCommand
|
|
57
|
+
*/
|
|
58
|
+
'weight'?: number | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof UpdatePatientAffiliationCommand
|
|
63
|
+
*/
|
|
64
|
+
'weightUnit'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {number}
|
|
68
|
+
* @memberof UpdatePatientAffiliationCommand
|
|
69
|
+
*/
|
|
70
|
+
'bodyMassIndex'?: number | null;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof UpdatePatientAffiliationCommand
|
|
75
|
+
*/
|
|
76
|
+
'bodyMassIndexUnit'?: string | null;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {number}
|
|
80
|
+
* @memberof UpdatePatientAffiliationCommand
|
|
81
|
+
*/
|
|
82
|
+
'pulseRate'?: number | null;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof UpdatePatientAffiliationCommand
|
|
87
|
+
*/
|
|
88
|
+
'pulseRateUnit'?: string | null;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {number}
|
|
92
|
+
* @memberof UpdatePatientAffiliationCommand
|
|
93
|
+
*/
|
|
94
|
+
'systolicBloodPressure'?: number | null;
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @type {number}
|
|
98
|
+
* @memberof UpdatePatientAffiliationCommand
|
|
99
|
+
*/
|
|
100
|
+
'diastolicBloodPressure'?: number | null;
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @type {string}
|
|
104
|
+
* @memberof UpdatePatientAffiliationCommand
|
|
105
|
+
*/
|
|
106
|
+
'bloodPressureUnit'?: string | null;
|
|
107
|
+
/**
|
|
108
|
+
*
|
|
109
|
+
* @type {number}
|
|
110
|
+
* @memberof UpdatePatientAffiliationCommand
|
|
111
|
+
*/
|
|
112
|
+
'bodyTemperature'?: number | null;
|
|
113
|
+
/**
|
|
114
|
+
*
|
|
115
|
+
* @type {string}
|
|
116
|
+
* @memberof UpdatePatientAffiliationCommand
|
|
117
|
+
*/
|
|
118
|
+
'bodyTemperatureUnit'?: string | null;
|
|
119
|
+
}
|
|
120
|
+
|
package/src/models/user-model.ts
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
// May contain unused imports in some cases
|
|
17
17
|
// @ts-ignore
|
|
18
|
-
import {
|
|
18
|
+
import { AuditableEntityModel } from './auditable-entity-model';
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
21
|
import { Gender } from './gender';
|
|
@@ -112,10 +112,10 @@ export interface UserModel {
|
|
|
112
112
|
'communicationUserId'?: string | null;
|
|
113
113
|
/**
|
|
114
114
|
*
|
|
115
|
-
* @type {
|
|
115
|
+
* @type {AuditableEntityModel}
|
|
116
116
|
* @memberof UserModel
|
|
117
117
|
*/
|
|
118
|
-
'auditableEntity'?:
|
|
118
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
119
119
|
/**
|
|
120
120
|
*
|
|
121
121
|
* @type {string}
|