@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 CHANGED
@@ -64,4 +64,4 @@ Medplum is a healthcare platform that helps you quickly develop high-quality com
64
64
 
65
65
  ## License
66
66
 
67
- Apache 2.0. Copyright © Medplum 2025
67
+ [Apache 2.0](../../LICENSE.txt)
@@ -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
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medplum/fhirtypes",
3
- "version": "5.0.14",
3
+ "version": "5.1.0",
4
4
  "description": "Medplum FHIR Type Definitions",
5
5
  "keywords": [
6
6
  "medplum",