mcpengine/servers/toast/dist/tools/payments-tools.d.ts

39 lines
975 B
TypeScript

import { z } from 'zod';
import type { ToastAPIClient } from '../api-client.js';
export declare function registerPaymentsTools(client: ToastAPIClient): ({
name: string;
description: string;
inputSchema: z.ZodObject<{
paymentGuid: z.ZodString;
}, "strip", z.ZodTypeAny, {
paymentGuid: string;
}, {
paymentGuid: string;
}>;
execute: (args: any) => Promise<{
content: {
type: string;
text: string;
}[];
}>;
} | {
name: string;
description: string;
inputSchema: z.ZodObject<{
startDate: z.ZodString;
endDate: z.ZodString;
}, "strip", z.ZodTypeAny, {
startDate: string;
endDate: string;
}, {
startDate: string;
endDate: string;
}>;
execute: (args: any) => Promise<{
content: {
type: string;
text: string;
}[];
}>;
})[];
//# sourceMappingURL=payments-tools.d.ts.map