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

36 lines 1.38 kB
import { Request, Response, NextFunction } from 'express'; export declare class FeedbackController { /** * Submit new feedback for a document */ static submitFeedback(req: Request, res: Response, next: NextFunction): Promise<void>; /** * Get feedback for a specific project */ static getProjectFeedback(req: Request, res: Response, next: NextFunction): Promise<void>; /** * Get feedback for a specific document */ static getDocumentFeedback(req: Request, res: Response, next: NextFunction): Promise<void>; /** * Update feedback status */ static updateFeedbackStatus(req: Request, res: Response, next: NextFunction): Promise<void>; /** * Get feedback analytics for a project */ static getFeedbackAnalytics(req: Request, res: Response, next: NextFunction): Promise<void>; /** * Get feedback summary for dashboard */ static getFeedbackSummary(req: Request, res: Response, next: NextFunction): Promise<void>; /** * Search feedback across projects */ static searchFeedback(req: Request, res: Response, next: NextFunction): Promise<void>; /** * Get feedback insights for AI prompt improvement */ static getFeedbackInsights(req: Request, res: Response, next: NextFunction): Promise<void>; } //# sourceMappingURL=FeedbackController.d.ts.map