lua-cli 2.2.5 → 2.2.6

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.
@@ -187,6 +187,7 @@ export declare const product: {
187
187
  removeItem: (basketId: string, itemId: string) => Promise<RemoveItemFromBasketResponse>;
188
188
  clear: (basketId: string) => Promise<ClearBasketResponse>;
189
189
  updateStatus: (basketId: string, status: BasketStatus) => Promise<UpdateBasketStatusResponse>;
190
+ updateMetadata: (basketId: string, metadata: any) => Promise<UpdateBasketMetadataResponse>;
190
191
  };
191
192
  order: {
192
193
  create: (data: CreateOrderRequest) => Promise<CreateOrderResponse>;
@@ -141,7 +141,8 @@ export const product = {
141
141
  addItem: productAPI.addItemToBasket,
142
142
  removeItem: productAPI.removeItemFromBasket,
143
143
  clear: productAPI.clearBasket,
144
- updateStatus: productAPI.updateBasketStatus
144
+ updateStatus: productAPI.updateBasketStatus,
145
+ updateMetadata: productAPI.updateBasketMetadata
145
146
  },
146
147
  order: {
147
148
  create: productAPI.createOrder,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lua-cli",
3
- "version": "2.2.5",
3
+ "version": "2.2.6",
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.2",
68
+ "lua-cli": "^2.2.6",
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.5",
22
+ "lua-cli": "2.2.6",
23
23
  "openai": "^5.23.0",
24
24
  "uuid": "^13.0.0",
25
25
  "zod": "^3.24.1"