profoundjs 6.1.0 → 6.2.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/htdocs/profoundui/proddata/js/designer.js +3679 -3609
- package/htdocs/profoundui/proddata/js/key_management.js +16 -22
- package/htdocs/profoundui/proddata/js/rich-display-react-component.js +42 -42
- package/htdocs/profoundui/proddata/js/rich-display-vue-component.js +27 -27
- package/htdocs/profoundui/proddata/js/runtime.js +1385 -1384
- package/htdocs/profoundui/proddata/js/soapclient.js +389 -396
- package/package.json +8 -1
- package/profound.jse +1 -1
- package/setup/lic_client.js +9 -0
- package/setup/modules/puiscreens.json +6 -5
- package/setup/pjsdist.savf +0 -0
- package/setup/setup.js +80 -70
- package/views/cloud.css +19 -6
- package/views/key.ejs +32 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "profoundjs",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.2.0",
|
|
4
4
|
"min-profoundui-version": "6.20.0",
|
|
5
5
|
"description": "Profound.js Framework and Server",
|
|
6
6
|
"keywords": [
|
|
@@ -51,9 +51,11 @@
|
|
|
51
51
|
"binary-search-bounds": "^2.0.4",
|
|
52
52
|
"bitwise": "^2.0.4",
|
|
53
53
|
"body-parser": "^1.19.0",
|
|
54
|
+
"body-parser-xml": "^2.0.3",
|
|
54
55
|
"callsite": "^1.0.0",
|
|
55
56
|
"cardinal": "^2.1.1",
|
|
56
57
|
"chokidar": "^3.4.0",
|
|
58
|
+
"columnify": "^1.6.0",
|
|
57
59
|
"compare-versions": "^3.5.1",
|
|
58
60
|
"compression": "^1.7.4",
|
|
59
61
|
"cookie-parser": "^1.4.4",
|
|
@@ -87,9 +89,12 @@
|
|
|
87
89
|
"minimist": "^1.2.5",
|
|
88
90
|
"moment": "^2.26.0",
|
|
89
91
|
"morgan": "^1.9.1",
|
|
92
|
+
"mssql": "^6.4.1",
|
|
90
93
|
"multer": "^1.4.5-lts.1",
|
|
94
|
+
"mysql": "^2.17.1",
|
|
91
95
|
"needle": "^3.1.0",
|
|
92
96
|
"node-machine-id": "^1.1.12",
|
|
97
|
+
"node-sql-parser": "^4.6.6",
|
|
93
98
|
"p-iteration": "^1.1.8",
|
|
94
99
|
"pdfmake": "^0.2.4",
|
|
95
100
|
"pjsloader": "^1.12.0",
|
|
@@ -102,6 +107,7 @@
|
|
|
102
107
|
"randomatic": "^3.1.1",
|
|
103
108
|
"request": "^2.88.0",
|
|
104
109
|
"semver": "^7.3.8",
|
|
110
|
+
"soap": "^0.45.0",
|
|
105
111
|
"ssh2": "^1.11.0",
|
|
106
112
|
"ssh2-sftp-client": "^8.1.0",
|
|
107
113
|
"stat-mode": "^1.0.0",
|
|
@@ -119,6 +125,7 @@
|
|
|
119
125
|
},
|
|
120
126
|
"scripts": {
|
|
121
127
|
"postinstall": "node setup/install.js",
|
|
128
|
+
"lint": "eslint",
|
|
122
129
|
"setup": "node setup/setup.js",
|
|
123
130
|
"completeInstall": "node setup/completeInstall.js"
|
|
124
131
|
},
|