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

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.
@@ -14,7 +14,7 @@ type TUniversalMessageRole = 'user' | 'assistant' | 'system' | 'tool';
14
14
  /**
15
15
  * Message metadata used across conversation history and provider adapters.
16
16
  */
17
- type TUniversalMessageMetadata = Record<string, string | number | boolean | Date | string[] | number[]>;
17
+ type TUniversalMessageMetadata = Record<string, string | number | boolean | Date | string[] | number[] | Record<string, number>>;
18
18
  /**
19
19
  * Universal multimodal message part contracts.
20
20
  */
@@ -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;