UNPKG

@mondaycom/apps-cli

Version:

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

16 lines (15 loc) 574 B
import { z } from 'zod'; import { APP_VERSION_STATUS } from '../../consts/app-versions.js'; export declare const promoteAppSchema: z.ZodObject<{ status: z.ZodNativeEnum<typeof APP_VERSION_STATUS>; statusCode: z.ZodNumber; headers: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodString]>>; }, "strip", z.ZodTypeAny, { statusCode: number; headers: Record<string, string | string[]>; status: APP_VERSION_STATUS; }, { statusCode: number; headers: Record<string, string | string[]>; status: APP_VERSION_STATUS; }>;