@ovencord/builders 1.11.3 → 1.11.4

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@ovencord/builders",
4
- "version": "1.11.3",
4
+ "version": "1.11.4",
5
5
  "description": "A set of builders that you can use when creating your bot",
6
6
  "scripts": {
7
7
  "test": "bun test",
@@ -23,6 +23,13 @@ export class SharedName {
23
23
  return this;
24
24
  }
25
25
 
26
+ /**
27
+ * Returns the name of this command.
28
+ */
29
+ public get name(): string | undefined {
30
+ return this.data.name;
31
+ }
32
+
26
33
  /**
27
34
  * Sets a name localization for this command.
28
35
  *
@@ -24,6 +24,13 @@ export class SharedNameAndDescription extends SharedName {
24
24
  return this;
25
25
  }
26
26
 
27
+ /**
28
+ * Returns the description of this command.
29
+ */
30
+ public get description(): string | undefined {
31
+ return this.data.description;
32
+ }
33
+
27
34
  /**
28
35
  * Sets a description localization for this command.
29
36
  *