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
27 lines (15 loc) • 994 B
text/typescript
import { NodePricingDrivenFeaturesProvider } from './provider/OpenFeatureProvider';
import PricingService from './services/pricing.service';
export { PricingContextManager } from './configuration/PricingContextManager';
export { pricing2DZN } from './utils/dzn-exporter/pricing-dzn-exporter';
export { saveDZNfile } from './utils/dzn-exporter';
export { PricingOperation } from './models/minizinc/minizinc';
export { PricingService };
export { retrievePricingFromPath, retrievePricingFromText, writePricingToYaml } from './utils/yaml-utils';
export { checkFeature } from './middleware/feature-checker';
export { generateUserPricingToken, evaluateFeature } from './utils/pricing-evaluator';
export { PricingJwtUtils } from './utils/pricing-jwt-utils';
export { PricingAware } from './decorators/PricingAware';
export { PricingContext } from './configuration/PricingContext';
export { NodePricingDrivenFeaturesProvider } from './provider/OpenFeatureProvider';
export * from './types';