@medplum/fhirtypes 4.2.4 → 4.2.6
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 +8 -0
- package/package.json +1 -1
package/dist/Bot.d.ts
CHANGED
|
@@ -151,6 +151,14 @@ export interface Bot {
|
|
|
151
151
|
*/
|
|
152
152
|
runAsUser?: boolean;
|
|
153
153
|
|
|
154
|
+
/**
|
|
155
|
+
* Optional flag to indicate that the bot can be used as an
|
|
156
|
+
* unauthenticated public webhook. Note that this is a security risk and
|
|
157
|
+
* should only be used for public bots that do not require
|
|
158
|
+
* authentication.
|
|
159
|
+
*/
|
|
160
|
+
publicWebhook?: boolean;
|
|
161
|
+
|
|
154
162
|
/**
|
|
155
163
|
* Criteria for creating an AuditEvent as a result of the bot invocation.
|
|
156
164
|
* Possible values are 'always', 'never', 'on-error', or 'on-output'.
|