@opexa/portal-sdk 0.54.2 → 0.54.3

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/dist/index.d.cts CHANGED
@@ -608,6 +608,7 @@ interface Account {
608
608
  achievementPointsLevelUpProgressPercentage?: number;
609
609
  currentUniqueGamesCount?: number;
610
610
  currentNewGamesCount?: number;
611
+ currentAchievements?: Array<AchievementType>;
611
612
  currentBetsCount?: number;
612
613
  currentActiveDaysCount?: number;
613
614
  dateTimeLastLeveledUp?: Date;
@@ -1862,7 +1863,7 @@ interface CabinetSiteMachine {
1862
1863
  status: CabinetSiteMachineStatus;
1863
1864
  dateTimeCreated: Date;
1864
1865
  }
1865
- type CabinetSiteMachineStatus = "ENABLED" | "DISABLED";
1866
+ type CabinetSiteMachineStatus = 'ENABLED' | 'DISABLED';
1866
1867
  type CabinetWithdrawalReturn = OperationResult<never, WithdrawalRecord | null>;
1867
1868
 
1868
1869
  interface SdkConfig {
package/dist/index.d.ts CHANGED
@@ -608,6 +608,7 @@ interface Account {
608
608
  achievementPointsLevelUpProgressPercentage?: number;
609
609
  currentUniqueGamesCount?: number;
610
610
  currentNewGamesCount?: number;
611
+ currentAchievements?: Array<AchievementType>;
611
612
  currentBetsCount?: number;
612
613
  currentActiveDaysCount?: number;
613
614
  dateTimeLastLeveledUp?: Date;
@@ -1862,7 +1863,7 @@ interface CabinetSiteMachine {
1862
1863
  status: CabinetSiteMachineStatus;
1863
1864
  dateTimeCreated: Date;
1864
1865
  }
1865
- type CabinetSiteMachineStatus = "ENABLED" | "DISABLED";
1866
+ type CabinetSiteMachineStatus = 'ENABLED' | 'DISABLED';
1866
1867
  type CabinetWithdrawalReturn = OperationResult<never, WithdrawalRecord | null>;
1867
1868
 
1868
1869
  interface SdkConfig {
package/dist/index.js CHANGED
@@ -1579,6 +1579,7 @@ var MEMBER_ACCOUNT_QUERY = gql`
1579
1579
  currentNewGamesCount
1580
1580
  currentBetsCount
1581
1581
  currentActiveDaysCount
1582
+ currentAchievements
1582
1583
  dateTimeLastLeveledUp
1583
1584
  currentMonthlyTurnover
1584
1585
  turnoverLevelUpProgressPercentage
@@ -7306,6 +7307,7 @@ var Transformer = class {
7306
7307
  currentActiveDaysCount: data.currentActiveDaysCount,
7307
7308
  currentBetsCount: data.currentBetsCount,
7308
7309
  currentNewGamesCount: data.currentNewGamesCount,
7310
+ currentAchievements: data.currentAchievements,
7309
7311
  currentUniqueGamesCount: data.currentUniqueGamesCount,
7310
7312
  dateTimeLastLeveledUp: new Date(data.dateTimeLastLeveledUp),
7311
7313
  currentMonthlyAchievementPoints: data.currentMonthlyAchievementPoints,