@smartico/public-api 0.0.263 → 0.0.264

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartico/public-api",
3
- "version": "0.0.263",
3
+ "version": "0.0.264",
4
4
  "description": "Smartico public API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -4,6 +4,8 @@ export interface GetAchievementsUserInfoResponse extends ProtocolResponse {
4
4
  level_counter_1?: number;
5
5
  level_counter_2?: number;
6
6
  points_balance: number;
7
+ gems_balance: number;
8
+ diamonds_balance: number;
7
9
  points_ever: number;
8
10
  current_level: number;
9
11
  points_board_period_type_1: number;
@@ -1,4 +1,4 @@
1
- import { ProtocolRequest } from "src/Base/ProtocolRequest";
1
+ import { ProtocolRequest } from "../Base/ProtocolRequest";
2
2
 
3
3
  interface GetJackpotWinnersRequest extends ProtocolRequest {
4
4
  /** The ID of the jackpot template */
@@ -1,4 +1,4 @@
1
- import { TRaffleDraw } from 'src/WSAPI/WSAPITypes';
1
+ import { TRaffleDraw } from '../WSAPI/WSAPITypes';
2
2
  import { ProtocolResponse } from '../Base/ProtocolResponse';
3
3
  import { RaffleDraw } from './RaffleDraw';
4
4
  import { prizeTransform, ticketsTransform } from './GetRafflesResponse';
@@ -1,4 +1,4 @@
1
- import { TRaffleDrawRun } from 'src/WSAPI/WSAPITypes';
1
+ import { TRaffleDrawRun } from '../WSAPI/WSAPITypes';
2
2
  import { ProtocolResponse } from '../Base/ProtocolResponse';
3
3
  import { RaffleDrawRun } from './RaffleDrawRun';
4
4
 
@@ -1,10 +1,9 @@
1
- import { TRaffle, TRaffleDraw, TRafflePrize, TRafflePrizeWinner, TRaffleTicket } from 'src/WSAPI/WSAPITypes';
1
+ import { TRaffle, TRaffleDraw, TRafflePrize, TRafflePrizeWinner, TRaffleTicket } from '../WSAPI/WSAPITypes';
2
2
  import { ProtocolResponse } from '../Base/ProtocolResponse';
3
3
  import { Raffle } from './Raffle';
4
4
  import { RaffleDraw } from './RaffleDraw';
5
5
  import { RafflePrize } from './RafflePrize';
6
6
  import { RafflePrizeWinner } from './RafflePrizeWinner';
7
- import { CoreUtils } from 'src/Core';
8
7
  import { RaffleTicket } from './RaffleTicket';
9
8
 
10
9
  export interface GetRafflesResponse extends ProtocolResponse {
@@ -1,4 +1,4 @@
1
- import { TransformedRaffleClaimPrizeResponse } from "src/WSAPI/WSAPITypes";
1
+ import { TransformedRaffleClaimPrizeResponse } from "../WSAPI/WSAPITypes";
2
2
  import { ProtocolResponse } from "../Base/ProtocolResponse";
3
3
 
4
4
  export interface RaffleClaimPrizeResponse extends ProtocolResponse {
@@ -70,7 +70,7 @@ import {
70
70
  raffleClaimPrizeResponseTransform,
71
71
  } from '../Raffle';
72
72
  import { IntUtils } from '../IntUtils';
73
- import { JackpotEligibleGame, TGetJackpotEligibleGamesResponse } from 'src/Jackpots/GetJackpotEligibleGamesResponse';
73
+ import { JackpotEligibleGame, TGetJackpotEligibleGamesResponse } from '../Jackpots/GetJackpotEligibleGamesResponse';
74
74
 
75
75
  /** @hidden */
76
76
  const CACHE_DATA_SEC = 30;
@@ -7,7 +7,8 @@ import { AchCustomLayoutTheme, AchCustomSectionType, AchMissionsTabsOptions, Ach
7
7
  import { BonusStatus , BonusTemplateMetaMap, BonusMetaMap} from '../Bonuses';
8
8
  import { PrizeModifiers } from '../MiniGames/PrizeModifiers';
9
9
  import { InboxCategories } from '../Inbox/InboxCategories';
10
- import { RaffleDrawInstanceState, RaffleDrawTypeExecution } from 'src/Raffle';import { JackPotWinner } from 'src/Jackpots/JackPotWinner';
10
+ import { RaffleDrawInstanceState, RaffleDrawTypeExecution } from '../Raffle';
11
+ import { JackPotWinner } from '../Jackpots/JackPotWinner';
11
12
 
12
13
 
13
14
  type TRibbon = 'sale' | 'hot' | 'new' | 'vip' | string;