@wvdsh/api 0.1.38 → 0.1.40

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.
@@ -189,6 +189,7 @@ export declare const UrlParams: {
189
189
  readonly PlayKey: "pk";
190
190
  readonly SdkConfig: "sdkconfig";
191
191
  readonly Caller: "caller";
192
+ readonly GameSlug: "gameSlug";
192
193
  };
193
194
  export declare const PlayRouteCaller: {
194
195
  readonly Wavedash: "wavedash";
@@ -107,7 +107,9 @@ export const UrlParams = {
107
107
  EngineVersion: 'engineversion',
108
108
  PlayKey: 'pk',
109
109
  SdkConfig: 'sdkconfig',
110
- Caller: 'caller'
110
+ Caller: 'caller',
111
+ // Read by the cross-origin play iframe for its Sentry tags — it can't read this URL.
112
+ GameSlug: 'gameSlug'
111
113
  };
112
114
  export const PlayRouteCaller = {
113
115
  Wavedash: 'wavedash'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wvdsh/api",
3
- "version": "0.1.38",
3
+ "version": "0.1.40",
4
4
  "description": "Public API types and shared constants for the Wavedash platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",