@medplum/fhirtypes 5.0.14 → 5.1.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/README.md +1 -1
- package/dist/ClientApplication.d.ts +21 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -150,6 +150,11 @@ export interface ClientApplication {
|
|
|
150
150
|
*/
|
|
151
151
|
launchUri?: string;
|
|
152
152
|
|
|
153
|
+
/**
|
|
154
|
+
* Optional array of identifier systems to use in SMART launch context. When specified, the resource's identifier with the matching system will be included in the SmartAppLaunch resource's reference and returned to the SMART app in the token response.
|
|
155
|
+
*/
|
|
156
|
+
launchIdentifierSystems?: ClientApplicationLaunchIdentifierSystems[];
|
|
157
|
+
|
|
153
158
|
/**
|
|
154
159
|
* Flag to make PKCE optional for this client application. PKCE is
|
|
155
160
|
* required by default for compliance with Smart App Launch. It can be
|
|
@@ -201,3 +206,19 @@ export interface ClientApplicationSignInForm {
|
|
|
201
206
|
*/
|
|
202
207
|
logo?: Attachment;
|
|
203
208
|
}
|
|
209
|
+
|
|
210
|
+
/**
|
|
211
|
+
* Optional array of identifier systems to use in SMART launch context. When specified, the resource's identifier with the matching system will be included in the SmartAppLaunch resource's reference and returned to the SMART app in the token response.
|
|
212
|
+
*/
|
|
213
|
+
export interface ClientApplicationLaunchIdentifierSystems {
|
|
214
|
+
|
|
215
|
+
/**
|
|
216
|
+
* The resource type for which to use the identifier system (e.g., 'Patient', 'Encounter').
|
|
217
|
+
*/
|
|
218
|
+
resourceType: 'Patient' | 'Encounter';
|
|
219
|
+
|
|
220
|
+
/**
|
|
221
|
+
* The identifier system URI to use for the specified resource type.
|
|
222
|
+
*/
|
|
223
|
+
system: string;
|
|
224
|
+
}
|