@tdxvolt/volt-client-grpc 0.19.7 → 0.19.9
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.
- package/lib/index.cjs +2 -3
- package/package.json +2 -2
- package/src/index.js +2 -1
package/lib/index.cjs
CHANGED
|
@@ -2,11 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var js = require('@tdxvolt/volt-client-web/js');
|
|
6
6
|
var uuid = require('uuid');
|
|
7
7
|
var lodash = require('lodash');
|
|
8
8
|
var ip = require('ip');
|
|
9
|
-
var js = require('@tdxvolt/volt-client-web/js');
|
|
10
9
|
var debug = require('debug');
|
|
11
10
|
var Protobuf = require('protobufjs');
|
|
12
11
|
var camelCase = require('lodash.camelcase');
|
|
@@ -6175,7 +6174,7 @@ class VoltClient extends EventEmitter__default["default"] {
|
|
|
6175
6174
|
|
|
6176
6175
|
Object.defineProperty(exports, 'SyncProvider', {
|
|
6177
6176
|
enumerable: true,
|
|
6178
|
-
get: function () { return
|
|
6177
|
+
get: function () { return js.SyncProvider; }
|
|
6179
6178
|
});
|
|
6180
6179
|
Object.defineProperty(exports, 'generateId', {
|
|
6181
6180
|
enumerable: true,
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "0.19.
|
|
6
|
+
"version": "0.19.9",
|
|
7
7
|
"description": "tdx Volt library for nodejs clients",
|
|
8
8
|
"type": "module",
|
|
9
9
|
"exports": {
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"author": "toby.ealden@gmail.com",
|
|
34
34
|
"license": "ISC",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@tdxvolt/volt-client-web": "^0.19.
|
|
36
|
+
"@tdxvolt/volt-client-web": "^0.19.9",
|
|
37
37
|
"debug": "^4.1.1",
|
|
38
38
|
"ip": "^1.1.5",
|
|
39
39
|
"jsonwebtoken": "^8.5.1",
|
package/src/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { SyncProvider } from "@tdxvolt/volt-client-web";
|
|
1
|
+
export { SyncProvider } from "@tdxvolt/volt-client-web/js";
|
|
2
2
|
export { v4 as generateId } from "uuid";
|
|
3
3
|
export { constants } from "./constants.js";
|
|
4
4
|
export * as grpcUtils from "./grpc-utils.js";
|
|
@@ -6,3 +6,4 @@ export * as protoUtils from "./proto-utils.js";
|
|
|
6
6
|
export * as utils from "./utils.js";
|
|
7
7
|
export { VoltClient } from "./volt-client.js";
|
|
8
8
|
export * from "./volt-credential.js";
|
|
9
|
+
|