@robota-sdk/agent-core 3.0.0-beta.2 → 3.0.0-beta.3

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.
@@ -198,6 +198,7 @@ interface IParameterSchema {
198
198
  enum?: TJSONSchemaEnum;
199
199
  items?: IParameterSchema;
200
200
  properties?: Record<string, IParameterSchema>;
201
+ additionalProperties?: IParameterSchema;
201
202
  minimum?: number;
202
203
  maximum?: number;
203
204
  pattern?: string;
@@ -198,6 +198,7 @@ interface IParameterSchema {
198
198
  enum?: TJSONSchemaEnum;
199
199
  items?: IParameterSchema;
200
200
  properties?: Record<string, IParameterSchema>;
201
+ additionalProperties?: IParameterSchema;
201
202
  minimum?: number;
202
203
  maximum?: number;
203
204
  pattern?: string;
@@ -198,6 +198,7 @@ interface IParameterSchema {
198
198
  enum?: TJSONSchemaEnum;
199
199
  items?: IParameterSchema;
200
200
  properties?: Record<string, IParameterSchema>;
201
+ additionalProperties?: IParameterSchema;
201
202
  minimum?: number;
202
203
  maximum?: number;
203
204
  pattern?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@robota-sdk/agent-core",
3
- "version": "3.0.0-beta.2",
3
+ "version": "3.0.0-beta.3",
4
4
  "description": "Complete AI agent implementation with unified core and tools functionality - conversation management, plugin system, and advanced agent features",
5
5
  "type": "module",
6
6
  "main": "dist/node/index.js",