@hpcc-js/comms 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.
- package/dist/index.browser.js +6318 -0
- package/dist/index.browser.js.map +1 -0
- package/dist/index.browser.umd.cjs +7 -0
- package/dist/index.browser.umd.cjs.map +1 -0
- package/dist/index.node.js +1 -1
- package/dist/index.node.js.map +1 -1
- package/package.json +19 -14
- package/src/__package__.ts +2 -2
- package/src/index.browser.ts +1 -0
- package/src/index.node.ts +1 -1
- package/src/services/wsAccount.ts +1 -1
- package/src/services/wsCloud.ts +1 -1
- package/src/services/wsDali.ts +1 -1
- package/src/services/wsElk.ts +1 -1
- package/src/services/wsMachine.ts +1 -1
- package/src/services/wsPackageProcess.ts +1 -1
- package/src/services/wsResources.ts +1 -1
- package/types/__package__.d.ts +1 -1
- package/types/index.browser.d.ts +1 -0
- package/types/index.node.d.ts +1 -1
- package/types/services/wsAccount.d.ts +1 -1
- package/types/services/wsCloud.d.ts +1 -1
- package/types/services/wsDali.d.ts +1 -1
- package/types/services/wsElk.d.ts +1 -1
- package/types/services/wsMachine.d.ts +1 -1
- package/types/services/wsPackageProcess.d.ts +1 -1
- package/types/services/wsResources.d.ts +1 -1
- package/dist/index.js +0 -7
- package/dist/index.js.map +0 -7
- package/src/index.ts +0 -1
- /package/src/{index-common.ts → index.common.ts} +0 -0
- /package/types/{index-common.d.ts → index.common.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,18 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hpcc-js/comms",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.0",
|
|
4
4
|
"description": "hpcc-js - Communications",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"main": "./dist/index.node.js",
|
|
7
|
+
"module": "./dist/index.browser.js",
|
|
6
8
|
"exports": {
|
|
7
9
|
".": {
|
|
8
|
-
"types": "./types/index.
|
|
10
|
+
"types": "./types/index.browser.d.ts",
|
|
9
11
|
"node": "./dist/index.node.js",
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
+
"import": "./dist/index.browser.js",
|
|
13
|
+
"require": "./dist/index.browser.umd.cjs"
|
|
14
|
+
},
|
|
15
|
+
"./dist/*": "./dist/*"
|
|
12
16
|
},
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"types": "./types/index.node.d.ts",
|
|
17
|
+
"browser": "./dist/index.browser.umd.cjs",
|
|
18
|
+
"types": "./types/index.browser.d.ts",
|
|
16
19
|
"files": [
|
|
17
20
|
"dist/*",
|
|
18
21
|
"src/*",
|
|
@@ -20,8 +23,10 @@
|
|
|
20
23
|
],
|
|
21
24
|
"scripts": {
|
|
22
25
|
"clean": "rimraf --glob lib* types dist *.tsbuildinfo .turbo",
|
|
23
|
-
"bundle": "node esbuild.js",
|
|
24
|
-
"bundle-
|
|
26
|
+
"bundle-node": "node ./esbuild.js",
|
|
27
|
+
"bundle-browser": "vite build",
|
|
28
|
+
"bundle": "run-s bundle-browser bundle-node",
|
|
29
|
+
"bundle-watch": "vite",
|
|
25
30
|
"gen-types": "tsc --project tsconfig.json",
|
|
26
31
|
"gen-types-watch": "npm run gen-types -- --watch",
|
|
27
32
|
"build": "run-p gen-types bundle",
|
|
@@ -32,8 +37,8 @@
|
|
|
32
37
|
"test-node": "vitest run --project node",
|
|
33
38
|
"test": "vitest run",
|
|
34
39
|
"coverage": "vitest run --coverage",
|
|
35
|
-
"update": "npx
|
|
36
|
-
"update-major": "npx
|
|
40
|
+
"update": "npx --yes npm-check-updates -u -t minor",
|
|
41
|
+
"update-major": "npx --yes npm-check-updates -u",
|
|
37
42
|
"wsdl-access": "node ./lib-esm/index.js -k --url=http://localhost:8010/ws_access?wsdl --outDir=./src/services/wsdl",
|
|
38
43
|
"wsdl-account": "node ./lib-esm/index.js -k --url=http://localhost:8010/Ws_Account?wsdl --outDir=./src/services/wsdl",
|
|
39
44
|
"wsdl-cloud": "node ./lib-esm/index.js -k --url=http://localhost:8010/WsCloud?wsdl --outDir=./src/services/wsdl",
|
|
@@ -57,7 +62,7 @@
|
|
|
57
62
|
"wsdl-all": "npm-run-all --aggregate-output -c --serial build --parallel wsdl-*"
|
|
58
63
|
},
|
|
59
64
|
"dependencies": {
|
|
60
|
-
"@hpcc-js/util": "^3.
|
|
65
|
+
"@hpcc-js/util": "^3.3.0",
|
|
61
66
|
"@xmldom/xmldom": "0.9.5",
|
|
62
67
|
"abort-controller": "3.0.0",
|
|
63
68
|
"data-uri-to-buffer": "6.0.2",
|
|
@@ -68,7 +73,7 @@
|
|
|
68
73
|
},
|
|
69
74
|
"devDependencies": {
|
|
70
75
|
"@hpcc-js/ddl-shim": "^3.0.0",
|
|
71
|
-
"@hpcc-js/esbuild-plugins": "^1.
|
|
76
|
+
"@hpcc-js/esbuild-plugins": "^1.4.0",
|
|
72
77
|
"@types/d3-request": "1.0.9",
|
|
73
78
|
"@types/d3-time-format": "2.3.4",
|
|
74
79
|
"@types/node": "^18",
|
|
@@ -90,5 +95,5 @@
|
|
|
90
95
|
"url": "https://github.com/hpcc-systems/Visualization/issues"
|
|
91
96
|
},
|
|
92
97
|
"homepage": "https://github.com/hpcc-systems/Visualization",
|
|
93
|
-
"gitHead": "
|
|
98
|
+
"gitHead": "145a4d4c8189c70f08e9804e63959d6dd398bd9f"
|
|
94
99
|
}
|
package/src/__package__.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export const PKG_NAME = "@hpcc-js/comms";
|
|
2
|
-
export const PKG_VERSION = "3.
|
|
3
|
-
export const BUILD_VERSION = "3.
|
|
2
|
+
export const PKG_VERSION = "3.3.0";
|
|
3
|
+
export const BUILD_VERSION = "3.3.0";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./index.common.ts";
|
package/src/index.node.ts
CHANGED
package/src/services/wsCloud.ts
CHANGED
package/src/services/wsDali.ts
CHANGED
package/src/services/wsElk.ts
CHANGED
package/types/__package__.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./index.common.ts";
|
package/types/index.node.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AccountServiceBase, WsAccount } from "./wsdl/ws_account/v1.06/ws_account.ts";
|
|
2
|
-
export { WsAccount };
|
|
2
|
+
export { type WsAccount };
|
|
3
3
|
export declare class AccountService extends AccountServiceBase {
|
|
4
4
|
VerifyUser(request: WsAccount.VerifyUserRequest): Promise<WsAccount.VerifyUserResponse>;
|
|
5
5
|
}
|