@easbot/sdk 0.1.15 → 0.2.1
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/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +17 -19
package/dist/index.d.cts
CHANGED
|
@@ -481,7 +481,7 @@ type MemoryPart = {
|
|
|
481
481
|
sessionID: string;
|
|
482
482
|
messageID: string;
|
|
483
483
|
type: 'memory';
|
|
484
|
-
status: 'pending' | 'processing' | 'completed' | 'failed';
|
|
484
|
+
status: 'pending' | 'processing' | 'completed' | 'failed' | 'skipped';
|
|
485
485
|
time: {
|
|
486
486
|
start: number;
|
|
487
487
|
end?: number;
|
|
@@ -1358,7 +1358,7 @@ type SubtaskResultPartInput = {
|
|
|
1358
1358
|
type MemoryPartInput = {
|
|
1359
1359
|
id?: string;
|
|
1360
1360
|
type: 'memory';
|
|
1361
|
-
status: 'pending' | 'processing' | 'completed' | 'failed';
|
|
1361
|
+
status: 'pending' | 'processing' | 'completed' | 'failed' | 'skipped';
|
|
1362
1362
|
time: {
|
|
1363
1363
|
start: number;
|
|
1364
1364
|
end?: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -481,7 +481,7 @@ type MemoryPart = {
|
|
|
481
481
|
sessionID: string;
|
|
482
482
|
messageID: string;
|
|
483
483
|
type: 'memory';
|
|
484
|
-
status: 'pending' | 'processing' | 'completed' | 'failed';
|
|
484
|
+
status: 'pending' | 'processing' | 'completed' | 'failed' | 'skipped';
|
|
485
485
|
time: {
|
|
486
486
|
start: number;
|
|
487
487
|
end?: number;
|
|
@@ -1358,7 +1358,7 @@ type SubtaskResultPartInput = {
|
|
|
1358
1358
|
type MemoryPartInput = {
|
|
1359
1359
|
id?: string;
|
|
1360
1360
|
type: 'memory';
|
|
1361
|
-
status: 'pending' | 'processing' | 'completed' | 'failed';
|
|
1361
|
+
status: 'pending' | 'processing' | 'completed' | 'failed' | 'skipped';
|
|
1362
1362
|
time: {
|
|
1363
1363
|
start: number;
|
|
1364
1364
|
end?: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@easbot/sdk",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Easbot SDK for client applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -14,23 +14,6 @@
|
|
|
14
14
|
},
|
|
15
15
|
"./package.json": "./package.json"
|
|
16
16
|
},
|
|
17
|
-
"scripts": {
|
|
18
|
-
"dev": "tsup --watch --env.NODE_ENV development",
|
|
19
|
-
"build": "node scripts/build.mjs",
|
|
20
|
-
"test": "vitest",
|
|
21
|
-
"test:run": "vitest run",
|
|
22
|
-
"lint": "biome check .",
|
|
23
|
-
"lint:fix": "biome check --write .",
|
|
24
|
-
"lint:report": "biome check --reporter=summary .",
|
|
25
|
-
"format": "biome format .",
|
|
26
|
-
"format:fix": "biome format --write .",
|
|
27
|
-
"type-check": "tsc --noEmit",
|
|
28
|
-
"clean": "npx rimraf dist node_modules",
|
|
29
|
-
"prepare": "echo norun",
|
|
30
|
-
"prepublishOnly": "pnpm build",
|
|
31
|
-
"publish:npm": "bash scripts/publish.sh",
|
|
32
|
-
"publish:npm:win": "powershell -ExecutionPolicy Bypass -File scripts/publish.ps1"
|
|
33
|
-
},
|
|
34
17
|
"keywords": [
|
|
35
18
|
"easbot",
|
|
36
19
|
"sdk",
|
|
@@ -70,5 +53,20 @@
|
|
|
70
53
|
},
|
|
71
54
|
"publishConfig": {
|
|
72
55
|
"access": "public"
|
|
56
|
+
},
|
|
57
|
+
"scripts": {
|
|
58
|
+
"dev": "tsup --watch --env.NODE_ENV development",
|
|
59
|
+
"build": "node scripts/build.mjs",
|
|
60
|
+
"test": "vitest",
|
|
61
|
+
"test:run": "vitest run",
|
|
62
|
+
"lint": "biome check .",
|
|
63
|
+
"lint:fix": "biome check --write .",
|
|
64
|
+
"lint:report": "biome check --reporter=summary .",
|
|
65
|
+
"format": "biome format .",
|
|
66
|
+
"format:fix": "biome format --write .",
|
|
67
|
+
"type-check": "tsc --noEmit",
|
|
68
|
+
"clean": "npx rimraf dist node_modules",
|
|
69
|
+
"publish:npm": "bash scripts/publish.sh",
|
|
70
|
+
"publish:npm:win": "powershell -ExecutionPolicy Bypass -File scripts/publish.ps1"
|
|
73
71
|
}
|
|
74
|
-
}
|
|
72
|
+
}
|