services-as-software
Version:
Primitives for building AI-powered services that operate as software
59 lines • 1.31 kB
TypeScript
/**
* Operations Entity Types (Nouns)
*
* Service operations: SLA, SLO, ServiceIncident, SupportTicket, ServiceFeedback, ServiceMetric
*
* @packageDocumentation
*/
import type { Noun } from 'ai-database';
/**
* SLA entity
*
* Service Level Agreement.
*/
export declare const SLA: Noun;
/**
* SLO entity
*
* Service Level Objective.
*/
export declare const SLO: Noun;
/**
* ServiceIncident entity
*
* Service incident or outage.
*/
export declare const ServiceIncident: Noun;
/**
* SupportTicket entity
*
* Customer support ticket.
*/
export declare const SupportTicket: Noun;
/**
* ServiceFeedback entity
*
* Customer feedback on service.
*/
export declare const ServiceFeedback: Noun;
/**
* ServiceMetric entity
*
* Service performance metric.
*/
export declare const ServiceMetric: Noun;
export declare const OperationsEntities: {
SLA: Noun;
SLO: Noun;
ServiceIncident: Noun;
SupportTicket: Noun;
ServiceFeedback: Noun;
ServiceMetric: Noun;
};
export declare const OperationsCategories: {
readonly agreements: readonly ["SLA", "SLO"];
readonly incidents: readonly ["ServiceIncident"];
readonly support: readonly ["SupportTicket", "ServiceFeedback"];
readonly metrics: readonly ["ServiceMetric"];
};
//# sourceMappingURL=operations.d.ts.map