aotrautils 0.0.1574 → 0.0.1576

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.
@@ -1,6 +1,6 @@
1
1
 
2
2
 
3
- /*utils COMMONS library associated with aotra version : «1_29072022-2359 (10/05/2025-23:41:15)»*/
3
+ /*utils COMMONS library associated with aotra version : «1_29072022-2359 (11/05/2025-01:11:50)»*/
4
4
  /*-----------------------------------------------------------------------------*/
5
5
 
6
6
 
@@ -4895,7 +4895,7 @@ AOTRAUTILS_LIB_IS_LOADED=true;
4895
4895
 
4896
4896
 
4897
4897
 
4898
- /*utils CLIENT library associated with aotra version : «1_29072022-2359 (10/05/2025-23:41:15)»*/
4898
+ /*utils CLIENT library associated with aotra version : «1_29072022-2359 (11/05/2025-01:11:50)»*/
4899
4899
  /*-----------------------------------------------------------------------------*/
4900
4900
  /* ## Utility global methods in a browser (htmljs) client environment.
4901
4901
  *
@@ -13497,7 +13497,7 @@ getAORTACClient=function(clientId=getUUID(), serverNodeOrigin="ws://127.0.0.1:40
13497
13497
 
13498
13498
 
13499
13499
 
13500
- /*utils GEOMETRY library associated with aotra version : «1_29072022-2359 (10/05/2025-23:41:15)»*/
13500
+ /*utils GEOMETRY library associated with aotra version : «1_29072022-2359 (11/05/2025-01:11:50)»*/
13501
13501
  /*-----------------------------------------------------------------------------*/
13502
13502
 
13503
13503
 
@@ -14736,7 +14736,7 @@ function rayVsUnitSphereClosestPoint(p, r) {
14736
14736
  // MUST REMAIN AT THE END OF THIS LIBRARY FILE !
14737
14737
 
14738
14738
  AOTRAUTILS_GEOMETRY_LIB_IS_LOADED=true;
14739
- /*utils AI library associated with aotra version : «1_29072022-2359 (10/05/2025-23:41:15)»*/
14739
+ /*utils AI library associated with aotra version : «1_29072022-2359 (11/05/2025-01:11:50)»*/
14740
14740
  /*-----------------------------------------------------------------------------*/
14741
14741
 
14742
14742
 
@@ -14882,7 +14882,7 @@ getOpenAIAPIClient=(modelName, apiURL, agentRole, defaultPrompt)=>{
14882
14882
 
14883
14883
 
14884
14884
 
14885
- /*utils CONSOLE library associated with aotra version : «1_29072022-2359 (10/05/2025-23:41:15)»*/
14885
+ /*utils CONSOLE library associated with aotra version : «1_29072022-2359 (11/05/2025-01:11:50)»*/
14886
14886
  /*-----------------------------------------------------------------------------*/
14887
14887
 
14888
14888
 
@@ -15895,6 +15895,7 @@ getListManager=function(config){
15895
15895
  // USE THIS INSTEAD :
15896
15896
  performHTTPRequest=function(completeURL,httpMethod="GET",headers={},requestBodyOrNamedArgs=null,isNodeContext=false,addCORSHeader=ADD_CORS_HEADER){
15897
15897
 
15898
+ // Body
15898
15899
  let requestBodyOrNamedArgsStr=null;
15899
15900
  if(requestBodyOrNamedArgs){
15900
15901
  try{
@@ -15905,7 +15906,14 @@ performHTTPRequest=function(completeURL,httpMethod="GET",headers={},requestBodyO
15905
15906
  requestBodyOrNamedArgsStr=""+requestBodyOrNamedArgs;
15906
15907
  }
15907
15908
  }
15908
-
15909
+ let body=null;
15910
+ // Not the same way to send parameters, with POST/PUT http method :
15911
+ if(contains(["POST","PUT"],httpMethod) && requestBodyOrNamedArgs){
15912
+ // CAUTION : IF POST/PUT METHOD THEN WE MUST NOT PASS A STRING, BUT A PLAIN OBJECT ! ELSE IT WILL CAUSE STRANGE BUGS !!!
15913
+ body=requestBodyOrNamedArgs;
15914
+ }
15915
+
15916
+ // Headers
15909
15917
  if(contains(["POST","PUT"],httpMethod)){
15910
15918
  headers["Content-Type"]="application/json";
15911
15919
  if(requestBodyOrNamedArgsStr)
@@ -15924,13 +15932,13 @@ performHTTPRequest=function(completeURL,httpMethod="GET",headers={},requestBodyO
15924
15932
  // DBG
15925
15933
  lognow("formatted API URL : "+completeURL);
15926
15934
  }
15927
-
15935
+
15928
15936
  // CASE BROWSER CONTEXT :
15929
15937
  if(!isNodeContext || typeof(require)=="undefined"){
15930
15938
  // TRACE
15931
15939
  lognow("INFO : We are not running in a browser context (isNodeContext:"+isNodeContext+";typeof(require):"+(typeof(require))+"). Using browser library.");
15932
15940
 
15933
- const body=((contains(["POST","PUT"],httpMethod) && requestBodyOrNamedArgs)?requestBodyOrNamedArgsStr:null);
15941
+
15934
15942
  return new Promise((resolve,reject)=>{
15935
15943
  fetch(completeURL, {
15936
15944
  method: httpMethod,
@@ -16005,12 +16013,9 @@ performHTTPRequest=function(completeURL,httpMethod="GET",headers={},requestBodyO
16005
16013
  // A chunk of data has been received.
16006
16014
  response.on("data", (chunk) => {
16007
16015
  responseDataStr += chunk;
16008
-
16009
- // DBG
16010
- const str = Buffer.from(chunk).toString("utf8");
16011
- lognow(">>>str:"+str);
16012
-
16013
-
16016
+ // // DEBUG ONLY
16017
+ // const str = Buffer.from(chunk).toString("utf8");
16018
+ // lognow(">>>str:"+str);
16014
16019
  });
16015
16020
 
16016
16021
  // The whole response has been received.
@@ -16060,12 +16065,9 @@ performHTTPRequest=function(completeURL,httpMethod="GET",headers={},requestBodyO
16060
16065
  reject({error:error, httpStatus:null});
16061
16066
  });
16062
16067
 
16063
-
16064
- // Not the same way to send parameters in POST http method :
16065
- if(contains(["POST","PUT"],httpMethod)){
16066
- // (We need to stringify parameters or else we'll have an error :)
16067
- if(requestBodyOrNamedArgs)
16068
- request.write(requestBodyOrNamedArgsStr);
16068
+ // Not the same way to send parameters, with POST/PUT http method :
16069
+ if(contains(["POST","PUT"],httpMethod) && body){
16070
+ request.write(body);
16069
16071
  }
16070
16072
 
16071
16073
  // End the request
aotrautils/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aotrautils",
3
- "version": "0.0.1574",
3
+ "version": "0.0.1576",
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)",