Compare commits

...

3 Commits

Author SHA1 Message Date
Lio Young ba66b439f7 update lux 2021-07-29 00:06:53 +02:00
Lio Young 14cba29b39 add stuff for modulus 2021-07-28 23:55:27 +02:00
Lio Young c7c396e8da add feature types 2021-07-28 23:55:13 +02:00
5 changed files with 31 additions and 10 deletions

2
lux

@ -1 +1 @@
Subproject commit a72ea6249854928991a0a6e6b35f7f472c38d55a
Subproject commit 5e4353759d897e9b1dc9b0a7a0a4b6bebe5c530d

15
package-lock.json generated
View File

@ -10,6 +10,7 @@
"dependencies": {
"@supabase/supabase-js": "^1.7.7",
"@thaldrin/sourcefinder": "^1.0.3",
"axios": "^0.21.1",
"chalk": "^4.1.0",
"discord.js": "^12.5.3",
"figlet": "^1.5.0",
@ -25,7 +26,7 @@
"devDependencies": {
"@types/figlet": "^1.5.1",
"@types/js-yaml": "^4.0.2",
"@types/node": "^14.14.37",
"@types/node": "^14.17.6",
"@types/roll": "^1.2.0",
"@types/ws": "^7.4.1",
"typescript": "^4.3.5"
@ -117,9 +118,9 @@
"dev": true
},
"node_modules/@types/node": {
"version": "14.14.37",
"resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.37.tgz",
"integrity": "sha512-XYmBiy+ohOR4Lh5jE379fV2IU+6Jn4g5qASinhitfyO71b/sCo6MKsMLF5tc7Zf2CE8hViVQyYSobJNke8OvUw=="
"version": "14.17.6",
"resolved": "https://registry.npmjs.org/@types/node/-/node-14.17.6.tgz",
"integrity": "sha512-iBxsxU7eswQDGhlr3AiamBxOssaYxbM+NKXVil8jg9yFXvrfEFbDumLD/2dMTB+zYyg7w+Xjt8yuxfdbUHAtcQ=="
},
"node_modules/@types/roll": {
"version": "1.2.0",
@ -1393,9 +1394,9 @@
"dev": true
},
"@types/node": {
"version": "14.14.37",
"resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.37.tgz",
"integrity": "sha512-XYmBiy+ohOR4Lh5jE379fV2IU+6Jn4g5qASinhitfyO71b/sCo6MKsMLF5tc7Zf2CE8hViVQyYSobJNke8OvUw=="
"version": "14.17.6",
"resolved": "https://registry.npmjs.org/@types/node/-/node-14.17.6.tgz",
"integrity": "sha512-iBxsxU7eswQDGhlr3AiamBxOssaYxbM+NKXVil8jg9yFXvrfEFbDumLD/2dMTB+zYyg7w+Xjt8yuxfdbUHAtcQ=="
},
"@types/roll": {
"version": "1.2.0",

View File

@ -28,6 +28,7 @@
"dependencies": {
"@supabase/supabase-js": "^1.7.7",
"@thaldrin/sourcefinder": "^1.0.3",
"axios": "^0.21.1",
"chalk": "^4.1.0",
"discord.js": "^12.5.3",
"figlet": "^1.5.0",
@ -43,7 +44,7 @@
"devDependencies": {
"@types/figlet": "^1.5.1",
"@types/js-yaml": "^4.0.2",
"@types/node": "^14.14.37",
"@types/node": "^14.17.6",
"@types/roll": "^1.2.0",
"@types/ws": "^7.4.1",
"typescript": "^4.3.5"

@ -1 +1 @@
Subproject commit 8d6d5c95bd4ef5eac57790191b7ea7dcdf8341bf
Subproject commit 5ad0bddb810202eee398c4d519d9c1b88de78eda

View File

@ -1,6 +1,25 @@
import { SupabaseClient } from "@supabase/supabase-js";
import { Client, Guild, GuildMember, Message, NewsChannel, TextChannel, User } from "discord.js";
import Thaldrin from "../handler/client/Client";
export type Features =
| "shortlinks"
| "shortlink"
| "sl"
| "sauce"
| "source"
| "sourcefinder"
| "sf"
| "embeds"
| "embedimages"
| "rp"
| "interactiontext"
export type Server = {
readonly id: string
server_id: string