@medusajs/workflow-engine-inmemory 2.18.0 → 2.19.0-preview-20260811102316
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("@medusajs/framework/utils").DmlE
|
|
|
4
4
|
workflow_id: import("@medusajs/framework/utils").PrimaryKeyModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
5
5
|
transaction_id: import("@medusajs/framework/utils").PrimaryKeyModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
6
6
|
run_id: import("@medusajs/framework/utils").PrimaryKeyModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
7
|
-
execution: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
8
|
-
context: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
7
|
+
execution: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
8
|
+
context: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
9
9
|
state: import("@medusajs/framework/utils").EnumProperty<typeof TransactionState>;
|
|
10
10
|
retention_time: import("@medusajs/framework/utils").NullableModifier<number, import("@medusajs/framework/utils").NumberProperty>;
|
|
11
11
|
}>, "workflow_execution">;
|
|
@@ -105,8 +105,8 @@ export declare class WorkflowsModuleService<TWorkflowExecution extends InferEnti
|
|
|
105
105
|
workflow_id: string;
|
|
106
106
|
transaction_id: string;
|
|
107
107
|
run_id: string;
|
|
108
|
-
execution: Record<string, unknown
|
|
109
|
-
context: Record<string, unknown
|
|
108
|
+
execution: NoInfer<Record<string, unknown>> | null;
|
|
109
|
+
context: NoInfer<Record<string, unknown>> | null;
|
|
110
110
|
state: import("@medusajs/framework/utils").TransactionState;
|
|
111
111
|
retention_time: number | null;
|
|
112
112
|
raw_retention_time: Record<string, unknown> | null;
|
|
@@ -119,8 +119,8 @@ export declare class WorkflowsModuleService<TWorkflowExecution extends InferEnti
|
|
|
119
119
|
workflow_id: string;
|
|
120
120
|
transaction_id: string;
|
|
121
121
|
run_id: string;
|
|
122
|
-
execution: Record<string, unknown
|
|
123
|
-
context: Record<string, unknown
|
|
122
|
+
execution: NoInfer<Record<string, unknown>> | null;
|
|
123
|
+
context: NoInfer<Record<string, unknown>> | null;
|
|
124
124
|
state: import("@medusajs/framework/utils").TransactionState;
|
|
125
125
|
retention_time: number | null;
|
|
126
126
|
raw_retention_time: Record<string, unknown> | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medusajs/workflow-engine-inmemory",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.19.0-preview-20260811102316",
|
|
4
4
|
"description": "Medusa Workflow Orchestrator module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -39,14 +39,14 @@
|
|
|
39
39
|
"orm:cache:clear": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm cache:clear"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@medusajs/framework": "2.
|
|
43
|
-
"@medusajs/test-utils": "2.
|
|
42
|
+
"@medusajs/framework": "2.19.0-preview-20260811102316",
|
|
43
|
+
"@medusajs/test-utils": "2.19.0-preview-20260811102316"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"cron-parser": "^4.9.0",
|
|
47
47
|
"ulid": "^2.3.0"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"@medusajs/framework": "2.
|
|
50
|
+
"@medusajs/framework": "2.19.0-preview-20260811102316"
|
|
51
51
|
}
|
|
52
52
|
}
|