UNPKG

@tmlmobilidade/types

Version:
11 lines (10 loc) 402 B
/* * */ import { ProcessingStatusSchema } from '../_common/status.js'; import { UnixTimeStampSchema } from '../_common/unix-timestamp.js'; import { z } from 'zod'; /* * */ export const PlanAppStatusSchema = z.object({ last_hash: z.string().nullable().default(null), status: ProcessingStatusSchema.default('waiting'), timestamp: UnixTimeStampSchema.nullable().default(null), }).default({});