valta-sdk 2.1.3 → 2.1.4

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.
@@ -42,7 +42,7 @@ async function loginCommand() {
42
42
  console.log("\n Valta Login\n");
43
43
  const apiKey = await prompt(" API Key: ");
44
44
  if (!apiKey || !apiKey.startsWith("sk_valta_")) {
45
- console.error("\n \u2716 Invalid API key. Keys start with vk_\n");
45
+ console.error("\n \u2716 Invalid API key. Keys start with sk_valta_\n");
46
46
  process.exit(1);
47
47
  }
48
48
  saveConfig({ apiKey });
package/dist/cli/index.js CHANGED
@@ -44,7 +44,7 @@ async function loginCommand() {
44
44
  console.log("\n Valta Login\n");
45
45
  const apiKey = await prompt(" API Key: ");
46
46
  if (!apiKey || !apiKey.startsWith("sk_valta_")) {
47
- console.error("\n \u2716 Invalid API key. Keys start with vk_\n");
47
+ console.error("\n \u2716 Invalid API key. Keys start with sk_valta_\n");
48
48
  process.exit(1);
49
49
  }
50
50
  saveConfig({ apiKey });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valta-sdk",
3
- "version": "2.1.3",
3
+ "version": "2.1.4",
4
4
  "description": "Official SDK for Valta — AI agent financial infrastructure",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",