11 lines
231 B
TypeScript
11 lines
231 B
TypeScript
import { z } from "zod/v4";
|
|
|
|
export const AutumnMetadataSchema = z.object({
|
|
id: z.string(),
|
|
created_at: z.number(),
|
|
expires_at: z.number(),
|
|
data: z.any(),
|
|
});
|
|
|
|
export type AutumnMetadata = z.infer<typeof AutumnMetadataSchema>;
|