@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 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;
package/dist/index.js CHANGED
@@ -57,7 +57,7 @@ var addApiKeyHeader = (apiKey) => {
57
57
 
58
58
  // package.json
59
59
  var package_default = {
60
- version: "0.10.0-rc1"};
60
+ version: "0.10.0-rc2"};
61
61
 
62
62
  // src/core/MageMetricsEventEmitter.ts
63
63
  var MageMetricsEventEmitter = class {