summary refs log tree commit diff
path: root/src/util/schemas/AckBulkSchema.ts
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2023-01-30 13:34:27 +1100
committerGitHub <noreply@github.com>2023-01-30 13:34:27 +1100
commit71258f64879b43c3bf365c92bcb9d3b61b634f15 (patch)
tree5ea5f1f2cd66d3421d79a3c88c46fd10d8dced5c /src/util/schemas/AckBulkSchema.ts
parentImplement WebAuthn (#967) (diff)
downloadserver-71258f64879b43c3bf365c92bcb9d3b61b634f15.tar.xz
read-states/ack-bulk (#969)
Diffstat (limited to 'src/util/schemas/AckBulkSchema.ts')
-rw-r--r--src/util/schemas/AckBulkSchema.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/util/schemas/AckBulkSchema.ts b/src/util/schemas/AckBulkSchema.ts
new file mode 100644

index 00000000..8e20723f --- /dev/null +++ b/src/util/schemas/AckBulkSchema.ts
@@ -0,0 +1,9 @@ +export interface AckBulkSchema { + read_states: [ + { + channel_id: string; + message_id: string; + read_state_type: number; // WHat is this? + }, + ]; +}