vantuz 3.5.2 → 3.5.3

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 (2) hide show
  1. package/cli.js +4 -1
  2. package/package.json +1 -1
package/cli.js CHANGED
@@ -152,8 +152,11 @@ async function runTUI() {
152
152
  console.log(c('red', `\n🛑 ERİŞİM ENGELLENDİ: ${license.message}`));
153
153
  console.log(c('yellow', 'Lütfen geçerli bir lisans anahtarı girin.'));
154
154
 
155
- const key = await promptInput(c('cyan', 'Lisans Anahtarı (VTZ-XXXX): '));
155
+ const key = await promptInput(c('cyan', 'Lisans Anahtarı: '));
156
+ console.log('[CLI] Key length:', key.length);
157
+ console.log('[CLI] Key prefix:', key.substring(0, 50));
156
158
  const result = licenseManager.activate(key);
159
+ console.log('[CLI] Result:', JSON.stringify(result));
157
160
 
158
161
  if (!result.success) {
159
162
  console.log(c('red', `Hata: ${result.message}`));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vantuz",
3
- "version": "3.5.2",
3
+ "version": "3.5.3",
4
4
  "description": "Yapay Zeka Destekli Yeni Nesil E-Ticaret Yönetim Platformu (CLI)",
5
5
  "main": "index.js",
6
6
  "bin": {