lua-cli 2.2.3 → 2.2.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.
@@ -48,7 +48,7 @@ export interface Basket {
48
48
  agentId: string;
49
49
  data: {
50
50
  currency: string;
51
- metadata: any;
51
+ metadata?: any;
52
52
  items: BasketItem[];
53
53
  createdAt: string;
54
54
  };
@@ -63,7 +63,7 @@ export interface Basket {
63
63
  }
64
64
  export interface CreateBasketRequest {
65
65
  currency: string;
66
- metadata: any;
66
+ metadata?: any;
67
67
  }
68
68
  export interface CreateBasketResponse {
69
69
  success: boolean;
@@ -172,7 +172,7 @@ export interface Basket {
172
172
  agentId: string;
173
173
  data: {
174
174
  currency: string;
175
- metadata: any;
175
+ metadata?: any;
176
176
  items: BasketItem[];
177
177
  createdAt: string;
178
178
  };
@@ -187,7 +187,7 @@ export interface Basket {
187
187
  }
188
188
  export interface CreateBasketRequest {
189
189
  currency: string;
190
- metadata: any;
190
+ metadata?: any;
191
191
  }
192
192
  export interface CreateBasketResponse {
193
193
  success: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lua-cli",
3
- "version": "2.2.3",
3
+ "version": "2.2.4",
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",
@@ -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.3",
22
+ "lua-cli": "2.2.4",
23
23
  "openai": "^5.23.0",
24
24
  "uuid": "^13.0.0",
25
25
  "zod": "^3.24.1"