@tamyla/clodo-framework 2.0.0 → 2.0.2
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 +14 -0
- package/bin/clodo-service.js +2 -2
- package/bin/security/security-cli.js +1 -1
- package/bin/service-management/create-service.js +1 -1
- package/bin/service-management/init-service.js +1 -1
- package/bin/shared/config/cache.js +1230 -0
- package/bin/shared/config/command-config-manager.js +184 -0
- package/bin/shared/config/customer-cli.js +1 -1
- package/bin/shared/config/index.js +9 -0
- package/bin/shared/config/manager.js +315 -0
- package/dist/deployment/validator.js +112 -0
- package/dist/deployment/wrangler-deployer.js +47 -2
- package/dist/service-management/InputCollector.js +208 -20
- package/dist/shared/config/customer-cli.js +1 -1
- package/dist/shared/deployment/validator.js +112 -0
- package/dist/shared/monitoring/health-checker.js +200 -0
- package/dist/shared/utils/interactive-utils.js +506 -0
- package/dist/utils/ErrorHandler.js +113 -0
- package/dist/utils/scripts-manager.js +167 -0
- package/dist/utils/ui-structures-loader.js +110 -0
- package/docs/README.md +20 -67
- package/docs/api-reference.md +928 -0
- package/package.json +7 -7
- package/docs/FRAMEWORK-ARCHITECTURE-OVERVIEW.md +0 -206
- package/docs/INTEGRATION_GUIDE.md +0 -2045
- package/docs/deployment/deployment-guide.md +0 -540
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [2.0.2](https://github.com/tamylaa/clodo-framework/compare/v2.0.1...v2.0.2) (2025-10-11)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* resolve CLI tool import paths and runtime dependencies ([6a726b9](https://github.com/tamylaa/clodo-framework/commit/6a726b95a5e55055048a262d1c146a50a4f0b46f))
|
|
7
|
+
|
|
8
|
+
## [2.0.1](https://github.com/tamylaa/clodo-framework/compare/v2.0.0...v2.0.1) (2025-10-10)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* reorganize documentation structure and fix package distribution ([598d44b](https://github.com/tamylaa/clodo-framework/commit/598d44b669f65c222d215ba33d0361d736a15ac9))
|
|
14
|
+
|
|
1
15
|
# [2.0.0](https://github.com/tamylaa/clodo-framework/compare/v1.0.0...v2.0.0) (2025-10-10)
|
|
2
16
|
|
|
3
17
|
|
package/bin/clodo-service.js
CHANGED
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
import { Command } from 'commander';
|
|
16
16
|
import { createInterface } from 'readline';
|
|
17
17
|
import chalk from 'chalk';
|
|
18
|
-
import { ServiceOrchestrator } from '../
|
|
19
|
-
import { InputCollector } from '../
|
|
18
|
+
import { ServiceOrchestrator } from '../dist/service-management/ServiceOrchestrator.js';
|
|
19
|
+
import { InputCollector } from '../dist/service-management/InputCollector.js';
|
|
20
20
|
|
|
21
21
|
const program = new Command();
|
|
22
22
|
|
|
@@ -5,7 +5,7 @@
|
|
|
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 '../../dist/service-management/ServiceCreator.js';
|
|
9
9
|
|
|
10
10
|
const SERVICE_TYPES = ['data-service', 'auth-service', 'content-service', 'api-gateway', 'generic'];
|
|
11
11
|
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
13
|
import { program } from 'commander';
|
|
14
|
-
import { ServiceInitializer } from '../../
|
|
14
|
+
import { ServiceInitializer } from '../../dist/service-management/ServiceInitializer.js';
|
|
15
15
|
|
|
16
16
|
const SERVICE_TYPES = ['generic', 'data-service', 'auth-service', 'content-service', 'api-gateway'];
|
|
17
17
|
|