@ironflow/core 0.19.0 → 0.19.2
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/dist/schemas.d.ts +2 -2
- package/package.json +11 -11
package/dist/schemas.d.ts
CHANGED
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
*/
|
|
7
7
|
import { z } from "zod";
|
|
8
8
|
export declare const RunStatusSchema: z.ZodEnum<{
|
|
9
|
-
pending: "pending";
|
|
10
|
-
running: "running";
|
|
11
9
|
completed: "completed";
|
|
12
10
|
failed: "failed";
|
|
11
|
+
pending: "pending";
|
|
12
|
+
running: "running";
|
|
13
13
|
cancelled: "cancelled";
|
|
14
14
|
paused: "paused";
|
|
15
15
|
}>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ironflow/core",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.2",
|
|
4
4
|
"description": "Core types, schemas, and protocol definitions for Ironflow SDK",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -32,15 +32,6 @@
|
|
|
32
32
|
"dist",
|
|
33
33
|
"README.md"
|
|
34
34
|
],
|
|
35
|
-
"scripts": {
|
|
36
|
-
"build": "tsc",
|
|
37
|
-
"dev": "tsc --watch",
|
|
38
|
-
"test": "vitest run",
|
|
39
|
-
"test:watch": "vitest",
|
|
40
|
-
"lint": "eslint src/",
|
|
41
|
-
"clean": "rm -rf dist tsconfig.tsbuildinfo",
|
|
42
|
-
"typecheck": "tsc --noEmit"
|
|
43
|
-
},
|
|
44
35
|
"dependencies": {
|
|
45
36
|
"zod": "^4.3.5"
|
|
46
37
|
},
|
|
@@ -80,5 +71,14 @@
|
|
|
80
71
|
},
|
|
81
72
|
"publishConfig": {
|
|
82
73
|
"access": "restricted"
|
|
74
|
+
},
|
|
75
|
+
"scripts": {
|
|
76
|
+
"build": "tsc",
|
|
77
|
+
"dev": "tsc --watch",
|
|
78
|
+
"test": "vitest run",
|
|
79
|
+
"test:watch": "vitest",
|
|
80
|
+
"lint": "eslint src/",
|
|
81
|
+
"clean": "rm -rf dist tsconfig.tsbuildinfo",
|
|
82
|
+
"typecheck": "tsc --noEmit"
|
|
83
83
|
}
|
|
84
|
-
}
|
|
84
|
+
}
|