summary refs log tree commit diff
path: root/src/util
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2024-08-17 22:54:04 +1000
committerGitHub <noreply@github.com>2024-08-17 22:54:04 +1000
commitbb31df036a8067681729623f7c41dedd6b3a94e9 (patch)
treed712a47ef08bab595013b7fcc73b32749fc10c34 /src/util
parentMerge pull request #1176 from greysilly7/patch-1 (diff)
parentregenerate schema.json (diff)
downloadserver-ts-bb31df036a8067681729623f7c41dedd6b3a94e9.tar.xz
Merge pull request #1177 from CyberL1/fix/op-8
fix: allow array in op 8
Diffstat (limited to 'src/util')
-rw-r--r--src/util/schemas/RequestGuildMembersSchema.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/schemas/RequestGuildMembersSchema.ts b/src/util/schemas/RequestGuildMembersSchema.ts

index 01ba4f2e9..6909ba85c 100644 --- a/src/util/schemas/RequestGuildMembersSchema.ts +++ b/src/util/schemas/RequestGuildMembersSchema.ts
@@ -17,7 +17,7 @@ */ export interface RequestGuildMembersSchema { - guild_id: string; + guild_id: string | [string]; query?: string; limit?: number; presences?: boolean; @@ -26,7 +26,7 @@ export interface RequestGuildMembersSchema { } export const RequestGuildMembersSchema = { - guild_id: String, + guild_id: [] as string | string[], $query: String, $limit: Number, $presences: Boolean,