@vertesia/common 0.76.0 → 0.77.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertesia/common",
3
- "version": "0.76.0",
3
+ "version": "0.77.0",
4
4
  "type": "module",
5
5
  "types": "./lib/types/index.d.ts",
6
6
  "files": [
@@ -291,6 +291,8 @@ interface AsyncExecutionPayloadBase extends Omit<NamedInteractionExecutionPayloa
291
291
  * An array of endpoint URLs to be notified upon execution
292
292
  */
293
293
  notify_endpoints?: string[];
294
+
295
+ task_queue?: string;
294
296
  }
295
297
 
296
298
  export type ConversationVisibility = 'private' | 'project';
@@ -378,3 +378,8 @@ export interface GetFileUrlResponse {
378
378
  mime_type: string;
379
379
  path: string;
380
380
  }
381
+
382
+ export enum ContentObjectProcessingPriority {
383
+ normal = "normal",
384
+ low = "low",
385
+ }
@@ -405,3 +405,5 @@ export interface Plan {
405
405
  plan: PlanTask[];
406
406
  comment?: string;
407
407
  }
408
+
409
+ export const LOW_PRIORITY_TASK_QUEUE = "low_priority";