@@ -11,16 +11,19 @@ export type Database = {
11
11
Tables : {
12
12
deps : {
13
13
Row : {
14
+ created_at : string
14
15
dep_slug : string
15
16
flow_slug : string
16
17
step_slug : string
17
18
}
18
19
Insert : {
20
+ created_at ?: string
19
21
dep_slug : string
20
22
flow_slug : string
21
23
step_slug : string
22
24
}
23
25
Update : {
26
+ created_at ?: string
24
27
dep_slug ?: string
25
28
flow_slug ?: string
26
29
step_slug ?: string
@@ -51,18 +54,21 @@ export type Database = {
51
54
}
52
55
flows : {
53
56
Row : {
57
+ created_at : string
54
58
flow_slug : string
55
59
opt_base_delay : number
56
60
opt_max_attempts : number
57
61
opt_timeout : number
58
62
}
59
63
Insert : {
64
+ created_at ?: string
60
65
flow_slug : string
61
66
opt_base_delay ?: number
62
67
opt_max_attempts ?: number
63
68
opt_timeout ?: number
64
69
}
65
70
Update : {
71
+ created_at ?: string
66
72
flow_slug ?: string
67
73
opt_base_delay ?: number
68
74
opt_max_attempts ?: number
@@ -72,27 +78,36 @@ export type Database = {
72
78
}
73
79
runs : {
74
80
Row : {
81
+ completed_at : string | null
82
+ failed_at : string | null
75
83
flow_slug : string
76
84
input : Json
77
85
output : Json | null
78
86
remaining_steps : number
79
87
run_id : string
88
+ started_at : string
80
89
status : string
81
90
}
82
91
Insert : {
92
+ completed_at ?: string | null
93
+ failed_at ?: string | null
83
94
flow_slug : string
84
95
input : Json
85
96
output ?: Json | null
86
97
remaining_steps ?: number
87
98
run_id ?: string
99
+ started_at ?: string
88
100
status ?: string
89
101
}
90
102
Update : {
103
+ completed_at ?: string | null
104
+ failed_at ?: string | null
91
105
flow_slug ?: string
92
106
input ?: Json
93
107
output ?: Json | null
94
108
remaining_steps ?: number
95
109
run_id ?: string
110
+ started_at ?: string
96
111
status ?: string
97
112
}
98
113
Relationships : [
@@ -107,26 +122,38 @@ export type Database = {
107
122
}
108
123
step_states : {
109
124
Row : {
125
+ completed_at : string | null
126
+ created_at : string
127
+ failed_at : string | null
110
128
flow_slug : string
111
129
remaining_deps : number
112
130
remaining_tasks : number
113
131
run_id : string
132
+ started_at : string | null
114
133
status : string
115
134
step_slug : string
116
135
}
117
136
Insert : {
137
+ completed_at ?: string | null
138
+ created_at ?: string
139
+ failed_at ?: string | null
118
140
flow_slug : string
119
141
remaining_deps ?: number
120
142
remaining_tasks ?: number
121
143
run_id : string
144
+ started_at ?: string | null
122
145
status ?: string
123
146
step_slug : string
124
147
}
125
148
Update : {
149
+ completed_at ?: string | null
150
+ created_at ?: string
151
+ failed_at ?: string | null
126
152
flow_slug ?: string
127
153
remaining_deps ?: number
128
154
remaining_tasks ?: number
129
155
run_id ?: string
156
+ started_at ?: string | null
130
157
status ?: string
131
158
step_slug ?: string
132
159
}
@@ -157,32 +184,41 @@ export type Database = {
157
184
step_tasks : {
158
185
Row : {
159
186
attempts_count : number
187
+ completed_at : string | null
160
188
error_message : string | null
189
+ failed_at : string | null
161
190
flow_slug : string
162
191
message_id : number | null
163
192
output : Json | null
193
+ queued_at : string
164
194
run_id : string
165
195
status : string
166
196
step_slug : string
167
197
task_index : number
168
198
}
169
199
Insert : {
170
200
attempts_count ?: number
201
+ completed_at ?: string | null
171
202
error_message ?: string | null
203
+ failed_at ?: string | null
172
204
flow_slug : string
173
205
message_id ?: number | null
174
206
output ?: Json | null
207
+ queued_at ?: string
175
208
run_id : string
176
209
status ?: string
177
210
step_slug : string
178
211
task_index ?: number
179
212
}
180
213
Update : {
181
214
attempts_count ?: number
215
+ completed_at ?: string | null
182
216
error_message ?: string | null
217
+ failed_at ?: string | null
183
218
flow_slug ?: string
184
219
message_id ?: number | null
185
220
output ?: Json | null
221
+ queued_at ?: string
186
222
run_id ?: string
187
223
status ?: string
188
224
step_slug ?: string
@@ -214,29 +250,35 @@ export type Database = {
214
250
}
215
251
steps : {
216
252
Row : {
253
+ created_at : string
217
254
deps_count : number
218
255
flow_slug : string
219
256
opt_base_delay : number | null
220
257
opt_max_attempts : number | null
221
258
opt_timeout : number | null
259
+ step_index : number
222
260
step_slug : string
223
261
step_type : string
224
262
}
225
263
Insert : {
264
+ created_at ?: string
226
265
deps_count ?: number
227
266
flow_slug : string
228
267
opt_base_delay ?: number | null
229
268
opt_max_attempts ?: number | null
230
269
opt_timeout ?: number | null
270
+ step_index ?: number
231
271
step_slug : string
232
272
step_type ?: string
233
273
}
234
274
Update : {
275
+ created_at ?: string
235
276
deps_count ?: number
236
277
flow_slug ?: string
237
278
opt_base_delay ?: number | null
238
279
opt_max_attempts ?: number | null
239
280
opt_timeout ?: number | null
281
+ step_index ?: number
240
282
step_slug ?: string
241
283
step_type ?: string
242
284
}
@@ -300,11 +342,13 @@ export type Database = {
300
342
timeout ?: number
301
343
}
302
344
Returns : {
345
+ created_at : string
303
346
deps_count : number
304
347
flow_slug : string
305
348
opt_base_delay : number | null
306
349
opt_max_attempts : number | null
307
350
opt_timeout : number | null
351
+ step_index : number
308
352
step_slug : string
309
353
step_type : string
310
354
}
@@ -322,10 +366,13 @@ export type Database = {
322
366
}
323
367
Returns : {
324
368
attempts_count : number
369
+ completed_at : string | null
325
370
error_message : string | null
371
+ failed_at : string | null
326
372
flow_slug : string
327
373
message_id : number | null
328
374
output : Json | null
375
+ queued_at : string
329
376
run_id : string
330
377
status : string
331
378
step_slug : string
@@ -340,6 +387,7 @@ export type Database = {
340
387
timeout ?: number
341
388
}
342
389
Returns : {
390
+ created_at : string
343
391
flow_slug : string
344
392
opt_base_delay : number
345
393
opt_max_attempts : number
@@ -355,10 +403,13 @@ export type Database = {
355
403
}
356
404
Returns : {
357
405
attempts_count : number
406
+ completed_at : string | null
358
407
error_message : string | null
408
+ failed_at : string | null
359
409
flow_slug : string
360
410
message_id : number | null
361
411
output : Json | null
412
+ queued_at : string
362
413
run_id : string
363
414
status : string
364
415
step_slug : string
@@ -397,11 +448,14 @@ export type Database = {
397
448
start_flow : {
398
449
Args : { flow_slug : string ; input : Json }
399
450
Returns : {
451
+ completed_at : string | null
452
+ failed_at : string | null
400
453
flow_slug : string
401
454
input : Json
402
455
output : Json | null
403
456
remaining_steps : number
404
457
run_id : string
458
+ started_at : string
405
459
status : string
406
460
} [ ]
407
461
}
0 commit comments