@akashic/headless-driver 2.13.6 → 2.13.8

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.
@@ -8,8 +8,8 @@ export declare class RunnerV1 extends Runner {
8
8
  readonly engineVersion: string;
9
9
  readonly g: typeof g;
10
10
  platform: PlatformV1 | null;
11
+ fps: number | null;
11
12
  private driver;
12
- private fps;
13
13
  private running;
14
14
  start(params?: RunnerStartParameters): Promise<RunnerV1Game | null>;
15
15
  stop(): void;
@@ -19,8 +19,8 @@ class RunnerV1 extends Runner_1.Runner {
19
19
  this.engineVersion = "1";
20
20
  this.g = engine_files_v1_1.akashicEngine;
21
21
  this.platform = null;
22
- this.driver = null;
23
22
  this.fps = null;
23
+ this.driver = null;
24
24
  this.running = false;
25
25
  }
26
26
  start(params) {
@@ -8,8 +8,8 @@ export declare class RunnerV2 extends Runner {
8
8
  readonly engineVersion: string;
9
9
  readonly g: typeof g;
10
10
  platform: PlatformV2 | null;
11
+ fps: number | null;
11
12
  private driver;
12
- private fps;
13
13
  private running;
14
14
  start(params?: RunnerStartParameters): Promise<RunnerV2Game | null>;
15
15
  stop(): void;
@@ -19,8 +19,8 @@ class RunnerV2 extends Runner_1.Runner {
19
19
  this.engineVersion = "2";
20
20
  this.g = engine_files_v2_1.akashicEngine;
21
21
  this.platform = null;
22
- this.driver = null;
23
22
  this.fps = null;
23
+ this.driver = null;
24
24
  this.running = false;
25
25
  }
26
26
  start(params) {
@@ -12,8 +12,8 @@ export declare class RunnerV3 extends Runner {
12
12
  readonly engineVersion: string;
13
13
  readonly g: typeof g;
14
14
  platform: PlatformV3 | null;
15
+ fps: number | null;
15
16
  private driver;
16
- private fps;
17
17
  private running;
18
18
  start(params?: RunnerStartParameters): Promise<RunnerV3Game | null>;
19
19
  stop(): void;
@@ -19,8 +19,8 @@ class RunnerV3 extends Runner_1.Runner {
19
19
  this.engineVersion = "3";
20
20
  this.g = engineFiles_1.akashicEngine;
21
21
  this.platform = null;
22
- this.driver = null;
23
22
  this.fps = null;
23
+ this.driver = null;
24
24
  this.running = false;
25
25
  }
26
26
  start(params) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akashic/headless-driver",
3
- "version": "2.13.6",
3
+ "version": "2.13.8",
4
4
  "description": "A library to execute contents using Akashic Engine headlessly",
5
5
  "main": "lib/index.js",
6
6
  "author": "DWANGO Co., Ltd.",
@@ -29,8 +29,8 @@
29
29
  "@akashic/trigger": "^2.0.0",
30
30
  "engine-files-v1": "npm:@akashic/engine-files@1.4.0",
31
31
  "engine-files-v2": "npm:@akashic/engine-files@2.4.0",
32
- "engine-files-v3": "npm:@akashic/engine-files@3.7.15",
33
- "js-sha256": "^0.10.0",
32
+ "engine-files-v3": "npm:@akashic/engine-files@3.7.16",
33
+ "js-sha256": "^0.11.0",
34
34
  "lodash.clonedeep": "^4.5.0",
35
35
  "node-fetch": "^2.6.7"
36
36
  },