agent-swarm-kit 2.2.0 → 2.4.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/package.json +2 -2
- package/types.d.ts +41 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-swarm-kit",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.4.0",
|
|
4
4
|
"description": "A TypeScript library for building orchestrated framework-agnostic multi-agent AI systems",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Petr Tripolsky",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"dependencies": {
|
|
82
82
|
"di-kit": "^1.1.1",
|
|
83
83
|
"di-scoped": "^1.0.21",
|
|
84
|
-
"functools-kit": "^2.0
|
|
84
|
+
"functools-kit": "^2.1.0",
|
|
85
85
|
"get-moment-stamp": "^1.1.1",
|
|
86
86
|
"lodash-es": "4.17.21",
|
|
87
87
|
"xml2js": "0.6.2"
|
package/types.d.ts
CHANGED
|
@@ -3856,10 +3856,44 @@ interface IOutlineSchemaFormat {
|
|
|
3856
3856
|
json_schema: object;
|
|
3857
3857
|
}
|
|
3858
3858
|
/**
|
|
3859
|
-
*
|
|
3860
|
-
*
|
|
3861
|
-
|
|
3862
|
-
|
|
3859
|
+
* Describes a single property in an outline format schema.
|
|
3860
|
+
* Supports primitives, enums, nested objects, and arrays.
|
|
3861
|
+
*/
|
|
3862
|
+
interface IOutlineObjectProperty {
|
|
3863
|
+
/**
|
|
3864
|
+
* The JSON Schema type of the property.
|
|
3865
|
+
* Primitives: "string" | "number" | "boolean" | "integer"
|
|
3866
|
+
* Composite: "object" | "array"
|
|
3867
|
+
*/
|
|
3868
|
+
type: string;
|
|
3869
|
+
/**
|
|
3870
|
+
* A human-readable description of the property.
|
|
3871
|
+
*/
|
|
3872
|
+
description?: string;
|
|
3873
|
+
/**
|
|
3874
|
+
* Optional array of allowed values (for string/number enums).
|
|
3875
|
+
*/
|
|
3876
|
+
enum?: string[];
|
|
3877
|
+
/**
|
|
3878
|
+
* Nested properties for type "object".
|
|
3879
|
+
*/
|
|
3880
|
+
properties?: {
|
|
3881
|
+
[key: string]: IOutlineObjectProperty;
|
|
3882
|
+
};
|
|
3883
|
+
/**
|
|
3884
|
+
* Required property names for type "object".
|
|
3885
|
+
*/
|
|
3886
|
+
required?: string[];
|
|
3887
|
+
/**
|
|
3888
|
+
* Item schema for type "array".
|
|
3889
|
+
*/
|
|
3890
|
+
items?: IOutlineObjectProperty;
|
|
3891
|
+
}
|
|
3892
|
+
/**
|
|
3893
|
+
* Interface representing a format definition using an object-based schema.
|
|
3894
|
+
* Specifies the type, required properties, and property definitions for validation.
|
|
3895
|
+
* Used when the outline format is defined by a structured object schema.
|
|
3896
|
+
*/
|
|
3863
3897
|
interface IOutlineObjectFormat {
|
|
3864
3898
|
/**
|
|
3865
3899
|
* The root type of the outline format (e.g., "object").
|
|
@@ -3872,24 +3906,11 @@ interface IOutlineObjectFormat {
|
|
|
3872
3906
|
*/
|
|
3873
3907
|
required: string[];
|
|
3874
3908
|
/**
|
|
3875
|
-
* An object mapping property names to their
|
|
3876
|
-
*
|
|
3909
|
+
* An object mapping property names to their schemas.
|
|
3910
|
+
* Supports primitives, enums, nested objects, and arrays.
|
|
3877
3911
|
*/
|
|
3878
3912
|
properties: {
|
|
3879
|
-
[key: string]:
|
|
3880
|
-
/**
|
|
3881
|
-
* The type of the property (e.g., "string", "number", "boolean", etc.).
|
|
3882
|
-
*/
|
|
3883
|
-
type: string;
|
|
3884
|
-
/**
|
|
3885
|
-
* A human-readable description of the property.
|
|
3886
|
-
*/
|
|
3887
|
-
description: string;
|
|
3888
|
-
/**
|
|
3889
|
-
* Optional array of allowed values for the property.
|
|
3890
|
-
*/
|
|
3891
|
-
enum?: string[];
|
|
3892
|
-
};
|
|
3913
|
+
[key: string]: IOutlineObjectProperty;
|
|
3893
3914
|
};
|
|
3894
3915
|
}
|
|
3895
3916
|
/**
|