UNPKG

@mondaycom/apps-cli

Version:

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

7 lines (6 loc) 291 B
import { z } from 'zod'; import { appIdSchema, appVersionIdSchema } from '../../services/schemas/general-schemas.js'; export type AppId = z.infer<typeof appIdSchema>; export type AppVersionId = z.infer<typeof appVersionIdSchema>; export type AccountId = number; export type UserId = number;