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
|
@@ -1101,10 +1101,24 @@ var productEntityRowSchema = z5.object({
|
|
|
1101
1101
|
url: z5.string().min(1)
|
|
1102
1102
|
});
|
|
1103
1103
|
var metricPointEntityRowSchema = z5.object({
|
|
1104
|
-
date: z5.string().optional(),
|
|
1105
|
-
category: z5.string().optional(),
|
|
1106
|
-
label: z5.string().optional()
|
|
1107
|
-
}).catchall(z5.union([z5.string(), z5.number()]))
|
|
1104
|
+
date: z5.string().optional().describe("X-axis value when xKey is date/time"),
|
|
1105
|
+
category: z5.string().optional().describe("X-axis value when xKey is category"),
|
|
1106
|
+
label: z5.string().optional().describe("X-axis value when xKey is label")
|
|
1107
|
+
}).catchall(z5.union([z5.string(), z5.number()])).describe(
|
|
1108
|
+
"Wide chart point: x-axis field + numeric columns named by yKeys (one series per column)"
|
|
1109
|
+
);
|
|
1110
|
+
var toolChartResultSchema = withAgentOnlyFields({
|
|
1111
|
+
title: z5.string().min(1).optional().describe("Chart title shown above the plot"),
|
|
1112
|
+
description: z5.string().min(1).optional().describe("Optional short subtitle"),
|
|
1113
|
+
type: z5.enum(["line", "bar", "area"]).describe("TRL/shadcn chart variant (time series \u2192 line, categories \u2192 bar)"),
|
|
1114
|
+
xKey: z5.string().min(1).describe('Field on each series row for the x-axis, e.g. "date" or "category"'),
|
|
1115
|
+
yKeys: z5.array(z5.string().min(1)).min(1).describe(
|
|
1116
|
+
'Numeric series column names on each row, e.g. ["NL","BE"] or ["created","handled"]'
|
|
1117
|
+
),
|
|
1118
|
+
series: z5.array(metricPointEntityRowSchema).describe(
|
|
1119
|
+
"Wide-format points only \u2014 one object per x value with yKeys as numeric fields"
|
|
1120
|
+
)
|
|
1121
|
+
});
|
|
1108
1122
|
var memberEntityRowSchema = z5.object({
|
|
1109
1123
|
name: z5.string(),
|
|
1110
1124
|
email: z5.string(),
|
|
@@ -1163,10 +1177,8 @@ var agentAdminMutationResultSchema = z5.object({
|
|
|
1163
1177
|
var searchProductsOutputSchema = withAgentOnlyFields({
|
|
1164
1178
|
items: z5.array(productEntityRowSchema)
|
|
1165
1179
|
});
|
|
1166
|
-
var generateRandomChartOutputSchema =
|
|
1167
|
-
title: z5.string().min(1)
|
|
1168
|
-
axis: z5.enum(["time", "category"]),
|
|
1169
|
-
series: z5.array(metricPointEntityRowSchema)
|
|
1180
|
+
var generateRandomChartOutputSchema = toolChartResultSchema.extend({
|
|
1181
|
+
title: z5.string().min(1)
|
|
1170
1182
|
});
|
|
1171
1183
|
var generateImageOutputSchema = withAgentOnlyFields({
|
|
1172
1184
|
prompt: z5.string().min(1),
|