@getsupervisor/agents-studio-sdk 1.41.1-beta.168 → 1.41.1-beta.169

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/dist/index.cjs CHANGED
@@ -2085,21 +2085,14 @@ function createToolsApi(cfg) {
2085
2085
  }
2086
2086
  );
2087
2087
  return res.json();
2088
- },
2089
- async deleteConnection(toolAgentConnectionId) {
2090
- await doFetch(`${base}/tools/connections/${toolAgentConnectionId}`, {
2091
- method: "DELETE"
2092
- });
2093
2088
  }
2094
2089
  };
2095
2090
  const connections = {
2096
2091
  connect: api.connect,
2097
2092
  create: api.createConnection,
2098
- delete: api.deleteConnection,
2099
2093
  execute: api.executeConnection,
2100
2094
  list: api.listConnections,
2101
2095
  createConnection: api.createConnection,
2102
- deleteConnection: api.deleteConnection,
2103
2096
  executeConnection: api.executeConnection
2104
2097
  };
2105
2098
  return {