@rkmodules/rules 0.0.94 → 0.0.95

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,2 +1,2 @@
1
1
  import { PrimitiveFunction } from "../../Engine/types";
2
- export declare const shiftList: PrimitiveFunction;
2
+ export declare const groupAll: PrimitiveFunction;
@@ -0,0 +1,2 @@
1
+ import { PrimitiveFunction } from "../../Engine/types";
2
+ export declare const listInput: PrimitiveFunction;
@@ -0,0 +1,2 @@
1
+ import { PrimitiveFunction } from "../../Engine/types";
2
+ export declare const sum: PrimitiveFunction;
@@ -0,0 +1,3 @@
1
+ import { PrimitiveFunction } from "../../Engine";
2
+ declare const primitives: Record<string, PrimitiveFunction>;
3
+ export default primitives;
@@ -0,0 +1,2 @@
1
+ import { PrimitiveFunction } from "../../Engine/types";
2
+ export declare const joinStrings: PrimitiveFunction;
@@ -0,0 +1,2 @@
1
+ import { PrimitiveFunction } from "../../Engine/types";
2
+ export declare const toString: PrimitiveFunction;
@@ -2,9 +2,10 @@ import { PrimitiveFunction } from "../Engine/types";
2
2
  export declare const Lib: {
3
3
  Util: Record<string, PrimitiveFunction>;
4
4
  Math: Record<string, PrimitiveFunction>;
5
+ String: Record<string, PrimitiveFunction>;
5
6
  List: Record<string, PrimitiveFunction>;
7
+ Group: Record<string, PrimitiveFunction>;
6
8
  Sequence: Record<string, PrimitiveFunction>;
7
- Tree: Record<string, PrimitiveFunction>;
8
9
  Logic: Record<string, PrimitiveFunction>;
9
10
  IO: Record<string, PrimitiveFunction>;
10
11
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rkmodules/rules",
3
- "version": "0.0.94",
3
+ "version": "0.0.95",
4
4
  "main": "dist/index.cjs.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "types": "./dist/index.d.ts",
File without changes