@etohq/workflow-engine-inmemory 1.5.5-next-20260317140633 → 2.0.0

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,8 +4,8 @@ export declare const WorkflowExecution: import("@etohq/framework/utils").DmlEnti
4
4
  workflow_id: import("@etohq/framework/utils").PrimaryKeyModifier<string, import("@etohq/framework/utils").TextProperty>;
5
5
  transaction_id: import("@etohq/framework/utils").PrimaryKeyModifier<string, import("@etohq/framework/utils").TextProperty>;
6
6
  run_id: import("@etohq/framework/utils").PrimaryKeyModifier<string, import("@etohq/framework/utils").TextProperty>;
7
- execution: import("@etohq/framework/utils").NullableModifier<Record<string, unknown>, import("@etohq/framework/utils").JSONProperty>;
8
- context: import("@etohq/framework/utils").NullableModifier<Record<string, unknown>, import("@etohq/framework/utils").JSONProperty>;
7
+ execution: import("@etohq/framework/utils").NullableModifier<Record<string, unknown>, import("@etohq/framework/utils").JSONProperty<Record<string, unknown>>>;
8
+ context: import("@etohq/framework/utils").NullableModifier<Record<string, unknown>, import("@etohq/framework/utils").JSONProperty<Record<string, unknown>>>;
9
9
  state: import("@etohq/framework/utils").EnumProperty<typeof TransactionState>;
10
10
  retention_time: import("@etohq/framework/utils").NullableModifier<number, import("@etohq/framework/utils").NumberProperty>;
11
11
  }>, "workflow_execution">;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etohq/workflow-engine-inmemory",
3
- "version": "1.5.5-next-20260317140633",
3
+ "version": "2.0.0",
4
4
  "description": "Eto Workflow Orchestrator module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -36,8 +36,8 @@
36
36
  "rimraf": "5.0.2",
37
37
  "tsc-alias": "1.8.6",
38
38
  "typescript": "5.8.3",
39
- "@etohq/test-utils": "1.5.5-next-20260317140633",
40
- "@etohq/framework": "1.5.5-next-20260317140633"
39
+ "@etohq/framework": "2.0.0",
40
+ "@etohq/test-utils": "2.0.0"
41
41
  },
42
42
  "dependencies": {
43
43
  "cron-parser": "4.9.0",
@@ -48,7 +48,7 @@
48
48
  "@mikro-orm/migrations": "6.4.3",
49
49
  "@mikro-orm/postgresql": "6.4.3",
50
50
  "awilix": "8.0.1",
51
- "@etohq/framework": "1.5.5-next-20260317140633"
51
+ "@etohq/framework": "2.0.0"
52
52
  },
53
53
  "scripts": {
54
54
  "watch": "tsc --build --watch",
@@ -57,9 +57,9 @@
57
57
  "resolve:aliases": "tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && tsc-alias -p tsconfig.resolved.json && rimraf tsconfig.resolved.json",
58
58
  "test": "jest --passWithNoTests --runInBand --bail --forceExit -- src",
59
59
  "test:integration": "jest --silent --forceExit -- integration-tests/**/__tests__/**/*.ts",
60
- "migration:initial": " MIKRO_ORM_CLI=./mikro-orm.config.dev.ts eto-mikro-orm migration:create --initial",
61
- "migration:create": " MIKRO_ORM_CLI=./mikro-orm.config.dev.ts eto-mikro-orm migration:create",
62
- "migration:up": " MIKRO_ORM_CLI=./mikro-orm.config.dev.ts eto-mikro-orm migration:up",
63
- "orm:cache:clear": " MIKRO_ORM_CLI=./mikro-orm.config.dev.ts eto-mikro-orm cache:clear"
60
+ "migration:initial": " MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true MIKRO_ORM_PASSWORD=postgres eto-mikro-orm migration:create --initial",
61
+ "migration:create": " MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true MIKRO_ORM_PASSWORD=postgres eto-mikro-orm migration:create",
62
+ "migration:up": " MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true MIKRO_ORM_PASSWORD=postgres eto-mikro-orm migration:up",
63
+ "orm:cache:clear": " MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true MIKRO_ORM_PASSWORD=postgres eto-mikro-orm cache:clear"
64
64
  }
65
65
  }