@daocloud-proto/agentclaw 0.0.1-dev-b9fdd0cd → 0.0.1-dev-88528fe8
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 +7 -6
package/package.json
CHANGED
package/v1alpha1/agent.pb.ts
CHANGED
|
@@ -97,6 +97,13 @@ 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
|
|
100
107
|
}
|
|
101
108
|
|
|
102
109
|
export type CreateAgentInstanceResponse = {
|
|
@@ -170,12 +177,6 @@ export type Image = {
|
|
|
170
177
|
export type Command = {
|
|
171
178
|
commands?: string[]
|
|
172
179
|
args?: string[]
|
|
173
|
-
envs?: EnvVar[]
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
export type EnvVar = {
|
|
177
|
-
key?: string
|
|
178
|
-
value?: string
|
|
179
180
|
}
|
|
180
181
|
|
|
181
182
|
export type InstanceSpec = {
|