@vertesia/common 0.76.0 → 0.78.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/lib/cjs/access-control.js +1 -0
- package/lib/cjs/access-control.js.map +1 -1
- package/lib/cjs/interaction.js.map +1 -1
- package/lib/cjs/store/store.js +6 -1
- package/lib/cjs/store/store.js.map +1 -1
- package/lib/cjs/store/workflow.js +2 -1
- package/lib/cjs/store/workflow.js.map +1 -1
- package/lib/esm/access-control.js +1 -0
- package/lib/esm/access-control.js.map +1 -1
- package/lib/esm/interaction.js.map +1 -1
- package/lib/esm/store/store.js +5 -0
- package/lib/esm/store/store.js.map +1 -1
- package/lib/esm/store/workflow.js +1 -0
- package/lib/esm/store/workflow.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/types/access-control.d.ts +2 -1
- package/lib/types/access-control.d.ts.map +1 -1
- package/lib/types/interaction.d.ts +1 -0
- package/lib/types/interaction.d.ts.map +1 -1
- package/lib/types/store/store.d.ts +8 -0
- package/lib/types/store/store.d.ts.map +1 -1
- package/lib/types/store/workflow.d.ts +1 -0
- package/lib/types/store/workflow.d.ts.map +1 -1
- package/lib/vertesia-common.js +1 -1
- package/lib/vertesia-common.js.map +1 -1
- package/package.json +1 -1
- package/src/access-control.ts +1 -0
- package/src/interaction.ts +2 -0
- package/src/store/store.ts +10 -0
- package/src/store/workflow.ts +2 -0
package/package.json
CHANGED
package/src/access-control.ts
CHANGED
package/src/interaction.ts
CHANGED
|
@@ -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';
|
package/src/store/store.ts
CHANGED
|
@@ -220,6 +220,11 @@ export interface ContentObjectItem<T = Record<string, any>> extends BaseObject {
|
|
|
220
220
|
* and modification attempts should be rejected.
|
|
221
221
|
*/
|
|
222
222
|
is_locked?: boolean;
|
|
223
|
+
|
|
224
|
+
/**
|
|
225
|
+
* The document score, used for ranking and sorting.
|
|
226
|
+
*/
|
|
227
|
+
score?: number;
|
|
223
228
|
}
|
|
224
229
|
|
|
225
230
|
/**
|
|
@@ -378,3 +383,8 @@ export interface GetFileUrlResponse {
|
|
|
378
383
|
mime_type: string;
|
|
379
384
|
path: string;
|
|
380
385
|
}
|
|
386
|
+
|
|
387
|
+
export enum ContentObjectProcessingPriority {
|
|
388
|
+
normal = "normal",
|
|
389
|
+
low = "low",
|
|
390
|
+
}
|