Skillz4Killz
|
8b38cca2aa
|
fix: fmt
|
2022-09-09 01:24:33 +00:00 |
|
Skillz4Killz
|
87be8e7898
|
release: v14
|
2022-09-09 01:23:54 +00:00 |
|
Skillz4Killz
|
94dce6d4fb
|
Update README.md
|
2022-09-08 20:17:51 -05:00 |
|
 Skillz4KillzandDorian Oszczęda
|
bbbe21ebf2
|
BREAKING: add docs (#2442)
* refactor(helpers): Organise functions. (#2425)
* refactor: Move stage instance helper functions into `/stages` subdirectory.
* refactor: Move `followChannel.ts` to `/announcements` subdirectory.
* refactor: Move `updateVoiceState.ts` to `/guilds` directory.
* refactor: Move `getPins.ts` to `/messages` directory.
* refactor: Move voice-related helper functions into `/voice` subdirectory.
* refactor: Rename `/scheduledEvents` to `/events`.
* refactor: Move widget-related helper functions into `/widgets` subdirectory.
* refactor: Make `/integrations` a subdirectory of `/guilds`.
* refactor: Move helper functions related to interaction responses into the `/responses` subdirectory.
* refactor: Move `verifySignature.ts` to `/util` directory.
* refactor: Move `getChannelInvites.ts` to `/channels` directory.
* refactor: Make `/invites` a subdirectory of `/guilds`.
* refactor: Move reaction-related helper functions into the /reactions subdirectory.
* refactor: Move `getApplicationInfo.ts` into the `/misc` directory.
* refactor: Move voice-related helper functions from `/voice` to `/guilds/voice`.
* fix: Update and simplify type imports.
* refactor!(helpers): Rename helpers to match Discord API. Create a 1:1 helper-to-endpoint correspondence. (#2427)
* refactor: Move stage instance helper functions into `/stages` subdirectory.
* refactor: Move `followChannel.ts` to `/announcements` subdirectory.
* refactor: Move `updateVoiceState.ts` to `/guilds` directory.
* refactor: Move `getPins.ts` to `/messages` directory.
* refactor: Move voice-related helper functions into `/voice` subdirectory.
* refactor: Rename `/scheduledEvents` to `/events`.
* refactor: Move widget-related helper functions into `/widgets` subdirectory.
* refactor: Make `/integrations` a subdirectory of `/guilds`.
* refactor: Move helper functions related to interaction responses into the `/responses` subdirectory.
* refactor: Move `verifySignature.ts` to `/util` directory.
* refactor: Move `getChannelInvites.ts` to `/channels` directory.
* refactor: Make `/invites` a subdirectory of `/guilds`.
* refactor: Move reaction-related helper functions into the /reactions subdirectory.
* refactor: Move `getApplicationInfo.ts` into the `/misc` directory.
* refactor: Move voice-related helper functions from `/voice` to `/guilds/voice`.
* fix: Update and simplify type imports.
* refactor: Rename `followChannel` -> `followAnnouncementChannel`.
* refactor: Rename `createForumPost` -> `startForumThread`.
* refactor: Normalise keyword `update` -> `edit`.
* refactor: Rename `addToThread` -> `addThreadMember`.
* refactor: Rename `ChannelOverwrite` -> `ChannelPermissions`.
* refactor: Rename `startTyping` -> `triggerTypingIndicator`.
* refactor: Rename `swapChannels` -> `editChannelPositions`.
* refactor: Rename `getPins` -> `getPinnedMessages`.
* refactor: Rename `publish` -> `crosspost`.
* refactor: Normalise keyword `modify` -> `edit`.
* refactor: Normalise naming.
* fix: Imports.
* style: Remove empty object.
* refactor: Split `getArchivedThreads` into three files for public, private and private joined threads.
* refactor: Split `getApplicationCommands` into two files, for guild and global commands respectively.
* refactor: Split `getApplicationCommand` into two files, for guild and global commands respectively.
* fmt: Organise imports.
* misc: Include application command reverse transformer.
* misc: Make ordering of fields match up with the Discord API.
* fix: Add missing payload properties.
* refactor: Split `createApplicationCommand` into two files, for guild and global commands respectively.
* refactor: Split `upsertApplicationCommand` into two files, for guild and global commands respectively.
* refactor: Split `upsertApplicationCommands` into two files, for guild and global commands respectively.
* fix: Update exports.
* refactor: Split `deleteApplicationCommand` into two files, for guild and global commands respectively.
* fix: Add missing exports.
* refactor: Separate file into two to make 1 file correspond to 1 endpoint.
* refactor: Separate file into two to make 1 file correspond to 1 endpoint.
* feat: Create `getInteractionResponse.ts`.
* refactor: Matching API: `InteractionResponse` -> `FollowupMessage`.
* refactor: Separate file into two to make 1 file correspond to 1 endpoint.
* refactor: Remove `/followups` directory in favour of newly created files in `/responses`.
* refactor: Rename `bot`/`self` -> `own`, `others` -> `user`.
* refactor: Split function into `deleteOwnReaction` and `deleteUserReaction`.
* refactor: Reduce code duplication in processing reaction string.
* refactor: Separate file into two to make 1 file correspond to 1 endpoint.
* refactor: Rename function name.
* misc: Add aliases to functions to reduce breakage.
* refactor: Rename `startForumThread` -> `createForumThread`.
* misc: Move types from helper file to `/types` and create transformer.
* fix: Imports.
* style: Rename parameter `command` -> `payload`.
* feat: Create interaction response transformer.
* misc: Adapt code to use the interaction response transformer.
* misc: Adapt code to use interaction response transformer.
* refactor: Re-include the keyword `Override` in the file + function names.
* refactor: Rename `updateVoiceState` -> `editVoiceState` for consistency reasons.
Co-authored-by: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com>
* BREAKING: docs(helpers): Document helper functions. (#2437)
* refactor: Move stage instance helper functions into `/stages` subdirectory.
* refactor: Move `followChannel.ts` to `/announcements` subdirectory.
* refactor: Move `updateVoiceState.ts` to `/guilds` directory.
* refactor: Move `getPins.ts` to `/messages` directory.
* refactor: Move voice-related helper functions into `/voice` subdirectory.
* refactor: Rename `/scheduledEvents` to `/events`.
* refactor: Move widget-related helper functions into `/widgets` subdirectory.
* refactor: Make `/integrations` a subdirectory of `/guilds`.
* refactor: Move helper functions related to interaction responses into the `/responses` subdirectory.
* refactor: Move `verifySignature.ts` to `/util` directory.
* refactor: Move `getChannelInvites.ts` to `/channels` directory.
* refactor: Make `/invites` a subdirectory of `/guilds`.
* refactor: Move reaction-related helper functions into the /reactions subdirectory.
* refactor: Move `getApplicationInfo.ts` into the `/misc` directory.
* refactor: Move voice-related helper functions from `/voice` to `/guilds/voice`.
* fix: Update and simplify type imports.
* refactor: Rename `followChannel` -> `followAnnouncementChannel`.
* refactor: Rename `createForumPost` -> `startForumThread`.
* refactor: Normalise keyword `update` -> `edit`.
* refactor: Rename `addToThread` -> `addThreadMember`.
* refactor: Rename `ChannelOverwrite` -> `ChannelPermissions`.
* refactor: Rename `startTyping` -> `triggerTypingIndicator`.
* refactor: Rename `swapChannels` -> `editChannelPositions`.
* refactor: Rename `getPins` -> `getPinnedMessages`.
* refactor: Rename `publish` -> `crosspost`.
* refactor: Normalise keyword `modify` -> `edit`.
* refactor: Normalise naming.
* fix: Imports.
* style: Remove empty object.
* refactor: Split `getArchivedThreads` into three files for public, private and private joined threads.
* refactor: Split `getApplicationCommands` into two files, for guild and global commands respectively.
* refactor: Split `getApplicationCommand` into two files, for guild and global commands respectively.
* fmt: Organise imports.
* misc: Include application command reverse transformer.
* misc: Make ordering of fields match up with the Discord API.
* fix: Add missing payload properties.
* refactor: Split `createApplicationCommand` into two files, for guild and global commands respectively.
* refactor: Split `upsertApplicationCommand` into two files, for guild and global commands respectively.
* refactor: Split `upsertApplicationCommands` into two files, for guild and global commands respectively.
* fix: Update exports.
* refactor: Split `deleteApplicationCommand` into two files, for guild and global commands respectively.
* fix: Add missing exports.
* refactor: Separate file into two to make 1 file correspond to 1 endpoint.
* refactor: Separate file into two to make 1 file correspond to 1 endpoint.
* feat: Create `getInteractionResponse.ts`.
* refactor: Matching API: `InteractionResponse` -> `FollowupMessage`.
* refactor: Separate file into two to make 1 file correspond to 1 endpoint.
* refactor: Remove `/followups` directory in favour of newly created files in `/responses`.
* refactor: Rename `bot`/`self` -> `own`, `others` -> `user`.
* refactor: Split function into `deleteOwnReaction` and `deleteUserReaction`.
* refactor: Reduce code duplication in processing reaction string.
* refactor: Separate file into two to make 1 file correspond to 1 endpoint.
* refactor: Rename function name.
* misc: Add aliases to functions to reduce breakage.
* refactor: Rename `startForumThread` -> `createForumThread`.
* misc: Move types from helper file to `/types` and create transformer.
* fix: Imports.
* style: Rename parameter `command` -> `payload`.
* feat: Create interaction response transformer.
* misc: Adapt code to use the interaction response transformer.
* misc: Adapt code to use interaction response transformer.
* docs: Document announcement channel helpers.
* docs: Document forum channel helpers.
* docs: Document stage instance helpers.
* misc: Update wording.
* docs: Document thread channel helpers.
* refactor: Re-include the keyword `Override` in the file + function names.
* refactor: Rename `updateVoiceState` -> `editVoiceState` for consistency reasons.
* docs: Document channel helpers.
* docs: Use `parameters` instead of `options` for descriptions.
* docs: Document guild discovery helpers.
* docs: Document emoji helpers.
* docs: Add missing information about which gateway events are fired.
* docs: Document auto moderation helpers.
* docs: Document scheduled event helpers.
* docs: Document integration helpers.
* docs: Document invite helpers.
* refactor: Rename `editWidget` -> `editWidgetSettings`.
* docs: Document guild widget helpers.
* docs: 'event' -> 'gateway event'.
* refactor: Rename `getAuditLogs` -> `getAuditLog`.
* docs: Document guild helpers.
* refactor: Rename `upsert*ApplicationCommand` -> `edit*ApplicationCommand`.
* docs: Document application command helpers.
* docs: Improve consistency in indentation.
* docs: Document interaction response + follow-up message helpers.
* docs: Document gateway event firings for endpoints.
* refactor: Delete `editBotNickname` due to being a subset of `editMember`.
* docs: Fix inconsistency.
* docs: Document member helpers.
* docs: Document reaction helpers.
* docs: Improve consistency.
* docs: Document message helpers.
* docs: Document role helpers.
* docs: Document guild template helpers.
* docs: Fix incorrect gateway event.
* refactor: Rename `sendWebhookMessage` -> `executeWebhook`.
* docs: Document webhook helpers.
* docs: Document voice helpers.
* fmt: Run Deno formatter.
* docs: Improve consistency.
* refactor: Rename the `/widgets` directory to `/widget`.
* fmt: Run Deno formatter.
* misc: Re-add the deleted `editBotNickname()` helper. (#2443)
* refactor: Move stage instance helper functions into `/stages` subdirectory.
* refactor: Move `followChannel.ts` to `/announcements` subdirectory.
* refactor: Move `updateVoiceState.ts` to `/guilds` directory.
* refactor: Move `getPins.ts` to `/messages` directory.
* refactor: Move voice-related helper functions into `/voice` subdirectory.
* refactor: Rename `/scheduledEvents` to `/events`.
* refactor: Move widget-related helper functions into `/widgets` subdirectory.
* refactor: Make `/integrations` a subdirectory of `/guilds`.
* refactor: Move helper functions related to interaction responses into the `/responses` subdirectory.
* refactor: Move `verifySignature.ts` to `/util` directory.
* refactor: Move `getChannelInvites.ts` to `/channels` directory.
* refactor: Make `/invites` a subdirectory of `/guilds`.
* refactor: Move reaction-related helper functions into the /reactions subdirectory.
* refactor: Move `getApplicationInfo.ts` into the `/misc` directory.
* refactor: Move voice-related helper functions from `/voice` to `/guilds/voice`.
* fix: Update and simplify type imports.
* refactor: Rename `followChannel` -> `followAnnouncementChannel`.
* refactor: Rename `createForumPost` -> `startForumThread`.
* refactor: Normalise keyword `update` -> `edit`.
* refactor: Rename `addToThread` -> `addThreadMember`.
* refactor: Rename `ChannelOverwrite` -> `ChannelPermissions`.
* refactor: Rename `startTyping` -> `triggerTypingIndicator`.
* refactor: Rename `swapChannels` -> `editChannelPositions`.
* refactor: Rename `getPins` -> `getPinnedMessages`.
* refactor: Rename `publish` -> `crosspost`.
* refactor: Normalise keyword `modify` -> `edit`.
* refactor: Normalise naming.
* fix: Imports.
* style: Remove empty object.
* refactor: Split `getArchivedThreads` into three files for public, private and private joined threads.
* refactor: Split `getApplicationCommands` into two files, for guild and global commands respectively.
* refactor: Split `getApplicationCommand` into two files, for guild and global commands respectively.
* fmt: Organise imports.
* misc: Include application command reverse transformer.
* misc: Make ordering of fields match up with the Discord API.
* fix: Add missing payload properties.
* refactor: Split `createApplicationCommand` into two files, for guild and global commands respectively.
* refactor: Split `upsertApplicationCommand` into two files, for guild and global commands respectively.
* refactor: Split `upsertApplicationCommands` into two files, for guild and global commands respectively.
* fix: Update exports.
* refactor: Split `deleteApplicationCommand` into two files, for guild and global commands respectively.
* fix: Add missing exports.
* refactor: Separate file into two to make 1 file correspond to 1 endpoint.
* refactor: Separate file into two to make 1 file correspond to 1 endpoint.
* feat: Create `getInteractionResponse.ts`.
* refactor: Matching API: `InteractionResponse` -> `FollowupMessage`.
* refactor: Separate file into two to make 1 file correspond to 1 endpoint.
* refactor: Remove `/followups` directory in favour of newly created files in `/responses`.
* refactor: Rename `bot`/`self` -> `own`, `others` -> `user`.
* refactor: Split function into `deleteOwnReaction` and `deleteUserReaction`.
* refactor: Reduce code duplication in processing reaction string.
* refactor: Separate file into two to make 1 file correspond to 1 endpoint.
* refactor: Rename function name.
* misc: Add aliases to functions to reduce breakage.
* refactor: Rename `startForumThread` -> `createForumThread`.
* misc: Move types from helper file to `/types` and create transformer.
* fix: Imports.
* style: Rename parameter `command` -> `payload`.
* feat: Create interaction response transformer.
* misc: Adapt code to use the interaction response transformer.
* misc: Adapt code to use interaction response transformer.
* docs: Document announcement channel helpers.
* docs: Document forum channel helpers.
* docs: Document stage instance helpers.
* misc: Update wording.
* docs: Document thread channel helpers.
* refactor: Re-include the keyword `Override` in the file + function names.
* refactor: Rename `updateVoiceState` -> `editVoiceState` for consistency reasons.
* docs: Document channel helpers.
* docs: Use `parameters` instead of `options` for descriptions.
* docs: Document guild discovery helpers.
* docs: Document emoji helpers.
* docs: Add missing information about which gateway events are fired.
* docs: Document auto moderation helpers.
* docs: Document scheduled event helpers.
* docs: Document integration helpers.
* docs: Document invite helpers.
* refactor: Rename `editWidget` -> `editWidgetSettings`.
* docs: Document guild widget helpers.
* docs: 'event' -> 'gateway event'.
* refactor: Rename `getAuditLogs` -> `getAuditLog`.
* docs: Document guild helpers.
* refactor: Rename `upsert*ApplicationCommand` -> `edit*ApplicationCommand`.
* docs: Document application command helpers.
* docs: Improve consistency in indentation.
* docs: Document interaction response + follow-up message helpers.
* docs: Document gateway event firings for endpoints.
* refactor: Delete `editBotNickname` due to being a subset of `editMember`.
* docs: Fix inconsistency.
* docs: Document member helpers.
* docs: Document reaction helpers.
* docs: Improve consistency.
* docs: Document message helpers.
* docs: Document role helpers.
* docs: Document guild template helpers.
* docs: Fix incorrect gateway event.
* refactor: Rename `sendWebhookMessage` -> `executeWebhook`.
* docs: Document webhook helpers.
* docs: Document voice helpers.
* fmt: Run Deno formatter.
* docs: Improve consistency.
* refactor: Rename the `/widgets` directory to `/widget`.
* fmt: Run Deno formatter.
* feat: Re-add `editBotNickname.ts`.
* Update helpers/members/editBotNickname.ts
Co-authored-by: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com>
* fix: tests
* fix: bot member tests
* fix: remove submode
* fix: edit bot member returns full member
Co-authored-by: Dorian Oszczęda <vxern@wordcollector.co.uk>
|
2022-09-08 20:12:34 -05:00 |
|
Skillz4Killz
|
15f34f6d17
|
Update CONTRIBUTING.md (#2435)
* Update CONTRIBUTING.md
* Update CONTRIBUTING.md
|
2022-09-07 17:52:44 -05:00 |
|
Skillz4Killz
|
c27094d9fe
|
fix: fmt
|
2022-09-05 19:03:34 +00:00 |
|
Skillz4Killz
|
eec21d003d
|
fix: cleanup proxy rest errors
|
2022-09-05 18:10:19 +00:00 |
|
Skillz4Killz
|
6db8327dc0
|
fix: remove unused import
|
2022-09-05 17:59:18 +00:00 |
|
Skillz4Killz
|
9c1b47c4a5
|
fix: broken typings in automod
|
2022-09-05 17:59:01 +00:00 |
|
Skillz4Killz
|
8800beb684
|
fix: type issues
|
2022-09-03 17:01:13 +00:00 |
|
Skillz4Killz
|
ae669e28fe
|
release: v13
|
2022-08-31 16:28:02 +00:00 |
|
Skillz4Killz
|
19141fbe23
|
fix: stopbot should cleanly shutdown Closes #2381
|
2022-08-31 16:23:47 +00:00 |
|
Skillz4Killz
|
4a3feaf5d6
|
fix: fmt
|
2022-08-31 16:19:49 +00:00 |
|
Skillz4Killz
|
40621a215a
|
feat: untested resharder
|
2022-08-31 16:19:14 +00:00 |
|
Skillz4Killz
|
176b85fa80
|
fix: slight ping bug
|
2022-08-31 16:19:03 +00:00 |
|
Skillz4Killz
|
d2af3ae896
|
fix: cleanup
|
2022-08-31 16:18:51 +00:00 |
|
Skillz4Killz
|
26803a33af
|
fix: cache members
|
2022-08-30 17:41:02 +00:00 |
|
Skillz4Killz
|
5e438da5cb
|
Merge branch 'main' of https://github.com/discordeno/discordeno into main
|
2022-08-30 16:40:06 +00:00 |
|
Skillz4Killz
|
7f8abb7862
|
fix: annoying ts requires .js imports now in node16
|
2022-08-30 16:40:02 +00:00 |
|
Skillz4Killz
|
cb1a209dd4
|
Merge branch 'main' of https://github.com/discordeno/discordeno into main
|
2022-08-28 23:09:22 +00:00 |
|
Skillz4Killz
|
9a823cb0f5
|
fix: prisma requests and typings
|
2022-08-28 23:09:18 +00:00 |
|
Skillz4Killz
|
8c4c51e8f1
|
fix: fmt
|
2022-08-28 11:34:38 +00:00 |
|
Skillz4Killz
|
ac82931e98
|
release: rc51 several small bug fixes and improvements to typings
|
2022-08-28 11:33:35 +00:00 |
|
Skillz4Killz
|
8c5fcbfefa
|
fix: double Invite declarations
|
2022-08-28 11:29:25 +00:00 |
|
Skillz4Killz
|
d0b0884b89
|
fix: broken unit tests
|
2022-08-28 11:24:05 +00:00 |
|
Skillz4Killz
|
e064aa2aab
|
fix: fmt
|
2022-08-28 11:19:13 +00:00 |
|
Skillz4Killz
|
9d6cc2f210
|
Merge branch 'main' of https://github.com/discordeno/discordeno into main
|
2022-08-28 11:18:53 +00:00 |
|
Skillz4Killz
|
6aafccacb8
|
feat: bot layer for big bot temp(incomplete)
|
2022-08-28 11:18:48 +00:00 |
|
Skillz4Killz
|
94d5b20339
|
fix: description is not required for ctx cmds
|
2022-08-28 11:17:43 +00:00 |
|
Skillz4Killz
|
dc22c06912
|
fix: missing util exports
|
2022-08-28 11:10:41 +00:00 |
|
Skillz4Killz
|
becef7bc46
|
release: rc50 Embeds package
|
2022-08-26 23:47:06 +00:00 |
|
Skillz4Killz
|
b8b961bdd4
|
fix: fmt
|
2022-08-26 23:46:24 +00:00 |
|
Skillz4Killz
|
196bcb1d70
|
feat: Embeds package
|
2022-08-26 23:46:06 +00:00 |
|
Skillz4Killz
|
1e21f95655
|
feat: big bot gateway proxy
|
2022-08-26 17:51:41 +00:00 |
|
Skillz4Killz
|
497132068d
|
release: rc49 logger package
|
2022-08-26 17:45:28 +00:00 |
|
Skillz4Killz
|
8d7eb05a28
|
fix: fmt
|
2022-08-26 17:43:55 +00:00 |
|
Skillz4Killz
|
809c34f56b
|
fix: missing packages/mod.ts file
|
2022-08-26 17:42:57 +00:00 |
|
Skillz4Killz
|
23dfe04dfa
|
feat: add logger package
|
2022-08-26 17:37:32 +00:00 |
|
Skillz4Killz
|
9183ade29d
|
fix: type error in rest proxy
|
2022-08-26 02:02:39 +00:00 |
|
Skillz4Killz
|
8e95685425
|
release: ci fixes release rc48
|
2022-08-26 01:59:40 +00:00 |
|
Skillz4Killz
|
7d19b42cd8
|
fix: fmt
|
2022-08-26 01:55:03 +00:00 |
|
Skillz4Killz
|
e0038f67ca
|
fix: invalid json format in deno.json
|
2022-08-26 01:54:15 +00:00 |
|
Skillz4Killz
|
ed262021ca
|
fix: more invalid ci files
|
2022-08-26 01:52:58 +00:00 |
|
Skillz4Killz
|
711b2c10c7
|
fix: ci invalid template caching
|
2022-08-26 01:46:32 +00:00 |
|
Skillz4Killz
|
24af65a676
|
release: rc47 support easier rest analytics
|
2022-08-26 00:30:01 +00:00 |
|
Skillz4Killz
|
4cf3e61e96
|
feat: big bot rest analytics
|
2022-08-26 00:29:25 +00:00 |
|
Skillz4Killz
|
23bd99db7e
|
chore: small readme fixes
|
2022-08-25 20:20:01 +00:00 |
|
Skillz4Killz
|
84d3ca2575
|
fix: remove old files
|
2022-08-25 20:14:57 +00:00 |
|
Skillz4Killz
|
61614babba
|
fix: big bot template rest proxy
|
2022-08-25 20:14:25 +00:00 |
|
Skillz4Killz
|
b343ef70ab
|
release: rc46 to prepare templates
|
2022-08-25 19:16:32 +00:00 |
|
Skillz4Killz
|
3100f2cb66
|
fix: fmt
|
2022-08-25 18:39:20 +00:00 |
|
Skillz4Killz
|
270116a474
|
BREAKING: last remaining major break
|
2022-08-25 18:37:09 +00:00 |
|
Skillz4Killz
|
67230bc95a
|
fix: edge case for large bot crashes Closes #2311
|
2022-08-25 18:33:25 +00:00 |
|
Skillz4Killz
|
cdd160d5eb
|
Merge branch 'main' of https://github.com/discordeno/discordeno into main
|
2022-08-25 18:02:07 +00:00 |
|
Skillz4Killz
|
88c0835953
|
fix: automod reason support Closes #2334
|
2022-08-25 18:02:03 +00:00 |
|
Skillz4Killz
|
b89d3ca078
|
fix: missing application id Closes #2337
|
2022-08-25 15:39:41 +00:00 |
|
Skillz4Killz
|
97c344783b
|
fix: get invite helper. Closes #2389
|
2022-08-25 15:21:07 +00:00 |
|
Skillz4Killz
|
5afe691a0b
|
fix: fmt
|
2022-08-24 05:25:34 +00:00 |
|
Skillz4Killz
|
359db97a39
|
fix: pass tests
|
2022-08-24 05:25:00 +00:00 |
|
Skillz4Killz
|
8282af16ac
|
fix: type error
|
2022-08-23 15:12:26 +00:00 |
|
Skillz4Killz
|
2286d31468
|
fix: delete invisible
|
2022-08-23 15:12:20 +00:00 |
|
Skillz4Killz
|
f9fb29d702
|
fix: missing reverse transformers
|
2022-08-23 15:02:31 +00:00 |
|
Skillz4Killz
|
b16a3136cf
|
Merge branch 'main' of https://github.com/discordeno/discordeno into main
|
2022-08-23 14:56:51 +00:00 |
|
Skillz4Killz
|
e843b72edb
|
fix: type errors
|
2022-08-23 14:56:48 +00:00 |
|
Skillz4Killz
|
f57b2274e0
|
fix: delete the typing channel
|
2022-06-18 23:49:25 +00:00 |
|
Skillz4Killz
|
1943fab075
|
fix: import error
|
2022-06-18 23:44:17 +00:00 |
|
Skillz4Killz
|
ffe7cdbc6f
|
feat: base plugin lib idea (#2308)
* feat: base plugin lib idea
* fix: stuff
* fmt
* fix: imports and exports
* fix: errors & tests
* fix: remove logs
|
2022-06-18 18:46:37 -04:00 |
|
Skillz4Killz
|
181f39bc2b
|
Merge branch 'main' of https://github.com/discordeno/discordeno into main
|
2022-06-17 21:20:12 +00:00 |
|
Skillz4Killz
|
c8223b5768
|
fix: forgot to push this
|
2022-06-17 21:20:10 +00:00 |
|
Skillz4Killz
|
aa2e5131ef
|
fix: test local queue idea (#2301)
* fix: test local queue idea
* I HATE STUPIDEST DENO FMT
* try new error
* fix: url
* fix: with proper headers
* fix: cleanup
|
2022-06-17 13:01:26 -04:00 |
|
Skillz4Killz
|
5af4c2066e
|
fix: propertie changes
|
2022-06-16 20:47:25 +00:00 |
|
Skillz4Killz
|
76e667422b
|
fix: emoty lines
|
2022-06-15 17:48:57 +00:00 |
|
Skillz4Killz
|
d3caa2d989
|
fix: remove unused import
|
2022-06-15 17:48:50 +00:00 |
|
Skillz4Killz
|
91e0af3074
|
fix: move type to types folder
|
2022-06-15 17:48:41 +00:00 |
|
Skillz4Killz
|
93dc42c353
|
fix: test with import type
|
2022-06-15 17:46:54 +00:00 |
|
Skillz4Killz
|
8708fb3b2f
|
fix: remove unused imports
|
2022-06-15 17:45:12 +00:00 |
|
Skillz4Killz
|
decb2e23c0
|
BREAKING(constantts): move routes to separate file
|
2022-06-15 17:31:49 +00:00 |
|
Skillz4Killz
|
4a6b8c9f26
|
fix: remove rest object(v12 or v11 stuff)
|
2022-06-15 17:03:13 +00:00 |
|
Skillz4Killz
|
a8da4571cd
|
Merge branch 'main' of https://github.com/discordeno/discordeno into main
|
2022-06-15 15:34:02 +00:00 |
|
Skillz4Killz
|
2b0213c425
|
BREAKING(rest): move RestManager to restManager file
|
2022-06-15 15:34:00 +00:00 |
|
Skillz4Killz
|
db29251f92
|
fix(tests): getActiveThreads should not edit first
|
2022-06-15 15:33:23 +00:00 |
|
 
|
ccd8506c81
|
Auto mod blame wolf (#2267)
* feat(meister): add automod
* fix(test); rest error with code
* fix(rest): log error nicely
* fix(test): disable benchmark test until gateway rewrite
* fix(automod): enum should start with 1
* fix(helper): better undefined handling of metadata
* fix(transfomrers): automod transformers
* fix(tests): add some automod tests
* Update types/shared.ts
Co-authored-by: meister03 <69507874+meister03@users.noreply.github.com>
* fix: changes discord made recently
* fix(fmt): i hate deno fmt but i love itoh
Co-authored-by: meister03 <69507874+meister03@users.noreply.github.com>
Co-authored-by: LTS20050703 <87189679+lts20050703@users.noreply.github.com>
|
2022-06-15 11:25:53 -04:00 |
|
Skillz4Killz
|
9e61b7366f
|
Merge branch 'main' of https://github.com/discordeno/discordeno into main
|
2022-06-15 13:47:12 +00:00 |
|
Skillz4Killz
|
0c3818a0af
|
BREAKING(types): remove JsonErrorCodes
|
2022-06-15 13:47:08 +00:00 |
|
Skillz4Killz
|
74666ba44c
|
fix(transformer): partial user in presence
|
2022-06-15 13:37:57 +00:00 |
|
Skillz4Killz
|
960b26276f
|
stupid fmt
|
2022-06-08 16:28:16 +00:00 |
|
Skillz4Killz
|
e7191c7eef
|
fix: add autofmt
|
2022-06-08 13:35:40 +00:00 |
|
Skillz4Killz
|
e840b50319
|
fix: disable benchmarks
|
2022-06-08 13:30:37 +00:00 |
|
Skillz4Killz
|
fb6f73d124
|
fix: benchmark gateway rewrite bugs
|
2022-06-08 12:04:15 +00:00 |
|
Skillz4Killz
|
fd97bb7f50
|
fmt
|
2022-06-08 11:42:08 +00:00 |
|
Skillz4Killz
|
cdc9ba5b14
|
Update pr_tests.yml
|
2022-06-05 21:16:52 -04:00 |
|
Skillz4Killz
|
226a1e0c80
|
fix(cache): cache plugin using old gateway model
|
2022-06-04 20:47:10 +00:00 |
|
Skillz4Killz
|
4ae4abbf11
|
fix(fmt): time to delete deno fmt
|
2022-06-04 15:58:22 +00:00 |
|
Skillz4Killz
|
a9edf4c29a
|
fix(test): import not auto updated silly deno
|
2022-06-04 15:56:48 +00:00 |
|
Skillz4Killz
|
2300584404
|
Update README.md
|
2022-06-04 11:41:54 -04:00 |
|
Skillz4Killz
|
e9e8fa9c25
|
fix(test): add check of dm message exist
|
2022-05-31 15:12:44 +00:00 |
|
Skillz4Killz
|
6e0b53e712
|
ci(tests): fix testss name in ci
|
2022-05-31 14:23:01 +00:00 |
|
Skillz4Killz
|
0ab109fc43
|
fix(tests): rename testss to tests folder
|
2022-05-31 14:22:12 +00:00 |
|
Skillz4Killz
|
0e6e5d8649
|
fix(tests): remove old tests folder
|
2022-05-31 14:21:51 +00:00 |
|
Skillz4Killz
|
3af25bcc1d
|
BREAKING(helpers): editBotNickname can return undefined
|
2022-05-31 14:21:16 +00:00 |
|