19 lines
504 B
TypeScript
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>;
|