@tamyla/clodo-framework 2.0.11 → 2.0.12

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 CHANGED
@@ -1,3 +1,10 @@
1
+ ## [2.0.12](https://github.com/tamylaa/clodo-framework/compare/v2.0.11...v2.0.12) (2025-10-12)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * correct zone details property access in auto-discovery ([bfca8af](https://github.com/tamylaa/clodo-framework/commit/bfca8af21a28e96e3fa8809d38de997982723d5a))
7
+
1
8
  ## [2.0.11](https://github.com/tamylaa/clodo-framework/compare/v2.0.10...v2.0.11) (2025-10-12)
2
9
 
3
10
 
@@ -405,9 +405,10 @@ export class InputCollector {
405
405
  return {
406
406
  domainName: zoneDetails.name,
407
407
  zoneId: zoneDetails.id,
408
- accountId: zoneDetails.account.id,
409
- accountName: zoneDetails.account.name,
410
- nameServers: zoneDetails.name_servers,
408
+ accountId: zoneDetails.accountId,
409
+ // Already flattened in getZoneDetails response
410
+ accountName: zoneDetails.accountName,
411
+ nameServers: zoneDetails.nameServers,
411
412
  status: zoneDetails.status
412
413
  };
413
414
  } catch (error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamyla/clodo-framework",
3
- "version": "2.0.11",
3
+ "version": "2.0.12",
4
4
  "description": "Reusable framework for Clodo-style software architecture on Cloudflare Workers + D1",
5
5
  "type": "module",
6
6
  "sideEffects": [