@polos/sdk 0.1.2 → 0.2.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/dist/index.cjs +5641 -4376
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1110 -499
- package/dist/index.d.ts +1110 -499
- package/dist/index.js +5632 -4378
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@polos/sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Polos SDK for building durable AI agents and workflows in TypeScript",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
"scripts": {
|
|
40
40
|
"build": "tsup",
|
|
41
41
|
"dev": "tsup --watch",
|
|
42
|
-
"test": "tsx --test src/**/*.test.ts",
|
|
43
|
-
"test:watch": "tsx --test --watch src/**/*.test.ts",
|
|
42
|
+
"test": "tsx --test src/*.test.ts src/**/*.test.ts",
|
|
43
|
+
"test:watch": "tsx --test --watch src/*.test.ts src/**/*.test.ts",
|
|
44
44
|
"lint": "eslint src/",
|
|
45
45
|
"lint:fix": "eslint src/ --fix",
|
|
46
46
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
@@ -56,11 +56,10 @@
|
|
|
56
56
|
"cron-parser": "^4.9.0",
|
|
57
57
|
"fastify": "^5.0.0",
|
|
58
58
|
"undici": "^6.20.0",
|
|
59
|
-
"uuid": "^10.0.0"
|
|
60
|
-
"zod": "^3.23.0",
|
|
61
|
-
"zod-to-json-schema": "^3.25.1"
|
|
59
|
+
"uuid": "^10.0.0"
|
|
62
60
|
},
|
|
63
61
|
"peerDependencies": {
|
|
62
|
+
"zod": "^4.0.0",
|
|
64
63
|
"@ai-sdk/anthropic": "^3.0.0",
|
|
65
64
|
"@ai-sdk/azure": "^3.0.0",
|
|
66
65
|
"@ai-sdk/google": "^3.0.0",
|
|
@@ -87,6 +86,7 @@
|
|
|
87
86
|
"devDependencies": {
|
|
88
87
|
"@ai-sdk/anthropic": "^3.0.0",
|
|
89
88
|
"@ai-sdk/openai": "^3.0.0",
|
|
89
|
+
"zod": "^4.0.0",
|
|
90
90
|
"@eslint/js": "^9.0.0",
|
|
91
91
|
"@types/node": "^22.0.0",
|
|
92
92
|
"@types/uuid": "^10.0.0",
|