@xoxno/types 1.0.244 → 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,16 +30,27 @@ 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>;
|
|
49
|
+
export declare type BoberWheelUserDtoHydrated = BoberWheelUserDtoHydrated_base & {
|
|
50
|
+
wallet: Wallet;
|
|
51
|
+
};
|
|
52
|
+
declare const BoberWheelUserDtoHydratedNest_base: import("@nestjs/common").Type<Omit<BoberWheelUserDto, never>>;
|
|
53
|
+
export declare class BoberWheelUserDtoHydratedNest extends BoberWheelUserDtoHydratedNest_base {
|
|
43
54
|
wallet: Wallet;
|
|
44
55
|
}
|
|
45
56
|
export {};
|
|
@@ -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,9 +226,13 @@ 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
|
-
class BoberWheelUserDtoHydrated extends BoberWheelUserDto {
|
|
235
|
+
class BoberWheelUserDtoHydrated extends (0, swagger_1.OmitType)(BoberWheelUserDto, []) {
|
|
228
236
|
}
|
|
229
237
|
exports.BoberWheelUserDtoHydrated = BoberWheelUserDtoHydrated;
|
|
230
238
|
__decorate([
|
|
@@ -238,3 +246,5 @@ __decorate([
|
|
|
238
246
|
exports.BoberWheelLeaderboardDtoNest = BoberWheelLeaderboardDto;
|
|
239
247
|
|
|
240
248
|
exports.BoberWheelUserDtoNest = BoberWheelUserDto;
|
|
249
|
+
|
|
250
|
+
exports.BoberWheelUserDtoHydratedNest = BoberWheelUserDtoHydrated;
|