@outputai/core 0.3.3-dev.b4a190e.0 → 0.3.3-dev.e8eff63.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@outputai/core",
3
- "version": "0.3.3-dev.b4a190e.0",
3
+ "version": "0.3.3-dev.e8eff63.0",
4
4
  "description": "The core module of the output framework",
5
5
  "type": "module",
6
6
  "exports": {
@@ -45,7 +45,12 @@
45
45
  "redis": "5.12.1",
46
46
  "stacktrace-parser": "0.1.11",
47
47
  "undici": "8.1.0",
48
- "winston": "3.19.0",
48
+ "winston": "3.19.0"
49
+ },
50
+ "peerDependencies": {
51
+ "zod": "^4.3.6"
52
+ },
53
+ "devDependencies": {
49
54
  "zod": "4.3.6"
50
55
  },
51
56
  "license": "Apache-2.0",
@@ -139,9 +139,9 @@ export type WorkflowFunction<
139
139
  */
140
140
  export type WorkflowFunctionWrapper<WorkflowFunction> =
141
141
  [Parameters<WorkflowFunction>[0]] extends [undefined | null] ?
142
- ( input?: undefined | null, config?: WorkflowInvocationConfiguration<Parameters<WorkflowFunction>[1]> ) =>
142
+ ( input?: undefined | null, config?: WorkflowInvocationConfiguration ) =>
143
143
  ReturnType<WorkflowFunction> :
144
- ( input: Parameters<WorkflowFunction>[0], config?: WorkflowInvocationConfiguration<Parameters<WorkflowFunction>[1]> ) =>
144
+ ( input: Parameters<WorkflowFunction>[0], config?: WorkflowInvocationConfiguration ) =>
145
145
  ReturnType<WorkflowFunction>;
146
146
 
147
147
  /**