@irsdk-node/native 3.2.0 → 3.3.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.
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/build/binding.sln CHANGED
@@ -4,14 +4,14 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "irsdk_node", "irsdk_node.vc
4
4
  EndProject
5
5
  Global
6
6
  GlobalSection(SolutionConfigurationPlatforms) = preSolution
7
- Release|x64 = Release|x64
8
7
  Debug|x64 = Debug|x64
8
+ Release|x64 = Release|x64
9
9
  EndGlobalSection
10
10
  GlobalSection(ProjectConfigurationPlatforms) = postSolution
11
- {1B84CF73-BF95-FD32-1555-88D3CCBBB352}.Release|x64.ActiveCfg = Release|x64
12
- {1B84CF73-BF95-FD32-1555-88D3CCBBB352}.Release|x64.Build.0 = Release|x64
13
11
  {1B84CF73-BF95-FD32-1555-88D3CCBBB352}.Debug|x64.ActiveCfg = Debug|x64
14
12
  {1B84CF73-BF95-FD32-1555-88D3CCBBB352}.Debug|x64.Build.0 = Debug|x64
13
+ {1B84CF73-BF95-FD32-1555-88D3CCBBB352}.Release|x64.ActiveCfg = Release|x64
14
+ {1B84CF73-BF95-FD32-1555-88D3CCBBB352}.Release|x64.Build.0 = Release|x64
15
15
  EndGlobalSection
16
16
  GlobalSection(SolutionProperties) = preSolution
17
17
  HideSolutionNode = FALSE
package/dist/index.js CHANGED
@@ -1,8 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DebugSDK = exports.NativeSDK = void 0;
3
+ exports.NativeSDK = void 0;
4
4
  // Import from JS so that we can type the API in a nicer way (without aliases)
5
5
  // The alternative would be to somehow get types generated, or use aliases to
6
6
  // fake a module and then define that module... but those are gross, so no thanks
7
7
  exports.NativeSDK = require("../build/Release/irsdk_node.node").iRacingSdkNode;
8
- exports.DebugSDK = require("../build/Debug/irsdk_node.node").iRacingSdkNode;
8
+ // @todo For some reason this is not being built when being downloaded. It runs via prepack, but not in the built version.
9
+ // export const DebugSDK = require("../build/Debug/irsdk_node.node").iRacingSdkNode;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@irsdk-node/native",
3
- "version": "3.2.0",
3
+ "version": "3.3.0",
4
4
  "author": {
5
5
  "name": "Matt Bengston",
6
6
  "email": "bengsfort@gmail.com"
package/src/index.d.ts CHANGED
@@ -114,4 +114,4 @@ export class NativeSDK implements INativeSDK {
114
114
  public broadcast(message: BroadcastMessages.VideoCapture, command: VideoCaptureCommand): void;
115
115
  }
116
116
 
117
- export const DebugSDK: typeof NativeSDK;
117
+ // export const DebugSDK: typeof NativeSDK;
package/src/index.js CHANGED
@@ -2,4 +2,5 @@
2
2
  // The alternative would be to somehow get types generated, or use aliases to
3
3
  // fake a module and then define that module... but those are gross, so no thanks
4
4
  export const NativeSDK = require("../build/Release/irsdk_node.node").iRacingSdkNode;
5
- export const DebugSDK = require("../build/Debug/irsdk_node.node").iRacingSdkNode;
5
+ // @todo For some reason this is not being built when being downloaded. It runs via prepack, but not in the built version.
6
+ // export const DebugSDK = require("../build/Debug/irsdk_node.node").iRacingSdkNode;