@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 +5 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8529,7 +8529,11 @@ var Sdk = class {
|
|
|
8529
8529
|
const res1 = NEW_GAME_PROVIDERS.includes(provider) ? await this.walletService.createGameSession({
|
|
8530
8530
|
input: { id, game: reference }
|
|
8531
8531
|
}) : await this.gameService.createGameSession({
|
|
8532
|
-
input: {
|
|
8532
|
+
input: {
|
|
8533
|
+
id,
|
|
8534
|
+
game: reference,
|
|
8535
|
+
homepageUrl: typeof window === "undefined" ? void 0 : window.location.origin
|
|
8536
|
+
}
|
|
8533
8537
|
});
|
|
8534
8538
|
return res1.ok ? { ok: true, data: { id } } : res1;
|
|
8535
8539
|
}
|