lua-cli 2.2.7 → 2.2.8-alpha.1

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.
@@ -484,13 +484,13 @@ export class UserDataApi {
484
484
  const response = await httpClient.put(`${BASE_URLS.LOCAL}/developer/user/data/agent/${agentId}`, data, {
485
485
  Authorization: `Bearer ${apiKey}`,
486
486
  });
487
- return response.data.data;
487
+ return response.data;
488
488
  }
489
489
  static async updateUserData(apiKey, agentId, data) {
490
490
  const response = await httpClient.put(`${BASE_URLS.LOCAL}/developer/user/data/agent/${agentId}`, data, {
491
491
  Authorization: `Bearer ${apiKey}`,
492
492
  });
493
- return response.data.data;
493
+ return response.data;
494
494
  }
495
495
  static async deleteUserData(apiKey, agentId) {
496
496
  const response = await httpClient.delete(`${BASE_URLS.LOCAL}/developer/user/data/agent/${agentId}`, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lua-cli",
3
- "version": "2.2.7",
3
+ "version": "2.2.8-alpha.1",
4
4
  "description": "Command-line interface for Lua AI platform - develop, test, and deploy LuaSkills with custom tools",
5
5
  "readmeFilename": "README.md",
6
6
  "main": "dist/index.js",
@@ -65,7 +65,7 @@
65
65
  "inquirer": "^12.9.6",
66
66
  "js-yaml": "^4.1.0",
67
67
  "keytar": "^7.9.0",
68
- "lua-cli": "^2.2.7",
68
+ "lua-cli": "^2.2.8-alpha.1",
69
69
  "node-fetch": "^3.3.2",
70
70
  "open": "^10.1.0",
71
71
  "react": "^18.2.0",
@@ -19,7 +19,7 @@
19
19
  "axios": "^1.6.0",
20
20
  "inquirer": "^12.9.6",
21
21
  "js-yaml": "^4.1.0",
22
- "lua-cli": "2.2.7",
22
+ "lua-cli": "2.2.8-alpha.1",
23
23
  "openai": "^5.23.0",
24
24
  "uuid": "^13.0.0",
25
25
  "zod": "^3.24.1"