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