UNPKG

appwrite-utils-cli

Version:

Appwrite Utility Functions to help with database management, data conversion, data import, migrations, and much more. Meant to be used as a CLI tool, I do not recommend installing this in frontend environments.

9 lines (7 loc) 228 B
import { z } from "zod"; export const requestSchema = z.object({ databaseId: z.string(), collectionId: z.string(), queries: z.array(z.string()).optional(), }); export type Request = z.infer<typeof requestSchema>;