@almadar/std 5.5.0 → 6.0.2
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/dist/behaviors/exports-reader.js +8304 -27305
- package/dist/behaviors/exports-reader.js.map +1 -1
- package/dist/behaviors/functions/index.d.ts +5827 -5269
- package/dist/behaviors/functions/index.js +8062 -27134
- package/dist/behaviors/functions/index.js.map +1 -1
- package/dist/behaviors/index.d.ts +1 -1
- package/dist/behaviors/index.js +8306 -27307
- package/dist/behaviors/index.js.map +1 -1
- package/dist/behaviors/query.js +8307 -27308
- package/dist/behaviors/query.js.map +1 -1
- package/dist/index.d.ts +52 -4
- package/dist/index.js +8407 -27295
- package/dist/index.js.map +1 -1
- package/dist/modules/agent.d.ts +1 -1
- package/dist/modules/array.d.ts +1 -1
- package/dist/modules/async.d.ts +1 -1
- package/dist/modules/composition.d.ts +1 -1
- package/dist/modules/contract.d.ts +1 -1
- package/dist/modules/data.d.ts +1 -1
- package/dist/modules/format.d.ts +1 -1
- package/dist/modules/graph.d.ts +1 -1
- package/dist/modules/index.d.ts +1 -1
- package/dist/modules/math.d.ts +1 -1
- package/dist/modules/nn.d.ts +1 -1
- package/dist/modules/object.d.ts +1 -1
- package/dist/modules/os.d.ts +1 -1
- package/dist/modules/prob.d.ts +1 -1
- package/dist/modules/str.d.ts +1 -1
- package/dist/modules/tensor.d.ts +1 -1
- package/dist/modules/time.d.ts +1 -1
- package/dist/modules/train.d.ts +1 -1
- package/dist/modules/validate.d.ts +1 -1
- package/dist/registry.d.ts +1 -1
- package/dist/{types-BGtQuBge.d.ts → types-hu1LavLs.d.ts} +1 -1
- package/package.json +2 -2
package/dist/modules/agent.d.ts
CHANGED
package/dist/modules/array.d.ts
CHANGED
package/dist/modules/async.d.ts
CHANGED
package/dist/modules/data.d.ts
CHANGED
package/dist/modules/format.d.ts
CHANGED
package/dist/modules/graph.d.ts
CHANGED
package/dist/modules/index.d.ts
CHANGED
|
@@ -16,4 +16,4 @@ export { PROB_OPERATORS, getProbOperators } from './prob.js';
|
|
|
16
16
|
export { OS_OPERATORS } from './os.js';
|
|
17
17
|
export { AGENT_OPERATORS, getAgentOperators } from './agent.js';
|
|
18
18
|
export { COMPOSITION_OPERATORS, getCompositionOperators } from './composition.js';
|
|
19
|
-
import '../types-
|
|
19
|
+
import '../types-hu1LavLs.js';
|
package/dist/modules/math.d.ts
CHANGED
package/dist/modules/nn.d.ts
CHANGED
package/dist/modules/object.d.ts
CHANGED
package/dist/modules/os.d.ts
CHANGED
package/dist/modules/prob.d.ts
CHANGED
package/dist/modules/str.d.ts
CHANGED
package/dist/modules/tensor.d.ts
CHANGED
package/dist/modules/time.d.ts
CHANGED
package/dist/modules/train.d.ts
CHANGED
package/dist/registry.d.ts
CHANGED
|
@@ -90,4 +90,4 @@ declare function isStdOperator(operator: string): boolean;
|
|
|
90
90
|
*/
|
|
91
91
|
declare function makeStdOperator(module: StdModule, fn: string): string;
|
|
92
92
|
|
|
93
|
-
export { type
|
|
93
|
+
export { type StdOperatorMeta as S, type StdModule as a, STD_MODULES as b, STD_OPERATOR_CATEGORIES as c, type StdOperatorCategory as d, getModuleFromOperator as e, isStdOperator as f, getFunctionFromOperator as g, isStdCategory as i, makeStdOperator as m };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@almadar/std",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.2",
|
|
4
4
|
"description": "Standard library operators for Almadar (math, string, array, etc.)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@almadar/core": ">=4.
|
|
44
|
+
"@almadar/core": ">=4.7.0",
|
|
45
45
|
"@almadar/operators": ">=2.1.3"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|