@breign/client 1.0.21 → 1.0.22

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,14 @@ 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
+ mcp?: {
56
+ [key: string]: any;
57
+ };
50
58
  }
51
59
  /**
52
60
  * Check if a given object implements the ToolCreateRequestUio interface.
@@ -45,6 +45,7 @@ function ToolCreateRequestUioFromJSONTyped(json, ignoreDiscriminator) {
45
45
  'description': json['description'] == null ? undefined : json['description'],
46
46
  'type': json['type'],
47
47
  'configuration': json['configuration'],
48
+ 'mcp': json['mcp'] == null ? undefined : json['mcp'],
48
49
  };
49
50
  }
50
51
  function ToolCreateRequestUioToJSON(json) {
@@ -60,5 +61,6 @@ function ToolCreateRequestUioToJSONTyped(value, ignoreDiscriminator = false) {
60
61
  'description': value['description'],
61
62
  'type': value['type'],
62
63
  'configuration': value['configuration'],
64
+ 'mcp': value['mcp'],
63
65
  };
64
66
  }
package/dist/openapi.json CHANGED
@@ -7867,6 +7867,10 @@
7867
7867
  "configuration" : {
7868
7868
  "additionalProperties" : true,
7869
7869
  "type" : "object"
7870
+ },
7871
+ "mcp" : {
7872
+ "additionalProperties" : true,
7873
+ "type" : "object"
7870
7874
  }
7871
7875
  },
7872
7876
  "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.22",
4
4
  "main": "dist/index.js",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",