infinite-games-sdk 0.1.8 → 0.2.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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -162,7 +162,7 @@ class SessionClient {
162
162
  throw new Error(errorText || "Failed to get launch URL");
163
163
  }
164
164
  const data = await response.json();
165
- let launchUrl = data.launchURL;
165
+ let launchUrl = data.launchUrl;
166
166
  if (!data.launchUrl) {
167
167
  throw new Error("Missing launch URL in response");
168
168
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "infinite-games-sdk",
3
- "version": "0.1.8",
3
+ "version": "0.2.0",
4
4
  "description": "Infinite Games SDK",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",