We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d686c4 commit 62de449Copy full SHA for 62de449
1 file changed
src/contracts/customer.ts
@@ -53,7 +53,10 @@ export type CustomerLookupInput = z.infer<typeof CustomerLookupInputSchema>;
53
export const CustomerLookupToolSchema = z.object({
54
id: z.string().optional().describe("The customer ID"),
55
email: z.string().optional().describe("The customer email address"),
56
- externalId: z.string().optional().describe("The external ID from your system"),
+ externalId: z
57
+ .string()
58
+ .optional()
59
+ .describe("The external ID from your system"),
60
});
61
62
export const GetCustomerInputSchema = CustomerLookupInputSchema;
0 commit comments