seyfert 3.2.6-dev-16864446563.0 → 3.2.7-dev-17041037679.0
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.
- package/README.md +1 -1
- package/lib/structures/Guild.js +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -55,6 +55,6 @@ We are open to contributions, fork the repo and make your changes!
|
|
|
55
55
|
- [Discord server](https://discord.com/invite/XNw2RZFzaP)
|
|
56
56
|
- [npm - core](https://www.npmjs.com/package/seyfert)
|
|
57
57
|
- [Website](https://seyfert.dev)
|
|
58
|
-
- [Documentation](https://
|
|
58
|
+
- [Documentation](https://seyfert.dev/guide)
|
|
59
59
|
|
|
60
60
|

|
package/lib/structures/Guild.js
CHANGED
|
@@ -18,7 +18,7 @@ class Guild extends BaseGuild_1.BaseGuild {
|
|
|
18
18
|
constructor(client, data) {
|
|
19
19
|
super(client, data);
|
|
20
20
|
if ('joined_at' in data) {
|
|
21
|
-
this.joinedAt =
|
|
21
|
+
this.joinedAt = Date.parse(data.joined_at);
|
|
22
22
|
this.memberCount = data.member_count;
|
|
23
23
|
this.large = data.large;
|
|
24
24
|
this.unavailable = data.unavailable;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "seyfert",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.7-dev-17041037679.0",
|
|
4
4
|
"description": "The most advanced framework for discord bots",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"module": "./lib/index.js",
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
"author": "MARCROCK22",
|
|
22
22
|
"license": "MIT",
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@biomejs/biome": "2.
|
|
25
|
-
"@changesets/cli": "^2.29.
|
|
24
|
+
"@biomejs/biome": "2.2.0",
|
|
25
|
+
"@changesets/cli": "^2.29.6",
|
|
26
26
|
"@commitlint/cli": "^19.8.1",
|
|
27
27
|
"@commitlint/config-conventional": "^19.8.1",
|
|
28
|
-
"@types/node": "^24.
|
|
28
|
+
"@types/node": "^24.3.0",
|
|
29
29
|
"husky": "^9.1.7",
|
|
30
30
|
"typescript": "^5.9.2",
|
|
31
31
|
"vitest": "^3.2.4"
|