business-as-code
Version:
Primitives for expressing business logic and processes as code
51 lines • 1.12 kB
TypeScript
/**
* Offering Entity Types (Nouns)
*
* Product and service offerings: Product, Service, Feature, Pricing.
*
* @packageDocumentation
*/
import type { Noun } from 'ai-database';
/**
* Product entity
*
* Represents a product offering.
*/
export declare const Product: Noun;
/**
* Service entity
*
* Represents a service offering.
*/
export declare const Service: Noun;
/**
* Feature entity
*
* Represents a product feature or capability.
*/
export declare const Feature: Noun;
/**
* PricingPlan entity
*
* Represents a pricing plan or tier.
*/
export declare const PricingPlan: Noun;
/**
* RoadmapItem entity
*
* Represents an item on the product roadmap.
*/
export declare const RoadmapItem: Noun;
export declare const OfferingEntities: {
Product: Noun;
Service: Noun;
Feature: Noun;
PricingPlan: Noun;
RoadmapItem: Noun;
};
export declare const OfferingCategories: {
readonly products: readonly ["Product", "Feature", "RoadmapItem"];
readonly services: readonly ["Service"];
readonly pricing: readonly ["PricingPlan"];
};
//# sourceMappingURL=offerings.d.ts.map