stentor-channel 1.57.0 → 1.57.2

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.
Files changed (2) hide show
  1. package/lib/Types.d.ts +2 -2
  2. package/package.json +7 -7
package/lib/Types.d.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  /*! Copyright (c) 2019, XAPPmedia */
2
2
  import { Device } from "stentor-models";
3
- export declare type StentorPlatform = "stentor-platform";
3
+ export type StentorPlatform = "stentor-platform";
4
4
  /**
5
5
  * The object has a device key that describes it's capabilities.
6
6
  */
7
- export declare type Deviceable = Record<string, unknown> & {
7
+ export type Deviceable = Record<string, unknown> & {
8
8
  device: Device;
9
9
  };
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "1.57.0",
7
+ "version": "1.57.2",
8
8
  "description": "The most basic of channels, one that uses stentor requests & responses as input.",
9
9
  "types": "lib/index",
10
10
  "main": "lib/index",
@@ -21,16 +21,16 @@
21
21
  "@xapp/config": "0.2.3",
22
22
  "chai": "4.3.7",
23
23
  "mocha": "9.2.2",
24
- "sinon": "14.0.1",
24
+ "sinon": "14.0.2",
25
25
  "sinon-chai": "3.7.0",
26
- "stentor-models": "1.57.0",
26
+ "stentor-models": "1.57.1",
27
27
  "ts-node": "10.9.1",
28
- "typescript": "4.8.4"
28
+ "typescript": "4.9.3"
29
29
  },
30
30
  "dependencies": {
31
31
  "@xapp/patterns": "1.40.343",
32
- "stentor-logger": "1.57.0",
33
- "stentor-utils": "1.57.0"
32
+ "stentor-logger": "1.57.2",
33
+ "stentor-utils": "1.57.2"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "stentor-models": "1.x"
@@ -40,5 +40,5 @@
40
40
  "clean": "rm -rf ./lib/*",
41
41
  "test": "mocha --recursive -r ts-node/register \"./src/**/*.test.ts\""
42
42
  },
43
- "gitHead": "49d4e56874c967af5ef1dc0da757bdd6d819ae82"
43
+ "gitHead": "9b1d170c6b03f55f2c5eab1204b3a3e7ad6b4e6c"
44
44
  }