@nt-ai-lab/deterministic-agent-workflow-engine 0.3.3 → 0.3.4

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.
@@ -23,6 +23,7 @@ export type BashForbiddenConfig = {
23
23
  export type WorkflowStateDefinition<TState, TStateName extends string = string, TOperation extends string = string> = {
24
24
  readonly emoji: string;
25
25
  readonly agentInstructions: string;
26
+ readonly allowIdle?: boolean;
26
27
  readonly canTransitionTo: readonly TStateName[];
27
28
  readonly allowedWorkflowOperations: readonly TOperation[];
28
29
  readonly forbidden?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nt-ai-lab/deterministic-agent-workflow-engine",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "exports": {