chore: build library from latest spec [skip ci]

This commit is contained in:
Stoat CI
2026-08-05 07:25:09 +00:00
parent ff620c53b5
commit 4c17927e21
+12
View File
@@ -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;