@opexa/portal-sdk 0.59.16 → 0.59.17

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
@@ -705,6 +705,7 @@ interface Account {
705
705
  partition?: number | null;
706
706
  dateTimeLastActive?: Date;
707
707
  gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
708
+ bonusBlocked: boolean;
708
709
  }
709
710
  type AccountReturn = OperationResult<never, Account>;
710
711
  interface CellxpertDetails {
package/dist/index.d.ts CHANGED
@@ -705,6 +705,7 @@ interface Account {
705
705
  partition?: number | null;
706
706
  dateTimeLastActive?: Date;
707
707
  gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
708
+ bonusBlocked: boolean;
708
709
  }
709
710
  type AccountReturn = OperationResult<never, Account>;
710
711
  interface CellxpertDetails {
package/dist/index.js CHANGED
@@ -1670,6 +1670,7 @@ var MEMBER_ACCOUNT_FRAGMENT = gql`
1670
1670
  domain
1671
1671
  branchCode
1672
1672
  partition
1673
+ bonusBlocked
1673
1674
  }
1674
1675
  `;
1675
1676
  var MEMBER_ACCOUNT_QUERY = gql`
@@ -8270,7 +8271,8 @@ var Transformer = class {
8270
8271
  level: data.level ?? 0,
8271
8272
  dateTimeLastActive: data.dateTimeLastActive ? new Date(data.dateTimeLastActive) : void 0,
8272
8273
  partition: data.partition,
8273
- gigRewardsQuestDetails: data.gigRewardsQuestDetails ?? void 0
8274
+ gigRewardsQuestDetails: data.gigRewardsQuestDetails ?? void 0,
8275
+ bonusBlocked: data.bonusBlocked ?? false
8274
8276
  };
8275
8277
  return compact(o);
8276
8278
  }