@xoxno/types 1.0.60 → 1.0.62

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,17 +1,6 @@
1
1
  export declare enum UserStatsOrderByColumn {
2
2
  TOTAL_VOLUME = "totalVolume"
3
3
  }
4
- export declare enum BoberLeaderboardOrderByColumn {
5
- GAMES_CREATED = "GamesCreated",
6
- GAMES_CREATED_HEAD = "GamesCreatedHead",
7
- GAMES_CREATED_TAIL = "GamesCreatedTail",
8
- GAMES_JOINED = "GamesJoined",
9
- GAMES_JOINED_HEAD = "GamesJoinedHead",
10
- GAMES_JOINED_TAIL = "GamesJoinedTail",
11
- TOTAL_GAMES = "TotalGames",
12
- TOTAL_VOLUME = "TotalVolume",
13
- TOTAL_VOLUME_USD = "TotalVolumeUSD"
14
- }
15
4
  export declare enum LendingPositionOrderByColumn {
16
5
  SUPPLIED = "supplied",
17
6
  BORROWED = "borrowed",
@@ -1,22 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.LendingPositionOrderByColumn = exports.BoberLeaderboardOrderByColumn = exports.UserStatsOrderByColumn = void 0;
3
+ exports.LendingPositionOrderByColumn = exports.UserStatsOrderByColumn = void 0;
4
4
  var UserStatsOrderByColumn;
5
5
  (function (UserStatsOrderByColumn) {
6
6
  UserStatsOrderByColumn["TOTAL_VOLUME"] = "totalVolume";
7
7
  })(UserStatsOrderByColumn || (exports.UserStatsOrderByColumn = UserStatsOrderByColumn = {}));
8
- var BoberLeaderboardOrderByColumn;
9
- (function (BoberLeaderboardOrderByColumn) {
10
- BoberLeaderboardOrderByColumn["GAMES_CREATED"] = "GamesCreated";
11
- BoberLeaderboardOrderByColumn["GAMES_CREATED_HEAD"] = "GamesCreatedHead";
12
- BoberLeaderboardOrderByColumn["GAMES_CREATED_TAIL"] = "GamesCreatedTail";
13
- BoberLeaderboardOrderByColumn["GAMES_JOINED"] = "GamesJoined";
14
- BoberLeaderboardOrderByColumn["GAMES_JOINED_HEAD"] = "GamesJoinedHead";
15
- BoberLeaderboardOrderByColumn["GAMES_JOINED_TAIL"] = "GamesJoinedTail";
16
- BoberLeaderboardOrderByColumn["TOTAL_GAMES"] = "TotalGames";
17
- BoberLeaderboardOrderByColumn["TOTAL_VOLUME"] = "TotalVolume";
18
- BoberLeaderboardOrderByColumn["TOTAL_VOLUME_USD"] = "TotalVolumeUSD";
19
- })(BoberLeaderboardOrderByColumn || (exports.BoberLeaderboardOrderByColumn = BoberLeaderboardOrderByColumn = {}));
20
8
  var LendingPositionOrderByColumn;
21
9
  (function (LendingPositionOrderByColumn) {
22
10
  LendingPositionOrderByColumn["SUPPLIED"] = "supplied";
@@ -26,6 +26,6 @@ export declare class BoberBattleUserDto extends BoberBattleLeaderboardDto {
26
26
  WinRate: number;
27
27
  constructor(data: Partial<BoberBattleUserDto>);
28
28
  }
29
- export declare class BoberBattleUserDtoHydrated extends BoberBattleLeaderboardDto {
29
+ export declare class BoberBattleUserDtoHydrated extends BoberBattleUserDto {
30
30
  wallet: Wallet;
31
31
  }
@@ -14,6 +14,6 @@ class BoberBattleUserDto extends BoberBattleLeaderboardDto {
14
14
  }
15
15
  }
16
16
  exports.BoberBattleUserDto = BoberBattleUserDto;
17
- class BoberBattleUserDtoHydrated extends BoberBattleLeaderboardDto {
17
+ class BoberBattleUserDtoHydrated extends BoberBattleUserDto {
18
18
  }
19
19
  exports.BoberBattleUserDtoHydrated = BoberBattleUserDtoHydrated;
@@ -16,5 +16,6 @@ export declare enum MarketplaceActivity {
16
16
  OFFER_TRADE = "offerTrade",
17
17
  GLOBAL_OFFER_TRADE = "globalOfferTrade",
18
18
  DEPOSIT = "deposit",
19
- WITHDRAW_DEPOSIT = "withdrawDeposit"
19
+ WITHDRAW_DEPOSIT = "withdrawDeposit",
20
+ SET_COLLECTION_CONFIG = "setCollectionConfig"
20
21
  }
@@ -21,4 +21,5 @@ var MarketplaceActivity;
21
21
  MarketplaceActivity["GLOBAL_OFFER_TRADE"] = "globalOfferTrade";
22
22
  MarketplaceActivity["DEPOSIT"] = "deposit";
23
23
  MarketplaceActivity["WITHDRAW_DEPOSIT"] = "withdrawDeposit";
24
+ MarketplaceActivity["SET_COLLECTION_CONFIG"] = "setCollectionConfig";
24
25
  })(MarketplaceActivity || (exports.MarketplaceActivity = MarketplaceActivity = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xoxno/types",
3
- "version": "1.0.60",
3
+ "version": "1.0.62",
4
4
  "description": "Shared types and utilities for XOXNO API.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",