@naturali/cli 0.42.2 → 0.43.0

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.
Files changed (2) hide show
  1. package/dist/index.mjs +3 -1
  2. package/package.json +2 -2
package/dist/index.mjs CHANGED
@@ -14,7 +14,7 @@ var __exportAll = (all, no_symbols) => {
14
14
  };
15
15
  //#endregion
16
16
  //#region package.json
17
- var version = "0.42.2";
17
+ var version = "0.43.0";
18
18
  //#endregion
19
19
  //#region ../sdk/src/generated/core/bodySerializer.gen.ts
20
20
  const jsonBodySerializer = { bodySerializer: (body) => JSON.stringify(body, (_key, value) => typeof value === "bigint" ? value.toString() : value) };
@@ -2159,6 +2159,7 @@ const API_BASE_URL$1 = "https://api.naturali.ai";
2159
2159
  var NaturaliClient = class {
2160
2160
  agents;
2161
2161
  apiKeys;
2162
+ assistant;
2162
2163
  auth;
2163
2164
  boards;
2164
2165
  channels;
@@ -2185,6 +2186,7 @@ var NaturaliClient = class {
2185
2186
  }));
2186
2187
  this.agents = bindResource(Agents, this.http);
2187
2188
  this.apiKeys = bindResource(ApiKeys, this.http);
2189
+ this.assistant = bindResource(Assistant, this.http);
2188
2190
  this.auth = bindResource(Auth, this.http);
2189
2191
  this.boards = bindResource(Boards, this.http);
2190
2192
  this.channels = bindResource(Channels, this.http);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naturali/cli",
3
- "version": "0.42.2",
3
+ "version": "0.43.0",
4
4
  "description": "Command-line interface for the naturali.ai API, generated from its OpenAPI specs",
5
5
  "type": "module",
6
6
  "bin": {
@@ -30,7 +30,7 @@
30
30
  "tsx": "^4.23.1",
31
31
  "typescript": "~6.0.3",
32
32
  "vitest": "^4.1.10",
33
- "@naturali/sdk": "0.42.2"
33
+ "@naturali/sdk": "0.43.0"
34
34
  },
35
35
  "scripts": {
36
36
  "generate": "tsx scripts/generate.ts",