aboutsummaryrefslogtreecommitdiff
path: root/karld/protocol.d.ts
diff options
context:
space:
mode:
authormetamuffin <yvchraiqi@protonmail.com>2022-06-11 14:32:45 +0200
committermetamuffin <yvchraiqi@protonmail.com>2022-06-11 14:32:45 +0200
commitc2699d114c921ab2ceb1f467b32a26257dddcf3d (patch)
tree0e886d333d944094c8c66905cac36a21cd010405 /karld/protocol.d.ts
parent9769c17c0b4c271c1cfbe726b19a6d3f9250c7c8 (diff)
downloadkarlender-c2699d114c921ab2ceb1f467b32a26257dddcf3d.tar
karlender-c2699d114c921ab2ceb1f467b32a26257dddcf3d.tar.bz2
karlender-c2699d114c921ab2ceb1f467b32a26257dddcf3d.tar.zst
changing the protocol again
Diffstat (limited to 'karld/protocol.d.ts')
-rw-r--r--karld/protocol.d.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/karld/protocol.d.ts b/karld/protocol.d.ts
index be1a9bd..2eb1630 100644
--- a/karld/protocol.d.ts
+++ b/karld/protocol.d.ts
@@ -7,7 +7,7 @@ interface Error { type: "error", data: { kind: "unknown_task", details: null } |
interface Handshake { type: "handshake", data: { version: string } }
interface ListTasks { type: "list_tasks", data: null }
interface TaskList { type: "task_list", data: Task[] }
-interface ListInstances { type: "list_instances", data: null }
+interface ListInstances { type: "list_instances", data: { task: number, range: Range } }
interface InstanceList { type: "instance_list", data: Instance[] }
interface UpdateTask { type: "update_task", data: Task }
interface RemoveTask { type: "remove_task", data: number }