aotrautils 0.0.1177 → 0.0.1179

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 (22/03/2025-13:38:53)»*/
3
+ /*utils COMMONS library associated with aotra version : «1_29072022-2359 (24/03/2025-18:00:15)»*/
4
4
  /*-----------------------------------------------------------------------------*/
5
5
 
6
6
 
@@ -448,9 +448,13 @@ if(!window.aotestAllTestsManager){
448
448
  };
449
449
 
450
450
  // Utility methods for aotest framework :
451
- window.aotestMethods.getScenariiInTest=function(test){
451
+ window.aotestMethods.getScenariiInTest=function(test, filterByScenariiNames=null){
452
452
  let results={};
453
- window.aotestMethods.iterateOverScenariiInTest(test,(t,s,sName)=>{ results[sName]=s; });
453
+ window.aotestMethods.iterateOverScenariiInTest(test,(t,s,sName)=>{
454
+ if(!filterByScenariiNames || contains(filterByScenariiNames, sName)){
455
+ results[sName]=s;
456
+ }
457
+ });
454
458
  return results;
455
459
  };
456
460
 
@@ -4822,7 +4826,7 @@ AOTRAUTILS_LIB_IS_LOADED=true;
4822
4826
 
4823
4827
 
4824
4828
 
4825
- /*utils CLIENT library associated with aotra version : «1_29072022-2359 (22/03/2025-13:38:53)»*/
4829
+ /*utils CLIENT library associated with aotra version : «1_29072022-2359 (24/03/2025-18:00:15)»*/
4826
4830
  /*-----------------------------------------------------------------------------*/
4827
4831
  /* ## Utility global methods in a browser (htmljs) client environment.
4828
4832
  *
@@ -13394,7 +13398,7 @@ getAORTACClient=function(clientId=getUUID(), serverNodeOrigin="ws://127.0.0.1:40
13394
13398
 
13395
13399
 
13396
13400
 
13397
- /*utils GEOMETRY library associated with aotra version : «1_29072022-2359 (22/03/2025-13:38:53)»*/
13401
+ /*utils GEOMETRY library associated with aotra version : «1_29072022-2359 (24/03/2025-18:00:15)»*/
13398
13402
  /*-----------------------------------------------------------------------------*/
13399
13403
 
13400
13404
 
@@ -14633,7 +14637,7 @@ function rayVsUnitSphereClosestPoint(p, r) {
14633
14637
  // MUST REMAIN AT THE END OF THIS LIBRARY FILE !
14634
14638
 
14635
14639
  AOTRAUTILS_GEOMETRY_LIB_IS_LOADED=true;
14636
- /*utils AI library associated with aotra version : «1_29072022-2359 (22/03/2025-13:38:53)»*/
14640
+ /*utils AI library associated with aotra version : «1_29072022-2359 (24/03/2025-18:00:15)»*/
14637
14641
  /*-----------------------------------------------------------------------------*/
14638
14642
 
14639
14643
 
@@ -14777,7 +14781,7 @@ getOpenAIAPIClient=(modelName, apiURL, agentRole, defaultPrompt)=>{
14777
14781
 
14778
14782
 
14779
14783
 
14780
- /*utils SERVER library associated with aotra version : «1_29072022-2359 (22/03/2025-13:38:53)»*/
14784
+ /*utils SERVER library associated with aotra version : «1_29072022-2359 (24/03/2025-18:00:15)»*/
14781
14785
  /*-----------------------------------------------------------------------------*/
14782
14786
 
14783
14787
 
aotrautils/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aotrautils",
3
- "version": "0.0.1177",
3
+ "version": "0.0.1179",
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)",