black-diamond-shared 1.0.91 → 1.0.92
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 +1 -2
- package/dist/index.d.ts +1 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1914,10 +1914,9 @@ interface Bet extends MongoDocument {
|
|
|
1914
1914
|
winAmount?: number;
|
|
1915
1915
|
commissionAmount?: number;
|
|
1916
1916
|
settled?: boolean;
|
|
1917
|
-
isMatched?: boolean;
|
|
1918
1917
|
cashout?: Boolean;
|
|
1919
1918
|
cashoutAmount?: number;
|
|
1920
|
-
|
|
1919
|
+
isNotMatched?: boolean;
|
|
1921
1920
|
}
|
|
1922
1921
|
type BetTypes = keyof typeof betTypesInfo;
|
|
1923
1922
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1914,10 +1914,9 @@ interface Bet extends MongoDocument {
|
|
|
1914
1914
|
winAmount?: number;
|
|
1915
1915
|
commissionAmount?: number;
|
|
1916
1916
|
settled?: boolean;
|
|
1917
|
-
isMatched?: boolean;
|
|
1918
1917
|
cashout?: Boolean;
|
|
1919
1918
|
cashoutAmount?: number;
|
|
1920
|
-
|
|
1919
|
+
isNotMatched?: boolean;
|
|
1921
1920
|
}
|
|
1922
1921
|
type BetTypes = keyof typeof betTypesInfo;
|
|
1923
1922
|
|