Skip to content

Commit 6db673c

Browse files
Release v0.6.53
1 parent 0bfc6df commit 6db673c

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
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.52",
3+
"version": "v0.6.53",
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
@@ -56,8 +56,8 @@ export class AirweaveSDKClient {
5656
"X-Framework-Version": _options?.frameworkVersion,
5757
"X-Fern-Language": "JavaScript",
5858
"X-Fern-SDK-Name": "@airweave/sdk",
59-
"X-Fern-SDK-Version": "v0.6.52",
60-
"User-Agent": "@airweave/sdk/v0.6.52",
59+
"X-Fern-SDK-Version": "v0.6.53",
60+
"User-Agent": "@airweave/sdk/v0.6.53",
6161
"X-Fern-Runtime": core.RUNTIME.type,
6262
"X-Fern-Runtime-Version": core.RUNTIME.version,
6363
},

src/api/types/OrganizationMetrics.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ export interface OrganizationMetrics {
3838
entity_count?: number;
3939
/** Total number of queries (from Usage.queries) */
4040
query_count?: number;
41+
/** Last active timestamp of any user in this organization */
42+
last_active_at?: string;
4143
/** Whether the current admin user is already a member */
4244
is_member?: boolean;
4345
/** Admin's role in this organization (if member) */

src/api/types/User.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@ export interface User {
1515
primary_organization_id?: string;
1616
user_organizations?: AirweaveSDK.UserOrganization[];
1717
is_admin?: boolean;
18+
last_active_at?: string;
1819
}

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.52";
1+
export const SDK_VERSION = "v0.6.53";

0 commit comments

Comments
 (0)