adpa-enterprise-framework-automation
Version:
Modular, standards-compliant Node.js/TypeScript automation framework for enterprise requirements, project, and data management. Provides CLI and API for BABOK v3, PMBOK 7th Edition, and DMBOK 2.0 (in progress). Production-ready Express.js API with TypeSpe
30 lines • 833 B
TypeScript
import mongoose, { Document } from 'mongoose';
export interface ITemplate extends Document {
name: string;
description: string;
category: string;
template_type: string;
ai_instructions: string;
prompt_template: string;
generation_function: string;
metadata: {
tags?: string[];
variables: any[];
layout?: any;
emoji?: string;
priority?: number;
source?: string;
};
version: number;
is_active: boolean;
is_system: boolean;
created_by: string;
created_at?: Date;
updated_at?: Date;
}
export declare const TemplateModel: mongoose.Model<ITemplate, {}, {}, {}, mongoose.Document<unknown, {}, ITemplate, {}, {}> & ITemplate & Required<{
_id: unknown;
}> & {
__v: number;
}, any>;
//# sourceMappingURL=Template.model.d.ts.map