@airweave/sdk 0.9.9 → 0.9.10
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/cjs/Client.js +2 -2
- package/dist/cjs/api/types/AuthProviderMetadata.d.ts +17 -0
- package/dist/cjs/api/types/index.d.ts +1 -1
- package/dist/cjs/api/types/index.js +1 -1
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/esm/Client.mjs +2 -2
- package/dist/esm/api/types/AuthProviderMetadata.d.mts +17 -0
- package/dist/esm/api/types/index.d.mts +1 -1
- package/dist/esm/api/types/index.mjs +1 -1
- package/dist/esm/version.d.mts +1 -1
- package/dist/esm/version.mjs +1 -1
- package/package.json +1 -1
- package/dist/cjs/api/types/AuthProvider.d.ts +0 -30
- package/dist/esm/api/types/AuthProvider.d.mts +0 -30
- /package/dist/cjs/api/types/{AuthProvider.js → AuthProviderMetadata.js} +0 -0
- /package/dist/esm/api/types/{AuthProvider.mjs → AuthProviderMetadata.mjs} +0 -0
package/dist/cjs/Client.js
CHANGED
|
@@ -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.
|
|
52
|
-
"User-Agent": "@airweave/sdk/v0.9.
|
|
51
|
+
"X-Fern-SDK-Version": "v0.9.10",
|
|
52
|
+
"User-Agent": "@airweave/sdk/v0.9.10",
|
|
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) });
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as AirweaveSDK from "../index.js";
|
|
5
|
+
/**
|
|
6
|
+
* Public auth provider metadata returned by API endpoints.
|
|
7
|
+
*/
|
|
8
|
+
export interface AuthProviderMetadata {
|
|
9
|
+
short_name: string;
|
|
10
|
+
name: string;
|
|
11
|
+
description?: string;
|
|
12
|
+
class_name: string;
|
|
13
|
+
auth_config_class: string;
|
|
14
|
+
config_class: string;
|
|
15
|
+
auth_fields?: AirweaveSDK.Fields;
|
|
16
|
+
config_fields?: AirweaveSDK.Fields;
|
|
17
|
+
}
|
|
@@ -17,11 +17,11 @@ export * from "./AgenticSearchRequest.js";
|
|
|
17
17
|
export * from "./AgenticSearchResponse.js";
|
|
18
18
|
export * from "./AgenticSearchResult.js";
|
|
19
19
|
export * from "./AgenticSearchSystemMetadata.js";
|
|
20
|
-
export * from "./AuthProvider.js";
|
|
21
20
|
export * from "./AuthProviderAuthentication.js";
|
|
22
21
|
export * from "./AuthProviderConnection.js";
|
|
23
22
|
export * from "./AuthProviderConnectionCreate.js";
|
|
24
23
|
export * from "./AuthProviderConnectionUpdate.js";
|
|
24
|
+
export * from "./AuthProviderMetadata.js";
|
|
25
25
|
export * from "./AuthenticationDetails.js";
|
|
26
26
|
export * from "./AuthenticationMethod.js";
|
|
27
27
|
export * from "./BehaviorConfig.js";
|
|
@@ -33,11 +33,11 @@ __exportStar(require("./AgenticSearchRequest.js"), exports);
|
|
|
33
33
|
__exportStar(require("./AgenticSearchResponse.js"), exports);
|
|
34
34
|
__exportStar(require("./AgenticSearchResult.js"), exports);
|
|
35
35
|
__exportStar(require("./AgenticSearchSystemMetadata.js"), exports);
|
|
36
|
-
__exportStar(require("./AuthProvider.js"), exports);
|
|
37
36
|
__exportStar(require("./AuthProviderAuthentication.js"), exports);
|
|
38
37
|
__exportStar(require("./AuthProviderConnection.js"), exports);
|
|
39
38
|
__exportStar(require("./AuthProviderConnectionCreate.js"), exports);
|
|
40
39
|
__exportStar(require("./AuthProviderConnectionUpdate.js"), exports);
|
|
40
|
+
__exportStar(require("./AuthProviderMetadata.js"), exports);
|
|
41
41
|
__exportStar(require("./AuthenticationDetails.js"), exports);
|
|
42
42
|
__exportStar(require("./AuthenticationMethod.js"), exports);
|
|
43
43
|
__exportStar(require("./BehaviorConfig.js"), exports);
|
package/dist/cjs/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "v0.9.
|
|
1
|
+
export declare const SDK_VERSION = "v0.9.10";
|
package/dist/cjs/version.js
CHANGED
package/dist/esm/Client.mjs
CHANGED
|
@@ -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.
|
|
16
|
-
"User-Agent": "@airweave/sdk/v0.9.
|
|
15
|
+
"X-Fern-SDK-Version": "v0.9.10",
|
|
16
|
+
"User-Agent": "@airweave/sdk/v0.9.10",
|
|
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) });
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as AirweaveSDK from "../index.mjs";
|
|
5
|
+
/**
|
|
6
|
+
* Public auth provider metadata returned by API endpoints.
|
|
7
|
+
*/
|
|
8
|
+
export interface AuthProviderMetadata {
|
|
9
|
+
short_name: string;
|
|
10
|
+
name: string;
|
|
11
|
+
description?: string;
|
|
12
|
+
class_name: string;
|
|
13
|
+
auth_config_class: string;
|
|
14
|
+
config_class: string;
|
|
15
|
+
auth_fields?: AirweaveSDK.Fields;
|
|
16
|
+
config_fields?: AirweaveSDK.Fields;
|
|
17
|
+
}
|
|
@@ -17,11 +17,11 @@ export * from "./AgenticSearchRequest.mjs";
|
|
|
17
17
|
export * from "./AgenticSearchResponse.mjs";
|
|
18
18
|
export * from "./AgenticSearchResult.mjs";
|
|
19
19
|
export * from "./AgenticSearchSystemMetadata.mjs";
|
|
20
|
-
export * from "./AuthProvider.mjs";
|
|
21
20
|
export * from "./AuthProviderAuthentication.mjs";
|
|
22
21
|
export * from "./AuthProviderConnection.mjs";
|
|
23
22
|
export * from "./AuthProviderConnectionCreate.mjs";
|
|
24
23
|
export * from "./AuthProviderConnectionUpdate.mjs";
|
|
24
|
+
export * from "./AuthProviderMetadata.mjs";
|
|
25
25
|
export * from "./AuthenticationDetails.mjs";
|
|
26
26
|
export * from "./AuthenticationMethod.mjs";
|
|
27
27
|
export * from "./BehaviorConfig.mjs";
|
|
@@ -17,11 +17,11 @@ export * from "./AgenticSearchRequest.mjs";
|
|
|
17
17
|
export * from "./AgenticSearchResponse.mjs";
|
|
18
18
|
export * from "./AgenticSearchResult.mjs";
|
|
19
19
|
export * from "./AgenticSearchSystemMetadata.mjs";
|
|
20
|
-
export * from "./AuthProvider.mjs";
|
|
21
20
|
export * from "./AuthProviderAuthentication.mjs";
|
|
22
21
|
export * from "./AuthProviderConnection.mjs";
|
|
23
22
|
export * from "./AuthProviderConnectionCreate.mjs";
|
|
24
23
|
export * from "./AuthProviderConnectionUpdate.mjs";
|
|
24
|
+
export * from "./AuthProviderMetadata.mjs";
|
|
25
25
|
export * from "./AuthenticationDetails.mjs";
|
|
26
26
|
export * from "./AuthenticationMethod.mjs";
|
|
27
27
|
export * from "./BehaviorConfig.mjs";
|
package/dist/esm/version.d.mts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "v0.9.
|
|
1
|
+
export declare const SDK_VERSION = "v0.9.10";
|
package/dist/esm/version.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const SDK_VERSION = "v0.9.
|
|
1
|
+
export const SDK_VERSION = "v0.9.10";
|
package/package.json
CHANGED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as AirweaveSDK from "../index.js";
|
|
5
|
-
/**
|
|
6
|
-
* Schema for auth provider response.
|
|
7
|
-
*/
|
|
8
|
-
export interface AuthProvider {
|
|
9
|
-
/** Human-readable name of the auth provider (e.g., 'Google OAuth', 'GitHub') */
|
|
10
|
-
name: string;
|
|
11
|
-
/** Technical identifier used internally to reference this auth provider. Must be unique. */
|
|
12
|
-
short_name: string;
|
|
13
|
-
/** Python class name of the auth provider implementation */
|
|
14
|
-
class_name: string;
|
|
15
|
-
/** Python class name that defines the authentication configuration fields */
|
|
16
|
-
auth_config_class: string;
|
|
17
|
-
/** Python class name that defines the auth provider-specific configuration */
|
|
18
|
-
config_class: string;
|
|
19
|
-
/** Detailed description explaining what this auth provider offers */
|
|
20
|
-
description?: string;
|
|
21
|
-
/** Organization identifier for custom auth providers. System providers have this set to null. */
|
|
22
|
-
organization_id?: string;
|
|
23
|
-
id: string;
|
|
24
|
-
created_at: string;
|
|
25
|
-
modified_at: string;
|
|
26
|
-
/** Dynamically populated field definitions for authentication configuration. These describe what credentials are required to connect to this auth provider. */
|
|
27
|
-
auth_fields?: AirweaveSDK.Fields;
|
|
28
|
-
/** Dynamically populated field definitions for auth provider-specific configuration. These describe what additional configuration is required when using this auth provider to connect to a source (e.g., auth_config_id and account_id for Composio). */
|
|
29
|
-
config_fields?: AirweaveSDK.Fields;
|
|
30
|
-
}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as AirweaveSDK from "../index.mjs";
|
|
5
|
-
/**
|
|
6
|
-
* Schema for auth provider response.
|
|
7
|
-
*/
|
|
8
|
-
export interface AuthProvider {
|
|
9
|
-
/** Human-readable name of the auth provider (e.g., 'Google OAuth', 'GitHub') */
|
|
10
|
-
name: string;
|
|
11
|
-
/** Technical identifier used internally to reference this auth provider. Must be unique. */
|
|
12
|
-
short_name: string;
|
|
13
|
-
/** Python class name of the auth provider implementation */
|
|
14
|
-
class_name: string;
|
|
15
|
-
/** Python class name that defines the authentication configuration fields */
|
|
16
|
-
auth_config_class: string;
|
|
17
|
-
/** Python class name that defines the auth provider-specific configuration */
|
|
18
|
-
config_class: string;
|
|
19
|
-
/** Detailed description explaining what this auth provider offers */
|
|
20
|
-
description?: string;
|
|
21
|
-
/** Organization identifier for custom auth providers. System providers have this set to null. */
|
|
22
|
-
organization_id?: string;
|
|
23
|
-
id: string;
|
|
24
|
-
created_at: string;
|
|
25
|
-
modified_at: string;
|
|
26
|
-
/** Dynamically populated field definitions for authentication configuration. These describe what credentials are required to connect to this auth provider. */
|
|
27
|
-
auth_fields?: AirweaveSDK.Fields;
|
|
28
|
-
/** Dynamically populated field definitions for auth provider-specific configuration. These describe what additional configuration is required when using this auth provider to connect to a source (e.g., auth_config_id and account_id for Composio). */
|
|
29
|
-
config_fields?: AirweaveSDK.Fields;
|
|
30
|
-
}
|
|
File without changes
|
|
File without changes
|