@mondaycom/apps-cli
Version:
A cli tool to manage apps (and monday-code projects) in monday.com
25 lines (24 loc) • 819 B
TypeScript
import { z } from 'zod';
export declare const baseResponseHttpMetaDataSchema: z.ZodObject<{
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[]>;
}, {
statusCode: number;
headers: Record<string, string | string[]>;
}>;
export declare const baseErrorResponseSchema: z.ZodObject<{
title: z.ZodOptional<z.ZodString>;
message: z.ZodOptional<z.ZodString>;
traceId: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
title?: string | undefined;
message?: string | undefined;
traceId?: string | undefined;
}, {
title?: string | undefined;
message?: string | undefined;
traceId?: string | undefined;
}>;