@agentuity/react 0.0.52 → 0.0.53
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/types.d.ts +1 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/types.ts +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import type { StandardSchemaV1 } from '@agentuity/core';
|
|
|
2
2
|
/**
|
|
3
3
|
* Agent definition interface
|
|
4
4
|
*/
|
|
5
|
-
export interface Agent<TInput extends StandardSchemaV1 = StandardSchemaV1, TOutput extends StandardSchemaV1 = StandardSchemaV1> {
|
|
5
|
+
export interface Agent<TInput extends StandardSchemaV1 | undefined = StandardSchemaV1 | undefined, TOutput extends StandardSchemaV1 | undefined = StandardSchemaV1 | undefined> {
|
|
6
6
|
inputSchema: TInput;
|
|
7
7
|
outputSchema: TOutput;
|
|
8
8
|
}
|
package/dist/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AAExD;;GAEG;AACH,MAAM,WAAW,KAAK,CACrB,MAAM,SAAS,gBAAgB,GAAG,gBAAgB,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AAExD;;GAEG;AACH,MAAM,WAAW,KAAK,CACrB,MAAM,SAAS,gBAAgB,GAAG,SAAS,GAAG,gBAAgB,GAAG,SAAS,EAC1E,OAAO,SAAS,gBAAgB,GAAG,SAAS,GAAG,gBAAgB,GAAG,SAAS;IAE3E,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,OAAO,CAAC;CACtB;AAED;;;;;;;;;;;;;;;;GAgBG;AAEH,MAAM,WAAW,aAAa;CAAG;AAEjC;;;;GAIG;AACH,MAAM,MAAM,SAAS,GAAG,MAAM,aAAa,SAAS,KAAK,GAAG,MAAM,GAAG,MAAM,aAAa,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentuity/react",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.53",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"author": "Agentuity employees and contributors",
|
|
6
6
|
"type": "module",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"prepublishOnly": "bun run clean && bun run build"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@agentuity/core": "0.0.
|
|
28
|
+
"@agentuity/core": "0.0.53"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/bun": "latest",
|
package/src/types.ts
CHANGED
|
@@ -4,8 +4,8 @@ import type { StandardSchemaV1 } from '@agentuity/core';
|
|
|
4
4
|
* Agent definition interface
|
|
5
5
|
*/
|
|
6
6
|
export interface Agent<
|
|
7
|
-
TInput extends StandardSchemaV1 = StandardSchemaV1,
|
|
8
|
-
TOutput extends StandardSchemaV1 = StandardSchemaV1,
|
|
7
|
+
TInput extends StandardSchemaV1 | undefined = StandardSchemaV1 | undefined,
|
|
8
|
+
TOutput extends StandardSchemaV1 | undefined = StandardSchemaV1 | undefined,
|
|
9
9
|
> {
|
|
10
10
|
inputSchema: TInput;
|
|
11
11
|
outputSchema: TOutput;
|