@opexa/portal-sdk 0.44.18 → 0.45.0

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.cjs CHANGED
@@ -70,6 +70,7 @@ var WALLET_QUERY = gql`
70
70
  wallet {
71
71
  id
72
72
  balance
73
+ turnoverRequirement
73
74
  }
74
75
  }
75
76
  `;
@@ -6542,7 +6543,8 @@ var Transformer = class {
6542
6543
  wallet(data) {
6543
6544
  const o = {
6544
6545
  id: data.id,
6545
- balance: parseDecimal(data.balance, 0)
6546
+ balance: parseDecimal(data.balance, 0),
6547
+ turnoverRequirement: parseDecimal(data.turnoverRequirement)
6546
6548
  };
6547
6549
  return o;
6548
6550
  }