agent-def 0.1.0 → 0.1.5
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/src/definition.d.ts +4 -4
- package/package.json +14 -14
package/dist/src/definition.d.ts
CHANGED
|
@@ -334,7 +334,7 @@ export declare const AgentConfigurationSchema: z.ZodObject<{
|
|
|
334
334
|
instructions: z.ZodString;
|
|
335
335
|
services: z.ZodDefault<z.ZodArray<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
|
|
336
336
|
id: z.ZodOptional<z.ZodString>;
|
|
337
|
-
url: z.
|
|
337
|
+
url: z.ZodURL;
|
|
338
338
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
339
339
|
authToken: z.ZodOptional<z.ZodString>;
|
|
340
340
|
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -449,7 +449,7 @@ export declare const AgentConfigurationSchema: z.ZodObject<{
|
|
|
449
449
|
}, z.core.$strip>;
|
|
450
450
|
}, z.core.$strip>, z.ZodObject<{
|
|
451
451
|
id: z.ZodOptional<z.ZodString>;
|
|
452
|
-
url: z.ZodOptional<z.
|
|
452
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
453
453
|
headers: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
454
454
|
authToken: z.ZodOptional<z.ZodString>;
|
|
455
455
|
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -564,7 +564,7 @@ export declare const AgentConfigurationSchema: z.ZodObject<{
|
|
|
564
564
|
}, z.core.$strip>;
|
|
565
565
|
}, z.core.$strip>]>, z.ZodUnion<readonly [z.ZodObject<{
|
|
566
566
|
id: z.ZodOptional<z.ZodString>;
|
|
567
|
-
url: z.
|
|
567
|
+
url: z.ZodURL;
|
|
568
568
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
569
569
|
authToken: z.ZodOptional<z.ZodString>;
|
|
570
570
|
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -701,7 +701,7 @@ export declare const AgentConfigurationSchema: z.ZodObject<{
|
|
|
701
701
|
}, z.core.$strip>;
|
|
702
702
|
}, z.core.$strip>, z.ZodObject<{
|
|
703
703
|
id: z.ZodOptional<z.ZodString>;
|
|
704
|
-
url: z.ZodOptional<z.
|
|
704
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
705
705
|
headers: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
706
706
|
authToken: z.ZodOptional<z.ZodString>;
|
|
707
707
|
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-def",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "A standardized definition for collaborative agents.",
|
|
5
5
|
"main": "dist/src/definition.js",
|
|
6
6
|
"module": "dist/src/definition.js",
|
|
@@ -44,25 +44,25 @@
|
|
|
44
44
|
"./README.md"
|
|
45
45
|
],
|
|
46
46
|
"engines": {
|
|
47
|
-
"node": ">=
|
|
47
|
+
"node": ">=20.0.0"
|
|
48
48
|
},
|
|
49
49
|
"rootDir": ".",
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@eslint/js": "^9.
|
|
52
|
-
"@types/node": "^
|
|
53
|
-
"eslint": "^9.
|
|
54
|
-
"globals": "^
|
|
55
|
-
"jest": "
|
|
56
|
-
"rimraf": "^
|
|
57
|
-
"ts-jest": "^29.
|
|
51
|
+
"@eslint/js": "^9.39.2",
|
|
52
|
+
"@types/node": "^25.0.9",
|
|
53
|
+
"eslint": "^9.39.2",
|
|
54
|
+
"globals": "^17.0.0",
|
|
55
|
+
"jest": "29.7.0",
|
|
56
|
+
"rimraf": "^6.1.2",
|
|
57
|
+
"ts-jest": "^29.4.6",
|
|
58
58
|
"ts-node": "^10.9.2",
|
|
59
|
-
"typescript": "^5.
|
|
60
|
-
"typescript-eslint": "^8.
|
|
61
|
-
"zod-to-json-schema": "^3.25
|
|
59
|
+
"typescript": "^5.9.3",
|
|
60
|
+
"typescript-eslint": "^8.53.0",
|
|
61
|
+
"zod-to-json-schema": "^3.25"
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@artinet/sdk": "^0.6.
|
|
65
|
-
"@artinet/types": "^0.
|
|
64
|
+
"@artinet/sdk": "^0.6.4",
|
|
65
|
+
"@artinet/types": "^0.1.4",
|
|
66
66
|
"zod": "^3.25"
|
|
67
67
|
}
|
|
68
68
|
}
|