mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-16 19:28:17 +00:00
getinvites add options
This commit is contained in:
@@ -1,11 +1,14 @@
|
|||||||
import { rest } from "../../rest/rest.ts";
|
import { rest } from "../../rest/rest.ts";
|
||||||
|
import { GetInvite } from "../../types/invites/get_invite.ts";
|
||||||
import type { Invite } from "../../types/invites/invite.ts";
|
import type { Invite } from "../../types/invites/invite.ts";
|
||||||
import { endpoints } from "../../util/constants.ts";
|
import { endpoints } from "../../util/constants.ts";
|
||||||
|
import { camelKeysToSnakeCase } from "../../util/utils.ts";
|
||||||
|
|
||||||
/** Returns an invite for the given code or throws an error if the invite doesn't exists. */
|
/** Returns an invite for the given code or throws an error if the invite doesn't exists. */
|
||||||
export async function getInvite(inviteCode: string) {
|
export async function getInvite(inviteCode: string, options: GetInvite) {
|
||||||
return await rest.runMethod<Invite>(
|
return await rest.runMethod<Invite>(
|
||||||
"get",
|
"get",
|
||||||
endpoints.INVITE(inviteCode),
|
endpoints.INVITE(inviteCode),
|
||||||
|
camelKeysToSnakeCase(options),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user