@medplum/fhirtypes 5.1.11 → 5.1.12
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 +12 -0
- package/dist/Login.d.ts +12 -1
- package/dist/Project.d.ts +3 -2
- package/package.json +1 -1
|
@@ -181,6 +181,18 @@ export interface ClientApplication {
|
|
|
181
181
|
*/
|
|
182
182
|
allowedOrigin?: string[];
|
|
183
183
|
|
|
184
|
+
/**
|
|
185
|
+
* Optional OAuth grant type for the client application. This specifies
|
|
186
|
+
* the allowed grant types for the client application.
|
|
187
|
+
*/
|
|
188
|
+
grantType?: string[];
|
|
189
|
+
|
|
190
|
+
/**
|
|
191
|
+
* Optional OAuth response type for the client application. This
|
|
192
|
+
* specifies the allowed response types for the client application.
|
|
193
|
+
*/
|
|
194
|
+
responseType?: string[];
|
|
195
|
+
|
|
184
196
|
/**
|
|
185
197
|
* Optional default OAuth scope for the client application. This scope is
|
|
186
198
|
* used when the client application does not specify a scope in the
|
package/dist/Login.d.ts
CHANGED
|
@@ -134,7 +134,13 @@ export interface Login {
|
|
|
134
134
|
* The authentication method used to obtain the code (password or
|
|
135
135
|
* google).
|
|
136
136
|
*/
|
|
137
|
-
authMethod: 'client' | 'exchange' | 'execute' | 'external' | 'google' | 'password';
|
|
137
|
+
authMethod: 'client' | 'exchange' | 'execute' | 'external' | 'google' | 'password' | 'pre-authorized';
|
|
138
|
+
|
|
139
|
+
/**
|
|
140
|
+
* The hash of the pre-authorized code used to obtain OAuth
|
|
141
|
+
* Pre-Authorized Code Grant.
|
|
142
|
+
*/
|
|
143
|
+
preAuthorizedCodeHash?: string;
|
|
138
144
|
|
|
139
145
|
/**
|
|
140
146
|
* Time when the End-User authentication occurred.
|
|
@@ -190,6 +196,11 @@ export interface Login {
|
|
|
190
196
|
*/
|
|
191
197
|
mfaVerified?: boolean;
|
|
192
198
|
|
|
199
|
+
/**
|
|
200
|
+
* The time at which a token will expire for this login.
|
|
201
|
+
*/
|
|
202
|
+
expiresAt?: string;
|
|
203
|
+
|
|
193
204
|
/**
|
|
194
205
|
* Whether a token has been granted for this login.
|
|
195
206
|
*/
|
package/dist/Project.d.ts
CHANGED
|
@@ -138,8 +138,9 @@ export interface Project {
|
|
|
138
138
|
/**
|
|
139
139
|
* A list of optional features that are enabled for the project.
|
|
140
140
|
*/
|
|
141
|
-
features?: ('ai' | 'aws-comprehend' | 'aws-textract' | 'bots' | 'cron' | 'email' |
|
|
142
|
-
'graphql-introspection' | 'websocket-subscriptions' | 'transaction-bundles' |
|
|
141
|
+
features?: ('ai' | 'ai-realtime' | 'aws-comprehend' | 'aws-textract' | 'bots' | 'cron' | 'email' |
|
|
142
|
+
'google-auth-required' | 'graphql-introspection' | 'scheduling' | 'websocket-subscriptions' | 'transaction-bundles' |
|
|
143
|
+
'validate-terminology' | 'range-search' | 'log-streaming')[];
|
|
143
144
|
|
|
144
145
|
/**
|
|
145
146
|
* The default access policy for patients using open registration.
|