@medplum/fhirtypes 5.1.5 → 5.1.7
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/dist/ClientApplication.d.ts +33 -18
- package/package.json +1 -1
|
@@ -134,11 +134,6 @@ export interface ClientApplication {
|
|
|
134
134
|
*/
|
|
135
135
|
jwksUri?: string;
|
|
136
136
|
|
|
137
|
-
/**
|
|
138
|
-
* @deprecated This field is deprecated. Use redirectUris instead.
|
|
139
|
-
*/
|
|
140
|
-
redirectUri?: string;
|
|
141
|
-
|
|
142
137
|
/**
|
|
143
138
|
* Optional redirect URI array used when redirecting a client back to the
|
|
144
139
|
* client application.
|
|
@@ -151,7 +146,10 @@ export interface ClientApplication {
|
|
|
151
146
|
launchUri?: string;
|
|
152
147
|
|
|
153
148
|
/**
|
|
154
|
-
* Optional array of identifier systems to use in SMART launch context.
|
|
149
|
+
* Optional array of identifier systems to use in SMART launch context.
|
|
150
|
+
* When specified, the resource's identifier with the matching system
|
|
151
|
+
* will be included in the SmartAppLaunch resource's reference and
|
|
152
|
+
* returned to the SMART app in the token response.
|
|
155
153
|
*/
|
|
156
154
|
launchIdentifierSystems?: ClientApplicationLaunchIdentifierSystems[];
|
|
157
155
|
|
|
@@ -189,36 +187,53 @@ export interface ClientApplication {
|
|
|
189
187
|
* authorization request.
|
|
190
188
|
*/
|
|
191
189
|
defaultScope?: string[];
|
|
190
|
+
|
|
191
|
+
/**
|
|
192
|
+
* Optional PEM-formatted certificates that are allowed to authenticate
|
|
193
|
+
* to this service via mutual TLS. Supports both Certificate Authorities
|
|
194
|
+
* (CAs) and self-signed certificates. Multiple certificates can be
|
|
195
|
+
* included.
|
|
196
|
+
*/
|
|
197
|
+
certificateTrustStore?: string;
|
|
198
|
+
|
|
199
|
+
/**
|
|
200
|
+
* @deprecated This field is deprecated. Use redirectUris instead.
|
|
201
|
+
*/
|
|
202
|
+
redirectUri?: string;
|
|
192
203
|
}
|
|
193
204
|
|
|
194
205
|
/**
|
|
195
|
-
*
|
|
206
|
+
* Optional array of identifier systems to use in SMART launch context.
|
|
207
|
+
* When specified, the resource's identifier with the matching system
|
|
208
|
+
* will be included in the SmartAppLaunch resource's reference and
|
|
209
|
+
* returned to the SMART app in the token response.
|
|
196
210
|
*/
|
|
197
|
-
export interface
|
|
211
|
+
export interface ClientApplicationLaunchIdentifierSystems {
|
|
198
212
|
|
|
199
213
|
/**
|
|
200
|
-
*
|
|
214
|
+
* The resource type for which to use the identifier system (e.g.,
|
|
215
|
+
* 'Patient', 'Encounter').
|
|
201
216
|
*/
|
|
202
|
-
|
|
217
|
+
resourceType: string;
|
|
203
218
|
|
|
204
219
|
/**
|
|
205
|
-
*
|
|
220
|
+
* The identifier system URI to use for the specified resource type.
|
|
206
221
|
*/
|
|
207
|
-
|
|
222
|
+
system: string;
|
|
208
223
|
}
|
|
209
224
|
|
|
210
225
|
/**
|
|
211
|
-
*
|
|
226
|
+
* Custom values for the Log In form.
|
|
212
227
|
*/
|
|
213
|
-
export interface
|
|
228
|
+
export interface ClientApplicationSignInForm {
|
|
214
229
|
|
|
215
230
|
/**
|
|
216
|
-
*
|
|
231
|
+
* Welcome string for the Log In Form.
|
|
217
232
|
*/
|
|
218
|
-
|
|
233
|
+
welcomeString?: string;
|
|
219
234
|
|
|
220
235
|
/**
|
|
221
|
-
*
|
|
236
|
+
* Logo for the Log In Form.
|
|
222
237
|
*/
|
|
223
|
-
|
|
238
|
+
logo?: Attachment;
|
|
224
239
|
}
|