diff --git a/README.md b/README.md index 1b6172b..c662302 100644 --- a/README.md +++ b/README.md @@ -47,9 +47,10 @@ When in doubt simplify. * [Unified Turing Machine](https://github.com/Phuire-Research/Stratimux/blob/main/The-Unified-Turing-Machine.md) - The governing concept for this entire framework. ## Change Log ![Tests](https://github.com/Phuire-Research/Stratimux/actions/workflows/node.js.yml/badge.svg) -### v0.1.54 4/24/24 +### v0.1.55 4/24/24 * Changed ActionNodeOptions to allow for successNode and failureNode to be left absent. Continued effort towards decreasing boilerplate. * Refined original paper. +* Properly exporting the new ActionCreator and ActionCreatorWithPayload for specific createQualitySetX creator functions ### v0.1.53 4/23/24 * Added createQualitySet and createQualitySetWithPayload to reduce some boilerplate. ### v0.1.52 Patch 4/03/24 diff --git a/package.json b/package.json index 122b466..db9614b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "stratimux", "license": "GPL-3.0", - "version": "0.1.54", + "version": "0.1.55", "description": "Unified Turing Machine", "main": "dist/index.js", "module": "dist/index.mjs", diff --git a/src/index.ts b/src/index.ts index 382e142..f07f103 100644 --- a/src/index.ts +++ b/src/index.ts @@ -61,7 +61,7 @@ export { debounceAction, throttleAction } from './model/actionOperators'; -export type { Action, ActionType } from './model/action'; +export type { Action, ActionType, ActionCreator, ActionCreatorWithPayload } from './model/action'; export { primeAction, createAction,