dalexor 0.1.9__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.
- {dalexor-0.1.9/src/dalexor.egg-info → dalexor-0.2.1}/PKG-INFO +1 -1
- {dalexor-0.1.9 → dalexor-0.2.1}/pyproject.toml +1 -1
- {dalexor-0.1.9 → dalexor-0.2.1}/src/dalexor/main.py +6 -6
- {dalexor-0.1.9 → dalexor-0.2.1/src/dalexor.egg-info}/PKG-INFO +1 -1
- {dalexor-0.1.9 → dalexor-0.2.1}/LICENSE +0 -0
- {dalexor-0.1.9 → dalexor-0.2.1}/README.md +0 -0
- {dalexor-0.1.9 → dalexor-0.2.1}/setup.cfg +0 -0
- {dalexor-0.1.9 → dalexor-0.2.1}/src/dalexor/__init__.py +0 -0
- {dalexor-0.1.9 → dalexor-0.2.1}/src/dalexor.egg-info/SOURCES.txt +0 -0
- {dalexor-0.1.9 → dalexor-0.2.1}/src/dalexor.egg-info/dependency_links.txt +0 -0
- {dalexor-0.1.9 → dalexor-0.2.1}/src/dalexor.egg-info/entry_points.txt +0 -0
- {dalexor-0.1.9 → dalexor-0.2.1}/src/dalexor.egg-info/requires.txt +0 -0
- {dalexor-0.1.9 → dalexor-0.2.1}/src/dalexor.egg-info/top_level.txt +0 -0
|
@@ -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
|
-
|
|
421
|
-
if
|
|
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 '
|
|
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()
|
|
@@ -1226,7 +1226,7 @@ def run_agent():
|
|
|
1226
1226
|
elif res.status_code == 429:
|
|
1227
1227
|
print(f"[!] Rate Limit Exceeded: Your plan is currently throttled. Upgrade to Sovereign for near-unlimited velocity.")
|
|
1228
1228
|
elif res.status_code == 402:
|
|
1229
|
-
print(f"[!] Quota Full: You have reached your Intelligence Atom limit. Please upgrade or manage your atoms at
|
|
1229
|
+
print(f"[!] Quota Full: You have reached your Intelligence Atom limit. Please upgrade or manage your atoms at 'dalexor.com'")
|
|
1230
1230
|
else:
|
|
1231
1231
|
print(f"[!] Handshake Refused: {res.status_code} - {res.text}")
|
|
1232
1232
|
except Exception as e:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|