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