From 4c17927e2128c98a89390f804c8c8cd35e4ca477 Mon Sep 17 00:00:00 2001 From: Stoat CI Date: Wed, 5 Aug 2026 07:25:09 +0000 Subject: [PATCH] chore: build library from latest spec [skip ci] --- src/schema.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/schema.ts b/src/schema.ts index a2c4f2a..5aa0cee 100644 --- a/src/schema.ts +++ b/src/schema.ts @@ -2207,6 +2207,11 @@ export interface components { analytics?: boolean; /** @description Whether this server should be publicly discoverable */ discoverable?: boolean; + /** + * Format: uint + * @description Approximate amount of members in the server + */ + approximate_member_count: number; }; /** @description Channel category */ Category: { @@ -2304,6 +2309,11 @@ export interface components { analytics?: boolean; /** @description Whether this server should be publicly discoverable */ discoverable?: boolean; + /** + * Format: uint + * @description Approximate amount of members in the server + */ + approximate_member_count: number; }; /** @description New server information */ DataEditServer: { @@ -2780,6 +2790,8 @@ export interface components { nsfw?: boolean | null; analytics?: boolean | null; discoverable?: boolean | null; + /** Format: uint */ + approximate_member_count?: number | null; }; PartialRole: { id?: string | null;