@medplum/fhirtypes 3.2.9 → 3.2.11
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/Bot.d.ts +6 -0
- package/dist/Project.d.ts +1 -1
- package/package.json +1 -1
package/dist/Bot.d.ts
CHANGED
|
@@ -135,6 +135,12 @@ export interface Bot {
|
|
|
135
135
|
*/
|
|
136
136
|
category?: CodeableConcept[];
|
|
137
137
|
|
|
138
|
+
/**
|
|
139
|
+
* Optional flag to indicate that the bot is a system bot and therefore
|
|
140
|
+
* has access to system secrets.
|
|
141
|
+
*/
|
|
142
|
+
system?: boolean;
|
|
143
|
+
|
|
138
144
|
/**
|
|
139
145
|
* Optional flag to indicate that the bot should be run as the user.
|
|
140
146
|
*/
|
package/dist/Project.d.ts
CHANGED
|
@@ -137,7 +137,7 @@ export interface Project {
|
|
|
137
137
|
* A list of optional features that are enabled for the project.
|
|
138
138
|
*/
|
|
139
139
|
features?: ('aws-comprehend' | 'aws-textract' | 'bots' | 'cron' | 'email' | 'google-auth-required' |
|
|
140
|
-
'graphql-introspection' | 'terminology' | 'websocket-subscriptions' | 'reference-lookups')[];
|
|
140
|
+
'graphql-introspection' | 'terminology' | 'websocket-subscriptions' | 'reference-lookups' | 'transaction-bundles')[];
|
|
141
141
|
|
|
142
142
|
/**
|
|
143
143
|
* The default access policy for patients using open registration.
|