Skip to content

Commit 65b12f2

Browse files
docs(mothership): tidy user_table limit/offset param copy
Drop "Any value is allowed" from the limit description and restore the original offset description. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent f1ee3e9 commit 65b12f2

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

apps/sim/lib/copilot/generated/tool-catalog-v1.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3959,7 +3959,7 @@ export const UserTable: ToolCatalogEntry = {
39593959
limit: {
39603960
type: 'number',
39613961
description:
3962-
'Maximum rows to return or affect (optional, default 100). Any value is allowed — large operations run in the background automatically. Omit on update_rows_by_filter / delete_rows_by_filter to act on every match.',
3962+
'Maximum rows to return or affect (optional, default 100). Large operations run in the background automatically. Omit on update_rows_by_filter / delete_rows_by_filter to act on every match.',
39633963
},
39643964
mapping: {
39653965
type: 'object',
@@ -4012,7 +4012,7 @@ export const UserTable: ToolCatalogEntry = {
40124012
},
40134013
offset: {
40144014
type: 'number',
4015-
description: 'Number of rows to skip for query_rows pagination (optional, default 0).',
4015+
description: 'Number of rows to skip (optional for query_rows, default 0)',
40164016
},
40174017
outputColumnNames: {
40184018
type: 'object',

apps/sim/lib/copilot/generated/tool-schemas-v1.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3687,7 +3687,7 @@ export const TOOL_RUNTIME_SCHEMAS: Record<string, ToolRuntimeSchemaEntry> = {
36873687
limit: {
36883688
type: 'number',
36893689
description:
3690-
'Maximum rows to return or affect (optional, default 100). Any value is allowed — large operations run in the background automatically. Omit on update_rows_by_filter / delete_rows_by_filter to act on every match.',
3690+
'Maximum rows to return or affect (optional, default 100). Large operations run in the background automatically. Omit on update_rows_by_filter / delete_rows_by_filter to act on every match.',
36913691
},
36923692
mapping: {
36933693
type: 'object',
@@ -3746,8 +3746,7 @@ export const TOOL_RUNTIME_SCHEMAS: Record<string, ToolRuntimeSchemaEntry> = {
37463746
},
37473747
offset: {
37483748
type: 'number',
3749-
description:
3750-
'Number of rows to skip for query_rows pagination (optional, default 0).',
3749+
description: 'Number of rows to skip (optional for query_rows, default 0)',
37513750
},
37523751
outputColumnNames: {
37533752
type: 'object',

0 commit comments

Comments
 (0)