Skip to content

Commit 879fbc3

Browse files
committed
chore: fix tc and lint
1 parent 72a0cd2 commit 879fbc3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

apps/web/src/actions/integrations/pipedream/createToken.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const createPipedreamTokenAction = authProcedure
1111
externalUserId: z.string(),
1212
}),
1313
)
14-
.handler(async ({ input, ctx }) =>
14+
.handler(async ({ ctx }) =>
1515
createConnectToken({
1616
workspace: ctx.workspace,
1717
}).then((r) => r.unwrap()),

packages/core/src/services/latitudeTools/think/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default {
2121
definition: (context?: TelemetryContext) => ({
2222
description:
2323
'Allows you to explicitly understand, plan, and reflect on actions.',
24-
inputSchema: z.object({
24+
parameters: z.object({
2525
action: z
2626
.enum(['understand', 'plan', 'reflect'])
2727
.describe(

packages/core/src/services/latitudeTools/todo/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export default {
2424
method: todo,
2525
definition: (context?: TelemetryContext) => ({
2626
description,
27-
inputSchema: z.object({
27+
parameters: z.object({
2828
merge: z
2929
.boolean()
3030
.describe(

0 commit comments

Comments
 (0)