@xoxno/types 1.0.20 → 1.0.21

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.
@@ -1,3 +1,4 @@
1
+ import { Wallet } from '../../entities/airdrop/airdrop.dto';
1
2
  export declare class BoberBattleLeaderboardDto {
2
3
  GamesCreated: number;
3
4
  GamesCreatedHead: number;
@@ -25,3 +26,6 @@ export declare class BoberBattleUserDto extends BoberBattleLeaderboardDto {
25
26
  WinRate: number;
26
27
  constructor(data: Partial<BoberBattleUserDto>);
27
28
  }
29
+ export declare class BoberBattleUserFullDto extends BoberBattleLeaderboardDto {
30
+ wallet: Wallet;
31
+ }
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.BoberBattleUserDto = exports.BoberBattleLeaderboardDto = void 0;
3
+ exports.BoberBattleUserFullDto = exports.BoberBattleUserDto = exports.BoberBattleLeaderboardDto = void 0;
4
4
  class BoberBattleLeaderboardDto {
5
5
  constructor(data) {
6
6
  Object.assign(this, data);
@@ -14,3 +14,6 @@ class BoberBattleUserDto extends BoberBattleLeaderboardDto {
14
14
  }
15
15
  }
16
16
  exports.BoberBattleUserDto = BoberBattleUserDto;
17
+ class BoberBattleUserFullDto extends BoberBattleLeaderboardDto {
18
+ }
19
+ exports.BoberBattleUserFullDto = BoberBattleUserFullDto;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xoxno/types",
3
- "version": "1.0.20",
3
+ "version": "1.0.21",
4
4
  "description": "Shared types and utilities for XOXNO API.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",