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.
- package/dist/services/api.js +2 -2
- package/package.json +2 -2
- package/template/package.json +1 -1
package/dist/services/api.js
CHANGED
|
@@ -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
|
|
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
|
|
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.
|
|
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.
|
|
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",
|