summary refs log tree commit diff
path: root/src/util/schemas
diff options
context:
space:
mode:
authordank074 <torresefrain10@gmail.com>2025-07-21 00:46:14 -0500
committerdank074 <torresefrain10@gmail.com>2025-07-21 00:46:14 -0500
commit3c0efd17bcb2ef45c9990278fa0323db46b72aa6 (patch)
treec2ebda1aca84af24dd7c691e9bb46c40772aa8db /src/util/schemas
parentmove dotenv.config() to top o file (diff)
downloadserver-ts-3c0efd17bcb2ef45c9990278fa0323db46b72aa6.tar.xz
update guild bans api
Diffstat (limited to 'src/util/schemas')
-rw-r--r--src/util/schemas/responses/TypedResponses.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/util/schemas/responses/TypedResponses.ts b/src/util/schemas/responses/TypedResponses.ts

index 3b864781..bc204502 100644 --- a/src/util/schemas/responses/TypedResponses.ts +++ b/src/util/schemas/responses/TypedResponses.ts
@@ -16,7 +16,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>. */ -import { GuildCreateResponse } from "@spacebar/util"; +import { GuildBansResponse, GuildCreateResponse } from "@spacebar/util"; import { GeneralConfiguration, LimitsConfiguration } from "../../config"; import { DmChannelDTO } from "../../dtos"; import { @@ -73,6 +73,8 @@ export type ApplicationSkusResponse = unknown[]; export type APIApplicationArray = Application[]; +export type APIBansArray = GuildBansResponse[]; + export type APIInviteArray = Invite[]; export type APIMessageArray = Message[];