UNPKG

@mondaycom/apps-cli

Version:

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

15 lines (14 loc) 488 B
import { z } from 'zod'; import { ManifestFeatureSchema } from '../../services/schemas/manifest-service-schemas.js'; import { AppId, AppVersionId } from '../general/index.js'; export type ManifestFeature = z.infer<typeof ManifestFeatureSchema>; export type AppCreateCommandTasksContext = { appId?: AppId; appName?: string; appVersionId?: AppVersionId; features?: ManifestFeature[]; githubUrl: string; folder: string; branch: string; targetPath: string; };