@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 +1 -1
- package/v1alpha1/agent.pb.ts +6 -7
package/package.json
CHANGED
package/v1alpha1/agent.pb.ts
CHANGED
|
@@ -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 = {
|