86 lines
3.3 KiB
TypeScript
86 lines
3.3 KiB
TypeScript
/*
|
|
Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
|
|
Copyright (C) 2023 Spacebar and Spacebar Contributors
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as published
|
|
by the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
export * from "./AckBulkSchema";
|
|
export * from "./ActivitySchema";
|
|
export * from "./ApplicationAuthorizeSchema";
|
|
export * from "./ApplicationCreateSchema";
|
|
export * from "./ApplicationModifySchema";
|
|
export * from "./BackupCodesChallengeSchema";
|
|
export * from "./BanCreateSchema";
|
|
export * from "./BanModeratorSchema";
|
|
export * from "./BanRegistrySchema";
|
|
export * from "./BotModifySchema";
|
|
export * from "./ChannelModifySchema";
|
|
export * from "./ChannelPermissionOverwriteSchema";
|
|
export * from "./ChannelReorderSchema";
|
|
export * from "./CodesVerificationSchema";
|
|
export * from "./ConnectedAccountSchema";
|
|
export * from "./ConnectionCallbackSchema";
|
|
export * from "./ConnectionUpdateSchema";
|
|
export * from "./DmChannelCreateSchema";
|
|
export * from "./EmojiCreateSchema";
|
|
export * from "./EmojiModifySchema";
|
|
export * from "./ForgotPasswordSchema";
|
|
export * from "./GatewayPayloadSchema";
|
|
export * from "./GuildCreateSchema";
|
|
export * from "./GuildTemplateCreateSchema";
|
|
export * from "./GuildUpdateSchema";
|
|
export * from "./GuildUpdateWelcomeScreenSchema";
|
|
export * from "./IdentifySchema";
|
|
export * from "./InviteCreateSchema";
|
|
export * from "./LazyRequestSchema";
|
|
export * from "./LoginSchema";
|
|
export * from "./MemberChangeProfileSchema";
|
|
export * from "./MemberChangeSchema";
|
|
export * from "./MessageAcknowledgeSchema";
|
|
export * from "./MessageCreateSchema";
|
|
export * from "./MessageEditSchema";
|
|
export * from "./MfaCodesSchema";
|
|
export * from "./ModifyGuildStickerSchema";
|
|
export * from "./PasswordResetSchema";
|
|
export * from "./PurgeSchema";
|
|
export * from "./RegisterSchema";
|
|
export * from "./RelationshipPostSchema";
|
|
export * from "./RelationshipPutSchema";
|
|
export * from "./RequestGuildMembersSchema";
|
|
export * from "./RoleModifySchema";
|
|
export * from "./RolePositionUpdateSchema";
|
|
export * from "./SelectProtocolSchema";
|
|
export * from "./TemplateCreateSchema";
|
|
export * from "./TemplateModifySchema";
|
|
export * from "./TotpDisableSchema";
|
|
export * from "./TotpEnableSchema";
|
|
export * from "./TotpSchema";
|
|
export * from "./UserDeleteSchema";
|
|
export * from "./UserGuildSettingsSchema";
|
|
export * from "./UserModifySchema";
|
|
export * from "./UserNoteUpdateSchema";
|
|
export * from "./UserProfileModifySchema";
|
|
export * from "./UserSettingsSchema";
|
|
export * from "./Validator";
|
|
export * from "./VanityUrlSchema";
|
|
export * from "./VoiceIdentifySchema";
|
|
export * from "./VoiceStateUpdateSchema";
|
|
export * from "./VoiceVideoSchema";
|
|
export * from "./WebAuthnSchema";
|
|
export * from "./WebhookCreateSchema";
|
|
export * from "./WebhookExecuteSchema";
|
|
export * from "./WidgetModifySchema";
|
|
export * from "./responses";
|