@breign/client 1.0.21 → 1.0.23

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.
@@ -47,6 +47,22 @@ export interface ToolCreateRequestUio {
47
47
  configuration: {
48
48
  [key: string]: any;
49
49
  };
50
+ /**
51
+ *
52
+ * @type {{ [key: string]: any; }}
53
+ * @memberof ToolCreateRequestUio
54
+ */
55
+ manifest?: {
56
+ [key: string]: any;
57
+ };
58
+ /**
59
+ *
60
+ * @type {{ [key: string]: any; }}
61
+ * @memberof ToolCreateRequestUio
62
+ */
63
+ mcp?: {
64
+ [key: string]: any;
65
+ };
50
66
  }
51
67
  /**
52
68
  * Check if a given object implements the ToolCreateRequestUio interface.
@@ -45,6 +45,8 @@ function ToolCreateRequestUioFromJSONTyped(json, ignoreDiscriminator) {
45
45
  'description': json['description'] == null ? undefined : json['description'],
46
46
  'type': json['type'],
47
47
  'configuration': json['configuration'],
48
+ 'manifest': json['manifest'] == null ? undefined : json['manifest'],
49
+ 'mcp': json['mcp'] == null ? undefined : json['mcp'],
48
50
  };
49
51
  }
50
52
  function ToolCreateRequestUioToJSON(json) {
@@ -60,5 +62,7 @@ function ToolCreateRequestUioToJSONTyped(value, ignoreDiscriminator = false) {
60
62
  'description': value['description'],
61
63
  'type': value['type'],
62
64
  'configuration': value['configuration'],
65
+ 'manifest': value['manifest'],
66
+ 'mcp': value['mcp'],
63
67
  };
64
68
  }
package/dist/openapi.json CHANGED
@@ -7867,6 +7867,14 @@
7867
7867
  "configuration" : {
7868
7868
  "additionalProperties" : true,
7869
7869
  "type" : "object"
7870
+ },
7871
+ "manifest" : {
7872
+ "additionalProperties" : true,
7873
+ "type" : "object"
7874
+ },
7875
+ "mcp" : {
7876
+ "additionalProperties" : true,
7877
+ "type" : "object"
7870
7878
  }
7871
7879
  },
7872
7880
  "required" : [ "configuration", "name", "orgId", "type" ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breign/client",
3
- "version": "1.0.21",
3
+ "version": "1.0.23",
4
4
  "main": "dist/index.js",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",