@airweave/sdk 0.9.50 → 0.9.51

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,8 +48,8 @@ class AirweaveSDKClient {
48
48
  this._options = Object.assign(Object.assign({}, _options), { headers: (0, headers_js_1.mergeHeaders)({
49
49
  "X-Fern-Language": "JavaScript",
50
50
  "X-Fern-SDK-Name": "@airweave/sdk",
51
- "X-Fern-SDK-Version": "v0.9.50",
52
- "User-Agent": "@airweave/sdk/v0.9.50",
51
+ "X-Fern-SDK-Version": "v0.9.51",
52
+ "User-Agent": "@airweave/sdk/v0.9.51",
53
53
  "X-Fern-Runtime": core.RUNTIME.type,
54
54
  "X-Fern-Runtime-Version": core.RUNTIME.version,
55
55
  }, _options === null || _options === void 0 ? void 0 : _options.headers) });
@@ -13,4 +13,5 @@ export interface ConfigField {
13
13
  items_type?: string;
14
14
  feature_flag?: string;
15
15
  is_secret?: boolean;
16
+ enum_values?: string[];
16
17
  }
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "v0.9.50";
1
+ export declare const SDK_VERSION = "v0.9.51";
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SDK_VERSION = void 0;
4
- exports.SDK_VERSION = "v0.9.50";
4
+ exports.SDK_VERSION = "v0.9.51";
@@ -12,8 +12,8 @@ export class AirweaveSDKClient {
12
12
  this._options = Object.assign(Object.assign({}, _options), { headers: mergeHeaders({
13
13
  "X-Fern-Language": "JavaScript",
14
14
  "X-Fern-SDK-Name": "@airweave/sdk",
15
- "X-Fern-SDK-Version": "v0.9.50",
16
- "User-Agent": "@airweave/sdk/v0.9.50",
15
+ "X-Fern-SDK-Version": "v0.9.51",
16
+ "User-Agent": "@airweave/sdk/v0.9.51",
17
17
  "X-Fern-Runtime": core.RUNTIME.type,
18
18
  "X-Fern-Runtime-Version": core.RUNTIME.version,
19
19
  }, _options === null || _options === void 0 ? void 0 : _options.headers) });
@@ -13,4 +13,5 @@ export interface ConfigField {
13
13
  items_type?: string;
14
14
  feature_flag?: string;
15
15
  is_secret?: boolean;
16
+ enum_values?: string[];
16
17
  }
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "v0.9.50";
1
+ export declare const SDK_VERSION = "v0.9.51";
@@ -1 +1 @@
1
- export const SDK_VERSION = "v0.9.50";
1
+ export const SDK_VERSION = "v0.9.51";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@airweave/sdk",
3
- "version": "v0.9.50",
3
+ "version": "v0.9.51",
4
4
  "private": false,
5
5
  "repository": "github:airweave-ai/typescript-sdk",
6
6
  "type": "commonjs",
package/reference.md CHANGED
@@ -1999,7 +1999,8 @@ Streaming agentic search via Server-Sent Events. Returns real-time events as the
1999
1999
 
2000
2000
  ```typescript
2001
2001
  const response = await client.collections.search.streamAgentic("readable_id", {
2002
- query: "query",
2002
+ query: "find all deployment-related docs from last month",
2003
+ thinking: true,
2003
2004
  });
2004
2005
  for await (const item of response) {
2005
2006
  console.log(item);