@xoxno/types 1.0.245 → 1.0.246
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.
|
@@ -30,14 +30,20 @@ export declare class BoberBattleUserDtoHydrated extends BoberBattleUserDto {
|
|
|
30
30
|
wallet: Wallet;
|
|
31
31
|
}
|
|
32
32
|
declare type BoberWheelLeaderboardDto_base = Omit<BoberBattleLeaderboardDto, "GamesCreatedHead" | "GamesCreatedTail" | "GamesJoinedHead" | "GamesJoinedTail">;
|
|
33
|
-
export declare type BoberWheelLeaderboardDto = BoberWheelLeaderboardDto_base
|
|
33
|
+
export declare type BoberWheelLeaderboardDto = BoberWheelLeaderboardDto_base & {
|
|
34
|
+
constructor(props?: Partial<BoberWheelLeaderboardDto>);
|
|
35
|
+
};
|
|
34
36
|
declare const BoberWheelLeaderboardDtoNest_base: import("@nestjs/common").Type<Omit<BoberBattleLeaderboardDto, "GamesCreatedHead" | "GamesCreatedTail" | "GamesJoinedHead" | "GamesJoinedTail">>;
|
|
35
37
|
export declare class BoberWheelLeaderboardDtoNest extends BoberWheelLeaderboardDtoNest_base {
|
|
38
|
+
constructor(props?: Partial<BoberWheelLeaderboardDto>);
|
|
36
39
|
}
|
|
37
40
|
declare type BoberWheelUserDto_base = Omit<BoberBattleUserDto, "GamesCreatedHead" | "GamesCreatedTail" | "GamesJoinedHead" | "GamesJoinedTail" | "GamesWonAsHead" | "GamesLostAsHead" | "GamesWonAsTail" | "GamesLostAsTail">;
|
|
38
|
-
export declare type BoberWheelUserDto = BoberWheelUserDto_base
|
|
41
|
+
export declare type BoberWheelUserDto = BoberWheelUserDto_base & {
|
|
42
|
+
constructor(props?: Partial<BoberWheelUserDto>);
|
|
43
|
+
};
|
|
39
44
|
declare const BoberWheelUserDtoNest_base: import("@nestjs/common").Type<Omit<BoberBattleUserDto, "GamesCreatedHead" | "GamesCreatedTail" | "GamesJoinedHead" | "GamesJoinedTail" | "GamesWonAsHead" | "GamesLostAsHead" | "GamesWonAsTail" | "GamesLostAsTail">>;
|
|
40
45
|
export declare class BoberWheelUserDtoNest extends BoberWheelUserDtoNest_base {
|
|
46
|
+
constructor(props?: Partial<BoberWheelUserDto>);
|
|
41
47
|
}
|
|
42
48
|
declare type BoberWheelUserDtoHydrated_base = Omit<BoberWheelUserDto, never>;
|
|
43
49
|
export declare type BoberWheelUserDtoHydrated = BoberWheelUserDtoHydrated_base & {
|
|
@@ -210,6 +210,10 @@ class BoberWheelLeaderboardDto extends (0, swagger_1.OmitType)(BoberBattleLeader
|
|
|
210
210
|
'GamesJoinedHead',
|
|
211
211
|
'GamesJoinedTail',
|
|
212
212
|
]) {
|
|
213
|
+
constructor(props) {
|
|
214
|
+
super(props);
|
|
215
|
+
Object.assign(this, props);
|
|
216
|
+
}
|
|
213
217
|
}
|
|
214
218
|
exports.BoberWheelLeaderboardDto = BoberWheelLeaderboardDto;
|
|
215
219
|
class BoberWheelUserDto extends (0, swagger_1.OmitType)(BoberBattleUserDto, [
|
|
@@ -222,6 +226,10 @@ class BoberWheelUserDto extends (0, swagger_1.OmitType)(BoberBattleUserDto, [
|
|
|
222
226
|
'GamesWonAsTail',
|
|
223
227
|
'GamesLostAsTail',
|
|
224
228
|
]) {
|
|
229
|
+
constructor(props) {
|
|
230
|
+
super(props);
|
|
231
|
+
Object.assign(this, props);
|
|
232
|
+
}
|
|
225
233
|
}
|
|
226
234
|
exports.BoberWheelUserDto = BoberWheelUserDto;
|
|
227
235
|
class BoberWheelUserDtoHydrated extends (0, swagger_1.OmitType)(BoberWheelUserDto, []) {
|