@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.
Files changed (95) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/bin/database/enterprise-db-manager.js +4 -4
  3. package/bin/security/security-cli.js +2 -2
  4. package/bin/service-management/create-service.js +2 -2
  5. package/bin/service-management/init-service.js +2 -2
  6. package/bin/shared/cloudflare/domain-manager.js +1 -1
  7. package/bin/shared/config/index.js +1 -1
  8. package/bin/shared/deployment/index.js +2 -2
  9. package/dist/bin/clodo-service-old.js +868 -0
  10. package/dist/bin/clodo-service-test.js +10 -0
  11. package/dist/bin/clodo-service.js +62 -0
  12. package/dist/bin/commands/assess.js +76 -0
  13. package/dist/bin/commands/create.js +56 -0
  14. package/dist/bin/commands/deploy.js +196 -0
  15. package/dist/bin/commands/diagnose.js +70 -0
  16. package/dist/bin/commands/helpers.js +138 -0
  17. package/dist/bin/commands/update.js +55 -0
  18. package/dist/bin/commands/validate.js +26 -0
  19. package/dist/bin/database/deployment-db-manager.js +423 -0
  20. package/dist/bin/database/enterprise-db-manager.js +457 -0
  21. package/dist/bin/database/wrangler-d1-manager.js +685 -0
  22. package/dist/bin/deployment/enterprise-deploy.js +877 -0
  23. package/dist/bin/deployment/master-deploy.js +1376 -0
  24. package/dist/bin/deployment/modular-enterprise-deploy.js +466 -0
  25. package/dist/bin/deployment/modules/DeploymentConfiguration.js +395 -0
  26. package/dist/bin/deployment/modules/DeploymentOrchestrator.js +492 -0
  27. package/dist/bin/deployment/modules/EnvironmentManager.js +517 -0
  28. package/dist/bin/deployment/modules/MonitoringIntegration.js +560 -0
  29. package/dist/bin/deployment/modules/ValidationManager.js +342 -0
  30. package/dist/bin/deployment/orchestration/BaseDeploymentOrchestrator.js +426 -0
  31. package/dist/bin/deployment/orchestration/EnterpriseOrchestrator.js +401 -0
  32. package/dist/bin/deployment/orchestration/PortfolioOrchestrator.js +273 -0
  33. package/dist/bin/deployment/orchestration/SingleServiceOrchestrator.js +231 -0
  34. package/dist/bin/deployment/orchestration/UnifiedDeploymentOrchestrator.js +662 -0
  35. package/dist/bin/deployment/test-interactive-utils.js +66 -0
  36. package/dist/bin/portfolio/portfolio-manager.js +487 -0
  37. package/dist/bin/security/security-cli.js +108 -0
  38. package/dist/bin/service-management/create-service.js +122 -0
  39. package/dist/bin/service-management/init-service.js +79 -0
  40. package/dist/{shared → bin/shared}/cloudflare/domain-manager.js +1 -1
  41. package/dist/{shared → bin/shared}/config/index.js +1 -1
  42. package/dist/bin/shared/deployment/index.js +10 -0
  43. package/dist/deployment/index.js +10 -9
  44. package/dist/deployment/rollback-manager.js +21 -508
  45. package/package.json +7 -7
  46. package/dist/shared/deployment/auditor.js +0 -986
  47. package/dist/shared/deployment/index.js +0 -10
  48. package/dist/shared/deployment/validator.js +0 -670
  49. package/dist/shared/production-tester/api-tester.js +0 -80
  50. package/dist/shared/production-tester/auth-tester.js +0 -129
  51. package/dist/shared/production-tester/core.js +0 -217
  52. package/dist/shared/production-tester/database-tester.js +0 -105
  53. package/dist/shared/production-tester/index.js +0 -74
  54. package/dist/shared/production-tester/load-tester.js +0 -120
  55. package/dist/shared/production-tester/performance-tester.js +0 -105
  56. /package/dist/{shared → bin/shared}/cloudflare/domain-discovery.js +0 -0
  57. /package/dist/{shared → bin/shared}/cloudflare/index.js +0 -0
  58. /package/dist/{shared → bin/shared}/cloudflare/ops.js +0 -0
  59. /package/dist/{shared → bin/shared}/config/ConfigurationManager.js +0 -0
  60. /package/dist/{shared → bin/shared}/config/cache.js +0 -0
  61. /package/dist/{shared → bin/shared}/config/command-config-manager.js +0 -0
  62. /package/dist/{shared → bin/shared}/config/manager.js +0 -0
  63. /package/dist/{shared → bin/shared}/database/connection-manager.js +0 -0
  64. /package/dist/{shared → bin/shared}/database/index.js +0 -0
  65. /package/dist/{shared → bin/shared}/database/orchestrator.js +0 -0
  66. /package/dist/{deployment → bin/shared/deployment}/auditor.js +0 -0
  67. /package/dist/{shared → bin/shared}/deployment/rollback-manager.js +0 -0
  68. /package/dist/{deployment → bin/shared/deployment}/validator.js +0 -0
  69. /package/dist/{shared → bin/shared}/index.js +0 -0
  70. /package/dist/{shared → bin/shared}/logging/Logger.js +0 -0
  71. /package/dist/{shared → bin/shared}/monitoring/health-checker.js +0 -0
  72. /package/dist/{shared → bin/shared}/monitoring/index.js +0 -0
  73. /package/dist/{shared → bin/shared}/monitoring/memory-manager.js +0 -0
  74. /package/dist/{shared → bin/shared}/monitoring/production-monitor.js +0 -0
  75. /package/dist/{deployment/testers → bin/shared/production-tester}/api-tester.js +0 -0
  76. /package/dist/{deployment/testers → bin/shared/production-tester}/auth-tester.js +0 -0
  77. /package/dist/{deployment/testers → bin/shared/production-tester}/core.js +0 -0
  78. /package/dist/{deployment/testers → bin/shared/production-tester}/database-tester.js +0 -0
  79. /package/dist/{deployment/testers → bin/shared/production-tester}/index.js +0 -0
  80. /package/dist/{deployment/testers → bin/shared/production-tester}/load-tester.js +0 -0
  81. /package/dist/{deployment/testers → bin/shared/production-tester}/performance-tester.js +0 -0
  82. /package/dist/{shared → bin/shared}/security/api-token-manager.js +0 -0
  83. /package/dist/{shared → bin/shared}/security/index.js +0 -0
  84. /package/dist/{shared → bin/shared}/security/secret-generator.js +0 -0
  85. /package/dist/{shared → bin/shared}/security/secure-token-manager.js +0 -0
  86. /package/dist/{shared → bin/shared}/utils/ErrorHandler.js +0 -0
  87. /package/dist/{shared → bin/shared}/utils/error-recovery.js +0 -0
  88. /package/dist/{shared → bin/shared}/utils/file-manager.js +0 -0
  89. /package/dist/{shared → bin/shared}/utils/formatters.js +0 -0
  90. /package/dist/{shared → bin/shared}/utils/graceful-shutdown-manager.js +0 -0
  91. /package/dist/{shared → bin/shared}/utils/index.js +0 -0
  92. /package/dist/{shared → bin/shared}/utils/interactive-prompts.js +0 -0
  93. /package/dist/{shared → bin/shared}/utils/interactive-utils.js +0 -0
  94. /package/dist/{shared → bin/shared}/utils/rate-limiter.js +0 -0
  95. /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 dist/ (compiled framework)
29
- import { DatabaseOrchestrator } from '../../dist/database/database-orchestrator.js';
30
- import { DeploymentAuditor } from '../../dist/deployment/deployment-auditor.js';
31
- import { CrossDomainCoordinator } from '../../dist/orchestration/cross-domain-coordinator.js';
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,6 +1,6 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node
2
2
 
3
- import { SecurityCLI } from '../../dist/security/SecurityCLI.js';
3
+ import { SecurityCLI } from '../../src/security/SecurityCLI.js';
4
4
 
5
5
  const command = process.argv[2];
6
6
  const args = process.argv.slice(3);
@@ -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 '../../dist/service-management/ServiceCreator.js';
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 '../../dist/service-management/ServiceInitializer.js';
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 '../../../dist/orchestration/multi-domain-orchestrator.js';
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 '../../../dist/config/customers.js';
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 '../../dist/orchestration/multi-domain-orchestrator.js';
8
- export { CrossDomainCoordinator } from '../../dist/orchestration/cross-domain-coordinator.js';
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';