@ledgerhq/wallet-api-simulator 0.7.1 → 0.7.3

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.
@@ -1,4 +1,5 @@
1
1
  export declare const profiles: {
2
2
  STANDARD: import("../types").SimulatorProfile;
3
+ DEVICE: import("../types").SimulatorProfile;
3
4
  };
4
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/profiles/index.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,QAAQ;;CAEpB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/profiles/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,QAAQ;;;CAGpB,CAAC"}
@@ -1,7 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.profiles = void 0;
4
+ const device_1 = require("./device");
4
5
  const standard_1 = require("./standard");
5
6
  exports.profiles = {
6
7
  STANDARD: standard_1.standardProfile,
8
+ DEVICE: device_1.deviceProfile,
7
9
  };
@@ -1,4 +1,5 @@
1
1
  export declare const profiles: {
2
2
  STANDARD: import("../types").SimulatorProfile;
3
+ DEVICE: import("../types").SimulatorProfile;
3
4
  };
4
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/profiles/index.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,QAAQ;;CAEpB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/profiles/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,QAAQ;;;CAGpB,CAAC"}
@@ -1,4 +1,6 @@
1
+ import { deviceProfile } from "./device";
1
2
  import { standardProfile } from "./standard";
2
3
  export const profiles = {
3
4
  STANDARD: standardProfile,
5
+ DEVICE: deviceProfile,
4
6
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ledgerhq/wallet-api-simulator",
3
- "version": "0.7.1",
3
+ "version": "0.7.3",
4
4
  "license": "MIT",
5
5
  "main": "lib/index.js",
6
6
  "module": "lib-es/index.js",
@@ -26,7 +26,7 @@
26
26
  "@ledgerhq/hw-transport-http": "^6.27.7",
27
27
  "rxjs": "^7.5.7",
28
28
  "ws": "^8.10.0",
29
- "@ledgerhq/wallet-api-client": "0.8.0",
29
+ "@ledgerhq/wallet-api-client": "0.9.0",
30
30
  "@ledgerhq/wallet-api-core": "0.8.0",
31
31
  "@ledgerhq/wallet-api-server": "0.8.1"
32
32
  },