@openmrs/esm-framework 6.2.1-pre.2777 → 6.2.1-pre.2783
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/.turbo/turbo-build.log +2 -2
- package/dist/openmrs-esm-framework.js +1 -1
- package/dist/openmrs-esm-framework.js.map +1 -1
- package/docs/API.md +15 -1
- package/docs/interfaces/Concept.md +132 -0
- package/docs/interfaces/ConceptClass.md +122 -0
- package/docs/interfaces/ConceptDatatype.md +133 -0
- package/docs/interfaces/ConceptName.md +133 -0
- package/docs/interfaces/Diagnosis.md +189 -0
- package/docs/interfaces/Encounter.md +188 -0
- package/docs/interfaces/EncounterProvider.md +111 -0
- package/docs/interfaces/EncounterRole.md +122 -0
- package/docs/interfaces/EncounterType.md +122 -0
- package/docs/interfaces/Location.md +3 -3
- package/docs/interfaces/NewVisitPayload.md +7 -7
- package/docs/interfaces/Obs.md +276 -0
- package/docs/interfaces/OpenmrsDatePickerProps.md +4 -4
- package/docs/interfaces/OpenmrsResource.md +14 -0
- package/docs/interfaces/OpenmrsResourceStrict.md +4 -0
- package/docs/interfaces/StyleguideConfigObject.md +18 -0
- package/docs/interfaces/Visit.md +11 -11
- package/docs/interfaces/VisitType.md +3 -3
- package/package.json +18 -18
@@ -0,0 +1,189 @@
|
|
1
|
+
[@openmrs/esm-framework](../API.md) / Diagnosis
|
2
|
+
|
3
|
+
# Interface: Diagnosis
|
4
|
+
|
5
|
+
## Hierarchy
|
6
|
+
|
7
|
+
- [`OpenmrsResource`](OpenmrsResource.md)
|
8
|
+
|
9
|
+
↳ **`Diagnosis`**
|
10
|
+
|
11
|
+
## Table of contents
|
12
|
+
|
13
|
+
### Properties
|
14
|
+
|
15
|
+
- [auditInfo](Diagnosis.md#auditinfo)
|
16
|
+
- [certainty](Diagnosis.md#certainty)
|
17
|
+
- [diagnosis](Diagnosis.md#diagnosis)
|
18
|
+
- [display](Diagnosis.md#display)
|
19
|
+
- [encounter](Diagnosis.md#encounter)
|
20
|
+
- [formFieldNamespace](Diagnosis.md#formfieldnamespace)
|
21
|
+
- [formFieldPath](Diagnosis.md#formfieldpath)
|
22
|
+
- [links](Diagnosis.md#links)
|
23
|
+
- [patient](Diagnosis.md#patient)
|
24
|
+
- [rank](Diagnosis.md#rank)
|
25
|
+
- [resourceVersion](Diagnosis.md#resourceversion)
|
26
|
+
- [uuid](Diagnosis.md#uuid)
|
27
|
+
- [voided](Diagnosis.md#voided)
|
28
|
+
|
29
|
+
## Properties
|
30
|
+
|
31
|
+
### auditInfo
|
32
|
+
|
33
|
+
• `Optional` **auditInfo**: [`AuditInfo`](AuditInfo.md)
|
34
|
+
|
35
|
+
#### Inherited from
|
36
|
+
|
37
|
+
[OpenmrsResource](OpenmrsResource.md).[auditInfo](OpenmrsResource.md#auditinfo)
|
38
|
+
|
39
|
+
#### Defined in
|
40
|
+
|
41
|
+
[packages/framework/esm-api/src/types/openmrs-resource.ts:16](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/openmrs-resource.ts#L16)
|
42
|
+
|
43
|
+
___
|
44
|
+
|
45
|
+
### certainty
|
46
|
+
|
47
|
+
• `Optional` **certainty**: `string`
|
48
|
+
|
49
|
+
#### Defined in
|
50
|
+
|
51
|
+
[packages/framework/esm-api/src/types/diagnosis-resource.ts:20](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/diagnosis-resource.ts#L20)
|
52
|
+
|
53
|
+
___
|
54
|
+
|
55
|
+
### diagnosis
|
56
|
+
|
57
|
+
• `Optional` **diagnosis**: `Object`
|
58
|
+
|
59
|
+
#### Type declaration
|
60
|
+
|
61
|
+
| Name | Type |
|
62
|
+
| :------ | :------ |
|
63
|
+
| `coded?` | { `conceptClass`: [`ConceptClass`](ConceptClass.md) ; `datatype`: [`OpenmrsResource`](OpenmrsResource.md) ; `display?`: `string` ; `name`: [`Concept`](Concept.md) ; `uuid`: `string` } |
|
64
|
+
| `coded.conceptClass` | [`ConceptClass`](ConceptClass.md) |
|
65
|
+
| `coded.datatype` | [`OpenmrsResource`](OpenmrsResource.md) |
|
66
|
+
| `coded.display?` | `string` |
|
67
|
+
| `coded.name` | [`Concept`](Concept.md) |
|
68
|
+
| `coded.uuid` | `string` |
|
69
|
+
| `nonCoded?` | `string` |
|
70
|
+
|
71
|
+
#### Defined in
|
72
|
+
|
73
|
+
[packages/framework/esm-api/src/types/diagnosis-resource.ts:8](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/diagnosis-resource.ts#L8)
|
74
|
+
|
75
|
+
___
|
76
|
+
|
77
|
+
### display
|
78
|
+
|
79
|
+
• `Optional` **display**: `string`
|
80
|
+
|
81
|
+
#### Inherited from
|
82
|
+
|
83
|
+
[OpenmrsResource](OpenmrsResource.md).[display](OpenmrsResource.md#display)
|
84
|
+
|
85
|
+
#### Defined in
|
86
|
+
|
87
|
+
[packages/framework/esm-api/src/types/openmrs-resource.ts:14](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/openmrs-resource.ts#L14)
|
88
|
+
|
89
|
+
___
|
90
|
+
|
91
|
+
### encounter
|
92
|
+
|
93
|
+
• `Optional` **encounter**: [`Encounter`](Encounter.md)
|
94
|
+
|
95
|
+
#### Defined in
|
96
|
+
|
97
|
+
[packages/framework/esm-api/src/types/diagnosis-resource.ts:19](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/diagnosis-resource.ts#L19)
|
98
|
+
|
99
|
+
___
|
100
|
+
|
101
|
+
### formFieldNamespace
|
102
|
+
|
103
|
+
• `Optional` **formFieldNamespace**: `string`
|
104
|
+
|
105
|
+
#### Defined in
|
106
|
+
|
107
|
+
[packages/framework/esm-api/src/types/diagnosis-resource.ts:22](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/diagnosis-resource.ts#L22)
|
108
|
+
|
109
|
+
___
|
110
|
+
|
111
|
+
### formFieldPath
|
112
|
+
|
113
|
+
• `Optional` **formFieldPath**: `string`
|
114
|
+
|
115
|
+
#### Defined in
|
116
|
+
|
117
|
+
[packages/framework/esm-api/src/types/diagnosis-resource.ts:23](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/diagnosis-resource.ts#L23)
|
118
|
+
|
119
|
+
___
|
120
|
+
|
121
|
+
### links
|
122
|
+
|
123
|
+
• `Optional` **links**: [`Link`](Link.md)[]
|
124
|
+
|
125
|
+
#### Inherited from
|
126
|
+
|
127
|
+
[OpenmrsResource](OpenmrsResource.md).[links](OpenmrsResource.md#links)
|
128
|
+
|
129
|
+
#### Defined in
|
130
|
+
|
131
|
+
[packages/framework/esm-api/src/types/openmrs-resource.ts:15](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/openmrs-resource.ts#L15)
|
132
|
+
|
133
|
+
___
|
134
|
+
|
135
|
+
### patient
|
136
|
+
|
137
|
+
• `Optional` **patient**: [`Patient`](Patient.md)
|
138
|
+
|
139
|
+
#### Defined in
|
140
|
+
|
141
|
+
[packages/framework/esm-api/src/types/diagnosis-resource.ts:18](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/diagnosis-resource.ts#L18)
|
142
|
+
|
143
|
+
___
|
144
|
+
|
145
|
+
### rank
|
146
|
+
|
147
|
+
• `Optional` **rank**: `number`
|
148
|
+
|
149
|
+
#### Defined in
|
150
|
+
|
151
|
+
[packages/framework/esm-api/src/types/diagnosis-resource.ts:21](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/diagnosis-resource.ts#L21)
|
152
|
+
|
153
|
+
___
|
154
|
+
|
155
|
+
### resourceVersion
|
156
|
+
|
157
|
+
• `Optional` **resourceVersion**: `string`
|
158
|
+
|
159
|
+
#### Inherited from
|
160
|
+
|
161
|
+
[OpenmrsResource](OpenmrsResource.md).[resourceVersion](OpenmrsResource.md#resourceversion)
|
162
|
+
|
163
|
+
#### Defined in
|
164
|
+
|
165
|
+
[packages/framework/esm-api/src/types/openmrs-resource.ts:17](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/openmrs-resource.ts#L17)
|
166
|
+
|
167
|
+
___
|
168
|
+
|
169
|
+
### uuid
|
170
|
+
|
171
|
+
• **uuid**: `string`
|
172
|
+
|
173
|
+
#### Inherited from
|
174
|
+
|
175
|
+
[OpenmrsResource](OpenmrsResource.md).[uuid](OpenmrsResource.md#uuid)
|
176
|
+
|
177
|
+
#### Defined in
|
178
|
+
|
179
|
+
[packages/framework/esm-api/src/types/openmrs-resource.ts:13](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/openmrs-resource.ts#L13)
|
180
|
+
|
181
|
+
___
|
182
|
+
|
183
|
+
### voided
|
184
|
+
|
185
|
+
• `Optional` **voided**: `boolean`
|
186
|
+
|
187
|
+
#### Defined in
|
188
|
+
|
189
|
+
[packages/framework/esm-api/src/types/diagnosis-resource.ts:24](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/diagnosis-resource.ts#L24)
|
@@ -0,0 +1,188 @@
|
|
1
|
+
[@openmrs/esm-framework](../API.md) / Encounter
|
2
|
+
|
3
|
+
# Interface: Encounter
|
4
|
+
|
5
|
+
## Hierarchy
|
6
|
+
|
7
|
+
- [`OpenmrsResource`](OpenmrsResource.md)
|
8
|
+
|
9
|
+
↳ **`Encounter`**
|
10
|
+
|
11
|
+
## Table of contents
|
12
|
+
|
13
|
+
### Properties
|
14
|
+
|
15
|
+
- [auditInfo](Encounter.md#auditinfo)
|
16
|
+
- [diagnoses](Encounter.md#diagnoses)
|
17
|
+
- [display](Encounter.md#display)
|
18
|
+
- [encounterDatetime](Encounter.md#encounterdatetime)
|
19
|
+
- [encounterProviders](Encounter.md#encounterproviders)
|
20
|
+
- [encounterType](Encounter.md#encountertype)
|
21
|
+
- [form](Encounter.md#form)
|
22
|
+
- [links](Encounter.md#links)
|
23
|
+
- [location](Encounter.md#location)
|
24
|
+
- [obs](Encounter.md#obs)
|
25
|
+
- [patient](Encounter.md#patient)
|
26
|
+
- [resourceVersion](Encounter.md#resourceversion)
|
27
|
+
- [uuid](Encounter.md#uuid)
|
28
|
+
- [visit](Encounter.md#visit)
|
29
|
+
|
30
|
+
## Properties
|
31
|
+
|
32
|
+
### auditInfo
|
33
|
+
|
34
|
+
• `Optional` **auditInfo**: [`AuditInfo`](AuditInfo.md)
|
35
|
+
|
36
|
+
#### Inherited from
|
37
|
+
|
38
|
+
[OpenmrsResource](OpenmrsResource.md).[auditInfo](OpenmrsResource.md#auditinfo)
|
39
|
+
|
40
|
+
#### Defined in
|
41
|
+
|
42
|
+
[packages/framework/esm-api/src/types/openmrs-resource.ts:16](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/openmrs-resource.ts#L16)
|
43
|
+
|
44
|
+
___
|
45
|
+
|
46
|
+
### diagnoses
|
47
|
+
|
48
|
+
• `Optional` **diagnoses**: [`Diagnosis`](Diagnosis.md)[]
|
49
|
+
|
50
|
+
#### Defined in
|
51
|
+
|
52
|
+
[packages/framework/esm-api/src/types/encounter-resource.ts:17](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/encounter-resource.ts#L17)
|
53
|
+
|
54
|
+
___
|
55
|
+
|
56
|
+
### display
|
57
|
+
|
58
|
+
• `Optional` **display**: `string`
|
59
|
+
|
60
|
+
#### Inherited from
|
61
|
+
|
62
|
+
[OpenmrsResource](OpenmrsResource.md).[display](OpenmrsResource.md#display)
|
63
|
+
|
64
|
+
#### Defined in
|
65
|
+
|
66
|
+
[packages/framework/esm-api/src/types/openmrs-resource.ts:14](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/openmrs-resource.ts#L14)
|
67
|
+
|
68
|
+
___
|
69
|
+
|
70
|
+
### encounterDatetime
|
71
|
+
|
72
|
+
• `Optional` **encounterDatetime**: `string`
|
73
|
+
|
74
|
+
#### Defined in
|
75
|
+
|
76
|
+
[packages/framework/esm-api/src/types/encounter-resource.ts:10](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/encounter-resource.ts#L10)
|
77
|
+
|
78
|
+
___
|
79
|
+
|
80
|
+
### encounterProviders
|
81
|
+
|
82
|
+
• `Optional` **encounterProviders**: [`EncounterProvider`](EncounterProvider.md)[]
|
83
|
+
|
84
|
+
#### Defined in
|
85
|
+
|
86
|
+
[packages/framework/esm-api/src/types/encounter-resource.ts:16](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/encounter-resource.ts#L16)
|
87
|
+
|
88
|
+
___
|
89
|
+
|
90
|
+
### encounterType
|
91
|
+
|
92
|
+
• `Optional` **encounterType**: [`EncounterType`](EncounterType.md)
|
93
|
+
|
94
|
+
#### Defined in
|
95
|
+
|
96
|
+
[packages/framework/esm-api/src/types/encounter-resource.ts:13](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/encounter-resource.ts#L13)
|
97
|
+
|
98
|
+
___
|
99
|
+
|
100
|
+
### form
|
101
|
+
|
102
|
+
• `Optional` **form**: [`OpenmrsResource`](OpenmrsResource.md)
|
103
|
+
|
104
|
+
#### Defined in
|
105
|
+
|
106
|
+
[packages/framework/esm-api/src/types/encounter-resource.ts:18](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/encounter-resource.ts#L18)
|
107
|
+
|
108
|
+
___
|
109
|
+
|
110
|
+
### links
|
111
|
+
|
112
|
+
• `Optional` **links**: [`Link`](Link.md)[]
|
113
|
+
|
114
|
+
#### Inherited from
|
115
|
+
|
116
|
+
[OpenmrsResource](OpenmrsResource.md).[links](OpenmrsResource.md#links)
|
117
|
+
|
118
|
+
#### Defined in
|
119
|
+
|
120
|
+
[packages/framework/esm-api/src/types/openmrs-resource.ts:15](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/openmrs-resource.ts#L15)
|
121
|
+
|
122
|
+
___
|
123
|
+
|
124
|
+
### location
|
125
|
+
|
126
|
+
• `Optional` **location**: `Location`
|
127
|
+
|
128
|
+
#### Defined in
|
129
|
+
|
130
|
+
[packages/framework/esm-api/src/types/encounter-resource.ts:12](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/encounter-resource.ts#L12)
|
131
|
+
|
132
|
+
___
|
133
|
+
|
134
|
+
### obs
|
135
|
+
|
136
|
+
• `Optional` **obs**: [`Obs`](Obs.md)[]
|
137
|
+
|
138
|
+
#### Defined in
|
139
|
+
|
140
|
+
[packages/framework/esm-api/src/types/encounter-resource.ts:14](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/encounter-resource.ts#L14)
|
141
|
+
|
142
|
+
___
|
143
|
+
|
144
|
+
### patient
|
145
|
+
|
146
|
+
• `Optional` **patient**: [`Patient`](Patient.md)
|
147
|
+
|
148
|
+
#### Defined in
|
149
|
+
|
150
|
+
[packages/framework/esm-api/src/types/encounter-resource.ts:11](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/encounter-resource.ts#L11)
|
151
|
+
|
152
|
+
___
|
153
|
+
|
154
|
+
### resourceVersion
|
155
|
+
|
156
|
+
• `Optional` **resourceVersion**: `string`
|
157
|
+
|
158
|
+
#### Inherited from
|
159
|
+
|
160
|
+
[OpenmrsResource](OpenmrsResource.md).[resourceVersion](OpenmrsResource.md#resourceversion)
|
161
|
+
|
162
|
+
#### Defined in
|
163
|
+
|
164
|
+
[packages/framework/esm-api/src/types/openmrs-resource.ts:17](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/openmrs-resource.ts#L17)
|
165
|
+
|
166
|
+
___
|
167
|
+
|
168
|
+
### uuid
|
169
|
+
|
170
|
+
• **uuid**: `string`
|
171
|
+
|
172
|
+
#### Inherited from
|
173
|
+
|
174
|
+
[OpenmrsResource](OpenmrsResource.md).[uuid](OpenmrsResource.md#uuid)
|
175
|
+
|
176
|
+
#### Defined in
|
177
|
+
|
178
|
+
[packages/framework/esm-api/src/types/openmrs-resource.ts:13](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/openmrs-resource.ts#L13)
|
179
|
+
|
180
|
+
___
|
181
|
+
|
182
|
+
### visit
|
183
|
+
|
184
|
+
• `Optional` **visit**: [`Visit`](Visit.md)
|
185
|
+
|
186
|
+
#### Defined in
|
187
|
+
|
188
|
+
[packages/framework/esm-api/src/types/encounter-resource.ts:15](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/encounter-resource.ts#L15)
|
@@ -0,0 +1,111 @@
|
|
1
|
+
[@openmrs/esm-framework](../API.md) / EncounterProvider
|
2
|
+
|
3
|
+
# Interface: EncounterProvider
|
4
|
+
|
5
|
+
## Hierarchy
|
6
|
+
|
7
|
+
- [`OpenmrsResource`](OpenmrsResource.md)
|
8
|
+
|
9
|
+
↳ **`EncounterProvider`**
|
10
|
+
|
11
|
+
## Table of contents
|
12
|
+
|
13
|
+
### Properties
|
14
|
+
|
15
|
+
- [auditInfo](EncounterProvider.md#auditinfo)
|
16
|
+
- [display](EncounterProvider.md#display)
|
17
|
+
- [encounterRole](EncounterProvider.md#encounterrole)
|
18
|
+
- [links](EncounterProvider.md#links)
|
19
|
+
- [provider](EncounterProvider.md#provider)
|
20
|
+
- [resourceVersion](EncounterProvider.md#resourceversion)
|
21
|
+
- [uuid](EncounterProvider.md#uuid)
|
22
|
+
|
23
|
+
## Properties
|
24
|
+
|
25
|
+
### auditInfo
|
26
|
+
|
27
|
+
• `Optional` **auditInfo**: [`AuditInfo`](AuditInfo.md)
|
28
|
+
|
29
|
+
#### Inherited from
|
30
|
+
|
31
|
+
[OpenmrsResource](OpenmrsResource.md).[auditInfo](OpenmrsResource.md#auditinfo)
|
32
|
+
|
33
|
+
#### Defined in
|
34
|
+
|
35
|
+
[packages/framework/esm-api/src/types/openmrs-resource.ts:16](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/openmrs-resource.ts#L16)
|
36
|
+
|
37
|
+
___
|
38
|
+
|
39
|
+
### display
|
40
|
+
|
41
|
+
• `Optional` **display**: `string`
|
42
|
+
|
43
|
+
#### Inherited from
|
44
|
+
|
45
|
+
[OpenmrsResource](OpenmrsResource.md).[display](OpenmrsResource.md#display)
|
46
|
+
|
47
|
+
#### Defined in
|
48
|
+
|
49
|
+
[packages/framework/esm-api/src/types/openmrs-resource.ts:14](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/openmrs-resource.ts#L14)
|
50
|
+
|
51
|
+
___
|
52
|
+
|
53
|
+
### encounterRole
|
54
|
+
|
55
|
+
• `Optional` **encounterRole**: [`EncounterRole`](EncounterRole.md)
|
56
|
+
|
57
|
+
#### Defined in
|
58
|
+
|
59
|
+
[packages/framework/esm-api/src/types/encounter-resource.ts:29](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/encounter-resource.ts#L29)
|
60
|
+
|
61
|
+
___
|
62
|
+
|
63
|
+
### links
|
64
|
+
|
65
|
+
• `Optional` **links**: [`Link`](Link.md)[]
|
66
|
+
|
67
|
+
#### Inherited from
|
68
|
+
|
69
|
+
[OpenmrsResource](OpenmrsResource.md).[links](OpenmrsResource.md#links)
|
70
|
+
|
71
|
+
#### Defined in
|
72
|
+
|
73
|
+
[packages/framework/esm-api/src/types/openmrs-resource.ts:15](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/openmrs-resource.ts#L15)
|
74
|
+
|
75
|
+
___
|
76
|
+
|
77
|
+
### provider
|
78
|
+
|
79
|
+
• `Optional` **provider**: [`OpenmrsResource`](OpenmrsResource.md)
|
80
|
+
|
81
|
+
#### Defined in
|
82
|
+
|
83
|
+
[packages/framework/esm-api/src/types/encounter-resource.ts:28](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/encounter-resource.ts#L28)
|
84
|
+
|
85
|
+
___
|
86
|
+
|
87
|
+
### resourceVersion
|
88
|
+
|
89
|
+
• `Optional` **resourceVersion**: `string`
|
90
|
+
|
91
|
+
#### Inherited from
|
92
|
+
|
93
|
+
[OpenmrsResource](OpenmrsResource.md).[resourceVersion](OpenmrsResource.md#resourceversion)
|
94
|
+
|
95
|
+
#### Defined in
|
96
|
+
|
97
|
+
[packages/framework/esm-api/src/types/openmrs-resource.ts:17](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/openmrs-resource.ts#L17)
|
98
|
+
|
99
|
+
___
|
100
|
+
|
101
|
+
### uuid
|
102
|
+
|
103
|
+
• **uuid**: `string`
|
104
|
+
|
105
|
+
#### Inherited from
|
106
|
+
|
107
|
+
[OpenmrsResource](OpenmrsResource.md).[uuid](OpenmrsResource.md#uuid)
|
108
|
+
|
109
|
+
#### Defined in
|
110
|
+
|
111
|
+
[packages/framework/esm-api/src/types/openmrs-resource.ts:13](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/openmrs-resource.ts#L13)
|
@@ -0,0 +1,122 @@
|
|
1
|
+
[@openmrs/esm-framework](../API.md) / EncounterRole
|
2
|
+
|
3
|
+
# Interface: EncounterRole
|
4
|
+
|
5
|
+
## Hierarchy
|
6
|
+
|
7
|
+
- [`OpenmrsResource`](OpenmrsResource.md)
|
8
|
+
|
9
|
+
↳ **`EncounterRole`**
|
10
|
+
|
11
|
+
## Table of contents
|
12
|
+
|
13
|
+
### Properties
|
14
|
+
|
15
|
+
- [auditInfo](EncounterRole.md#auditinfo)
|
16
|
+
- [description](EncounterRole.md#description)
|
17
|
+
- [display](EncounterRole.md#display)
|
18
|
+
- [links](EncounterRole.md#links)
|
19
|
+
- [name](EncounterRole.md#name)
|
20
|
+
- [resourceVersion](EncounterRole.md#resourceversion)
|
21
|
+
- [retired](EncounterRole.md#retired)
|
22
|
+
- [uuid](EncounterRole.md#uuid)
|
23
|
+
|
24
|
+
## Properties
|
25
|
+
|
26
|
+
### auditInfo
|
27
|
+
|
28
|
+
• `Optional` **auditInfo**: [`AuditInfo`](AuditInfo.md)
|
29
|
+
|
30
|
+
#### Inherited from
|
31
|
+
|
32
|
+
[OpenmrsResource](OpenmrsResource.md).[auditInfo](OpenmrsResource.md#auditinfo)
|
33
|
+
|
34
|
+
#### Defined in
|
35
|
+
|
36
|
+
[packages/framework/esm-api/src/types/openmrs-resource.ts:16](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/openmrs-resource.ts#L16)
|
37
|
+
|
38
|
+
___
|
39
|
+
|
40
|
+
### description
|
41
|
+
|
42
|
+
• `Optional` **description**: `string`
|
43
|
+
|
44
|
+
#### Defined in
|
45
|
+
|
46
|
+
[packages/framework/esm-api/src/types/encounter-resource.ts:34](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/encounter-resource.ts#L34)
|
47
|
+
|
48
|
+
___
|
49
|
+
|
50
|
+
### display
|
51
|
+
|
52
|
+
• `Optional` **display**: `string`
|
53
|
+
|
54
|
+
#### Inherited from
|
55
|
+
|
56
|
+
[OpenmrsResource](OpenmrsResource.md).[display](OpenmrsResource.md#display)
|
57
|
+
|
58
|
+
#### Defined in
|
59
|
+
|
60
|
+
[packages/framework/esm-api/src/types/openmrs-resource.ts:14](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/openmrs-resource.ts#L14)
|
61
|
+
|
62
|
+
___
|
63
|
+
|
64
|
+
### links
|
65
|
+
|
66
|
+
• `Optional` **links**: [`Link`](Link.md)[]
|
67
|
+
|
68
|
+
#### Inherited from
|
69
|
+
|
70
|
+
[OpenmrsResource](OpenmrsResource.md).[links](OpenmrsResource.md#links)
|
71
|
+
|
72
|
+
#### Defined in
|
73
|
+
|
74
|
+
[packages/framework/esm-api/src/types/openmrs-resource.ts:15](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/openmrs-resource.ts#L15)
|
75
|
+
|
76
|
+
___
|
77
|
+
|
78
|
+
### name
|
79
|
+
|
80
|
+
• `Optional` **name**: `string`
|
81
|
+
|
82
|
+
#### Defined in
|
83
|
+
|
84
|
+
[packages/framework/esm-api/src/types/encounter-resource.ts:33](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/encounter-resource.ts#L33)
|
85
|
+
|
86
|
+
___
|
87
|
+
|
88
|
+
### resourceVersion
|
89
|
+
|
90
|
+
• `Optional` **resourceVersion**: `string`
|
91
|
+
|
92
|
+
#### Inherited from
|
93
|
+
|
94
|
+
[OpenmrsResource](OpenmrsResource.md).[resourceVersion](OpenmrsResource.md#resourceversion)
|
95
|
+
|
96
|
+
#### Defined in
|
97
|
+
|
98
|
+
[packages/framework/esm-api/src/types/openmrs-resource.ts:17](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/openmrs-resource.ts#L17)
|
99
|
+
|
100
|
+
___
|
101
|
+
|
102
|
+
### retired
|
103
|
+
|
104
|
+
• `Optional` **retired**: `boolean`
|
105
|
+
|
106
|
+
#### Defined in
|
107
|
+
|
108
|
+
[packages/framework/esm-api/src/types/encounter-resource.ts:35](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/encounter-resource.ts#L35)
|
109
|
+
|
110
|
+
___
|
111
|
+
|
112
|
+
### uuid
|
113
|
+
|
114
|
+
• **uuid**: `string`
|
115
|
+
|
116
|
+
#### Inherited from
|
117
|
+
|
118
|
+
[OpenmrsResource](OpenmrsResource.md).[uuid](OpenmrsResource.md#uuid)
|
119
|
+
|
120
|
+
#### Defined in
|
121
|
+
|
122
|
+
[packages/framework/esm-api/src/types/openmrs-resource.ts:13](https://github.com/openmrs/openmrs-esm-core/blob/main/packages/framework/esm-api/src/types/openmrs-resource.ts#L13)
|