92 lines
2.3 KiB
TypeScript
92 lines
2.3 KiB
TypeScript
import { UsageTierSchema } from "@models/productModels/priceModels/priceConfig/usagePriceConfig.js";
|
|
import { BillingInterval } from "@models/productModels/priceModels/priceEnums.js";
|
|
import {
|
|
OnDecrease,
|
|
OnIncrease,
|
|
} from "@models/productV2Models/productItemModels/productItemEnums.js";
|
|
import { UsageModel } from "@models/productV2Models/productItemModels/productItemModels.js";
|
|
import { z } from "zod/v4";
|
|
import { ResetInterval } from "../planEnums.js";
|
|
|
|
export const ApiPlanFeatureSchema = z
|
|
.object({
|
|
feature_id: z.string(),
|
|
granted: z.number(),
|
|
unlimited: z.boolean(),
|
|
|
|
reset_interval: z.enum(ResetInterval).optional(),
|
|
reset_interval_count: z.number().optional(),
|
|
reset_usage_on_enabled: z.boolean().optional(),
|
|
|
|
price: z
|
|
.object({
|
|
amount: z.number().optional(),
|
|
tiers: z.array(UsageTierSchema).optional(),
|
|
|
|
interval: z.enum(BillingInterval),
|
|
interval_count: z.number().optional(),
|
|
|
|
billing_units: z.number(),
|
|
usage_model: z.enum(UsageModel),
|
|
|
|
// Use max_purchase for pay per use features
|
|
max_purchase: z.number().optional(),
|
|
})
|
|
.optional(),
|
|
|
|
proration: z
|
|
.object({
|
|
on_increase: z.enum(OnIncrease).optional(),
|
|
on_decrease: z.enum(OnDecrease).optional(),
|
|
})
|
|
.optional(),
|
|
|
|
rollover: z
|
|
.object({
|
|
max: z.number().nullable(),
|
|
expiry_duration_type: z.enum(ResetInterval),
|
|
expiry_duration_length: z.number().optional(),
|
|
})
|
|
.optional(),
|
|
})
|
|
.check((ctx) => {
|
|
const resetGroup =
|
|
ctx.value.reset_interval || ctx.value.reset_interval_count !== undefined;
|
|
const intervalGroup =
|
|
ctx.value.price?.interval ||
|
|
ctx.value.price?.interval_count !== undefined;
|
|
|
|
if (resetGroup && intervalGroup) {
|
|
ctx.issues.push({
|
|
code: "custom",
|
|
message:
|
|
"Top level reset intervals and feature price intervals are mutually exclusive.",
|
|
input: ctx.value,
|
|
});
|
|
}
|
|
|
|
if (ctx.value.price) {
|
|
if (
|
|
ctx.value.price.amount &&
|
|
ctx.value.price.tiers &&
|
|
ctx.value.price.tiers.length > 0
|
|
) {
|
|
ctx.issues.push({
|
|
code: "custom",
|
|
message: "Price amount and tiers are mutually exclusive.",
|
|
input: ctx.value,
|
|
});
|
|
}
|
|
}
|
|
});
|
|
|
|
// .refine((x) => {
|
|
// if(x.reset_interval || x.reset_interval_count) {
|
|
// if(x.price.interval || x.price.interval_count) {
|
|
// return false;
|
|
// }
|
|
// }
|
|
// });
|
|
|
|
export type ApiPlanFeature = z.infer<typeof ApiPlanFeatureSchema>;
|