Files
cfw-autumn/shared/models/cusModels/cusEntModels/customEntModels.ts
2025-01-21 11:18:42 +00:00

19 lines
504 B
TypeScript

// import { z } from "zod";
// import {
// AllowanceType,
// EntInterval,
// } from "../../productModels/entitlementModels.js";
// export const CustomEntitlementSchema = z.object({
// id: z.string(),
// org_id: z.string(),
// created_at: z.number(),
// internal_feature_id: z.string(),
// allowance_type: z.nativeEnum(AllowanceType),
// allowance: z.number(),
// interval: z.nativeEnum(EntInterval),
// });
// export type CustomEntitlement = z.infer<typeof CustomEntitlementSchema>;