@ironflow/core 0.7.0 → 0.8.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.
Files changed (3) hide show
  1. package/README.md +1865 -101
  2. package/dist/schemas.d.ts +5 -5
  3. package/package.json +1 -1
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
  }>;
@@ -314,8 +314,8 @@ export declare const EventMetadataSchema: z.ZodObject<{
314
314
  export declare const WSSubscriptionResultItemSchema: z.ZodObject<{
315
315
  pattern: z.ZodString;
316
316
  status: z.ZodEnum<{
317
- ok: "ok";
318
317
  error: "error";
318
+ ok: "ok";
319
319
  }>;
320
320
  subscriptionId: z.ZodOptional<z.ZodString>;
321
321
  code: z.ZodOptional<z.ZodString>;
@@ -326,8 +326,8 @@ export declare const WSSubscriptionResultSchema: z.ZodObject<{
326
326
  results: z.ZodArray<z.ZodObject<{
327
327
  pattern: z.ZodString;
328
328
  status: z.ZodEnum<{
329
- ok: "ok";
330
329
  error: "error";
330
+ ok: "ok";
331
331
  }>;
332
332
  subscriptionId: z.ZodOptional<z.ZodString>;
333
333
  code: z.ZodOptional<z.ZodString>;
@@ -362,8 +362,8 @@ export declare const WSServerMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObject
362
362
  results: z.ZodArray<z.ZodObject<{
363
363
  pattern: z.ZodString;
364
364
  status: z.ZodEnum<{
365
- ok: "ok";
366
365
  error: "error";
366
+ ok: "ok";
367
367
  }>;
368
368
  subscriptionId: z.ZodOptional<z.ZodString>;
369
369
  code: z.ZodOptional<z.ZodString>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ironflow/core",
3
- "version": "0.7.0",
3
+ "version": "0.8.0",
4
4
  "description": "Core types, schemas, and protocol definitions for Ironflow SDK",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",