@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.
- package/dist/AsyncJob.d.ts +1 -1
- package/dist/Bot.d.ts +5 -0
- package/dist/BulkDataExport.d.ts +1 -1
- package/dist/ClientApplication.d.ts +22 -0
- package/package.json +1 -1
package/dist/AsyncJob.d.ts
CHANGED
|
@@ -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
package/dist/BulkDataExport.d.ts
CHANGED
|
@@ -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
|
+
}
|