black-diamond-shared 1.0.33 → 1.0.34
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/dist/index.d.mts +4 -4
- package/dist/index.d.ts +4 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1917,11 +1917,11 @@ declare const betSchema: Schema<any, mongoose.Model<any, any, any, any, any, any
|
|
|
1917
1917
|
interface Account {
|
|
1918
1918
|
email: string;
|
|
1919
1919
|
password: string;
|
|
1920
|
-
balance
|
|
1920
|
+
balance: number;
|
|
1921
1921
|
outstandingBets?: number;
|
|
1922
|
-
depositTotal
|
|
1923
|
-
deposits
|
|
1924
|
-
expensesTotal
|
|
1922
|
+
depositTotal: number;
|
|
1923
|
+
deposits: any[];
|
|
1924
|
+
expensesTotal: number;
|
|
1925
1925
|
expenses: any[];
|
|
1926
1926
|
}
|
|
1927
1927
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1917,11 +1917,11 @@ declare const betSchema: Schema<any, mongoose.Model<any, any, any, any, any, any
|
|
|
1917
1917
|
interface Account {
|
|
1918
1918
|
email: string;
|
|
1919
1919
|
password: string;
|
|
1920
|
-
balance
|
|
1920
|
+
balance: number;
|
|
1921
1921
|
outstandingBets?: number;
|
|
1922
|
-
depositTotal
|
|
1923
|
-
deposits
|
|
1924
|
-
expensesTotal
|
|
1922
|
+
depositTotal: number;
|
|
1923
|
+
deposits: any[];
|
|
1924
|
+
expensesTotal: number;
|
|
1925
1925
|
expenses: any[];
|
|
1926
1926
|
}
|
|
1927
1927
|
|