ultravisor 1.3.23 → 1.3.24
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ultravisor",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.24",
|
|
4
4
|
"description": "Cyclic process execution with ai integration.",
|
|
5
5
|
"main": "source/Ultravisor.cjs",
|
|
6
6
|
"bin": {
|
|
@@ -55,13 +55,13 @@
|
|
|
55
55
|
"homepage": "https://github.com/stevenvelozo/ultravisor#readme",
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"cron": "^4.4.0",
|
|
58
|
-
"meadow": "^2.0.
|
|
58
|
+
"meadow": "^2.0.46",
|
|
59
59
|
"meadow-connection-sqlite": "^1.0.20",
|
|
60
60
|
"meadow-migrationmanager": "^1.0.5",
|
|
61
61
|
"orator": "^6.1.2",
|
|
62
62
|
"orator-authentication": "^1.0.6",
|
|
63
63
|
"orator-serviceserver-restify": "^2.0.11",
|
|
64
|
-
"pict": "^1.0.
|
|
64
|
+
"pict": "^1.0.386",
|
|
65
65
|
"pict-service-commandlineutility": "^1.0.20",
|
|
66
66
|
"pict-serviceproviderbase": "^1.0.4",
|
|
67
67
|
"ultravisor-beacon": "^1.0.5",
|
|
@@ -3114,6 +3114,7 @@ class UltravisorAPIServer extends libPictService
|
|
|
3114
3114
|
Action: tmpBody.Action || 'Execute',
|
|
3115
3115
|
Settings: tmpBody.Settings || {},
|
|
3116
3116
|
AffinityKey: tmpBody.AffinityKey || '',
|
|
3117
|
+
RequireAffinityMatch: !!tmpBody.RequireAffinityMatch,
|
|
3117
3118
|
TimeoutMs: parseInt(tmpBody.TimeoutMs, 10) || 0,
|
|
3118
3119
|
Priority: (tmpBody.Priority != null) ? parseInt(tmpBody.Priority, 10) : null
|
|
3119
3120
|
};
|
|
@@ -3507,6 +3508,7 @@ class UltravisorAPIServer extends libPictService
|
|
|
3507
3508
|
Action: tmpBody.Action || 'Execute',
|
|
3508
3509
|
Settings: tmpBody.Settings || {},
|
|
3509
3510
|
AffinityKey: tmpBody.AffinityKey || '',
|
|
3511
|
+
RequireAffinityMatch: !!tmpBody.RequireAffinityMatch,
|
|
3510
3512
|
TimeoutMs: tmpBody.TimeoutMs || 300000
|
|
3511
3513
|
};
|
|
3512
3514
|
|
|
@@ -3633,6 +3635,7 @@ class UltravisorAPIServer extends libPictService
|
|
|
3633
3635
|
Action: tmpBody.Action || 'Execute',
|
|
3634
3636
|
Settings: tmpBody.Settings || {},
|
|
3635
3637
|
AffinityKey: tmpBody.AffinityKey || '',
|
|
3638
|
+
RequireAffinityMatch: !!tmpBody.RequireAffinityMatch,
|
|
3636
3639
|
TimeoutMs: tmpBody.TimeoutMs || 300000
|
|
3637
3640
|
};
|
|
3638
3641
|
|