next-flow-interface 0.23.2 → 0.23.3

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.
@@ -4,7 +4,7 @@ export default interface RvNodeServiceApi {
4
4
  forEach(callback: (attributes: RhineVarMap, sid: string) => void): void;
5
5
  forEachNode(nid: string, callback: (attributes: StoredRhineVar<RvNode>, sid: string) => void): void;
6
6
  setToAllStep(nid: string, key: string, value: unknown): void;
7
- getAll(sid?: string): RecursiveMap<RvNode> | undefined;
7
+ getMap(sid?: string): RecursiveMap<RvNode> | undefined;
8
8
  get(nid: string, sid?: string): StoredRhineVar<RvNode> | undefined;
9
9
  }
10
10
  //# sourceMappingURL=rv-node-service-api.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-flow-interface",
3
- "version": "0.23.2",
3
+ "version": "0.23.3",
4
4
  "description": "Interface package for NEXT FlOW. You can use this package to build your own plugin that can control anything.",
5
5
  "type": "module",
6
6
  "module": "dist/index.js",