@ironflow/core 0.1.0-test.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.
Files changed (70) hide show
  1. package/README.md +60 -0
  2. package/dist/constants.d.ts +219 -0
  3. package/dist/constants.d.ts.map +1 -0
  4. package/dist/constants.js +233 -0
  5. package/dist/constants.js.map +1 -0
  6. package/dist/errors.d.ts +140 -0
  7. package/dist/errors.d.ts.map +1 -0
  8. package/dist/errors.js +205 -0
  9. package/dist/errors.js.map +1 -0
  10. package/dist/gen/index.d.ts +7 -0
  11. package/dist/gen/index.d.ts.map +1 -0
  12. package/dist/gen/index.js +7 -0
  13. package/dist/gen/index.js.map +1 -0
  14. package/dist/gen/ironflow/v1/index.d.ts +13 -0
  15. package/dist/gen/ironflow/v1/index.d.ts.map +1 -0
  16. package/dist/gen/ironflow/v1/index.js +15 -0
  17. package/dist/gen/ironflow/v1/index.js.map +1 -0
  18. package/dist/gen/ironflow/v1/ironflow_connect.d.ts +209 -0
  19. package/dist/gen/ironflow/v1/ironflow_connect.d.ts.map +1 -0
  20. package/dist/gen/ironflow/v1/ironflow_connect.js +216 -0
  21. package/dist/gen/ironflow/v1/ironflow_connect.js.map +1 -0
  22. package/dist/gen/ironflow/v1/ironflow_pb.d.ts +814 -0
  23. package/dist/gen/ironflow/v1/ironflow_pb.d.ts.map +1 -0
  24. package/dist/gen/ironflow/v1/ironflow_pb.js +157 -0
  25. package/dist/gen/ironflow/v1/ironflow_pb.js.map +1 -0
  26. package/dist/gen/ironflow/v1/pubsub_connect.d.ts +104 -0
  27. package/dist/gen/ironflow/v1/pubsub_connect.d.ts.map +1 -0
  28. package/dist/gen/ironflow/v1/pubsub_connect.js +110 -0
  29. package/dist/gen/ironflow/v1/pubsub_connect.js.map +1 -0
  30. package/dist/gen/ironflow/v1/pubsub_pb.d.ts +814 -0
  31. package/dist/gen/ironflow/v1/pubsub_pb.d.ts.map +1 -0
  32. package/dist/gen/ironflow/v1/pubsub_pb.js +202 -0
  33. package/dist/gen/ironflow/v1/pubsub_pb.js.map +1 -0
  34. package/dist/gen/ironflow/v1/types_pb.d.ts +698 -0
  35. package/dist/gen/ironflow/v1/types_pb.d.ts.map +1 -0
  36. package/dist/gen/ironflow/v1/types_pb.js +217 -0
  37. package/dist/gen/ironflow/v1/types_pb.js.map +1 -0
  38. package/dist/gen/ironflow/v1/worker_connect.d.ts +20 -0
  39. package/dist/gen/ironflow/v1/worker_connect.d.ts.map +1 -0
  40. package/dist/gen/ironflow/v1/worker_connect.js +26 -0
  41. package/dist/gen/ironflow/v1/worker_connect.js.map +1 -0
  42. package/dist/gen/ironflow/v1/worker_pb.d.ts +685 -0
  43. package/dist/gen/ironflow/v1/worker_pb.d.ts.map +1 -0
  44. package/dist/gen/ironflow/v1/worker_pb.js +135 -0
  45. package/dist/gen/ironflow/v1/worker_pb.js.map +1 -0
  46. package/dist/index.d.ts +19 -0
  47. package/dist/index.d.ts.map +1 -0
  48. package/dist/index.js +51 -0
  49. package/dist/index.js.map +1 -0
  50. package/dist/logger.d.ts +26 -0
  51. package/dist/logger.d.ts.map +1 -0
  52. package/dist/logger.js +78 -0
  53. package/dist/logger.js.map +1 -0
  54. package/dist/protocol.d.ts +250 -0
  55. package/dist/protocol.d.ts.map +1 -0
  56. package/dist/protocol.js +34 -0
  57. package/dist/protocol.js.map +1 -0
  58. package/dist/schemas.d.ts +394 -0
  59. package/dist/schemas.d.ts.map +1 -0
  60. package/dist/schemas.js +268 -0
  61. package/dist/schemas.js.map +1 -0
  62. package/dist/types.d.ts +577 -0
  63. package/dist/types.d.ts.map +1 -0
  64. package/dist/types.js +49 -0
  65. package/dist/types.js.map +1 -0
  66. package/dist/utils.d.ts +60 -0
  67. package/dist/utils.d.ts.map +1 -0
  68. package/dist/utils.js +109 -0
  69. package/dist/utils.js.map +1 -0
  70. package/package.json +78 -0
@@ -0,0 +1,698 @@
1
+ import type { GenEnum, GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
2
+ import type { Timestamp } from "@bufbuild/protobuf/wkt";
3
+ import type { JsonObject, Message } from "@bufbuild/protobuf";
4
+ /**
5
+ * Describes the file ironflow/v1/types.proto.
6
+ */
7
+ export declare const file_ironflow_v1_types: GenFile;
8
+ /**
9
+ * @generated from message ironflow.v1.Trigger
10
+ */
11
+ export type Trigger = Message<"ironflow.v1.Trigger"> & {
12
+ /**
13
+ * Event name pattern (e.g., "order.placed")
14
+ *
15
+ * @generated from field: string event = 1;
16
+ */
17
+ event: string;
18
+ /**
19
+ * Optional filter expression
20
+ *
21
+ * @generated from field: string expression = 2;
22
+ */
23
+ expression: string;
24
+ /**
25
+ * Cron schedule expression (e.g., "0 9 * * *" for 9am daily)
26
+ * When set, the function will be triggered on this schedule
27
+ *
28
+ * @generated from field: string cron = 3;
29
+ */
30
+ cron: string;
31
+ };
32
+ /**
33
+ * Describes the message ironflow.v1.Trigger.
34
+ * Use `create(TriggerSchema)` to create a new message.
35
+ */
36
+ export declare const TriggerSchema: GenMessage<Trigger>;
37
+ /**
38
+ * @generated from message ironflow.v1.RetryConfig
39
+ */
40
+ export type RetryConfig = Message<"ironflow.v1.RetryConfig"> & {
41
+ /**
42
+ * Max attempts (default: 3)
43
+ *
44
+ * @generated from field: int32 max_attempts = 1;
45
+ */
46
+ maxAttempts: number;
47
+ /**
48
+ * Initial delay in milliseconds (default: 1000)
49
+ *
50
+ * @generated from field: int32 initial_delay_ms = 2;
51
+ */
52
+ initialDelayMs: number;
53
+ /**
54
+ * Backoff factor (default: 2.0)
55
+ *
56
+ * @generated from field: double backoff_factor = 3;
57
+ */
58
+ backoffFactor: number;
59
+ /**
60
+ * Max delay in milliseconds (default: 300000 = 5 min)
61
+ *
62
+ * @generated from field: int32 max_delay_ms = 4;
63
+ */
64
+ maxDelayMs: number;
65
+ };
66
+ /**
67
+ * Describes the message ironflow.v1.RetryConfig.
68
+ * Use `create(RetryConfigSchema)` to create a new message.
69
+ */
70
+ export declare const RetryConfigSchema: GenMessage<RetryConfig>;
71
+ /**
72
+ * @generated from message ironflow.v1.ConcurrencyConfig
73
+ */
74
+ export type ConcurrencyConfig = Message<"ironflow.v1.ConcurrencyConfig"> & {
75
+ /**
76
+ * Max concurrent executions
77
+ *
78
+ * @generated from field: int32 limit = 1;
79
+ */
80
+ limit: number;
81
+ /**
82
+ * JSON path for grouping (e.g., "event.data.customerId")
83
+ *
84
+ * @generated from field: string key = 2;
85
+ */
86
+ key: string;
87
+ };
88
+ /**
89
+ * Describes the message ironflow.v1.ConcurrencyConfig.
90
+ * Use `create(ConcurrencyConfigSchema)` to create a new message.
91
+ */
92
+ export declare const ConcurrencyConfigSchema: GenMessage<ConcurrencyConfig>;
93
+ /**
94
+ * @generated from message ironflow.v1.Function
95
+ */
96
+ export type Function = Message<"ironflow.v1.Function"> & {
97
+ /**
98
+ * User-defined function ID
99
+ *
100
+ * @generated from field: string id = 1;
101
+ */
102
+ id: string;
103
+ /**
104
+ * Display name
105
+ *
106
+ * @generated from field: string name = 2;
107
+ */
108
+ name: string;
109
+ /**
110
+ * Description
111
+ *
112
+ * @generated from field: string description = 3;
113
+ */
114
+ description: string;
115
+ /**
116
+ * Event triggers
117
+ *
118
+ * @generated from field: repeated ironflow.v1.Trigger triggers = 4;
119
+ */
120
+ triggers: Trigger[];
121
+ /**
122
+ * Retry configuration
123
+ *
124
+ * @generated from field: ironflow.v1.RetryConfig retry = 5;
125
+ */
126
+ retry?: RetryConfig;
127
+ /**
128
+ * Timeout in milliseconds (default: 600000 = 10 min)
129
+ *
130
+ * @generated from field: int32 timeout_ms = 6;
131
+ */
132
+ timeoutMs: number;
133
+ /**
134
+ * Concurrency configuration
135
+ *
136
+ * @generated from field: ironflow.v1.ConcurrencyConfig concurrency = 7;
137
+ */
138
+ concurrency?: ConcurrencyConfig;
139
+ /**
140
+ * Preferred execution mode
141
+ *
142
+ * @generated from field: ironflow.v1.ExecutionMode preferred_mode = 8;
143
+ */
144
+ preferredMode: ExecutionMode;
145
+ /**
146
+ * For Push mode
147
+ *
148
+ * @generated from field: string endpoint_url = 9;
149
+ */
150
+ endpointUrl: string;
151
+ /**
152
+ * JSON path for sticky routing
153
+ *
154
+ * @generated from field: string actor_key = 10;
155
+ */
156
+ actorKey: string;
157
+ /**
158
+ * Status
159
+ *
160
+ * @generated from field: ironflow.v1.FunctionStatus status = 11;
161
+ */
162
+ status: FunctionStatus;
163
+ /**
164
+ * Version number
165
+ *
166
+ * @generated from field: int32 version = 12;
167
+ */
168
+ version: number;
169
+ /**
170
+ * Creation timestamp
171
+ *
172
+ * @generated from field: google.protobuf.Timestamp created_at = 13;
173
+ */
174
+ createdAt?: Timestamp;
175
+ /**
176
+ * Last update timestamp
177
+ *
178
+ * @generated from field: google.protobuf.Timestamp updated_at = 14;
179
+ */
180
+ updatedAt?: Timestamp;
181
+ };
182
+ /**
183
+ * Describes the message ironflow.v1.Function.
184
+ * Use `create(FunctionSchema)` to create a new message.
185
+ */
186
+ export declare const FunctionSchema: GenMessage<Function>;
187
+ /**
188
+ * @generated from message ironflow.v1.Event
189
+ */
190
+ export type Event = Message<"ironflow.v1.Event"> & {
191
+ /**
192
+ * Event ID
193
+ *
194
+ * @generated from field: string id = 1;
195
+ */
196
+ id: string;
197
+ /**
198
+ * Event name (e.g., "order.placed")
199
+ *
200
+ * @generated from field: string name = 2;
201
+ */
202
+ name: string;
203
+ /**
204
+ * Event payload
205
+ *
206
+ * @generated from field: google.protobuf.Struct data = 3;
207
+ */
208
+ data?: JsonObject;
209
+ /**
210
+ * Optional deduplication key
211
+ *
212
+ * @generated from field: string idempotency_key = 4;
213
+ */
214
+ idempotencyKey: string;
215
+ /**
216
+ * Origin (webhook, sdk, api)
217
+ *
218
+ * @generated from field: string source = 5;
219
+ */
220
+ source: string;
221
+ /**
222
+ * Event timestamp
223
+ *
224
+ * @generated from field: google.protobuf.Timestamp timestamp = 6;
225
+ */
226
+ timestamp?: Timestamp;
227
+ /**
228
+ * Headers, user agent, etc.
229
+ *
230
+ * @generated from field: google.protobuf.Struct metadata = 7;
231
+ */
232
+ metadata?: JsonObject;
233
+ };
234
+ /**
235
+ * Describes the message ironflow.v1.Event.
236
+ * Use `create(EventSchema)` to create a new message.
237
+ */
238
+ export declare const EventSchema: GenMessage<Event>;
239
+ /**
240
+ * @generated from message ironflow.v1.Run
241
+ */
242
+ export type Run = Message<"ironflow.v1.Run"> & {
243
+ /**
244
+ * Run ID
245
+ *
246
+ * @generated from field: string id = 1;
247
+ */
248
+ id: string;
249
+ /**
250
+ * Function ID
251
+ *
252
+ * @generated from field: string function_id = 2;
253
+ */
254
+ functionId: string;
255
+ /**
256
+ * Event ID that triggered this run
257
+ *
258
+ * @generated from field: string event_id = 3;
259
+ */
260
+ eventId: string;
261
+ /**
262
+ * Execution mode used
263
+ *
264
+ * @generated from field: ironflow.v1.ExecutionMode execution_mode = 4;
265
+ */
266
+ executionMode: ExecutionMode;
267
+ /**
268
+ * Worker ID (for pull mode)
269
+ *
270
+ * @generated from field: string worker_id = 5;
271
+ */
272
+ workerId: string;
273
+ /**
274
+ * Actor ID (for sticky routing)
275
+ *
276
+ * @generated from field: string actor_id = 6;
277
+ */
278
+ actorId: string;
279
+ /**
280
+ * Input data
281
+ *
282
+ * @generated from field: google.protobuf.Struct input = 7;
283
+ */
284
+ input?: JsonObject;
285
+ /**
286
+ * Output data
287
+ *
288
+ * @generated from field: google.protobuf.Struct output = 8;
289
+ */
290
+ output?: JsonObject;
291
+ /**
292
+ * Error details if failed
293
+ *
294
+ * @generated from field: ironflow.v1.Error error = 9;
295
+ */
296
+ error?: Error;
297
+ /**
298
+ * Current status
299
+ *
300
+ * @generated from field: ironflow.v1.RunStatus status = 10;
301
+ */
302
+ status: RunStatus;
303
+ /**
304
+ * Current attempt number
305
+ *
306
+ * @generated from field: int32 attempt = 11;
307
+ */
308
+ attempt: number;
309
+ /**
310
+ * Max attempts allowed
311
+ *
312
+ * @generated from field: int32 max_attempts = 12;
313
+ */
314
+ maxAttempts: number;
315
+ /**
316
+ * When execution started
317
+ *
318
+ * @generated from field: google.protobuf.Timestamp started_at = 13;
319
+ */
320
+ startedAt?: Timestamp;
321
+ /**
322
+ * When execution ended
323
+ *
324
+ * @generated from field: google.protobuf.Timestamp ended_at = 14;
325
+ */
326
+ endedAt?: Timestamp;
327
+ /**
328
+ * Concurrency key
329
+ *
330
+ * @generated from field: string concurrency_key = 15;
331
+ */
332
+ concurrencyKey: string;
333
+ /**
334
+ * Priority level
335
+ *
336
+ * @generated from field: int32 priority = 16;
337
+ */
338
+ priority: number;
339
+ /**
340
+ * Creation timestamp
341
+ *
342
+ * @generated from field: google.protobuf.Timestamp created_at = 17;
343
+ */
344
+ createdAt?: Timestamp;
345
+ /**
346
+ * Last update timestamp
347
+ *
348
+ * @generated from field: google.protobuf.Timestamp updated_at = 18;
349
+ */
350
+ updatedAt?: Timestamp;
351
+ };
352
+ /**
353
+ * Describes the message ironflow.v1.Run.
354
+ * Use `create(RunSchema)` to create a new message.
355
+ */
356
+ export declare const RunSchema: GenMessage<Run>;
357
+ /**
358
+ * @generated from message ironflow.v1.Step
359
+ */
360
+ export type Step = Message<"ironflow.v1.Step"> & {
361
+ /**
362
+ * Step record ID
363
+ *
364
+ * @generated from field: string id = 1;
365
+ */
366
+ id: string;
367
+ /**
368
+ * Run ID
369
+ *
370
+ * @generated from field: string run_id = 2;
371
+ */
372
+ runId: string;
373
+ /**
374
+ * User-defined step name
375
+ *
376
+ * @generated from field: string step_id = 3;
377
+ */
378
+ stepId: string;
379
+ /**
380
+ * Step type
381
+ *
382
+ * @generated from field: ironflow.v1.StepType step_type = 4;
383
+ */
384
+ stepType: StepType;
385
+ /**
386
+ * Execution sequence
387
+ *
388
+ * @generated from field: int32 sequence = 5;
389
+ */
390
+ sequence: number;
391
+ /**
392
+ * Current status
393
+ *
394
+ * @generated from field: ironflow.v1.StepStatus status = 6;
395
+ */
396
+ status: StepStatus;
397
+ /**
398
+ * Input data
399
+ *
400
+ * @generated from field: google.protobuf.Struct input = 7;
401
+ */
402
+ input?: JsonObject;
403
+ /**
404
+ * Hash of input for memoization
405
+ *
406
+ * @generated from field: string input_hash = 8;
407
+ */
408
+ inputHash: string;
409
+ /**
410
+ * Output data
411
+ *
412
+ * @generated from field: google.protobuf.Struct output = 9;
413
+ */
414
+ output?: JsonObject;
415
+ /**
416
+ * Error details if failed
417
+ *
418
+ * @generated from field: ironflow.v1.Error error = 10;
419
+ */
420
+ error?: Error;
421
+ /**
422
+ * Current attempt number
423
+ *
424
+ * @generated from field: int32 attempt = 11;
425
+ */
426
+ attempt: number;
427
+ /**
428
+ * Execution duration in milliseconds
429
+ *
430
+ * @generated from field: int32 duration_ms = 12;
431
+ */
432
+ durationMs: number;
433
+ /**
434
+ * When step started
435
+ *
436
+ * @generated from field: google.protobuf.Timestamp started_at = 13;
437
+ */
438
+ startedAt?: Timestamp;
439
+ /**
440
+ * When step ended
441
+ *
442
+ * @generated from field: google.protobuf.Timestamp ended_at = 14;
443
+ */
444
+ endedAt?: Timestamp;
445
+ /**
446
+ * For patched steps - original output
447
+ *
448
+ * @generated from field: google.protobuf.Struct original_output = 15;
449
+ */
450
+ originalOutput?: JsonObject;
451
+ /**
452
+ * When the step was patched
453
+ *
454
+ * @generated from field: google.protobuf.Timestamp patched_at = 16;
455
+ */
456
+ patchedAt?: Timestamp;
457
+ /**
458
+ * Who patched the step
459
+ *
460
+ * @generated from field: string patched_by = 17;
461
+ */
462
+ patchedBy: string;
463
+ };
464
+ /**
465
+ * Describes the message ironflow.v1.Step.
466
+ * Use `create(StepSchema)` to create a new message.
467
+ */
468
+ export declare const StepSchema: GenMessage<Step>;
469
+ /**
470
+ * @generated from message ironflow.v1.Error
471
+ */
472
+ export type Error = Message<"ironflow.v1.Error"> & {
473
+ /**
474
+ * Error message
475
+ *
476
+ * @generated from field: string message = 1;
477
+ */
478
+ message: string;
479
+ /**
480
+ * Error code
481
+ *
482
+ * @generated from field: string code = 2;
483
+ */
484
+ code: string;
485
+ /**
486
+ * Stack trace
487
+ *
488
+ * @generated from field: string stack = 3;
489
+ */
490
+ stack: string;
491
+ /**
492
+ * Whether the error is retryable
493
+ *
494
+ * @generated from field: bool retryable = 4;
495
+ */
496
+ retryable: boolean;
497
+ /**
498
+ * Additional error details
499
+ *
500
+ * @generated from field: google.protobuf.Struct details = 5;
501
+ */
502
+ details?: JsonObject;
503
+ };
504
+ /**
505
+ * Describes the message ironflow.v1.Error.
506
+ * Use `create(ErrorSchema)` to create a new message.
507
+ */
508
+ export declare const ErrorSchema: GenMessage<Error>;
509
+ /**
510
+ * ErrorInfo for detailed error responses
511
+ *
512
+ * @generated from message ironflow.v1.ErrorInfo
513
+ */
514
+ export type ErrorInfo = Message<"ironflow.v1.ErrorInfo"> & {
515
+ /**
516
+ * Type of resource (function, run, step, event)
517
+ *
518
+ * @generated from field: string resource_type = 1;
519
+ */
520
+ resourceType: string;
521
+ /**
522
+ * Resource identifier
523
+ *
524
+ * @generated from field: string resource_id = 2;
525
+ */
526
+ resourceId: string;
527
+ /**
528
+ * Additional metadata
529
+ *
530
+ * @generated from field: map<string, string> metadata = 3;
531
+ */
532
+ metadata: {
533
+ [key: string]: string;
534
+ };
535
+ };
536
+ /**
537
+ * Describes the message ironflow.v1.ErrorInfo.
538
+ * Use `create(ErrorInfoSchema)` to create a new message.
539
+ */
540
+ export declare const ErrorInfoSchema: GenMessage<ErrorInfo>;
541
+ /**
542
+ * @generated from enum ironflow.v1.FunctionStatus
543
+ */
544
+ export declare enum FunctionStatus {
545
+ /**
546
+ * @generated from enum value: FUNCTION_STATUS_UNSPECIFIED = 0;
547
+ */
548
+ UNSPECIFIED = 0,
549
+ /**
550
+ * @generated from enum value: FUNCTION_STATUS_ACTIVE = 1;
551
+ */
552
+ ACTIVE = 1,
553
+ /**
554
+ * @generated from enum value: FUNCTION_STATUS_PAUSED = 2;
555
+ */
556
+ PAUSED = 2,
557
+ /**
558
+ * @generated from enum value: FUNCTION_STATUS_ARCHIVED = 3;
559
+ */
560
+ ARCHIVED = 3
561
+ }
562
+ /**
563
+ * Describes the enum ironflow.v1.FunctionStatus.
564
+ */
565
+ export declare const FunctionStatusSchema: GenEnum<FunctionStatus>;
566
+ /**
567
+ * @generated from enum ironflow.v1.ExecutionMode
568
+ */
569
+ export declare enum ExecutionMode {
570
+ /**
571
+ * @generated from enum value: EXECUTION_MODE_UNSPECIFIED = 0;
572
+ */
573
+ UNSPECIFIED = 0,
574
+ /**
575
+ * @generated from enum value: EXECUTION_MODE_PUSH = 1;
576
+ */
577
+ PUSH = 1,
578
+ /**
579
+ * @generated from enum value: EXECUTION_MODE_PULL = 2;
580
+ */
581
+ PULL = 2
582
+ }
583
+ /**
584
+ * Describes the enum ironflow.v1.ExecutionMode.
585
+ */
586
+ export declare const ExecutionModeSchema: GenEnum<ExecutionMode>;
587
+ /**
588
+ * @generated from enum ironflow.v1.RunStatus
589
+ */
590
+ export declare enum RunStatus {
591
+ /**
592
+ * @generated from enum value: RUN_STATUS_UNSPECIFIED = 0;
593
+ */
594
+ UNSPECIFIED = 0,
595
+ /**
596
+ * @generated from enum value: RUN_STATUS_PENDING = 1;
597
+ */
598
+ PENDING = 1,
599
+ /**
600
+ * @generated from enum value: RUN_STATUS_RUNNING = 2;
601
+ */
602
+ RUNNING = 2,
603
+ /**
604
+ * @generated from enum value: RUN_STATUS_COMPLETED = 3;
605
+ */
606
+ COMPLETED = 3,
607
+ /**
608
+ * @generated from enum value: RUN_STATUS_FAILED = 4;
609
+ */
610
+ FAILED = 4,
611
+ /**
612
+ * @generated from enum value: RUN_STATUS_CANCELLED = 5;
613
+ */
614
+ CANCELLED = 5,
615
+ /**
616
+ * @generated from enum value: RUN_STATUS_PAUSED = 6;
617
+ */
618
+ PAUSED = 6
619
+ }
620
+ /**
621
+ * Describes the enum ironflow.v1.RunStatus.
622
+ */
623
+ export declare const RunStatusSchema: GenEnum<RunStatus>;
624
+ /**
625
+ * @generated from enum ironflow.v1.StepStatus
626
+ */
627
+ export declare enum StepStatus {
628
+ /**
629
+ * @generated from enum value: STEP_STATUS_UNSPECIFIED = 0;
630
+ */
631
+ UNSPECIFIED = 0,
632
+ /**
633
+ * @generated from enum value: STEP_STATUS_PENDING = 1;
634
+ */
635
+ PENDING = 1,
636
+ /**
637
+ * @generated from enum value: STEP_STATUS_RUNNING = 2;
638
+ */
639
+ RUNNING = 2,
640
+ /**
641
+ * @generated from enum value: STEP_STATUS_COMPLETED = 3;
642
+ */
643
+ COMPLETED = 3,
644
+ /**
645
+ * @generated from enum value: STEP_STATUS_FAILED = 4;
646
+ */
647
+ FAILED = 4,
648
+ /**
649
+ * @generated from enum value: STEP_STATUS_SLEEPING = 5;
650
+ */
651
+ SLEEPING = 5,
652
+ /**
653
+ * @generated from enum value: STEP_STATUS_WAITING = 6;
654
+ */
655
+ WAITING = 6,
656
+ /**
657
+ * @generated from enum value: STEP_STATUS_TIMED_OUT = 7;
658
+ */
659
+ TIMED_OUT = 7,
660
+ /**
661
+ * @generated from enum value: STEP_STATUS_RETRYING = 8;
662
+ */
663
+ RETRYING = 8,
664
+ /**
665
+ * @generated from enum value: STEP_STATUS_DEAD = 9;
666
+ */
667
+ DEAD = 9
668
+ }
669
+ /**
670
+ * Describes the enum ironflow.v1.StepStatus.
671
+ */
672
+ export declare const StepStatusSchema: GenEnum<StepStatus>;
673
+ /**
674
+ * @generated from enum ironflow.v1.StepType
675
+ */
676
+ export declare enum StepType {
677
+ /**
678
+ * @generated from enum value: STEP_TYPE_UNSPECIFIED = 0;
679
+ */
680
+ UNSPECIFIED = 0,
681
+ /**
682
+ * @generated from enum value: STEP_TYPE_INVOKE = 1;
683
+ */
684
+ INVOKE = 1,
685
+ /**
686
+ * @generated from enum value: STEP_TYPE_SLEEP = 2;
687
+ */
688
+ SLEEP = 2,
689
+ /**
690
+ * @generated from enum value: STEP_TYPE_WAIT_FOR_EVENT = 3;
691
+ */
692
+ WAIT_FOR_EVENT = 3
693
+ }
694
+ /**
695
+ * Describes the enum ironflow.v1.StepType.
696
+ */
697
+ export declare const StepTypeSchema: GenEnum<StepType>;
698
+ //# sourceMappingURL=types_pb.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types_pb.d.ts","sourceRoot":"","sources":["../../../../src/gen/ironflow/v1/types_pb.ts"],"names":[],"mappings":"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"}