@xoxno/types 1.0.243 → 1.0.245
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.
|
@@ -33,4 +33,7 @@ var NftActivityType;
|
|
|
33
33
|
NftActivityType["JOIN_GAME"] = "joinGame";
|
|
34
34
|
NftActivityType["CANCEL_GAME"] = "cancelGame";
|
|
35
35
|
NftActivityType["END_GAME"] = "endGame";
|
|
36
|
+
// Wheel Games
|
|
37
|
+
NftActivityType["SPIN"] = "spin";
|
|
38
|
+
NftActivityType["JOIN_WHEEL"] = "joinWheel";
|
|
36
39
|
})(NftActivityType || (exports.NftActivityType = NftActivityType = {}));
|
|
@@ -39,7 +39,12 @@ export declare type BoberWheelUserDto = BoberWheelUserDto_base ;
|
|
|
39
39
|
declare const BoberWheelUserDtoNest_base: import("@nestjs/common").Type<Omit<BoberBattleUserDto, "GamesCreatedHead" | "GamesCreatedTail" | "GamesJoinedHead" | "GamesJoinedTail" | "GamesWonAsHead" | "GamesLostAsHead" | "GamesWonAsTail" | "GamesLostAsTail">>;
|
|
40
40
|
export declare class BoberWheelUserDtoNest extends BoberWheelUserDtoNest_base {
|
|
41
41
|
}
|
|
42
|
-
|
|
42
|
+
declare type BoberWheelUserDtoHydrated_base = Omit<BoberWheelUserDto, never>;
|
|
43
|
+
export declare type BoberWheelUserDtoHydrated = BoberWheelUserDtoHydrated_base & {
|
|
44
|
+
wallet: Wallet;
|
|
45
|
+
};
|
|
46
|
+
declare const BoberWheelUserDtoHydratedNest_base: import("@nestjs/common").Type<Omit<BoberWheelUserDto, never>>;
|
|
47
|
+
export declare class BoberWheelUserDtoHydratedNest extends BoberWheelUserDtoHydratedNest_base {
|
|
43
48
|
wallet: Wallet;
|
|
44
49
|
}
|
|
45
50
|
export {};
|
|
@@ -224,7 +224,7 @@ class BoberWheelUserDto extends (0, swagger_1.OmitType)(BoberBattleUserDto, [
|
|
|
224
224
|
]) {
|
|
225
225
|
}
|
|
226
226
|
exports.BoberWheelUserDto = BoberWheelUserDto;
|
|
227
|
-
class BoberWheelUserDtoHydrated extends BoberWheelUserDto {
|
|
227
|
+
class BoberWheelUserDtoHydrated extends (0, swagger_1.OmitType)(BoberWheelUserDto, []) {
|
|
228
228
|
}
|
|
229
229
|
exports.BoberWheelUserDtoHydrated = BoberWheelUserDtoHydrated;
|
|
230
230
|
__decorate([
|
|
@@ -238,3 +238,5 @@ __decorate([
|
|
|
238
238
|
exports.BoberWheelLeaderboardDtoNest = BoberWheelLeaderboardDto;
|
|
239
239
|
|
|
240
240
|
exports.BoberWheelUserDtoNest = BoberWheelUserDto;
|
|
241
|
+
|
|
242
|
+
exports.BoberWheelUserDtoHydratedNest = BoberWheelUserDtoHydrated;
|