@daocloud-proto/agentclaw 0.0.1-dev-4e04befe → 0.0.1-dev-c2108e50

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-4e04befe",
3
+ "version":"0.0.1-dev-c2108e50",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -97,13 +97,6 @@ export type GetAgentInstanceResponse = {
97
97
 
98
98
  export type CreateAgentInstanceRequest = {
99
99
  name?: string
100
- instanceSpec?: InstanceSpec
101
- image?: Image
102
- serviceEnable?: ServiceEnable
103
- volumeSpec?: VolumeSpec[]
104
- sshKeyLoginEnable?: boolean
105
- schedule?: Schedule
106
- enableDockerInDocker?: boolean
107
100
  }
108
101
 
109
102
  export type CreateAgentInstanceResponse = {
@@ -177,6 +170,12 @@ export type Image = {
177
170
  export type Command = {
178
171
  commands?: string[]
179
172
  args?: string[]
173
+ envs?: EnvVar[]
174
+ }
175
+
176
+ export type EnvVar = {
177
+ key?: string
178
+ value?: string
180
179
  }
181
180
 
182
181
  export type InstanceSpec = {