14 lines
454 B
TypeScript
14 lines
454 B
TypeScript
// import { z } from "zod/v4";
|
|
// import { EntityBalance, EntityBalanceSchema } from "../../../index.js";
|
|
// import { jsonb } from "drizzle-orm/pg-core";
|
|
|
|
// export const RolloverModelSchema = z.object({
|
|
// id: z.string(),
|
|
// cus_ent_id: z.string(),
|
|
// balance: z.number(),
|
|
// entities: z.record(z.string(), EntityBalanceSchema),
|
|
// expires_at: z.number().nullable(),
|
|
// });
|
|
|
|
// export type RolloverModel = z.infer<typeof RolloverModelSchema>;
|