Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 4x 4x | import { z } from "zod";
// ============================================================================
// list_integrations - Read-only tool for listing project integrations
// ============================================================================
export const ListIntegrationsSchema = z.object({
project_id: z.string().describe("Project ID or URL-encoded path"),
per_page: z.number().int().min(1).max(100).optional().describe("Number of items per page"),
page: z.number().int().min(1).optional().describe("Page number"),
});
// ============================================================================
// Type exports
// ============================================================================
export type ListIntegrationsInput = z.infer<typeof ListIntegrationsSchema>;
|