@tamyla/clodo-framework 3.1.5 → 3.1.9

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 (132) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/bin/clodo-service.js +29 -947
  3. package/bin/database/enterprise-db-manager.js +7 -5
  4. package/bin/security/security-cli.js +0 -0
  5. package/bin/service-management/create-service.js +0 -0
  6. package/bin/service-management/init-service.js +0 -0
  7. package/bin/shared/cloudflare/domain-discovery.js +11 -10
  8. package/bin/shared/cloudflare/ops.js +1 -1
  9. package/bin/shared/config/ConfigurationManager.js +539 -0
  10. package/bin/shared/config/index.js +13 -1
  11. package/bin/shared/database/connection-manager.js +2 -2
  12. package/bin/shared/database/orchestrator.js +5 -4
  13. package/bin/shared/deployment/auditor.js +9 -8
  14. package/bin/shared/logging/Logger.js +214 -0
  15. package/bin/shared/monitoring/production-monitor.js +21 -9
  16. package/bin/shared/utils/ErrorHandler.js +675 -0
  17. package/bin/shared/utils/error-recovery.js +33 -13
  18. package/bin/shared/utils/file-manager.js +162 -0
  19. package/bin/shared/utils/formatters.js +247 -0
  20. package/bin/shared/utils/index.js +14 -4
  21. package/bin/shared/validation/ValidationRegistry.js +143 -0
  22. package/dist/bin/clodo-service-old.js +868 -0
  23. package/dist/bin/clodo-service-test.js +10 -0
  24. package/dist/bin/clodo-service.js +62 -0
  25. package/dist/bin/commands/assess.js +76 -0
  26. package/dist/bin/commands/create.js +56 -0
  27. package/dist/bin/commands/deploy.js +196 -0
  28. package/dist/bin/commands/diagnose.js +70 -0
  29. package/dist/bin/commands/helpers.js +138 -0
  30. package/dist/bin/commands/update.js +55 -0
  31. package/dist/bin/commands/validate.js +26 -0
  32. package/dist/bin/database/deployment-db-manager.js +423 -0
  33. package/dist/bin/database/enterprise-db-manager.js +457 -0
  34. package/dist/bin/database/wrangler-d1-manager.js +685 -0
  35. package/dist/bin/deployment/enterprise-deploy.js +877 -0
  36. package/dist/bin/deployment/master-deploy.js +1376 -0
  37. package/dist/bin/deployment/modular-enterprise-deploy.js +466 -0
  38. package/dist/bin/deployment/modules/DeploymentConfiguration.js +395 -0
  39. package/dist/bin/deployment/modules/DeploymentOrchestrator.js +492 -0
  40. package/dist/bin/deployment/modules/EnvironmentManager.js +517 -0
  41. package/dist/bin/deployment/modules/MonitoringIntegration.js +560 -0
  42. package/dist/bin/deployment/modules/ValidationManager.js +342 -0
  43. package/dist/bin/deployment/orchestration/BaseDeploymentOrchestrator.js +426 -0
  44. package/dist/bin/deployment/orchestration/EnterpriseOrchestrator.js +401 -0
  45. package/dist/bin/deployment/orchestration/PortfolioOrchestrator.js +273 -0
  46. package/dist/bin/deployment/orchestration/SingleServiceOrchestrator.js +231 -0
  47. package/dist/bin/deployment/orchestration/UnifiedDeploymentOrchestrator.js +662 -0
  48. package/dist/bin/deployment/test-interactive-utils.js +66 -0
  49. package/dist/bin/portfolio/portfolio-manager.js +487 -0
  50. package/dist/bin/security/security-cli.js +108 -0
  51. package/dist/bin/service-management/create-service.js +122 -0
  52. package/dist/bin/service-management/init-service.js +79 -0
  53. package/dist/{shared → bin/shared}/cloudflare/domain-discovery.js +11 -10
  54. package/dist/{shared → bin/shared}/cloudflare/ops.js +1 -1
  55. package/dist/bin/shared/config/ConfigurationManager.js +519 -0
  56. package/dist/{shared → bin/shared}/config/index.js +5 -1
  57. package/dist/{shared → bin/shared}/database/connection-manager.js +2 -2
  58. package/dist/{shared → bin/shared}/database/orchestrator.js +13 -4
  59. package/dist/{deployment → bin/shared/deployment}/auditor.js +23 -8
  60. package/dist/bin/shared/logging/Logger.js +209 -0
  61. package/dist/{shared → bin/shared}/monitoring/production-monitor.js +24 -8
  62. package/dist/{utils → bin/shared/utils}/ErrorHandler.js +306 -28
  63. package/dist/{utils → bin/shared/utils}/error-recovery.js +33 -13
  64. package/dist/bin/shared/utils/file-manager.js +155 -0
  65. package/dist/bin/shared/utils/formatters.js +215 -0
  66. package/dist/bin/shared/utils/index.js +19 -0
  67. package/dist/bin/shared/validation/ValidationRegistry.js +126 -0
  68. package/dist/deployment/index.js +10 -9
  69. package/dist/deployment/orchestration/BaseDeploymentOrchestrator.js +426 -0
  70. package/dist/deployment/orchestration/EnterpriseOrchestrator.js +401 -0
  71. package/dist/deployment/orchestration/PortfolioOrchestrator.js +273 -0
  72. package/dist/deployment/orchestration/SingleServiceOrchestrator.js +231 -0
  73. package/dist/deployment/orchestration/UnifiedDeploymentOrchestrator.js +662 -0
  74. package/dist/deployment/orchestration/index.js +17 -0
  75. package/dist/deployment/rollback-manager.js +21 -508
  76. package/dist/index.js +12 -0
  77. package/dist/orchestration/modules/DomainResolver.js +8 -6
  78. package/dist/orchestration/multi-domain-orchestrator.js +13 -1
  79. package/dist/security/index.js +2 -2
  80. package/dist/service-management/ConfirmationEngine.js +8 -7
  81. package/dist/service-management/ErrorTracker.js +7 -2
  82. package/dist/service-management/InputCollector.js +18 -12
  83. package/dist/service-management/ServiceCreator.js +22 -7
  84. package/dist/service-management/ServiceInitializer.js +12 -18
  85. package/dist/utils/config/unified-config-manager.js +14 -12
  86. package/dist/utils/deployment/config-cache.js +3 -1
  87. package/dist/utils/deployment/secret-generator.js +32 -29
  88. package/dist/utils/framework-config.js +6 -3
  89. package/dist/utils/ui-structures-loader.js +3 -0
  90. package/dist/worker/integration.js +11 -1
  91. package/package.json +36 -8
  92. package/dist/config/FeatureManager.js +0 -426
  93. package/dist/config/features.js +0 -230
  94. package/dist/shared/deployment/auditor.js +0 -971
  95. package/dist/shared/deployment/validator.js +0 -670
  96. package/dist/shared/production-tester/api-tester.js +0 -80
  97. package/dist/shared/production-tester/auth-tester.js +0 -129
  98. package/dist/shared/production-tester/core.js +0 -217
  99. package/dist/shared/production-tester/database-tester.js +0 -105
  100. package/dist/shared/production-tester/index.js +0 -74
  101. package/dist/shared/production-tester/load-tester.js +0 -120
  102. package/dist/shared/production-tester/performance-tester.js +0 -105
  103. package/dist/shared/utils/error-recovery.js +0 -240
  104. package/dist/shared/utils/index.js +0 -9
  105. /package/dist/{shared → bin/shared}/cloudflare/domain-manager.js +0 -0
  106. /package/dist/{shared → bin/shared}/cloudflare/index.js +0 -0
  107. /package/dist/{shared → bin/shared}/config/cache.js +0 -0
  108. /package/dist/{shared → bin/shared}/config/command-config-manager.js +0 -0
  109. /package/dist/{shared → bin/shared}/config/manager.js +0 -0
  110. /package/dist/{shared → bin/shared}/database/index.js +0 -0
  111. /package/dist/{shared → bin/shared}/deployment/index.js +0 -0
  112. /package/dist/{shared → bin/shared}/deployment/rollback-manager.js +0 -0
  113. /package/dist/{deployment → bin/shared/deployment}/validator.js +0 -0
  114. /package/dist/{shared → bin/shared}/index.js +0 -0
  115. /package/dist/{shared → bin/shared}/monitoring/health-checker.js +0 -0
  116. /package/dist/{shared → bin/shared}/monitoring/index.js +0 -0
  117. /package/dist/{shared → bin/shared}/monitoring/memory-manager.js +0 -0
  118. /package/dist/{deployment/testers → bin/shared/production-tester}/api-tester.js +0 -0
  119. /package/dist/{deployment/testers → bin/shared/production-tester}/auth-tester.js +0 -0
  120. /package/dist/{deployment/testers → bin/shared/production-tester}/core.js +0 -0
  121. /package/dist/{deployment/testers → bin/shared/production-tester}/database-tester.js +0 -0
  122. /package/dist/{deployment/testers → bin/shared/production-tester}/index.js +0 -0
  123. /package/dist/{deployment/testers → bin/shared/production-tester}/load-tester.js +0 -0
  124. /package/dist/{deployment/testers → bin/shared/production-tester}/performance-tester.js +0 -0
  125. /package/dist/{shared → bin/shared}/security/api-token-manager.js +0 -0
  126. /package/dist/{shared → bin/shared}/security/index.js +0 -0
  127. /package/dist/{shared → bin/shared}/security/secret-generator.js +0 -0
  128. /package/dist/{shared → bin/shared}/security/secure-token-manager.js +0 -0
  129. /package/dist/{shared → bin/shared}/utils/graceful-shutdown-manager.js +0 -0
  130. /package/dist/{shared → bin/shared}/utils/interactive-prompts.js +0 -0
  131. /package/dist/{shared → bin/shared}/utils/interactive-utils.js +0 -0
  132. /package/dist/{shared → bin/shared}/utils/rate-limiter.js +0 -0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,33 @@
1
+ ## [3.1.9](https://github.com/tamylaa/clodo-framework/compare/v3.1.8...v3.1.9) (2025-10-27)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * compile bin/ to dist/bin/ for proper npm package structure ([d4ba5d5](https://github.com/tamylaa/clodo-framework/commit/d4ba5d55e27911333a9921234e8defe2f995efd3))
7
+ * include required bin directories in npm package ([aa8484e](https://github.com/tamylaa/clodo-framework/commit/aa8484ed600c15a217d7b67b82ad9f31d780fdf7))
8
+
9
+ ## [3.1.8](https://github.com/tamylaa/clodo-framework/compare/v3.1.7...v3.1.8) (2025-10-27)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * change prepublishOnly to use build:ci instead of full validation ([e001791](https://github.com/tamylaa/clodo-framework/commit/e0017913df28b86320b6a71eb583a8ed37a45c38))
15
+
16
+ ## [3.1.7](https://github.com/tamylaa/clodo-framework/compare/v3.1.6...v3.1.7) (2025-10-27)
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * allow validation-config.json warning in CLI test ([2d6870a](https://github.com/tamylaa/clodo-framework/commit/2d6870af85b2fe89168ba8a64a9c5d5b639a6c70))
22
+ * exclude backup and archive directories from test discovery ([831eb98](https://github.com/tamylaa/clodo-framework/commit/831eb9835b5c816137cc07df8016612ed1f60334))
23
+
24
+ ## [3.1.6](https://github.com/tamylaa/clodo-framework/compare/v3.1.5...v3.1.6) (2025-10-27)
25
+
26
+
27
+ ### Bug Fixes
28
+
29
+ * add automated testing suite, cover clodo-service deploy 3-level inputs, and Windows compatibility fixes ([305c81c](https://github.com/tamylaa/clodo-framework/commit/305c81c45bd1761a49d1d54585b189c95cd7c749))
30
+
1
31
  ## [3.1.5](https://github.com/tamylaa/clodo-framework/compare/v3.1.4...v3.1.5) (2025-10-25)
2
32
 
3
33