@fluxerjs/core 1.0.6 → 1.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. package/dist/{Channel-2WNJ445K.mjs → Channel-TWPDKW2P.mjs} +3 -1
  2. package/dist/{ClientUser-J6HQVSDJ.mjs → ClientUser-2K2BACK7.mjs} +1 -2
  3. package/dist/{Guild-GOQZ7XP4.mjs → Guild-CMZGA6DW.mjs} +3 -1
  4. package/dist/GuildMember-DW2N6ITI.mjs +7 -0
  5. package/dist/{Webhook-NUQCJAWZ.mjs → Message-G2QIKZQK.mjs} +3 -3
  6. package/dist/MessageReaction-XRPYZDSC.mjs +7 -0
  7. package/dist/Role-SVLWIAMN.mjs +7 -0
  8. package/dist/{Webhook-2RHBXH7R.mjs → Webhook-2MQESB7Z.mjs} +1 -1
  9. package/dist/chunk-4GCZFOS5.mjs +86 -0
  10. package/dist/chunk-CO5EL5LH.mjs +168 -0
  11. package/dist/chunk-CZIO2D7F.mjs +207 -0
  12. package/dist/chunk-HBF5QEDH.mjs +42 -0
  13. package/dist/chunk-JVEOQFUX.mjs +52 -0
  14. package/dist/chunk-SQVCCSNN.mjs +41 -0
  15. package/dist/chunk-TJVZEILY.mjs +120 -0
  16. package/dist/{chunk-BUEXP5SZ.mjs → chunk-ZGMM6IPQ.mjs} +12 -3
  17. package/dist/index.d.mts +539 -73
  18. package/dist/index.d.ts +539 -73
  19. package/dist/index.js +1125 -355
  20. package/dist/index.mjs +520 -194
  21. package/package.json +27 -8
  22. package/dist/Channel-HM2UY4DN.mjs +0 -17
  23. package/dist/Channel-IKL3SJXN.mjs +0 -17
  24. package/dist/Channel-KILNV5V3.mjs +0 -17
  25. package/dist/Channel-TOAQGSRX.mjs +0 -17
  26. package/dist/Channel-VENHOL7S.mjs +0 -17
  27. package/dist/ClientUser-RNDKHQ3Z.mjs +0 -9
  28. package/dist/Guild-36EGAAEW.mjs +0 -8
  29. package/dist/Guild-CA3W6DOD.mjs +0 -8
  30. package/dist/Guild-NHNQ5TIA.mjs +0 -8
  31. package/dist/Guild-ZOFF5LFR.mjs +0 -8
  32. package/dist/GuildMember-RGVPVUAG.mjs +0 -9
  33. package/dist/GuildMember-XF7K2R45.mjs +0 -9
  34. package/dist/Message-23Z3RPCZ.mjs +0 -9
  35. package/dist/Message-33APPS76.mjs +0 -9
  36. package/dist/Message-PZUU7ZFR.mjs +0 -9
  37. package/dist/Message-XB5WNMHL.mjs +0 -9
  38. package/dist/chunk-3CNUPFDI.mjs +0 -59
  39. package/dist/chunk-4DBGMFOQ.mjs +0 -14
  40. package/dist/chunk-6CEMF2LO.mjs +0 -14
  41. package/dist/chunk-6EBNOON4.mjs +0 -86
  42. package/dist/chunk-72OY7B3D.mjs +0 -72
  43. package/dist/chunk-7FYM4D2E.mjs +0 -50
  44. package/dist/chunk-7GZN6JXT.mjs +0 -50
  45. package/dist/chunk-7H3TKJUT.mjs +0 -53
  46. package/dist/chunk-EF32ILJL.mjs +0 -102
  47. package/dist/chunk-F2EEQP5O.mjs +0 -86
  48. package/dist/chunk-GUNWHOQO.mjs +0 -42
  49. package/dist/chunk-L25ON7WB.mjs +0 -52
  50. package/dist/chunk-LBBIQOSH.mjs +0 -53
  51. package/dist/chunk-OHIHIQAS.mjs +0 -102
  52. package/dist/chunk-P4IRDGB4.mjs +0 -43
  53. package/dist/chunk-QDCFQF6J.mjs +0 -36
  54. package/dist/chunk-QDNFJVVE.mjs +0 -70
  55. package/dist/chunk-SW6KNICI.mjs +0 -52
  56. package/dist/chunk-TE5IC7IP.mjs +0 -36
  57. package/dist/chunk-WFONGZGK.mjs +0 -42
  58. package/dist/chunk-XXCBJJZE.mjs +0 -88
  59. package/dist/chunk-ZHRQQZ4X.mjs +0 -102
@@ -1,42 +0,0 @@
1
- import {
2
- CDN_URL
3
- } from "./chunk-HQMYRYMY.mjs";
4
- import {
5
- Base
6
- } from "./chunk-XNS4O6QJ.mjs";
7
-
8
- // src/structures/Guild.ts
9
- import { Collection } from "@fluxer/collection";
10
- var Guild = class extends Base {
11
- client;
12
- id;
13
- name;
14
- icon;
15
- banner;
16
- ownerId;
17
- members = new Collection();
18
- channels = new Collection();
19
- constructor(client, data) {
20
- super();
21
- this.client = client;
22
- this.id = data.id;
23
- this.name = data.name;
24
- this.icon = data.icon ?? null;
25
- this.banner = data.banner ?? null;
26
- this.ownerId = data.owner_id;
27
- }
28
- iconURL(options) {
29
- if (!this.icon) return null;
30
- const size = options?.size ? `?size=${options.size}` : "";
31
- return `${CDN_URL}/icons/${this.id}/${this.icon}.png${size}`;
32
- }
33
- bannerURL(options) {
34
- if (!this.banner) return null;
35
- const size = options?.size ? `?size=${options.size}` : "";
36
- return `${CDN_URL}/banners/${this.id}/${this.banner}.png${size}`;
37
- }
38
- };
39
-
40
- export {
41
- Guild
42
- };
@@ -1,88 +0,0 @@
1
- import {
2
- Base
3
- } from "./chunk-XNS4O6QJ.mjs";
4
-
5
- // src/structures/Channel.ts
6
- import { ChannelType, Routes } from "@fluxerjs/types";
7
- var Channel = class extends Base {
8
- client;
9
- id;
10
- type;
11
- constructor(client, data) {
12
- super();
13
- this.client = client;
14
- this.id = data.id;
15
- this.type = data.type;
16
- }
17
- /** Create the appropriate channel instance from API data. */
18
- static from(client, data) {
19
- const type = data.type ?? 0;
20
- if (type === ChannelType.GuildText) return new TextChannel(client, data);
21
- if (type === ChannelType.GuildCategory) return new CategoryChannel(client, data);
22
- if (type === ChannelType.GuildVoice) return new VoiceChannel(client, data);
23
- if (type === ChannelType.GuildLink) return new LinkChannel(client, data);
24
- return new GuildChannel(client, data);
25
- }
26
- };
27
- var GuildChannel = class extends Channel {
28
- guildId;
29
- name;
30
- position;
31
- parentId;
32
- constructor(client, data) {
33
- super(client, data);
34
- this.guildId = data.guild_id ?? "";
35
- this.name = data.name ?? null;
36
- this.position = data.position;
37
- this.parentId = data.parent_id ?? null;
38
- }
39
- };
40
- var TextChannel = class extends GuildChannel {
41
- topic;
42
- nsfw;
43
- rateLimitPerUser;
44
- lastMessageId;
45
- constructor(client, data) {
46
- super(client, data);
47
- this.topic = data.topic ?? null;
48
- this.nsfw = data.nsfw ?? false;
49
- this.rateLimitPerUser = data.rate_limit_per_user ?? 0;
50
- this.lastMessageId = data.last_message_id ?? null;
51
- }
52
- /** Send a message to this channel. */
53
- async send(options) {
54
- const body = typeof options === "string" ? { content: options } : options;
55
- const { Message } = await import("./Message-PZUU7ZFR.mjs");
56
- const data = await this.client.rest.post(Routes.channelMessages(this.id), { body });
57
- return new Message(this.client, data);
58
- }
59
- };
60
- var CategoryChannel = class extends GuildChannel {
61
- };
62
- var VoiceChannel = class extends GuildChannel {
63
- bitrate;
64
- userLimit;
65
- rtcRegion;
66
- constructor(client, data) {
67
- super(client, data);
68
- this.bitrate = data.bitrate ?? null;
69
- this.userLimit = data.user_limit ?? null;
70
- this.rtcRegion = data.rtc_region ?? null;
71
- }
72
- };
73
- var LinkChannel = class extends GuildChannel {
74
- url;
75
- constructor(client, data) {
76
- super(client, data);
77
- this.url = data.url ?? null;
78
- }
79
- };
80
-
81
- export {
82
- Channel,
83
- GuildChannel,
84
- TextChannel,
85
- CategoryChannel,
86
- VoiceChannel,
87
- LinkChannel
88
- };
@@ -1,102 +0,0 @@
1
- import {
2
- Base
3
- } from "./chunk-XNS4O6QJ.mjs";
4
-
5
- // src/structures/Channel.ts
6
- import { ChannelType, Routes } from "@fluxerjs/types";
7
- var Channel = class extends Base {
8
- client;
9
- id;
10
- type;
11
- constructor(client, data) {
12
- super();
13
- this.client = client;
14
- this.id = data.id;
15
- this.type = data.type;
16
- }
17
- static from(client, data) {
18
- const type = data.type ?? 0;
19
- if (type === ChannelType.GuildText) return new TextChannel(client, data);
20
- if (type === ChannelType.GuildCategory) return new CategoryChannel(client, data);
21
- if (type === ChannelType.GuildVoice) return new VoiceChannel(client, data);
22
- if (type === ChannelType.GuildLink) return new LinkChannel(client, data);
23
- return new GuildChannel(client, data);
24
- }
25
- };
26
- var GuildChannel = class extends Channel {
27
- guildId;
28
- name;
29
- position;
30
- parentId;
31
- constructor(client, data) {
32
- super(client, data);
33
- this.guildId = data.guild_id ?? "";
34
- this.name = data.name ?? null;
35
- this.position = data.position;
36
- this.parentId = data.parent_id ?? null;
37
- }
38
- /** Create a webhook in this channel. Returns the webhook with token (required for send()). */
39
- async createWebhook(options) {
40
- const { Webhook } = await import("./Webhook-2RHBXH7R.mjs");
41
- const data = await this.client.rest.post(Routes.channelWebhooks(this.id), {
42
- body: options,
43
- auth: true
44
- });
45
- return new Webhook(this.client, data);
46
- }
47
- /** Fetch all webhooks in this channel. Returned webhooks do not include the token (cannot send). */
48
- async fetchWebhooks() {
49
- const { Webhook } = await import("./Webhook-2RHBXH7R.mjs");
50
- const data = await this.client.rest.get(Routes.channelWebhooks(this.id));
51
- const list = Array.isArray(data) ? data : Object.values(data ?? {});
52
- return list.map((w) => new Webhook(this.client, w));
53
- }
54
- };
55
- var TextChannel = class extends GuildChannel {
56
- topic;
57
- nsfw;
58
- rateLimitPerUser;
59
- lastMessageId;
60
- constructor(client, data) {
61
- super(client, data);
62
- this.topic = data.topic ?? null;
63
- this.nsfw = data.nsfw ?? false;
64
- this.rateLimitPerUser = data.rate_limit_per_user ?? 0;
65
- this.lastMessageId = data.last_message_id ?? null;
66
- }
67
- async send(options) {
68
- const body = typeof options === "string" ? { content: options } : options;
69
- const { Message } = await import("./Message-23Z3RPCZ.mjs");
70
- const data = await this.client.rest.post(Routes.channelMessages(this.id), { body });
71
- return new Message(this.client, data);
72
- }
73
- };
74
- var CategoryChannel = class extends GuildChannel {
75
- };
76
- var VoiceChannel = class extends GuildChannel {
77
- bitrate;
78
- userLimit;
79
- rtcRegion;
80
- constructor(client, data) {
81
- super(client, data);
82
- this.bitrate = data.bitrate ?? null;
83
- this.userLimit = data.user_limit ?? null;
84
- this.rtcRegion = data.rtc_region ?? null;
85
- }
86
- };
87
- var LinkChannel = class extends GuildChannel {
88
- url;
89
- constructor(client, data) {
90
- super(client, data);
91
- this.url = data.url ?? null;
92
- }
93
- };
94
-
95
- export {
96
- Channel,
97
- GuildChannel,
98
- TextChannel,
99
- CategoryChannel,
100
- VoiceChannel,
101
- LinkChannel
102
- };