@magemetrics/core 0.2.0 → 0.3.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.
package/dist/index.d.ts CHANGED
@@ -545,6 +545,7 @@ export declare class MageMetricsClient {
545
545
  };
546
546
  bookmarked: boolean;
547
547
  status: string | null;
548
+ is_removed: boolean;
548
549
  }[]>;
549
550
  getRecentFlows: (params?: {
550
551
  limit?: number;
@@ -1224,6 +1225,7 @@ declare interface operations {
1224
1225
  };
1225
1226
  bookmarked: boolean;
1226
1227
  status: string | null;
1228
+ is_removed: boolean;
1227
1229
  }[];
1228
1230
  };
1229
1231
  };
@@ -1864,6 +1866,7 @@ declare interface operations {
1864
1866
  };
1865
1867
  bookmarked: boolean;
1866
1868
  status: string | null;
1869
+ is_removed: boolean;
1867
1870
  };
1868
1871
  };
1869
1872
  };
package/dist/index.js CHANGED
@@ -385,7 +385,8 @@ var ReportSchema = z.object({
385
385
  columns: z.record(z.string(), ReportColumnSchema)
386
386
  }).passthrough(),
387
387
  bookmarked: z.boolean(),
388
- status: z.string().nullable()
388
+ status: z.string().nullable(),
389
+ is_removed: z.boolean()
389
390
  });
390
391
  var FrontendReportSchema = ReportSchema.omit({
391
392
  sql: true,
@@ -2869,7 +2870,7 @@ var toSearchParams = ({ cursor, filters, sorting, limit }) => {
2869
2870
 
2870
2871
  // package.json
2871
2872
  var package_default = {
2872
- version: "0.2.0"};
2873
+ version: "0.3.0"};
2873
2874
  var MageMetricsChatTransport = class extends DefaultChatTransport {
2874
2875
  constructor(apiUrl, flowId, options) {
2875
2876
  super({