@ironflow/core 0.2.0 → 0.2.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 +5 -5
- 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
|
-
completed: "completed";
|
|
10
|
-
failed: "failed";
|
|
11
9
|
pending: "pending";
|
|
12
10
|
running: "running";
|
|
11
|
+
completed: "completed";
|
|
12
|
+
failed: "failed";
|
|
13
13
|
cancelled: "cancelled";
|
|
14
14
|
paused: "paused";
|
|
15
15
|
}>;
|
|
@@ -305,8 +305,8 @@ export declare const EventMetadataSchema: z.ZodObject<{
|
|
|
305
305
|
export declare const WSSubscriptionResultItemSchema: z.ZodObject<{
|
|
306
306
|
pattern: z.ZodString;
|
|
307
307
|
status: z.ZodEnum<{
|
|
308
|
-
error: "error";
|
|
309
308
|
ok: "ok";
|
|
309
|
+
error: "error";
|
|
310
310
|
}>;
|
|
311
311
|
subscriptionId: z.ZodOptional<z.ZodString>;
|
|
312
312
|
code: z.ZodOptional<z.ZodString>;
|
|
@@ -317,8 +317,8 @@ export declare const WSSubscriptionResultSchema: z.ZodObject<{
|
|
|
317
317
|
results: z.ZodArray<z.ZodObject<{
|
|
318
318
|
pattern: z.ZodString;
|
|
319
319
|
status: z.ZodEnum<{
|
|
320
|
-
error: "error";
|
|
321
320
|
ok: "ok";
|
|
321
|
+
error: "error";
|
|
322
322
|
}>;
|
|
323
323
|
subscriptionId: z.ZodOptional<z.ZodString>;
|
|
324
324
|
code: z.ZodOptional<z.ZodString>;
|
|
@@ -353,8 +353,8 @@ export declare const WSServerMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
353
353
|
results: z.ZodArray<z.ZodObject<{
|
|
354
354
|
pattern: z.ZodString;
|
|
355
355
|
status: z.ZodEnum<{
|
|
356
|
-
error: "error";
|
|
357
356
|
ok: "ok";
|
|
357
|
+
error: "error";
|
|
358
358
|
}>;
|
|
359
359
|
subscriptionId: z.ZodOptional<z.ZodString>;
|
|
360
360
|
code: z.ZodOptional<z.ZodString>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ironflow/core",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Core types, schemas, and protocol definitions for Ironflow SDK",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -32,6 +32,15 @@
|
|
|
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
|
+
},
|
|
35
44
|
"dependencies": {
|
|
36
45
|
"zod": "^4.3.5"
|
|
37
46
|
},
|
|
@@ -71,14 +80,5 @@
|
|
|
71
80
|
},
|
|
72
81
|
"publishConfig": {
|
|
73
82
|
"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
|
+
}
|