@airweave/sdk 0.6.41 → 0.6.43

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.
@@ -47,8 +47,8 @@ class AirweaveSDKClient {
47
47
  this._options = Object.assign(Object.assign({}, _options), { headers: (0, headers_js_1.mergeHeaders)({
48
48
  "X-Fern-Language": "JavaScript",
49
49
  "X-Fern-SDK-Name": "@airweave/sdk",
50
- "X-Fern-SDK-Version": "v0.6.41",
51
- "User-Agent": "@airweave/sdk/v0.6.41",
50
+ "X-Fern-SDK-Version": "v0.6.43",
51
+ "User-Agent": "@airweave/sdk/v0.6.43",
52
52
  "X-Fern-Runtime": core.RUNTIME.type,
53
53
  "X-Fern-Runtime-Version": core.RUNTIME.version,
54
54
  }, _options === null || _options === void 0 ? void 0 : _options.headers) });
@@ -30,6 +30,8 @@ export interface Source {
30
30
  labels?: string[];
31
31
  /** Whether this source supports cursor-based continuous syncing for incremental data extraction. Sources with this capability can track their sync position and resume from where they left off. */
32
32
  supports_continuous?: boolean;
33
+ /** Whether this source uses federated search instead of traditional syncing. Federated search sources query data in real-time during searches rather than syncing and indexing all data beforehand. */
34
+ federated_search?: boolean;
33
35
  /** Unique system identifier for this source type. Generated automatically when the source is registered. */
34
36
  id: string;
35
37
  /** Timestamp when this source type was registered in the system (ISO 8601 format). */
@@ -18,5 +18,9 @@ export interface SourceConnection {
18
18
  config?: Record<string, unknown>;
19
19
  schedule?: AirweaveSDK.ScheduleDetails;
20
20
  sync?: AirweaveSDK.SyncDetails;
21
+ /** ID of the associated sync */
22
+ sync_id?: string;
21
23
  entities?: AirweaveSDK.EntitySummary;
24
+ /** Whether this source uses federated search */
25
+ federated_search?: boolean;
22
26
  }
@@ -14,6 +14,8 @@ export interface SourceConnectionListItem {
14
14
  modified_at: string;
15
15
  is_authenticated: boolean;
16
16
  entity_count?: number;
17
+ /** Whether this source uses federated search */
18
+ federated_search?: boolean;
17
19
  /** Get authentication method from database value. */
18
20
  auth_method: AirweaveSDK.AuthenticationMethod;
19
21
  /** Compute connection status from current state. */
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "v0.6.41";
1
+ export declare const SDK_VERSION = "v0.6.43";
@@ -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.6.41";
4
+ exports.SDK_VERSION = "v0.6.43";
@@ -11,8 +11,8 @@ export class AirweaveSDKClient {
11
11
  this._options = Object.assign(Object.assign({}, _options), { headers: mergeHeaders({
12
12
  "X-Fern-Language": "JavaScript",
13
13
  "X-Fern-SDK-Name": "@airweave/sdk",
14
- "X-Fern-SDK-Version": "v0.6.41",
15
- "User-Agent": "@airweave/sdk/v0.6.41",
14
+ "X-Fern-SDK-Version": "v0.6.43",
15
+ "User-Agent": "@airweave/sdk/v0.6.43",
16
16
  "X-Fern-Runtime": core.RUNTIME.type,
17
17
  "X-Fern-Runtime-Version": core.RUNTIME.version,
18
18
  }, _options === null || _options === void 0 ? void 0 : _options.headers) });
@@ -30,6 +30,8 @@ export interface Source {
30
30
  labels?: string[];
31
31
  /** Whether this source supports cursor-based continuous syncing for incremental data extraction. Sources with this capability can track their sync position and resume from where they left off. */
32
32
  supports_continuous?: boolean;
33
+ /** Whether this source uses federated search instead of traditional syncing. Federated search sources query data in real-time during searches rather than syncing and indexing all data beforehand. */
34
+ federated_search?: boolean;
33
35
  /** Unique system identifier for this source type. Generated automatically when the source is registered. */
34
36
  id: string;
35
37
  /** Timestamp when this source type was registered in the system (ISO 8601 format). */
@@ -18,5 +18,9 @@ export interface SourceConnection {
18
18
  config?: Record<string, unknown>;
19
19
  schedule?: AirweaveSDK.ScheduleDetails;
20
20
  sync?: AirweaveSDK.SyncDetails;
21
+ /** ID of the associated sync */
22
+ sync_id?: string;
21
23
  entities?: AirweaveSDK.EntitySummary;
24
+ /** Whether this source uses federated search */
25
+ federated_search?: boolean;
22
26
  }
@@ -14,6 +14,8 @@ export interface SourceConnectionListItem {
14
14
  modified_at: string;
15
15
  is_authenticated: boolean;
16
16
  entity_count?: number;
17
+ /** Whether this source uses federated search */
18
+ federated_search?: boolean;
17
19
  /** Get authentication method from database value. */
18
20
  auth_method: AirweaveSDK.AuthenticationMethod;
19
21
  /** Compute connection status from current state. */
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "v0.6.41";
1
+ export declare const SDK_VERSION = "v0.6.43";
@@ -1 +1 @@
1
- export const SDK_VERSION = "v0.6.41";
1
+ export const SDK_VERSION = "v0.6.43";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@airweave/sdk",
3
- "version": "v0.6.41",
3
+ "version": "v0.6.43",
4
4
  "private": false,
5
5
  "repository": "github:airweave-ai/typescript-sdk",
6
6
  "type": "commonjs",