UNPKG

@mondaycom/apps-cli

Version:

A cli tool to manage apps (and monday-code projects) in monday.com

6 lines (5 loc) 304 B
import { z } from 'zod'; import { appSchema, createAppSchema, listAppSchema } from '../../services/schemas/apps-service-schemas.js'; export type App = z.infer<typeof appSchema>; export type ListAppResponse = z.infer<typeof listAppSchema>; export type CreateAppResponse = z.infer<typeof createAppSchema>;