@breign/client 1.0.53 → 1.0.55

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.
@@ -75,6 +75,12 @@ export interface AgentToolUio {
75
75
  * @memberof AgentToolUio
76
76
  */
77
77
  restricted?: boolean;
78
+ /**
79
+ *
80
+ * @type {boolean}
81
+ * @memberof AgentToolUio
82
+ */
83
+ isSetup?: boolean;
78
84
  }
79
85
  /**
80
86
  * Check if a given object implements the AgentToolUio interface.
@@ -51,6 +51,7 @@ function AgentToolUioFromJSONTyped(json, ignoreDiscriminator) {
51
51
  'manifest': json['manifest'] == null ? undefined : json['manifest'],
52
52
  'mcp': json['mcp'] == null ? undefined : json['mcp'],
53
53
  'restricted': json['restricted'] == null ? undefined : json['restricted'],
54
+ 'isSetup': json['isSetup'] == null ? undefined : json['isSetup'],
54
55
  };
55
56
  }
56
57
  function AgentToolUioToJSON(json) {
@@ -70,5 +71,6 @@ function AgentToolUioToJSONTyped(value, ignoreDiscriminator = false) {
70
71
  'manifest': value['manifest'],
71
72
  'mcp': value['mcp'],
72
73
  'restricted': value['restricted'],
74
+ 'isSetup': value['isSetup'],
73
75
  };
74
76
  }
@@ -67,6 +67,12 @@ export interface ToolSecureUio {
67
67
  * @memberof ToolSecureUio
68
68
  */
69
69
  mcp?: ToolSecureMcpUio | null;
70
+ /**
71
+ * Indicates if the tool has completed its setup (for oauth2 tools).
72
+ * @type {boolean}
73
+ * @memberof ToolSecureUio
74
+ */
75
+ isSetup?: boolean;
70
76
  }
71
77
  /**
72
78
  * @export
@@ -62,6 +62,7 @@ function ToolSecureUioFromJSONTyped(json, ignoreDiscriminator) {
62
62
  'configuration': (0, ToolSecureConfigurationUio_1.ToolSecureConfigurationUioFromJSON)(json['configuration']),
63
63
  'manifest': json['manifest'] == null ? undefined : (0, ToolSecureManifestUio_1.ToolSecureManifestUioFromJSON)(json['manifest']),
64
64
  'mcp': json['mcp'] == null ? undefined : (0, ToolSecureMcpUio_1.ToolSecureMcpUioFromJSON)(json['mcp']),
65
+ 'isSetup': json['isSetup'] == null ? undefined : json['isSetup'],
65
66
  };
66
67
  }
67
68
  function ToolSecureUioToJSON(json) {
@@ -81,5 +82,6 @@ function ToolSecureUioToJSONTyped(value, ignoreDiscriminator = false) {
81
82
  'configuration': (0, ToolSecureConfigurationUio_1.ToolSecureConfigurationUioToJSON)(value['configuration']),
82
83
  'manifest': (0, ToolSecureManifestUio_1.ToolSecureManifestUioToJSON)(value['manifest']),
83
84
  'mcp': (0, ToolSecureMcpUio_1.ToolSecureMcpUioToJSON)(value['mcp']),
85
+ 'isSetup': value['isSetup'],
84
86
  };
85
87
  }
package/dist/openapi.json CHANGED
@@ -6685,6 +6685,9 @@
6685
6685
  },
6686
6686
  "restricted" : {
6687
6687
  "type" : "boolean"
6688
+ },
6689
+ "isSetup" : {
6690
+ "type" : "boolean"
6688
6691
  }
6689
6692
  },
6690
6693
  "required" : [ "description", "id", "name", "orgId", "type" ],
@@ -9088,6 +9091,10 @@
9088
9091
  },
9089
9092
  "mcp" : {
9090
9093
  "$ref" : "#/components/schemas/ToolSecure_mcp"
9094
+ },
9095
+ "isSetup" : {
9096
+ "description" : "Indicates if the tool has completed its setup (for oauth2 tools).",
9097
+ "type" : "boolean"
9091
9098
  }
9092
9099
  },
9093
9100
  "required" : [ "_id", "configuration", "name", "orgId", "type" ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breign/client",
3
- "version": "1.0.53",
3
+ "version": "1.0.55",
4
4
  "main": "dist/index.js",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",