jooby-codec 2.14.0 → 2.14.1

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,3 +1,4 @@
1
1
  export * as commands from './commands/index.js';
2
2
  export * as message from './message.js';
3
3
  export * as constants from './constants/index.js';
4
+ export * as utils from './utils/index.js';
package/dist/mtx/index.js CHANGED
@@ -1,4 +1,5 @@
1
1
  export * as commands from './commands/index.js';
2
2
  export * as message from './message.js';
3
3
  export * as constants from './constants/index.js';
4
+ export * as utils from './utils/index.js';
4
5
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/mtx/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,QAAQ,MAAM,qBAAqB,CAAC;AAChD,OAAO,KAAK,OAAO,MAAM,cAAc,CAAC;AACxC,OAAO,KAAK,SAAS,MAAM,sBAAsB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/mtx/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,QAAQ,MAAM,qBAAqB,CAAC;AAChD,OAAO,KAAK,OAAO,MAAM,cAAc,CAAC;AACxC,OAAO,KAAK,SAAS,MAAM,sBAAsB,CAAC;AAClD,OAAO,KAAK,KAAK,MAAM,kBAAkB,CAAC"}
@@ -0,0 +1 @@
1
+ export * as crypto from './crypto.js';
@@ -0,0 +1,2 @@
1
+ export * as crypto from './crypto.js';
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/mtx/utils/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,aAAa,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jooby-codec",
3
- "version": "2.14.0",
3
+ "version": "2.14.1",
4
4
  "description": "Jooby message encoders/decoders",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -14,6 +14,11 @@
14
14
  "./analog/commands/downlink": "./dist/analog/commands/downlink/index.js",
15
15
  "./analog/commands/uplink": "./dist/analog/commands/uplink/index.js",
16
16
  "./analog/constants": "./dist/analog/constants/index.js",
17
+ "./mtx": "./dist/mtx/index.js",
18
+ "./mtx/commands": "./dist/mtx/commands/index.js",
19
+ "./mtx/commands/downlink": "./dist/mtx/commands/downlink/index.js",
20
+ "./mtx/commands/uplink": "./dist/mtx/commands/uplink/index.js",
21
+ "./mtx/constants": "./dist/mtx/constants/index.js",
17
22
  "./obis-observer": "./dist/obis-observer/index.js",
18
23
  "./obis-observer/commands": "./dist/obis-observer/commands/index.js",
19
24
  "./obis-observer/commands/downlink": "./dist/obis-observer/commands/downlink/index.js",
@@ -30,5 +35,8 @@
30
35
  "npm": ">=9.0.0",
31
36
  "node": ">=18.0.0"
32
37
  },
38
+ "dependencies": {
39
+ "crypto-js": "^4.1.1"
40
+ },
33
41
  "license": "MIT"
34
42
  }