We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62de449 commit 30bdcbaCopy full SHA for 30bdcba
src/contracts/customer.ts
@@ -59,10 +59,10 @@ export const CustomerLookupToolSchema = z.object({
59
.describe("The external ID from your system"),
60
});
61
62
-export const GetCustomerInputSchema = CustomerLookupInputSchema;
+export const GetCustomerInputSchema = CustomerLookupToolSchema;
63
export type GetCustomerInput = z.infer<typeof GetCustomerInputSchema>;
64
65
-export const DeleteCustomerInputSchema = CustomerLookupInputSchema;
+export const DeleteCustomerInputSchema = CustomerLookupToolSchema;
66
export type DeleteCustomerInput = z.infer<typeof DeleteCustomerInputSchema>;
67
68
export const CreateCustomerInputSchema = z.object({
0 commit comments