pricing4ts
Version:
 Pricing4TS is a TypeScript-based toolkit designed to enhance the server-side functionality of a pricing-driven SaaS by enabling the seamless integration of pricing plans into the application logic. T
4 lines • 309 B
text/typescript
export type ValueType = "NUMERIC" | "BOOLEAN" | "TEXT";
export type FeatureType = "INFORMATION" | "INTEGRATION" | "DOMAIN" | "AUTOMATION" | "MANAGEMENT" | "GUARANTEE" | "SUPPORT" | "PAYMENT";
export type UsageLimitType = "RENEWABLE" | "NON_RENEWABLE";
export type RenderMode = "auto" | "enabled" | "disabled";