Comparing version 1.20.2 to 1.20.3
@@ -38,3 +38,2 @@ "use strict"; | ||
this.isOwner = data.owner; | ||
this.avatarURL = data.avatar; | ||
this.bank = data.bank; | ||
@@ -47,2 +46,6 @@ this.wallet = data.wallet; | ||
this.xp = data.xp; | ||
this.overrides = { | ||
display: data.display, | ||
avatarURL: data.avatar | ||
}; | ||
this.limits = { | ||
@@ -49,0 +52,0 @@ queries: data.maxQueries, |
{ | ||
"name": "@rjns/bot", | ||
"version": "1.20.2", | ||
"version": "1.20.3", | ||
"description": "RJNS BOT Client", | ||
@@ -5,0 +5,0 @@ "module": "lib/esm/index.js", |
@@ -15,3 +15,2 @@ import { User } from "./User"; | ||
this.isOwner = data.owner; | ||
this.avatarURL = data.avatar; | ||
this.bank = data.bank; | ||
@@ -24,2 +23,6 @@ this.wallet = data.wallet; | ||
this.xp = data.xp; | ||
this.overrides = { | ||
display: data.display, | ||
avatarURL: data.avatar | ||
}; | ||
this.limits = { | ||
@@ -26,0 +29,0 @@ queries: data.maxQueries, |
{ | ||
"name": "@rjns/bot", | ||
"version": "1.20.2", | ||
"version": "1.20.3", | ||
"description": "RJNS BOT Client", | ||
@@ -5,0 +5,0 @@ "module": "lib/esm/index.js", |
@@ -12,2 +12,3 @@ import { DeepRequired } from "@rjweb/utils"; | ||
xp: number; | ||
display: string | null; | ||
avatar: string | null; | ||
@@ -106,5 +107,14 @@ maxQueries: number | null; | ||
/** | ||
* The Avatar of the Server User (null if not server-overridden) | ||
* @since 1.0.0 | ||
*/ avatarURL: string | null; | ||
* The Server User Overrides of the Original User | ||
* @since 1.20.3 | ||
*/ overrides: { | ||
/** | ||
* The overridden Discord Display Name of the User | ||
* @since 1.20.3 | ||
*/ display: string | null; | ||
/** | ||
* The overridden Discord Avatar URL of the User | ||
* @since 1.20.3 | ||
*/ avatarURL: string | null; | ||
}; | ||
/** | ||
@@ -220,3 +230,6 @@ * The Bank Amount of the Server User | ||
images: number; | ||
tts: number; | ||
tts: number; /** | ||
* The AI Limits of the User | ||
* @since 1.1.0 | ||
*/ | ||
week: { | ||
@@ -227,6 +240,3 @@ day: import("..").Day; | ||
images: number; | ||
tts: number; /** | ||
* The Maximum Amount of TTS Audios allowed | ||
* @since 1.12.1 | ||
*/ | ||
tts: number; | ||
}[]; | ||
@@ -233,0 +243,0 @@ }>; |
{ | ||
"name": "@rjns/bot", | ||
"version": "1.20.2", | ||
"version": "1.20.3", | ||
"description": "RJNS BOT Client", | ||
@@ -5,0 +5,0 @@ "module": "lib/esm/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
189700
5591