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
42 lines • 1.54 kB
TypeScript
/**
* Confluence Integration Module
* Part of ADPA (Automated Document Processing Assistant) v2.1.3
*
* Complete Confluence integration for publishing generated documents
*
* Features:
* - Confluence Cloud API integration
* - Automatic page creation and updates
* - Configuration management
* - CLI commands for testing and publishing
* - Markdown to Confluence conversion
* - Hierarchical document organization
* - Metadata and tagging support
*/
export { ConfluencePublisher, createConfluencePublisher, validateConfluenceConfig, type ConfluenceConfig, type ConfluencePage, type PublishResult } from './ConfluencePublisher.js';
export { ConfluenceConfigManager, createConfluenceConfigManager, type ConfluenceConfigFile } from './ConfluenceConfigManager.js';
export { testConfluenceConnection, initConfluenceConfig, publishToConfluence, showConfluenceStatus } from './ConfluenceCLI.js';
/**
* Quick start function for Confluence integration
* Provides a simple interface to get started with Confluence publishing
*/
export declare function quickStartConfluence(): Promise<{
success: boolean;
message: string;
nextSteps: string[];
}>;
/**
* Confluence integration constants
*/
export declare const CONFLUENCE_CONSTANTS: {
DEFAULT_LABELS: string[];
RATE_LIMIT_DELAY: number;
MAX_RETRIES: number;
SUPPORTED_FORMATS: string[];
CONFLUENCE_STORAGE_FORMAT: string;
};
/**
* Confluence integration version
*/
export declare const CONFLUENCE_VERSION = "2.1.3";
//# sourceMappingURL=index.d.ts.map