@opexa/portal-sdk 0.44.4 → 0.44.5

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
@@ -8534,7 +8534,11 @@ var Sdk = class {
8534
8534
  const res1 = NEW_GAME_PROVIDERS.includes(provider) ? await this.walletService.createGameSession({
8535
8535
  input: { id, game: reference }
8536
8536
  }) : await this.gameService.createGameSession({
8537
- input: { id, game: reference }
8537
+ input: {
8538
+ id,
8539
+ game: reference,
8540
+ homepageUrl: typeof window === "undefined" ? void 0 : window.location.origin
8541
+ }
8538
8542
  });
8539
8543
  return res1.ok ? { ok: true, data: { id } } : res1;
8540
8544
  }