ch-admin-api-client-typescript 5.21.22 → 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.
Files changed (92) hide show
  1. package/lib/api/appointments-api.d.ts +30 -3
  2. package/lib/api/appointments-api.d.ts.map +1 -1
  3. package/lib/api/appointments-api.js +28 -6
  4. package/lib/api/patient-affiliations-api.d.ts +216 -0
  5. package/lib/api/patient-affiliations-api.d.ts.map +1 -0
  6. package/lib/api/patient-affiliations-api.js +358 -0
  7. package/lib/api/patients-api.d.ts +191 -3
  8. package/lib/api/patients-api.d.ts.map +1 -1
  9. package/lib/api/patients-api.js +289 -6
  10. package/lib/api.d.ts +1 -0
  11. package/lib/api.d.ts.map +1 -1
  12. package/lib/api.js +1 -0
  13. package/lib/models/chadmin-item-model.d.ts +3 -3
  14. package/lib/models/chadmin-item-model.d.ts.map +1 -1
  15. package/lib/models/chadmin-model.d.ts +3 -3
  16. package/lib/models/chadmin-model.d.ts.map +1 -1
  17. package/lib/models/chmanager-item-model.d.ts +3 -3
  18. package/lib/models/chmanager-item-model.d.ts.map +1 -1
  19. package/lib/models/chmanager-model.d.ts +3 -3
  20. package/lib/models/chmanager-model.d.ts.map +1 -1
  21. package/lib/models/create-article-command.d.ts +6 -0
  22. package/lib/models/create-article-command.d.ts.map +1 -1
  23. package/lib/models/create-patient-affiliation-command.d.ts +109 -0
  24. package/lib/models/create-patient-affiliation-command.d.ts.map +1 -0
  25. package/lib/models/create-patient-affiliation-command.js +15 -0
  26. package/lib/models/create-patient-command.d.ts +90 -0
  27. package/lib/models/create-patient-command.d.ts.map +1 -1
  28. package/lib/models/doctor-item-model.d.ts +3 -3
  29. package/lib/models/doctor-item-model.d.ts.map +1 -1
  30. package/lib/models/doctor-model.d.ts +3 -3
  31. package/lib/models/doctor-model.d.ts.map +1 -1
  32. package/lib/models/get-patient-walk-in-query.d.ts +37 -0
  33. package/lib/models/get-patient-walk-in-query.d.ts.map +1 -0
  34. package/lib/models/get-patient-walk-in-query.js +15 -0
  35. package/lib/models/index.d.ts +7 -0
  36. package/lib/models/index.d.ts.map +1 -1
  37. package/lib/models/index.js +7 -0
  38. package/lib/models/manager-item-model.d.ts +3 -3
  39. package/lib/models/manager-item-model.d.ts.map +1 -1
  40. package/lib/models/manager-model.d.ts +3 -3
  41. package/lib/models/manager-model.d.ts.map +1 -1
  42. package/lib/models/patient-affiliation-item-model.d.ts +153 -0
  43. package/lib/models/patient-affiliation-item-model.d.ts.map +1 -0
  44. package/lib/models/patient-affiliation-item-model.js +15 -0
  45. package/lib/models/patient-affiliation-model.d.ts +153 -0
  46. package/lib/models/patient-affiliation-model.d.ts.map +1 -0
  47. package/lib/models/patient-affiliation-model.js +15 -0
  48. package/lib/models/patient-affiliations-model.d.ts +33 -0
  49. package/lib/models/patient-affiliations-model.d.ts.map +1 -0
  50. package/lib/models/patient-affiliations-model.js +15 -0
  51. package/lib/models/patient-item-model.d.ts +3 -3
  52. package/lib/models/patient-item-model.d.ts.map +1 -1
  53. package/lib/models/patient-model.d.ts +3 -3
  54. package/lib/models/patient-model.d.ts.map +1 -1
  55. package/lib/models/patient-walk-in-model.d.ts +32 -0
  56. package/lib/models/patient-walk-in-model.d.ts.map +1 -0
  57. package/lib/models/patient-walk-in-model.js +15 -0
  58. package/lib/models/update-article-command.d.ts +6 -0
  59. package/lib/models/update-article-command.d.ts.map +1 -1
  60. package/lib/models/update-patient-affiliation-command.d.ts +115 -0
  61. package/lib/models/update-patient-affiliation-command.d.ts.map +1 -0
  62. package/lib/models/update-patient-affiliation-command.js +15 -0
  63. package/lib/models/user-model.d.ts +3 -3
  64. package/lib/models/user-model.d.ts.map +1 -1
  65. package/package.json +1 -1
  66. package/src/.openapi-generator/FILES +8 -0
  67. package/src/api/appointments-api.ts +52 -6
  68. package/src/api/patient-affiliations-api.ts +361 -0
  69. package/src/api/patients-api.ts +337 -6
  70. package/src/api.ts +1 -0
  71. package/src/models/chadmin-item-model.ts +3 -3
  72. package/src/models/chadmin-model.ts +3 -3
  73. package/src/models/chmanager-item-model.ts +3 -3
  74. package/src/models/chmanager-model.ts +3 -3
  75. package/src/models/create-article-command.ts +6 -0
  76. package/src/models/create-patient-affiliation-command.ts +114 -0
  77. package/src/models/create-patient-command.ts +90 -0
  78. package/src/models/doctor-item-model.ts +3 -3
  79. package/src/models/doctor-model.ts +3 -3
  80. package/src/models/get-patient-walk-in-query.ts +42 -0
  81. package/src/models/index.ts +7 -0
  82. package/src/models/manager-item-model.ts +3 -3
  83. package/src/models/manager-model.ts +3 -3
  84. package/src/models/patient-affiliation-item-model.ts +162 -0
  85. package/src/models/patient-affiliation-model.ts +162 -0
  86. package/src/models/patient-affiliations-model.ts +42 -0
  87. package/src/models/patient-item-model.ts +3 -3
  88. package/src/models/patient-model.ts +3 -3
  89. package/src/models/patient-walk-in-model.ts +39 -0
  90. package/src/models/update-article-command.ts +6 -0
  91. package/src/models/update-patient-affiliation-command.ts +120 -0
  92. 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 { AuditableEntity } from './auditable-entity';
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 {AuditableEntity}
112
+ * @type {AuditableEntityModel}
113
113
  * @memberof PatientItemModel
114
114
  */
115
- 'auditableEntity'?: 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 { AuditableEntity } from './auditable-entity';
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 {AuditableEntity}
118
+ * @type {AuditableEntityModel}
119
119
  * @memberof PatientModel
120
120
  */
121
- 'auditableEntity'?: 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
+
@@ -15,7 +15,7 @@
15
15
 
16
16
  // May contain unused imports in some cases
17
17
  // @ts-ignore
18
- import { AuditableEntity } from './auditable-entity';
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 {AuditableEntity}
115
+ * @type {AuditableEntityModel}
116
116
  * @memberof UserModel
117
117
  */
118
- 'auditableEntity'?: AuditableEntity;
118
+ 'auditableEntity'?: AuditableEntityModel;
119
119
  /**
120
120
  *
121
121
  * @type {string}