@magemetrics/core 0.10.0-rc1 → 0.10.0-rc2
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/index.d.ts +5 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -295,11 +295,16 @@ declare interface components {
|
|
|
295
295
|
id: string;
|
|
296
296
|
/** Format: uuid */
|
|
297
297
|
agent_id: string;
|
|
298
|
+
/** Format: uuid */
|
|
299
|
+
flow_id: string | null;
|
|
298
300
|
/** @enum {string} */
|
|
299
301
|
status: "pending" | "running" | "completed" | "failed" | "cancelled";
|
|
300
302
|
created_at: string;
|
|
301
303
|
started_at: string | null;
|
|
302
304
|
completed_at: string | null;
|
|
305
|
+
input_data: {
|
|
306
|
+
[key: string]: unknown;
|
|
307
|
+
} | null;
|
|
303
308
|
output_data: {
|
|
304
309
|
[key: string]: unknown;
|
|
305
310
|
} | null;
|