@exulu/backend 1.39.3 → 1.41.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,7 +1,7 @@
1
1
  {
2
2
  "name": "@exulu/backend",
3
3
  "author": "Qventu Bv.",
4
- "version": "1.39.3",
4
+ "version": "1.41.0",
5
5
  "main": "./dist/index.js",
6
6
  "private": false,
7
7
  "publishConfig": {
@@ -17,6 +17,14 @@ export interface Context {
17
17
  }
18
18
  active: boolean
19
19
  slug: string
20
+ processor: {
21
+ name: string,
22
+ description: string,
23
+ queue: string,
24
+ trigger: string,
25
+ timeoutInSeconds: number,
26
+ generateEmbeddings: boolean
27
+ }[]
20
28
  sources: {
21
29
  id
22
30
  name
@@ -8,12 +8,12 @@ export interface Item {
8
8
  source?: string;
9
9
  tags?: string[];
10
10
  textlength?: number;
11
+ last_processed_at?: string;
11
12
  chunks?: {
12
13
  id: string;
13
14
  index: number;
14
15
  content: string;
15
16
  source: string;
16
- embedding_size: number;
17
17
  createdAt: string;
18
18
  updatedAt: string;
19
19
  }[];