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,153 @@
1
+ /**
2
+ * Swagger UI - Cloud Hospital Admin Api-INT
3
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
4
+ *
5
+ * The version of the OpenAPI document: 1
6
+ * Contact: hyounoosung@icloudhospital.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { AuditableEntityModel } from './auditable-entity-model';
13
+ import { PatientItemModel } from './patient-item-model';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface PatientAffiliationItemModel
18
+ */
19
+ export interface PatientAffiliationItemModel {
20
+ /**
21
+ *
22
+ * @type {string}
23
+ * @memberof PatientAffiliationItemModel
24
+ */
25
+ 'id'?: string;
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof PatientAffiliationItemModel
30
+ */
31
+ 'languageCode'?: string | null;
32
+ /**
33
+ *
34
+ * @type {string}
35
+ * @memberof PatientAffiliationItemModel
36
+ */
37
+ 'patientId'?: string;
38
+ /**
39
+ *
40
+ * @type {string}
41
+ * @memberof PatientAffiliationItemModel
42
+ */
43
+ 'hospitalId'?: string;
44
+ /**
45
+ *
46
+ * @type {PatientItemModel}
47
+ * @memberof PatientAffiliationItemModel
48
+ */
49
+ 'patient'?: PatientItemModel;
50
+ /**
51
+ *
52
+ * @type {string}
53
+ * @memberof PatientAffiliationItemModel
54
+ */
55
+ 'hospitalName'?: string | null;
56
+ /**
57
+ *
58
+ * @type {number}
59
+ * @memberof PatientAffiliationItemModel
60
+ */
61
+ 'height'?: number | null;
62
+ /**
63
+ *
64
+ * @type {string}
65
+ * @memberof PatientAffiliationItemModel
66
+ */
67
+ 'heightUnit'?: string | null;
68
+ /**
69
+ *
70
+ * @type {number}
71
+ * @memberof PatientAffiliationItemModel
72
+ */
73
+ 'weight'?: number | null;
74
+ /**
75
+ *
76
+ * @type {string}
77
+ * @memberof PatientAffiliationItemModel
78
+ */
79
+ 'weightUnit'?: string | null;
80
+ /**
81
+ *
82
+ * @type {number}
83
+ * @memberof PatientAffiliationItemModel
84
+ */
85
+ 'bodyMassIndex'?: number | null;
86
+ /**
87
+ *
88
+ * @type {string}
89
+ * @memberof PatientAffiliationItemModel
90
+ */
91
+ 'bodyMassIndexUnit'?: string | null;
92
+ /**
93
+ *
94
+ * @type {number}
95
+ * @memberof PatientAffiliationItemModel
96
+ */
97
+ 'pulseRate'?: number | null;
98
+ /**
99
+ *
100
+ * @type {string}
101
+ * @memberof PatientAffiliationItemModel
102
+ */
103
+ 'pulseRateUnit'?: string | null;
104
+ /**
105
+ *
106
+ * @type {number}
107
+ * @memberof PatientAffiliationItemModel
108
+ */
109
+ 'systolicBloodPressure'?: number | null;
110
+ /**
111
+ *
112
+ * @type {number}
113
+ * @memberof PatientAffiliationItemModel
114
+ */
115
+ 'diastolicBloodPressure'?: number | null;
116
+ /**
117
+ *
118
+ * @type {string}
119
+ * @memberof PatientAffiliationItemModel
120
+ */
121
+ 'bloodPressureUnit'?: string | null;
122
+ /**
123
+ *
124
+ * @type {number}
125
+ * @memberof PatientAffiliationItemModel
126
+ */
127
+ 'bodyTemperature'?: number | null;
128
+ /**
129
+ *
130
+ * @type {string}
131
+ * @memberof PatientAffiliationItemModel
132
+ */
133
+ 'bodyTemperatureUnit'?: string | null;
134
+ /**
135
+ *
136
+ * @type {string}
137
+ * @memberof PatientAffiliationItemModel
138
+ */
139
+ 'name'?: string | null;
140
+ /**
141
+ *
142
+ * @type {boolean}
143
+ * @memberof PatientAffiliationItemModel
144
+ */
145
+ 'isConfirmed'?: boolean;
146
+ /**
147
+ *
148
+ * @type {AuditableEntityModel}
149
+ * @memberof PatientAffiliationItemModel
150
+ */
151
+ 'auditableEntity'?: AuditableEntityModel;
152
+ }
153
+ //# sourceMappingURL=patient-affiliation-item-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"patient-affiliation-item-model.d.ts","sourceRoot":"","sources":["../../src/models/patient-affiliation-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAGhE,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAExD;;;;GAIG;AACH,MAAM,WAAW,2BAA2B;IACxC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,SAAS,CAAC,EAAE,gBAAgB,CAAC;IAC7B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC;;;;OAIG;IACH,uBAAuB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxC;;;;OAIG;IACH,wBAAwB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzC;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,oBAAoB,CAAC;CAC5C"}
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Swagger UI - Cloud Hospital Admin Api-INT
6
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
7
+ *
8
+ * The version of the OpenAPI document: 1
9
+ * Contact: hyounoosung@icloudhospital.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,153 @@
1
+ /**
2
+ * Swagger UI - Cloud Hospital Admin Api-INT
3
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
4
+ *
5
+ * The version of the OpenAPI document: 1
6
+ * Contact: hyounoosung@icloudhospital.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { AuditableEntityModel } from './auditable-entity-model';
13
+ import { PatientItemModel } from './patient-item-model';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface PatientAffiliationModel
18
+ */
19
+ export interface PatientAffiliationModel {
20
+ /**
21
+ *
22
+ * @type {string}
23
+ * @memberof PatientAffiliationModel
24
+ */
25
+ 'id'?: string;
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof PatientAffiliationModel
30
+ */
31
+ 'languageCode'?: string | null;
32
+ /**
33
+ *
34
+ * @type {string}
35
+ * @memberof PatientAffiliationModel
36
+ */
37
+ 'patientId'?: string;
38
+ /**
39
+ *
40
+ * @type {string}
41
+ * @memberof PatientAffiliationModel
42
+ */
43
+ 'hospitalId'?: string;
44
+ /**
45
+ *
46
+ * @type {PatientItemModel}
47
+ * @memberof PatientAffiliationModel
48
+ */
49
+ 'patient'?: PatientItemModel;
50
+ /**
51
+ *
52
+ * @type {string}
53
+ * @memberof PatientAffiliationModel
54
+ */
55
+ 'hospitalName'?: string | null;
56
+ /**
57
+ *
58
+ * @type {number}
59
+ * @memberof PatientAffiliationModel
60
+ */
61
+ 'height'?: number | null;
62
+ /**
63
+ *
64
+ * @type {string}
65
+ * @memberof PatientAffiliationModel
66
+ */
67
+ 'heightUnit'?: string | null;
68
+ /**
69
+ *
70
+ * @type {number}
71
+ * @memberof PatientAffiliationModel
72
+ */
73
+ 'weight'?: number | null;
74
+ /**
75
+ *
76
+ * @type {string}
77
+ * @memberof PatientAffiliationModel
78
+ */
79
+ 'weightUnit'?: string | null;
80
+ /**
81
+ *
82
+ * @type {number}
83
+ * @memberof PatientAffiliationModel
84
+ */
85
+ 'bodyMassIndex'?: number | null;
86
+ /**
87
+ *
88
+ * @type {string}
89
+ * @memberof PatientAffiliationModel
90
+ */
91
+ 'bodyMassIndexUnit'?: string | null;
92
+ /**
93
+ *
94
+ * @type {number}
95
+ * @memberof PatientAffiliationModel
96
+ */
97
+ 'pulseRate'?: number | null;
98
+ /**
99
+ *
100
+ * @type {string}
101
+ * @memberof PatientAffiliationModel
102
+ */
103
+ 'pulseRateUnit'?: string | null;
104
+ /**
105
+ *
106
+ * @type {number}
107
+ * @memberof PatientAffiliationModel
108
+ */
109
+ 'systolicBloodPressure'?: number | null;
110
+ /**
111
+ *
112
+ * @type {number}
113
+ * @memberof PatientAffiliationModel
114
+ */
115
+ 'diastolicBloodPressure'?: number | null;
116
+ /**
117
+ *
118
+ * @type {string}
119
+ * @memberof PatientAffiliationModel
120
+ */
121
+ 'bloodPressureUnit'?: string | null;
122
+ /**
123
+ *
124
+ * @type {number}
125
+ * @memberof PatientAffiliationModel
126
+ */
127
+ 'bodyTemperature'?: number | null;
128
+ /**
129
+ *
130
+ * @type {string}
131
+ * @memberof PatientAffiliationModel
132
+ */
133
+ 'bodyTemperatureUnit'?: string | null;
134
+ /**
135
+ *
136
+ * @type {string}
137
+ * @memberof PatientAffiliationModel
138
+ */
139
+ 'name'?: string | null;
140
+ /**
141
+ *
142
+ * @type {boolean}
143
+ * @memberof PatientAffiliationModel
144
+ */
145
+ 'isConfirmed'?: boolean;
146
+ /**
147
+ *
148
+ * @type {AuditableEntityModel}
149
+ * @memberof PatientAffiliationModel
150
+ */
151
+ 'auditableEntity'?: AuditableEntityModel;
152
+ }
153
+ //# sourceMappingURL=patient-affiliation-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"patient-affiliation-model.d.ts","sourceRoot":"","sources":["../../src/models/patient-affiliation-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAGhE,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAExD;;;;GAIG;AACH,MAAM,WAAW,uBAAuB;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,SAAS,CAAC,EAAE,gBAAgB,CAAC;IAC7B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC;;;;OAIG;IACH,uBAAuB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxC;;;;OAIG;IACH,wBAAwB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzC;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,oBAAoB,CAAC;CAC5C"}
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Swagger UI - Cloud Hospital Admin Api-INT
6
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
7
+ *
8
+ * The version of the OpenAPI document: 1
9
+ * Contact: hyounoosung@icloudhospital.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,33 @@
1
+ /**
2
+ * Swagger UI - Cloud Hospital Admin Api-INT
3
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
4
+ *
5
+ * The version of the OpenAPI document: 1
6
+ * Contact: hyounoosung@icloudhospital.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { PagedListMetaData } from './paged-list-meta-data';
13
+ import { PatientAffiliationItemModel } from './patient-affiliation-item-model';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface PatientAffiliationsModel
18
+ */
19
+ export interface PatientAffiliationsModel {
20
+ /**
21
+ *
22
+ * @type {Array<PatientAffiliationItemModel>}
23
+ * @memberof PatientAffiliationsModel
24
+ */
25
+ 'items'?: Array<PatientAffiliationItemModel> | null;
26
+ /**
27
+ *
28
+ * @type {PagedListMetaData}
29
+ * @memberof PatientAffiliationsModel
30
+ */
31
+ 'metaData'?: PagedListMetaData;
32
+ }
33
+ //# sourceMappingURL=patient-affiliations-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"patient-affiliations-model.d.ts","sourceRoot":"","sources":["../../src/models/patient-affiliations-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAG3D,OAAO,EAAE,2BAA2B,EAAE,MAAM,kCAAkC,CAAC;AAE/E;;;;GAIG;AACH,MAAM,WAAW,wBAAwB;IACrC;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,2BAA2B,CAAC,GAAG,IAAI,CAAC;IACpD;;;;OAIG;IACH,UAAU,CAAC,EAAE,iBAAiB,CAAC;CAClC"}
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Swagger UI - Cloud Hospital Admin Api-INT
6
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
7
+ *
8
+ * The version of the OpenAPI document: 1
9
+ * Contact: hyounoosung@icloudhospital.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -9,7 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import { AuditableEntity } from './auditable-entity';
12
+ import { AuditableEntityModel } from './auditable-entity-model';
13
13
  import { Gender } from './gender';
14
14
  import { MembershipModel } from './membership-model';
15
15
  /**
@@ -98,10 +98,10 @@ export interface PatientItemModel {
98
98
  'communicationUserId'?: string | null;
99
99
  /**
100
100
  *
101
- * @type {AuditableEntity}
101
+ * @type {AuditableEntityModel}
102
102
  * @memberof PatientItemModel
103
103
  */
104
- 'auditableEntity'?: AuditableEntity;
104
+ 'auditableEntity'?: AuditableEntityModel;
105
105
  /**
106
106
  *
107
107
  * @type {MembershipModel}
@@ -1 +1 @@
1
- {"version":3,"file":"patient-item-model.d.ts","sourceRoot":"","sources":["../../src/models/patient-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAGrD,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAGlC,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAErD;;;;GAIG;AACH,MAAM,WAAW,gBAAgB;IAC7B;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,aAAa,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,eAAe,CAAC;IACpC;;;;OAIG;IACH,YAAY,CAAC,EAAE,eAAe,CAAC;CAClC"}
1
+ {"version":3,"file":"patient-item-model.d.ts","sourceRoot":"","sources":["../../src/models/patient-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAGhE,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAGlC,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAErD;;;;GAIG;AACH,MAAM,WAAW,gBAAgB;IAC7B;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,aAAa,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,oBAAoB,CAAC;IACzC;;;;OAIG;IACH,YAAY,CAAC,EAAE,eAAe,CAAC;CAClC"}
@@ -9,7 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import { AuditableEntity } from './auditable-entity';
12
+ import { AuditableEntityModel } from './auditable-entity-model';
13
13
  import { Gender } from './gender';
14
14
  import { MembershipModel } from './membership-model';
15
15
  import { UserLanguageModel } from './user-language-model';
@@ -100,10 +100,10 @@ export interface PatientModel {
100
100
  'communicationUserId'?: string | null;
101
101
  /**
102
102
  *
103
- * @type {AuditableEntity}
103
+ * @type {AuditableEntityModel}
104
104
  * @memberof PatientModel
105
105
  */
106
- 'auditableEntity'?: AuditableEntity;
106
+ 'auditableEntity'?: AuditableEntityModel;
107
107
  /**
108
108
  *
109
109
  * @type {string}
@@ -1 +1 @@
1
- {"version":3,"file":"patient-model.d.ts","sourceRoot":"","sources":["../../src/models/patient-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAGrD,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAGlC,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAGrD,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAG1D,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAE1D;;;;GAIG;AACH,MAAM,WAAW,YAAY;IACzB;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,aAAa,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,eAAe,CAAC;IACpC;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,WAAW,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC;IAC9C;;;;OAIG;IACH,WAAW,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC;IAC9C;;;;OAIG;IACH,YAAY,CAAC,EAAE,eAAe,CAAC;IAC/B;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;CAChD"}
1
+ {"version":3,"file":"patient-model.d.ts","sourceRoot":"","sources":["../../src/models/patient-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAGhE,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAGlC,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAGrD,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAG1D,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAE1D;;;;GAIG;AACH,MAAM,WAAW,YAAY;IACzB;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,aAAa,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,oBAAoB,CAAC;IACzC;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,WAAW,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC;IAC9C;;;;OAIG;IACH,WAAW,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC;IAC9C;;;;OAIG;IACH,YAAY,CAAC,EAAE,eAAe,CAAC;IAC/B;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;CAChD"}
@@ -0,0 +1,32 @@
1
+ /**
2
+ * Swagger UI - Cloud Hospital Admin Api-INT
3
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
4
+ *
5
+ * The version of the OpenAPI document: 1
6
+ * Contact: hyounoosung@icloudhospital.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { PatientItemModel } from './patient-item-model';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface PatientWalkInModel
17
+ */
18
+ export interface PatientWalkInModel {
19
+ /**
20
+ *
21
+ * @type {boolean}
22
+ * @memberof PatientWalkInModel
23
+ */
24
+ 'hasPatientAffiliation'?: boolean;
25
+ /**
26
+ *
27
+ * @type {PatientItemModel}
28
+ * @memberof PatientWalkInModel
29
+ */
30
+ 'patient'?: PatientItemModel;
31
+ }
32
+ //# sourceMappingURL=patient-walk-in-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"patient-walk-in-model.d.ts","sourceRoot":"","sources":["../../src/models/patient-walk-in-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAExD;;;;GAIG;AACH,MAAM,WAAW,kBAAkB;IAC/B;;;;OAIG;IACH,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC;;;;OAIG;IACH,SAAS,CAAC,EAAE,gBAAgB,CAAC;CAChC"}
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Swagger UI - Cloud Hospital Admin Api-INT
6
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
7
+ *
8
+ * The version of the OpenAPI document: 1
9
+ * Contact: hyounoosung@icloudhospital.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -61,6 +61,12 @@ export interface UpdateArticleCommand {
61
61
  * @memberof UpdateArticleCommand
62
62
  */
63
63
  'hospitalId'?: string;
64
+ /**
65
+ *
66
+ * @type {string}
67
+ * @memberof UpdateArticleCommand
68
+ */
69
+ 'specialtyTypeId'?: string | null;
64
70
  /**
65
71
  *
66
72
  * @type {string}
@@ -1 +1 @@
1
- {"version":3,"file":"update-article-command.d.ts","sourceRoot":"","sources":["../../src/models/update-article-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAGjD,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAG/D,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAGjD,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAE3C;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACjC;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,aAAa,CAAC;IACzB;;;;OAIG;IACH,eAAe,CAAC,EAAE,aAAa,CAAC;IAChC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,aAAa,CAAC,EAAE,KAAK,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC;IAClD;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC;CACvC"}
1
+ {"version":3,"file":"update-article-command.d.ts","sourceRoot":"","sources":["../../src/models/update-article-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAGjD,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAG/D,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAGjD,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAE3C;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACjC;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,aAAa,CAAC;IACzB;;;;OAIG;IACH,eAAe,CAAC,EAAE,aAAa,CAAC;IAChC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,aAAa,CAAC,EAAE,KAAK,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC;IAClD;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC;CACvC"}
@@ -0,0 +1,115 @@
1
+ /**
2
+ * Swagger UI - Cloud Hospital Admin Api-INT
3
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
4
+ *
5
+ * The version of the OpenAPI document: 1
6
+ * Contact: hyounoosung@icloudhospital.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface UpdatePatientAffiliationCommand
16
+ */
17
+ export interface UpdatePatientAffiliationCommand {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof UpdatePatientAffiliationCommand
22
+ */
23
+ 'languageCode'?: string | null;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof UpdatePatientAffiliationCommand
28
+ */
29
+ 'name'?: string | null;
30
+ /**
31
+ *
32
+ * @type {boolean}
33
+ * @memberof UpdatePatientAffiliationCommand
34
+ */
35
+ 'isConfirmed'?: boolean;
36
+ /**
37
+ *
38
+ * @type {number}
39
+ * @memberof UpdatePatientAffiliationCommand
40
+ */
41
+ 'height'?: number | null;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof UpdatePatientAffiliationCommand
46
+ */
47
+ 'heightUnit'?: string | null;
48
+ /**
49
+ *
50
+ * @type {number}
51
+ * @memberof UpdatePatientAffiliationCommand
52
+ */
53
+ 'weight'?: number | null;
54
+ /**
55
+ *
56
+ * @type {string}
57
+ * @memberof UpdatePatientAffiliationCommand
58
+ */
59
+ 'weightUnit'?: string | null;
60
+ /**
61
+ *
62
+ * @type {number}
63
+ * @memberof UpdatePatientAffiliationCommand
64
+ */
65
+ 'bodyMassIndex'?: number | null;
66
+ /**
67
+ *
68
+ * @type {string}
69
+ * @memberof UpdatePatientAffiliationCommand
70
+ */
71
+ 'bodyMassIndexUnit'?: string | null;
72
+ /**
73
+ *
74
+ * @type {number}
75
+ * @memberof UpdatePatientAffiliationCommand
76
+ */
77
+ 'pulseRate'?: number | null;
78
+ /**
79
+ *
80
+ * @type {string}
81
+ * @memberof UpdatePatientAffiliationCommand
82
+ */
83
+ 'pulseRateUnit'?: string | null;
84
+ /**
85
+ *
86
+ * @type {number}
87
+ * @memberof UpdatePatientAffiliationCommand
88
+ */
89
+ 'systolicBloodPressure'?: number | null;
90
+ /**
91
+ *
92
+ * @type {number}
93
+ * @memberof UpdatePatientAffiliationCommand
94
+ */
95
+ 'diastolicBloodPressure'?: number | null;
96
+ /**
97
+ *
98
+ * @type {string}
99
+ * @memberof UpdatePatientAffiliationCommand
100
+ */
101
+ 'bloodPressureUnit'?: string | null;
102
+ /**
103
+ *
104
+ * @type {number}
105
+ * @memberof UpdatePatientAffiliationCommand
106
+ */
107
+ 'bodyTemperature'?: number | null;
108
+ /**
109
+ *
110
+ * @type {string}
111
+ * @memberof UpdatePatientAffiliationCommand
112
+ */
113
+ 'bodyTemperatureUnit'?: string | null;
114
+ }
115
+ //# sourceMappingURL=update-patient-affiliation-command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"update-patient-affiliation-command.d.ts","sourceRoot":"","sources":["../../src/models/update-patient-affiliation-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,+BAA+B;IAC5C;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC;;;;OAIG;IACH,uBAAuB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxC;;;;OAIG;IACH,wBAAwB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzC;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACzC"}
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Swagger UI - Cloud Hospital Admin Api-INT
6
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
7
+ *
8
+ * The version of the OpenAPI document: 1
9
+ * Contact: hyounoosung@icloudhospital.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });