@daocloud-proto/agentclaw 0.0.1-dev-335ece73 → 0.0.1-dev-4d234b8e

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name":"@daocloud-proto/agentclaw",
3
- "version":"0.0.1-dev-335ece73",
3
+ "version":"0.0.1-dev-4d234b8e",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -150,7 +150,6 @@ export type ContainerInstance = {
150
150
  enableDockerInDocker?: boolean
151
151
  enablePersistentRootfs?: boolean
152
152
  startMode?: StartMode
153
- agentInfo?: AgentInfo
154
153
  }
155
154
 
156
155
  export type VolumeSpec = {
@@ -216,10 +215,6 @@ export type ServiceEnable = {
216
215
  vscode?: boolean
217
216
  }
218
217
 
219
- export type AgentInfo = {
220
- gatewayToken?: string
221
- }
222
-
223
218
  export class Agents {
224
219
  static ListAgentInstances(req: ListAgentInstanceRequest, initReq?: fm.InitReq): Promise<ListAgentInstanceResponse> {
225
220
  return fm.fetchReq<ListAgentInstanceRequest, ListAgentInstanceResponse>(`/apis/agentclaw.io/v1alpha1/agent-instances?${fm.renderURLSearchParams(req, [])}`, {...initReq, method: "GET"})