dalexor 0.2.0__tar.gz → 0.2.1__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dalexor
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Dalexor MI: Global MCP Brain & Sovereign CLI. Zero-knowledge code intelligence.
5
5
  Author-email: Dalexor Team <support@dalexor.com>
6
6
  Classifier: Programming Language :: Python :: 3
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "dalexor"
7
- version = "0.2.0"
7
+ version = "0.2.1"
8
8
  authors = [
9
9
  { name="Dalexor Team", email="support@dalexor.com" },
10
10
  ]
@@ -311,8 +311,8 @@ def interactive_verification(force_prompt=False):
311
311
  print(f"[+] Identity Confirmed: {email}")
312
312
  print(f"[*] Subscription: {plan}")
313
313
 
314
- # 🛡️ SOVEREIGN MODE ACTIVATION (For Pro/Enterprise/Sovereign plans)
315
- is_sovereign_plan = any(p in plan.lower() for p in ["sovereign", "enterprise", "professional", "unlimited", "pro"])
314
+ # 🛡️ SOVEREIGN MODE ACTIVATION (For Pro/Enterprise/Sovereign plans ONLY - Standard excluded)
315
+ is_sovereign_plan = any(p in plan.lower() for p in ["sovereign", "enterprise", "professional", "unlimited", "pro"]) and "standard" not in plan.lower()
316
316
  if is_sovereign_plan:
317
317
  global DX_SOVEREIGN
318
318
  DX_SOVEREIGN = True
@@ -417,10 +417,10 @@ def select_project(key, plan="free"):
417
417
  print(" NEURAL VAULT : END-TO-END ENCRYPTION")
418
418
  print("-"*60)
419
419
 
420
- is_free_plan = "sandbox" in plan.lower() or "free" in plan.lower() or "limited" in plan.lower()
421
- if is_free_plan:
420
+ is_restricted_plan = any(p in plan.lower() for p in ["sandbox", "free", "limited", "standard"])
421
+ if is_restricted_plan:
422
422
  print("[!] PLAN RESTRICTION: Neural Vault (E2EE) is a Professional/Sovereign feature.")
423
- print("[!] Your 'Surgical Sandbox' plan uses Standard Encryption (TLS/AES).")
423
+ print(f"[!] Your '{plan}' plan uses Standard Encryption (TLS/AES).")
424
424
  else:
425
425
  # Secrets come from server only in stateless mode
426
426
  all_proj_res = requests.get(f"{CLOUD_URL}/projects", headers=headers, timeout=10).json()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dalexor
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Dalexor MI: Global MCP Brain & Sovereign CLI. Zero-knowledge code intelligence.
5
5
  Author-email: Dalexor Team <support@dalexor.com>
6
6
  Classifier: Programming Language :: Python :: 3
File without changes
File without changes
File without changes
File without changes