@naturali/sdk 0.42.2 → 0.44.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.
package/dist/index.cjs CHANGED
@@ -2142,6 +2142,7 @@ const API_BASE_URL = "https://api.naturali.ai";
2142
2142
  var NaturaliClient = class {
2143
2143
  agents;
2144
2144
  apiKeys;
2145
+ assistant;
2145
2146
  auth;
2146
2147
  boards;
2147
2148
  channels;
@@ -2168,6 +2169,7 @@ var NaturaliClient = class {
2168
2169
  }));
2169
2170
  this.agents = bindResource(Agents, this.http);
2170
2171
  this.apiKeys = bindResource(ApiKeys, this.http);
2172
+ this.assistant = bindResource(Assistant, this.http);
2171
2173
  this.auth = bindResource(Auth, this.http);
2172
2174
  this.boards = bindResource(Boards, this.http);
2173
2175
  this.channels = bindResource(Channels, this.http);
package/dist/index.d.cts CHANGED
@@ -7906,6 +7906,7 @@ interface NaturaliClientOptions {
7906
7906
  declare class NaturaliClient {
7907
7907
  readonly agents: typeof Agents;
7908
7908
  readonly apiKeys: typeof ApiKeys;
7909
+ readonly assistant: typeof Assistant;
7909
7910
  readonly auth: typeof Auth;
7910
7911
  readonly boards: typeof Boards;
7911
7912
  readonly channels: typeof Channels;
package/dist/index.d.mts CHANGED
@@ -7906,6 +7906,7 @@ interface NaturaliClientOptions {
7906
7906
  declare class NaturaliClient {
7907
7907
  readonly agents: typeof Agents;
7908
7908
  readonly apiKeys: typeof ApiKeys;
7909
+ readonly assistant: typeof Assistant;
7909
7910
  readonly auth: typeof Auth;
7910
7911
  readonly boards: typeof Boards;
7911
7912
  readonly channels: typeof Channels;
package/dist/index.mjs CHANGED
@@ -2141,6 +2141,7 @@ const API_BASE_URL = "https://api.naturali.ai";
2141
2141
  var NaturaliClient = class {
2142
2142
  agents;
2143
2143
  apiKeys;
2144
+ assistant;
2144
2145
  auth;
2145
2146
  boards;
2146
2147
  channels;
@@ -2167,6 +2168,7 @@ var NaturaliClient = class {
2167
2168
  }));
2168
2169
  this.agents = bindResource(Agents, this.http);
2169
2170
  this.apiKeys = bindResource(ApiKeys, this.http);
2171
+ this.assistant = bindResource(Assistant, this.http);
2170
2172
  this.auth = bindResource(Auth, this.http);
2171
2173
  this.boards = bindResource(Boards, this.http);
2172
2174
  this.channels = bindResource(Channels, this.http);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naturali/sdk",
3
- "version": "0.42.2",
3
+ "version": "0.44.0",
4
4
  "description": "TypeScript SDK for the naturali.ai API, generated from its OpenAPI specs",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -37,7 +37,7 @@
37
37
  "tsx": "^4.23.1",
38
38
  "typescript": "~6.0.3",
39
39
  "vitest": "^4.1.10",
40
- "@naturali/api": "0.42.2"
40
+ "@naturali/api": "0.44.0"
41
41
  },
42
42
  "scripts": {
43
43
  "generate": "tsx scripts/generate.ts",