@opexa/portal-sdk 0.34.1 → 0.34.2

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
@@ -844,6 +844,7 @@ interface TransactionRecord {
844
844
  amount: number;
845
845
  content?: string;
846
846
  currentBalance: number;
847
+ currentBonusBalance: number;
847
848
  referenceNumber: string;
848
849
  dateTimeCreated: Date;
849
850
  }
package/dist/index.d.ts CHANGED
@@ -844,6 +844,7 @@ interface TransactionRecord {
844
844
  amount: number;
845
845
  content?: string;
846
846
  currentBalance: number;
847
+ currentBonusBalance: number;
847
848
  referenceNumber: string;
848
849
  dateTimeCreated: Date;
849
850
  }
package/dist/index.js CHANGED
@@ -873,6 +873,7 @@ var TRANSACTION_RECORDS_QUERY = gql`
873
873
  amount
874
874
  content
875
875
  currentBalance
876
+ currentBonusBalance
876
877
  referenceNumber
877
878
  dateTimeCreated
878
879
  }
@@ -5145,6 +5146,7 @@ var Transformer = class {
5145
5146
  amount: parseDecimal(data.amount, 0),
5146
5147
  content: data.content ?? undefined,
5147
5148
  currentBalance: parseDecimal(data.currentBalance, 0),
5149
+ currentBonusBalance: parseDecimal(data.currentBonusBalance, 0),
5148
5150
  referenceNumber: data.referenceNumber,
5149
5151
  dateTimeCreated: new Date(data.dateTimeCreated)
5150
5152
  };