@airweave/sdk 0.6.40 → 0.6.41
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/S3ConfigRequest.d.ts +22 -0
- package/dist/cjs/api/types/S3ConfigRequest.js +5 -0
- package/dist/cjs/api/types/S3ConfigResponse.d.ts +11 -0
- package/dist/cjs/api/types/S3ConfigResponse.js +5 -0
- package/dist/cjs/api/types/index.d.ts +2 -0
- package/dist/cjs/api/types/index.js +2 -0
- 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/S3ConfigRequest.d.mts +22 -0
- package/dist/esm/api/types/S3ConfigRequest.mjs +4 -0
- package/dist/esm/api/types/S3ConfigResponse.d.mts +11 -0
- package/dist/esm/api/types/S3ConfigResponse.mjs +4 -0
- package/dist/esm/api/types/index.d.mts +2 -0
- package/dist/esm/api/types/index.mjs +2 -0
- package/dist/esm/version.d.mts +1 -1
- package/dist/esm/version.mjs +1 -1
- package/package.json +1 -1
package/dist/cjs/Client.js
CHANGED
|
@@ -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.
|
|
51
|
-
"User-Agent": "@airweave/sdk/v0.6.
|
|
50
|
+
"X-Fern-SDK-Version": "v0.6.41",
|
|
51
|
+
"User-Agent": "@airweave/sdk/v0.6.41",
|
|
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) });
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
/**
|
|
5
|
+
* Request to configure S3 destination.
|
|
6
|
+
*/
|
|
7
|
+
export interface S3ConfigRequest {
|
|
8
|
+
/** AWS access key ID */
|
|
9
|
+
aws_access_key_id: string;
|
|
10
|
+
/** AWS secret access key */
|
|
11
|
+
aws_secret_access_key: string;
|
|
12
|
+
/** S3 bucket name */
|
|
13
|
+
bucket_name: string;
|
|
14
|
+
/** Prefix for Airweave data */
|
|
15
|
+
bucket_prefix?: string;
|
|
16
|
+
/** AWS region */
|
|
17
|
+
aws_region?: string;
|
|
18
|
+
/** Custom S3 endpoint */
|
|
19
|
+
endpoint_url?: string;
|
|
20
|
+
/** Use SSL/TLS */
|
|
21
|
+
use_ssl?: boolean;
|
|
22
|
+
}
|
|
@@ -84,6 +84,8 @@ export * from "./PayloadField.js";
|
|
|
84
84
|
export * from "./QueryExpansionStrategy.js";
|
|
85
85
|
export * from "./ResponseType.js";
|
|
86
86
|
export * from "./RetrievalStrategy.js";
|
|
87
|
+
export * from "./S3ConfigRequest.js";
|
|
88
|
+
export * from "./S3ConfigResponse.js";
|
|
87
89
|
export * from "./ScheduleConfig.js";
|
|
88
90
|
export * from "./ScheduleDetails.js";
|
|
89
91
|
export * from "./ScheduleResponse.js";
|
|
@@ -100,6 +100,8 @@ __exportStar(require("./PayloadField.js"), exports);
|
|
|
100
100
|
__exportStar(require("./QueryExpansionStrategy.js"), exports);
|
|
101
101
|
__exportStar(require("./ResponseType.js"), exports);
|
|
102
102
|
__exportStar(require("./RetrievalStrategy.js"), exports);
|
|
103
|
+
__exportStar(require("./S3ConfigRequest.js"), exports);
|
|
104
|
+
__exportStar(require("./S3ConfigResponse.js"), exports);
|
|
103
105
|
__exportStar(require("./ScheduleConfig.js"), exports);
|
|
104
106
|
__exportStar(require("./ScheduleDetails.js"), exports);
|
|
105
107
|
__exportStar(require("./ScheduleResponse.js"), exports);
|
package/dist/cjs/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "v0.6.
|
|
1
|
+
export declare const SDK_VERSION = "v0.6.41";
|
package/dist/cjs/version.js
CHANGED
package/dist/esm/Client.mjs
CHANGED
|
@@ -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.
|
|
15
|
-
"User-Agent": "@airweave/sdk/v0.6.
|
|
14
|
+
"X-Fern-SDK-Version": "v0.6.41",
|
|
15
|
+
"User-Agent": "@airweave/sdk/v0.6.41",
|
|
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) });
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
/**
|
|
5
|
+
* Request to configure S3 destination.
|
|
6
|
+
*/
|
|
7
|
+
export interface S3ConfigRequest {
|
|
8
|
+
/** AWS access key ID */
|
|
9
|
+
aws_access_key_id: string;
|
|
10
|
+
/** AWS secret access key */
|
|
11
|
+
aws_secret_access_key: string;
|
|
12
|
+
/** S3 bucket name */
|
|
13
|
+
bucket_name: string;
|
|
14
|
+
/** Prefix for Airweave data */
|
|
15
|
+
bucket_prefix?: string;
|
|
16
|
+
/** AWS region */
|
|
17
|
+
aws_region?: string;
|
|
18
|
+
/** Custom S3 endpoint */
|
|
19
|
+
endpoint_url?: string;
|
|
20
|
+
/** Use SSL/TLS */
|
|
21
|
+
use_ssl?: boolean;
|
|
22
|
+
}
|
|
@@ -84,6 +84,8 @@ export * from "./PayloadField.mjs";
|
|
|
84
84
|
export * from "./QueryExpansionStrategy.mjs";
|
|
85
85
|
export * from "./ResponseType.mjs";
|
|
86
86
|
export * from "./RetrievalStrategy.mjs";
|
|
87
|
+
export * from "./S3ConfigRequest.mjs";
|
|
88
|
+
export * from "./S3ConfigResponse.mjs";
|
|
87
89
|
export * from "./ScheduleConfig.mjs";
|
|
88
90
|
export * from "./ScheduleDetails.mjs";
|
|
89
91
|
export * from "./ScheduleResponse.mjs";
|
|
@@ -84,6 +84,8 @@ export * from "./PayloadField.mjs";
|
|
|
84
84
|
export * from "./QueryExpansionStrategy.mjs";
|
|
85
85
|
export * from "./ResponseType.mjs";
|
|
86
86
|
export * from "./RetrievalStrategy.mjs";
|
|
87
|
+
export * from "./S3ConfigRequest.mjs";
|
|
88
|
+
export * from "./S3ConfigResponse.mjs";
|
|
87
89
|
export * from "./ScheduleConfig.mjs";
|
|
88
90
|
export * from "./ScheduleDetails.mjs";
|
|
89
91
|
export * from "./ScheduleResponse.mjs";
|
package/dist/esm/version.d.mts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "v0.6.
|
|
1
|
+
export declare const SDK_VERSION = "v0.6.41";
|
package/dist/esm/version.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const SDK_VERSION = "v0.6.
|
|
1
|
+
export const SDK_VERSION = "v0.6.41";
|