enton-cli 0.1.2 → 0.1.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.
@@ -172,8 +172,9 @@ async function handleLogin() {
172
172
  validate: (input) => {
173
173
  if (!input)
174
174
  return 'API key is required';
175
- if (!input.startsWith('ent_'))
176
- return 'API key should start with ent_live_ or ent_test_';
175
+ if (!input.startsWith('ent') && !input.startsWith('enton_')) {
176
+ return 'API key should start with ent_live_, ent_test_, enton_live_, or enton_test_';
177
+ }
177
178
  return true;
178
179
  }
179
180
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "enton-cli",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "ENTON - AI-powered financial assistant CLI. Like Claude Code, but for finance.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",