@medplum/fhirtypes 3.2.22 → 3.2.24

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.
@@ -93,7 +93,7 @@ export interface AsyncJob {
93
93
  /**
94
94
  * The status of the request.
95
95
  */
96
- status: 'accepted' | 'active' | 'completed' | 'error';
96
+ status: 'accepted' | 'active' | 'completed' | 'error' | 'cancelled';
97
97
 
98
98
  /**
99
99
  * Indicates the server's time when the query is requested.
package/dist/Bot.d.ts CHANGED
@@ -114,6 +114,11 @@ export interface Bot {
114
114
  */
115
115
  runtimeVersion?: 'awslambda' | 'vmcontext';
116
116
 
117
+ /**
118
+ * The maximum allowed execution time of the bot in seconds.
119
+ */
120
+ timeout?: number;
121
+
117
122
  /**
118
123
  * Image of the bot.
119
124
  */
@@ -93,7 +93,7 @@ export interface BulkDataExport {
93
93
  /**
94
94
  * The status of the request.
95
95
  */
96
- status: 'accepted' | 'active' | 'completed' | 'error';
96
+ status: 'accepted' | 'active' | 'completed' | 'error' | 'cancelled';
97
97
 
98
98
  /**
99
99
  * Indicates the server's time when the query is requested.
@@ -3,6 +3,7 @@
3
3
  * Do not edit manually.
4
4
  */
5
5
 
6
+ import { Attachment } from './Attachment';
6
7
  import { Extension } from './Extension';
7
8
  import { IdentityProvider } from './IdentityProvider';
8
9
  import { Meta } from './Meta';
@@ -108,6 +109,11 @@ export interface ClientApplication {
108
109
  */
109
110
  description?: string;
110
111
 
112
+ /**
113
+ * Custom values for the Log In form.
114
+ */
115
+ signInForm?: ClientApplicationSignInForm;
116
+
111
117
  /**
112
118
  * Client secret string used to verify the identity of a client.
113
119
  */
@@ -147,3 +153,19 @@ export interface ClientApplication {
147
153
  */
148
154
  refreshTokenLifetime?: string;
149
155
  }
156
+
157
+ /**
158
+ * Custom values for the Log In form.
159
+ */
160
+ export interface ClientApplicationSignInForm {
161
+
162
+ /**
163
+ * Welcome string for the Log In Form.
164
+ */
165
+ welcomeString?: string;
166
+
167
+ /**
168
+ * Logo for the Log In Form.
169
+ */
170
+ logo?: Attachment;
171
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medplum/fhirtypes",
3
- "version": "3.2.22",
3
+ "version": "3.2.24",
4
4
  "description": "Medplum FHIR Type Definitions",
5
5
  "keywords": [
6
6
  "medplum",