@arkadiuminc/sdk 0.0.43 → 0.0.45

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.
@@ -2,6 +2,7 @@ declare type RpcRequest = {
2
2
  module: string;
3
3
  func: string;
4
4
  payload: any[];
5
+ executionTimeLimitMs?: number;
5
6
  };
6
7
  declare class RpcPublisher {
7
8
  private rpcCallbacks;
@@ -1 +1 @@
1
- export declare const __SDK_VERSION__ = "0.0.39";
1
+ export declare const __SDK_VERSION__ = "__GAME_SDK_VERSION__";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arkadiuminc/sdk",
3
- "version": "0.0.43",
3
+ "version": "0.0.45",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "main": "dist/pkg/arkadium-sdk.umd.js",
@@ -24,8 +24,8 @@
24
24
  "lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
25
25
  "prebuild": "rimraf dist",
26
26
  "build:pkg": "vite build",
27
- "build:game": "vite build --config vite.game.config.js",
28
- "build:arena": "vite build --config vite.arena.config.js",
27
+ "build:game": "vite build --config vite.game.config.mjs",
28
+ "build:arena": "vite build --config vite.arena.config.mjs",
29
29
  "build:docs": "typedoc --out docs --theme default src/arkadium-game-sdk.ts",
30
30
  "build-fast": "npm run build:game && npm run build:arena",
31
31
  "build": "npm run build:pkg && npm run build:game && npm run build:arena && npm run build:docs",
@@ -124,12 +124,13 @@
124
124
  "tslint-config-standard": "^8.0.1",
125
125
  "typedoc": "~0.23.8",
126
126
  "typescript": "~4.7.4",
127
- "vite": "^4.4.11",
128
- "vite-plugin-dts": "^3.6.3"
127
+ "vite": "^5.1.6",
128
+ "vite-plugin-dts": "^3.7.3"
129
129
  },
130
130
  "dependencies": {
131
+ "@microsoft/applicationinsights-web": "^3.0.4",
131
132
  "jsonpack": "^1.1.5",
132
133
  "nanoid": "^5.0.4",
133
- "@microsoft/applicationinsights-web": "^3.0.4"
134
+ "vite-plugin-string-replace": "^1.1.2"
134
135
  }
135
136
  }