chore: build library from latest spec [skip ci]

This commit is contained in:
Revolt CI
2024-06-15 10:11:54 +00:00
parent d18aec40b0
commit 72d8671e83
2 changed files with 8 additions and 10 deletions
+7 -9
View File
@@ -765,8 +765,6 @@ export interface components {
badges?: number;
/** @description User's current status */
status?: components["schemas"]["UserStatus"] | null;
/** @description User's profile page */
profile?: components["schemas"]["UserProfile"] | null;
/**
* Format: uint32
* @description Enum of user flags
@@ -869,13 +867,6 @@ export interface components {
* @enum {string}
*/
Presence: "Online" | "Idle" | "Focus" | "Busy" | "Invisible";
/** @description User's profile */
UserProfile: {
/** @description Text content on user's profile */
content?: string | null;
/** @description Background visible on user's profile */
background?: components["schemas"]["File"] | null;
};
/** @description Bot information for if the user is a bot */
BotInformation: {
/** @description Id of the owner of this bot */
@@ -941,6 +932,13 @@ export interface components {
/** @description Current account password */
password: string;
};
/** @description User's profile */
UserProfile: {
/** @description Text content on user's profile */
content?: string | null;
/** @description Background visible on user's profile */
background?: components["schemas"]["File"] | null;
};
/** @description Channel */
Channel:
| {
+1 -1
View File
@@ -14,7 +14,6 @@ export type Relationship = components['schemas']['Relationship'];
export type RelationshipStatus = components['schemas']['RelationshipStatus'];
export type UserStatus = components['schemas']['UserStatus'];
export type Presence = components['schemas']['Presence'];
export type UserProfile = components['schemas']['UserProfile'];
export type BotInformation = components['schemas']['BotInformation'];
export type Id = components['schemas']['Id'];
export type FlagResponse = components['schemas']['FlagResponse'];
@@ -22,6 +21,7 @@ export type DataEditUser = components['schemas']['DataEditUser'];
export type DataUserProfile = components['schemas']['DataUserProfile'];
export type FieldsUser = components['schemas']['FieldsUser'];
export type DataChangeUsername = components['schemas']['DataChangeUsername'];
export type UserProfile = components['schemas']['UserProfile'];
export type Channel = components['schemas']['Channel'];
export type OverrideField = components['schemas']['OverrideField'];
export type MutualResponse = components['schemas']['MutualResponse'];