aotrautils 0.0.1852 → 0.0.1855
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.
- aotrautils/aotrautils.build.js +10 -8
- aotrautils/package.json +1 -1
aotrautils/aotrautils.build.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
/*utils COMMONS library associated with aotra version : «1_29072022-2359 (
|
|
3
|
+
/*utils COMMONS library associated with aotra version : «1_29072022-2359 (18/06/2026-17:18:12)»*/
|
|
4
4
|
/*-----------------------------------------------------------------------------*/
|
|
5
5
|
|
|
6
6
|
|
|
@@ -5470,7 +5470,7 @@ AOTRAUTILS_LIB_IS_LOADED=true;
|
|
|
5470
5470
|
|
|
5471
5471
|
|
|
5472
5472
|
|
|
5473
|
-
/*utils CLIENT library associated with aotra version : «1_29072022-2359 (
|
|
5473
|
+
/*utils CLIENT library associated with aotra version : «1_29072022-2359 (18/06/2026-17:18:12)»*/
|
|
5474
5474
|
/*-----------------------------------------------------------------------------*/
|
|
5475
5475
|
/* ## Utility global methods in a browser (htmljs) client environment.
|
|
5476
5476
|
*
|
|
@@ -13294,7 +13294,7 @@ createOritaMicroClient=function(url, port, isNode=false, staticMicroClientIdPara
|
|
|
13294
13294
|
|
|
13295
13295
|
|
|
13296
13296
|
|
|
13297
|
-
/*utils GEOMETRY library associated with aotra version : «1_29072022-2359 (
|
|
13297
|
+
/*utils GEOMETRY library associated with aotra version : «1_29072022-2359 (18/06/2026-17:18:12)»*/
|
|
13298
13298
|
/*-----------------------------------------------------------------------------*/
|
|
13299
13299
|
|
|
13300
13300
|
|
|
@@ -14379,10 +14379,10 @@ function rayVsUnitSphereClosestPoint(p, r) {
|
|
|
14379
14379
|
// MUST REMAIN AT THE END OF THIS LIBRARY FILE !
|
|
14380
14380
|
|
|
14381
14381
|
AOTRAUTILS_GEOMETRY_LIB_IS_LOADED=true;
|
|
14382
|
-
/*utils 3D library associated with aotra version : «1_29072022-2359 (
|
|
14382
|
+
/*utils 3D library associated with aotra version : «1_29072022-2359 (18/06/2026-17:18:12)»*/
|
|
14383
14383
|
/*-----------------------------------------------------------------------------*/
|
|
14384
14384
|
|
|
14385
|
-
/*utils AI library associated with aotra version : «1_29072022-2359 (
|
|
14385
|
+
/*utils AI library associated with aotra version : «1_29072022-2359 (18/06/2026-17:18:12)»*/
|
|
14386
14386
|
/*-----------------------------------------------------------------------------*/
|
|
14387
14387
|
|
|
14388
14388
|
|
|
@@ -14642,7 +14642,7 @@ getLLMAPIClient=(modelName, apiURL, agentRole, defaultPrompt, llmProviderName=DE
|
|
|
14642
14642
|
|
|
14643
14643
|
|
|
14644
14644
|
|
|
14645
|
-
/*utils CONSOLE library associated with aotra version : «1_29072022-2359 (
|
|
14645
|
+
/*utils CONSOLE library associated with aotra version : «1_29072022-2359 (18/06/2026-17:18:12)»*/
|
|
14646
14646
|
/*-----------------------------------------------------------------------------*/
|
|
14647
14647
|
|
|
14648
14648
|
|
|
@@ -16926,7 +16926,9 @@ WebsocketImplementation={
|
|
|
16926
16926
|
// TRACE
|
|
16927
16927
|
console.log("«ws» SERVER library not called yet, calling it now.");
|
|
16928
16928
|
|
|
16929
|
-
|
|
16929
|
+
const {WebSocket, WebSocketServer}=require("ws");
|
|
16930
|
+
window.WebSocket=WebSocket;
|
|
16931
|
+
window.WebSocketServer=WebSocketServer;
|
|
16930
16932
|
|
|
16931
16933
|
if(typeof(WebSocket)==="undefined"){
|
|
16932
16934
|
// TRACE
|
|
@@ -17007,7 +17009,7 @@ WebsocketImplementation={
|
|
|
17007
17009
|
// NODE SERVER MODE ONLY :
|
|
17008
17010
|
let serverSocket;
|
|
17009
17011
|
if(!WebsocketImplementation.useSocketIOImplementation){
|
|
17010
|
-
serverSocket=new
|
|
17012
|
+
serverSocket=new WebSocketServer({ "server":listenableServer });
|
|
17011
17013
|
}else{
|
|
17012
17014
|
|
|
17013
17015
|
// NOW : socket.io :
|
aotrautils/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aotrautils",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.1855",
|
|
4
4
|
"main": "aotrautils.build.js",
|
|
5
5
|
"description": "A library for vanilla javascript utils (client-side) used in aotra javascript CMS",
|
|
6
6
|
"author": "Jeremie Ratomposon <info@alqemia.com> (https://alqemia.com)",
|