// { type: "handshake", version: "10"} // { type: "handshake", data: {version: "10"}} //! { "handshake": {version: "10"}} export type ServerboundPacket = Download export type ClientboundPacket = Handshake | DownloadResponse interface Handshake { type: "handshake" data: { version: string } } interface Download { type: "download", data: null } interface DownloadResponse { type: "download_response", data: { tasks: Task[] } } interface Task { name: string, description: string, tags: string[], priority: number, completed?: number, scheduled?: number, occurence?: Condition, deadline?: Condition, } /* 11:00 - 12:00 every first monday of the month and: [ range: {prop: "hour", min: 11, max: 12}, equal: {prop: "dayofweek", value: 0}, equal: {prop: "weekofmonth", value: 0}, ] */ // should only have one property interface Condition { from: Condition or: Condition[] and: Condition[] equal?: { prop: Thing, value: number, mod?: number } range?: { prop: Thing, min: number, max: number, mod?: number } } type Thing = "year" | "monthofyear" | "weekofmonth" | "dayofyear" | "dayofmonth" | "dayofweek" | "hour" | "minute" | "second" | "unix"