UNPKG

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

33 lines 1.61 kB
import { Request, Response, NextFunction } from 'express'; export declare class DocumentGenerationController { private static integrationService; /** * Generate documents with automatic review creation */ static generateWithReview(req: Request, res: Response, next: NextFunction): Promise<Response<any, Record<string, any>> | undefined>; /** * Get project review status */ static getProjectReviewStatus(req: Request, res: Response, next: NextFunction): Promise<Response<any, Record<string, any>> | undefined>; /** * Regenerate document with feedback */ static regenerateWithFeedback(req: Request, res: Response, next: NextFunction): Promise<Response<any, Record<string, any>> | undefined>; /** * Bulk approve documents */ static bulkApproveDocuments(req: Request, res: Response, next: NextFunction): Promise<Response<any, Record<string, any>> | undefined>; /** * Generate documents only (without review) */ static generateDocumentsOnly(req: Request, res: Response, next: NextFunction): Promise<Response<any, Record<string, any>> | undefined>; /** * Generate documents with PMBOK validation and review */ static generateWithValidationAndReview(req: Request, res: Response, next: NextFunction): Promise<Response<any, Record<string, any>> | undefined>; /** * Get workflow status for a project */ static getWorkflowStatus(req: Request, res: Response, next: NextFunction): Promise<Response<any, Record<string, any>> | undefined>; } //# sourceMappingURL=DocumentGenerationController.d.ts.map