Skip to content

Commit 62de449

Browse files
fix: biome formatting
1 parent 0d686c4 commit 62de449

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/contracts/customer.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,10 @@ export type CustomerLookupInput = z.infer<typeof CustomerLookupInputSchema>;
5353
export const CustomerLookupToolSchema = z.object({
5454
id: z.string().optional().describe("The customer ID"),
5555
email: z.string().optional().describe("The customer email address"),
56-
externalId: z.string().optional().describe("The external ID from your system"),
56+
externalId: z
57+
.string()
58+
.optional()
59+
.describe("The external ID from your system"),
5760
});
5861

5962
export const GetCustomerInputSchema = CustomerLookupInputSchema;

0 commit comments

Comments
 (0)