wanas-zcrm-extractor 1.3.0 → 1.4.0

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/README.md CHANGED
@@ -276,7 +276,6 @@ metadata/
276
276
 
277
277
  ├── crm/ # Standard Zoho CRM metadata layout
278
278
  │ ├── meta/
279
- │ │ ├── custom_links/ # Global Custom Links
280
279
  │ │ ├── data_sharing/ # Data Sharing Settings
281
280
  │ │ ├── data_sharing_actions_summary/ # Data Sharing Actions Summary
282
281
  │ │ ├── data_sharing_rules/ # Data Sharing Rules
@@ -308,6 +307,8 @@ metadata/
308
307
  │ │ │ │ └── <Layout_ID>.json
309
308
  │ │ │ ├── custom_views/ # Custom View configurations
310
309
  │ │ │ │ └── <View_API_Name>.custom_views-meta.json
310
+ │ │ │ ├── custom_links/ # Module custom links/buttons
311
+ │ │ │ │ └── <Link_ID>.json
311
312
  │ │ │ ├── record_locking_configurations/ # Record Locking Rules
312
313
  │ │ │ │ └── <Config_ID>.json
313
314
  │ │ │ ├── related_lists/ # Related List configurations
package/bin/cli.js CHANGED
@@ -522,8 +522,11 @@ program
522
522
  console.log(` \x1b[1mStale Files Removed:\x1b[0m \x1b[33m${details.removedStale || 0}\x1b[0m (deleted on Zoho CRM since last pull)`);
523
523
  console.log(` \x1b[1mOutput Directory:\x1b[0m \x1b[34m${outputDir}\x1b[0m`);
524
524
 
525
+ if (details.skipped > 0) {
526
+ console.log(` \x1b[1mSkipped (optional):\x1b[0m \x1b[90m${details.skipped}\x1b[0m settings not available for some modules/org (normal).`);
527
+ }
525
528
  if (details.errors && details.errors.length > 0) {
526
- console.log(`\n \x1b[1;33m⚠️ Warnings:\x1b[0m \x1b[33m${details.errors.length} API request(s) failed or were skipped due to permissions.\x1b[0m`);
529
+ console.log(`\n \x1b[1;33m⚠️ Errors:\x1b[0m \x1b[33m${details.errors.length} unexpected API failure(s).\x1b[0m Details in the log file.`);
527
530
  }
528
531
  console.log('\x1b[1;32m====================================================================\x1b[0m\n');
529
532
  break;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wanas-zcrm-extractor",
3
- "version": "1.3.0",
3
+ "version": "1.4.0",
4
4
  "description": "Local Zoho CRM V8 Metadata Extractor CLI and Web Dashboard Utility",
5
5
  "main": "server.js",
6
6
  "bin": {