@tamyla/clodo-framework 3.1.8 → 3.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/bin/database/enterprise-db-manager.js +4 -4
- package/bin/security/security-cli.js +2 -2
- package/bin/service-management/create-service.js +2 -2
- package/bin/service-management/init-service.js +2 -2
- package/bin/shared/cloudflare/domain-manager.js +1 -1
- package/bin/shared/config/index.js +1 -1
- package/bin/shared/deployment/index.js +2 -2
- package/dist/bin/clodo-service-old.js +868 -0
- package/dist/bin/clodo-service-test.js +10 -0
- package/dist/bin/clodo-service.js +62 -0
- package/dist/bin/commands/assess.js +76 -0
- package/dist/bin/commands/create.js +56 -0
- package/dist/bin/commands/deploy.js +196 -0
- package/dist/bin/commands/diagnose.js +70 -0
- package/dist/bin/commands/helpers.js +138 -0
- package/dist/bin/commands/update.js +55 -0
- package/dist/bin/commands/validate.js +26 -0
- package/dist/bin/database/deployment-db-manager.js +423 -0
- package/dist/bin/database/enterprise-db-manager.js +457 -0
- package/dist/bin/database/wrangler-d1-manager.js +685 -0
- package/dist/bin/deployment/enterprise-deploy.js +877 -0
- package/dist/bin/deployment/master-deploy.js +1376 -0
- package/dist/bin/deployment/modular-enterprise-deploy.js +466 -0
- package/dist/bin/deployment/modules/DeploymentConfiguration.js +395 -0
- package/dist/bin/deployment/modules/DeploymentOrchestrator.js +492 -0
- package/dist/bin/deployment/modules/EnvironmentManager.js +517 -0
- package/dist/bin/deployment/modules/MonitoringIntegration.js +560 -0
- package/dist/bin/deployment/modules/ValidationManager.js +342 -0
- package/dist/bin/deployment/orchestration/BaseDeploymentOrchestrator.js +426 -0
- package/dist/bin/deployment/orchestration/EnterpriseOrchestrator.js +401 -0
- package/dist/bin/deployment/orchestration/PortfolioOrchestrator.js +273 -0
- package/dist/bin/deployment/orchestration/SingleServiceOrchestrator.js +231 -0
- package/dist/bin/deployment/orchestration/UnifiedDeploymentOrchestrator.js +662 -0
- package/dist/bin/deployment/test-interactive-utils.js +66 -0
- package/dist/bin/portfolio/portfolio-manager.js +487 -0
- package/dist/bin/security/security-cli.js +108 -0
- package/dist/bin/service-management/create-service.js +122 -0
- package/dist/bin/service-management/init-service.js +79 -0
- package/dist/{shared → bin/shared}/cloudflare/domain-manager.js +1 -1
- package/dist/{shared → bin/shared}/config/index.js +1 -1
- package/dist/bin/shared/deployment/index.js +10 -0
- package/dist/deployment/index.js +10 -9
- package/dist/deployment/rollback-manager.js +21 -508
- package/package.json +7 -7
- package/dist/shared/deployment/auditor.js +0 -986
- package/dist/shared/deployment/index.js +0 -10
- package/dist/shared/deployment/validator.js +0 -670
- package/dist/shared/production-tester/api-tester.js +0 -80
- package/dist/shared/production-tester/auth-tester.js +0 -129
- package/dist/shared/production-tester/core.js +0 -217
- package/dist/shared/production-tester/database-tester.js +0 -105
- package/dist/shared/production-tester/index.js +0 -74
- package/dist/shared/production-tester/load-tester.js +0 -120
- package/dist/shared/production-tester/performance-tester.js +0 -105
- /package/dist/{shared → bin/shared}/cloudflare/domain-discovery.js +0 -0
- /package/dist/{shared → bin/shared}/cloudflare/index.js +0 -0
- /package/dist/{shared → bin/shared}/cloudflare/ops.js +0 -0
- /package/dist/{shared → bin/shared}/config/ConfigurationManager.js +0 -0
- /package/dist/{shared → bin/shared}/config/cache.js +0 -0
- /package/dist/{shared → bin/shared}/config/command-config-manager.js +0 -0
- /package/dist/{shared → bin/shared}/config/manager.js +0 -0
- /package/dist/{shared → bin/shared}/database/connection-manager.js +0 -0
- /package/dist/{shared → bin/shared}/database/index.js +0 -0
- /package/dist/{shared → bin/shared}/database/orchestrator.js +0 -0
- /package/dist/{deployment → bin/shared/deployment}/auditor.js +0 -0
- /package/dist/{shared → bin/shared}/deployment/rollback-manager.js +0 -0
- /package/dist/{deployment → bin/shared/deployment}/validator.js +0 -0
- /package/dist/{shared → bin/shared}/index.js +0 -0
- /package/dist/{shared → bin/shared}/logging/Logger.js +0 -0
- /package/dist/{shared → bin/shared}/monitoring/health-checker.js +0 -0
- /package/dist/{shared → bin/shared}/monitoring/index.js +0 -0
- /package/dist/{shared → bin/shared}/monitoring/memory-manager.js +0 -0
- /package/dist/{shared → bin/shared}/monitoring/production-monitor.js +0 -0
- /package/dist/{deployment/testers → bin/shared/production-tester}/api-tester.js +0 -0
- /package/dist/{deployment/testers → bin/shared/production-tester}/auth-tester.js +0 -0
- /package/dist/{deployment/testers → bin/shared/production-tester}/core.js +0 -0
- /package/dist/{deployment/testers → bin/shared/production-tester}/database-tester.js +0 -0
- /package/dist/{deployment/testers → bin/shared/production-tester}/index.js +0 -0
- /package/dist/{deployment/testers → bin/shared/production-tester}/load-tester.js +0 -0
- /package/dist/{deployment/testers → bin/shared/production-tester}/performance-tester.js +0 -0
- /package/dist/{shared → bin/shared}/security/api-token-manager.js +0 -0
- /package/dist/{shared → bin/shared}/security/index.js +0 -0
- /package/dist/{shared → bin/shared}/security/secret-generator.js +0 -0
- /package/dist/{shared → bin/shared}/security/secure-token-manager.js +0 -0
- /package/dist/{shared → bin/shared}/utils/ErrorHandler.js +0 -0
- /package/dist/{shared → bin/shared}/utils/error-recovery.js +0 -0
- /package/dist/{shared → bin/shared}/utils/file-manager.js +0 -0
- /package/dist/{shared → bin/shared}/utils/formatters.js +0 -0
- /package/dist/{shared → bin/shared}/utils/graceful-shutdown-manager.js +0 -0
- /package/dist/{shared → bin/shared}/utils/index.js +0 -0
- /package/dist/{shared → bin/shared}/utils/interactive-prompts.js +0 -0
- /package/dist/{shared → bin/shared}/utils/interactive-utils.js +0 -0
- /package/dist/{shared → bin/shared}/utils/rate-limiter.js +0 -0
- /package/dist/{shared → bin/shared}/validation/ValidationRegistry.js +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## [3.1.10](https://github.com/tamylaa/clodo-framework/compare/v3.1.9...v3.1.10) (2025-10-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* correct import paths in bin/ to reference src/ not dist/ ([57d9740](https://github.com/tamylaa/clodo-framework/commit/57d974051d15ba263005aba8e48f5290823e24c9))
|
|
7
|
+
|
|
8
|
+
## [3.1.9](https://github.com/tamylaa/clodo-framework/compare/v3.1.8...v3.1.9) (2025-10-27)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* compile bin/ to dist/bin/ for proper npm package structure ([d4ba5d5](https://github.com/tamylaa/clodo-framework/commit/d4ba5d55e27911333a9921234e8defe2f995efd3))
|
|
14
|
+
* include required bin directories in npm package ([aa8484e](https://github.com/tamylaa/clodo-framework/commit/aa8484ed600c15a217d7b67b82ad9f31d780fdf7))
|
|
15
|
+
|
|
1
16
|
## [3.1.8](https://github.com/tamylaa/clodo-framework/compare/v3.1.7...v3.1.8) (2025-10-27)
|
|
2
17
|
|
|
3
18
|
|
|
@@ -25,10 +25,10 @@ import { program } from 'commander';
|
|
|
25
25
|
import { existsSync, readFileSync, writeFileSync } from 'fs';
|
|
26
26
|
import { join } from 'path';
|
|
27
27
|
|
|
28
|
-
// Enterprise module imports - from
|
|
29
|
-
import { DatabaseOrchestrator } from '../../
|
|
30
|
-
import { DeploymentAuditor } from '../../
|
|
31
|
-
import { CrossDomainCoordinator } from '../../
|
|
28
|
+
// Enterprise module imports - from src/ (framework source)
|
|
29
|
+
import { DatabaseOrchestrator } from '../../src/database/database-orchestrator.js';
|
|
30
|
+
import { DeploymentAuditor } from '../../src/deployment/deployment-auditor.js';
|
|
31
|
+
import { CrossDomainCoordinator } from '../../src/orchestration/cross-domain-coordinator.js';
|
|
32
32
|
|
|
33
33
|
// Shared utilities from bin/shared/
|
|
34
34
|
import { ConfigurationCacheManager } from '../shared/config/cache.js';
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
1
|
+
#!/usr/bin/env node
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Clodo Framework - Service Template Generator
|
|
5
5
|
* Creates new ser console.log(`✓ Using Clodo Framework ServiceCreator module`);ices from predefined templates
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
-
import { ServiceCreator } from '../../
|
|
8
|
+
import { ServiceCreator } from '../../src/service-management/ServiceCreator.js';
|
|
9
9
|
|
|
10
10
|
const SERVICE_TYPES = ['data-service', 'auth-service', 'content-service', 'api-gateway', 'generic'];
|
|
11
11
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
1
|
+
#!/usr/bin/env node
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Clodo Framework - Service Initializer
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
13
|
import { program } from 'commander';
|
|
14
|
-
import { ServiceInitializer } from '../../
|
|
14
|
+
import { ServiceInitializer } from '../../src/service-management/ServiceInitializer.js';
|
|
15
15
|
|
|
16
16
|
const SERVICE_TYPES = ['generic', 'data-service', 'auth-service', 'content-service', 'api-gateway'];
|
|
17
17
|
|
|
@@ -15,7 +15,7 @@ import { promisify } from 'util';
|
|
|
15
15
|
import { exec } from 'child_process';
|
|
16
16
|
import { askChoice, askYesNo } from '../utils/interactive-prompts.js';
|
|
17
17
|
import { DomainDiscovery } from './domain-discovery.js';
|
|
18
|
-
import { MultiDomainOrchestrator } from '../../../
|
|
18
|
+
import { MultiDomainOrchestrator } from '../../../src/orchestration/multi-domain-orchestrator.js';
|
|
19
19
|
import { getCommandConfig } from '../config/command-config-manager.js';
|
|
20
20
|
import { CloudflareTokenManager } from '../security/api-token-manager.js';
|
|
21
21
|
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
export { ConfigCache } from './cache.js';
|
|
8
8
|
export { ConfigManager } from './manager.js';
|
|
9
9
|
export { CommandConfigManager } from './command-config-manager.js';
|
|
10
|
-
export { CustomerConfigurationManager } from '../../../
|
|
10
|
+
export { CustomerConfigurationManager } from '../../../src/config/customers.js';
|
|
11
11
|
|
|
12
12
|
// Phase 3.2 consolidated configuration management
|
|
13
13
|
export {
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
export { DeploymentValidator } from './validator.js';
|
|
7
|
-
export { MultiDomainOrchestrator } from '../../
|
|
8
|
-
export { CrossDomainCoordinator } from '../../
|
|
7
|
+
export { MultiDomainOrchestrator } from '../../src/orchestration/multi-domain-orchestrator.js';
|
|
8
|
+
export { CrossDomainCoordinator } from '../../src/orchestration/cross-domain-coordinator.js';
|
|
9
9
|
export { DeploymentAuditor } from './auditor.js';
|
|
10
10
|
export { RollbackManager } from './rollback-manager.js';
|