robotrock 1.4.0 → 1.5.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/eve/agent/index.d.ts +1 -1
- package/dist/eve/agent/index.js +20 -8
- package/dist/eve/agent/index.js.map +1 -1
- package/dist/eve/index.d.ts +1 -1
- package/dist/eve/index.js +131 -8
- package/dist/eve/index.js.map +1 -1
- package/dist/eve/tools/admin/assign-tasks.js +20 -8
- package/dist/eve/tools/admin/assign-tasks.js.map +1 -1
- package/dist/eve/tools/admin/get-workspace-usage.js +20 -8
- package/dist/eve/tools/admin/get-workspace-usage.js.map +1 -1
- package/dist/eve/tools/admin/manage-groups.js +20 -8
- package/dist/eve/tools/admin/manage-groups.js.map +1 -1
- package/dist/eve/tools/admin/manage-team-members.js +20 -8
- package/dist/eve/tools/admin/manage-team-members.js.map +1 -1
- package/dist/eve/tools/admin/query-tasks.d.ts +3 -3
- package/dist/eve/tools/admin/query-tasks.js +20 -8
- package/dist/eve/tools/admin/query-tasks.js.map +1 -1
- package/dist/eve/tools/catalog/generate-image.js +20 -8
- package/dist/eve/tools/catalog/generate-image.js.map +1 -1
- package/dist/eve/tools/catalog/generate-random-chart.d.ts +10 -4
- package/dist/eve/tools/catalog/generate-random-chart.js +65 -26
- package/dist/eve/tools/catalog/generate-random-chart.js.map +1 -1
- package/dist/eve/tools/catalog/search-products.js +20 -8
- package/dist/eve/tools/catalog/search-products.js.map +1 -1
- package/dist/eve/tools/identity/my-access.d.ts +9 -9
- package/dist/eve/tools/index.js +71 -15
- package/dist/eve/tools/index.js.map +1 -1
- package/dist/{index-Drj0Rzf_.d.ts → index-amkHKVGs.d.ts} +161 -12
- package/dist/index.d.ts +1 -1
- package/dist/index.js +20 -8
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1714,10 +1714,24 @@ var productEntityRowSchema = z6.object({
|
|
|
1714
1714
|
url: z6.string().min(1)
|
|
1715
1715
|
});
|
|
1716
1716
|
var metricPointEntityRowSchema = z6.object({
|
|
1717
|
-
date: z6.string().optional(),
|
|
1718
|
-
category: z6.string().optional(),
|
|
1719
|
-
label: z6.string().optional()
|
|
1720
|
-
}).catchall(z6.union([z6.string(), z6.number()]))
|
|
1717
|
+
date: z6.string().optional().describe("X-axis value when xKey is date/time"),
|
|
1718
|
+
category: z6.string().optional().describe("X-axis value when xKey is category"),
|
|
1719
|
+
label: z6.string().optional().describe("X-axis value when xKey is label")
|
|
1720
|
+
}).catchall(z6.union([z6.string(), z6.number()])).describe(
|
|
1721
|
+
"Wide chart point: x-axis field + numeric columns named by yKeys (one series per column)"
|
|
1722
|
+
);
|
|
1723
|
+
var toolChartResultSchema = withAgentOnlyFields({
|
|
1724
|
+
title: z6.string().min(1).optional().describe("Chart title shown above the plot"),
|
|
1725
|
+
description: z6.string().min(1).optional().describe("Optional short subtitle"),
|
|
1726
|
+
type: z6.enum(["line", "bar", "area"]).describe("TRL/shadcn chart variant (time series \u2192 line, categories \u2192 bar)"),
|
|
1727
|
+
xKey: z6.string().min(1).describe('Field on each series row for the x-axis, e.g. "date" or "category"'),
|
|
1728
|
+
yKeys: z6.array(z6.string().min(1)).min(1).describe(
|
|
1729
|
+
'Numeric series column names on each row, e.g. ["NL","BE"] or ["created","handled"]'
|
|
1730
|
+
),
|
|
1731
|
+
series: z6.array(metricPointEntityRowSchema).describe(
|
|
1732
|
+
"Wide-format points only \u2014 one object per x value with yKeys as numeric fields"
|
|
1733
|
+
)
|
|
1734
|
+
});
|
|
1721
1735
|
var memberEntityRowSchema = z6.object({
|
|
1722
1736
|
name: z6.string(),
|
|
1723
1737
|
email: z6.string(),
|
|
@@ -1776,10 +1790,8 @@ var agentAdminMutationResultSchema = z6.object({
|
|
|
1776
1790
|
var searchProductsOutputSchema = withAgentOnlyFields({
|
|
1777
1791
|
items: z6.array(productEntityRowSchema)
|
|
1778
1792
|
});
|
|
1779
|
-
var generateRandomChartOutputSchema =
|
|
1780
|
-
title: z6.string().min(1)
|
|
1781
|
-
axis: z6.enum(["time", "category"]),
|
|
1782
|
-
series: z6.array(metricPointEntityRowSchema)
|
|
1793
|
+
var generateRandomChartOutputSchema = toolChartResultSchema.extend({
|
|
1794
|
+
title: z6.string().min(1)
|
|
1783
1795
|
});
|
|
1784
1796
|
var generateImageOutputSchema = withAgentOnlyFields({
|
|
1785
1797
|
prompt: z6.string().min(1),
|