@opexa/portal-sdk 0.44.1 → 0.44.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.cjs CHANGED
@@ -332,6 +332,7 @@ var WITHDRAWAL_RECORDS_QUERY = gql`
332
332
  withdrawalNumber
333
333
  dateTimeCreated
334
334
  dateTimeLastUpdated
335
+ bankName
335
336
  }
336
337
  ... on ManualUPIWithdrawalRecord {
337
338
  id
@@ -6589,6 +6590,7 @@ var Transformer = class {
6589
6590
  id: data.id,
6590
6591
  type: data.type,
6591
6592
  bank: data.bank,
6593
+ bankName: data.bankName ?? void 0,
6592
6594
  status: data.status,
6593
6595
  amount: parseDecimal(data.amount, 0),
6594
6596
  netAmount: parseDecimal(data.netAmount, 0),
@@ -8503,7 +8505,11 @@ var Sdk = class {
8503
8505
  const res = NEW_GAME_PROVIDERS.includes(input.provider) ? await this.walletService.createGameSession({
8504
8506
  input: { id, game: input.reference }
8505
8507
  }) : await this.gameService.createGameSession({
8506
- input: { id, game: input.reference }
8508
+ input: {
8509
+ id,
8510
+ game: input.reference,
8511
+ homepageUrl: typeof window === "undefined" ? void 0 : window.location.origin
8512
+ }
8507
8513
  });
8508
8514
  return res.ok ? { ok: true, data: { id } } : res;
8509
8515
  }