Skip to content

Commit aa352c5

Browse files
committed
Release v0.6.33
1 parent dbc7f39 commit aa352c5

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@airweave/sdk",
3-
"version": "v0.6.32",
3+
"version": "v0.6.33",
44
"private": false,
55
"repository": "github:airweave-ai/typescript-sdk",
66
"type": "commonjs",

src/Client.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ export class AirweaveSDKClient {
4646
{
4747
"X-Fern-Language": "JavaScript",
4848
"X-Fern-SDK-Name": "@airweave/sdk",
49-
"X-Fern-SDK-Version": "v0.6.32",
50-
"User-Agent": "@airweave/sdk/v0.6.32",
49+
"X-Fern-SDK-Version": "v0.6.33",
50+
"User-Agent": "@airweave/sdk/v0.6.33",
5151
"X-Fern-Runtime": core.RUNTIME.type,
5252
"X-Fern-Runtime-Version": core.RUNTIME.version,
5353
},

src/api/types/Collection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ export interface Collection {
2727
created_by_email?: string;
2828
/** Email address of the user who last modified this collection. */
2929
modified_by_email?: string;
30-
/** Current operational status of the collection:<br/>• **NEEDS_SOURCE**: Collection exists but has no source connections configured yet<br/>• **ACTIVE**: All source connections are healthy and data is being synced successfully<br/>• **PARTIAL_ERROR**: Some source connections are failing but others are working<br/>• **ERROR**: All source connections are failing or in error state */
30+
/** Current operational status of the collection:<br/>• **NEEDS_SOURCE**: Collection has no authenticated connections, or connections exist but haven't synced yet<br/>• **ACTIVE**: At least one connection has completed a sync or is currently syncing<br/>• **ERROR**: All connections have failed their last sync */
3131
status?: AirweaveSDK.CollectionStatus;
3232
}

src/api/types/CollectionStatus.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,9 @@
55
/**
66
* Collection status enum.
77
*/
8-
export type CollectionStatus = "ACTIVE" | "PARTIAL ERROR" | "NEEDS SOURCE" | "ERROR";
8+
export type CollectionStatus = "ACTIVE" | "NEEDS SOURCE" | "ERROR";
99
export const CollectionStatus = {
1010
Active: "ACTIVE",
11-
PartialError: "PARTIAL ERROR",
1211
NeedsSource: "NEEDS SOURCE",
1312
Error: "ERROR",
1413
} as const;

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const SDK_VERSION = "v0.6.32";
1+
export const SDK_VERSION = "v0.6.33";

0 commit comments

Comments
 (0)