chore: build library from latest spec [skip ci]

This commit is contained in:
Revolt CI
2025-09-05 11:50:27 +00:00
parent 6404346b77
commit 4294023f9e
+5 -3
View File
@@ -51,7 +51,7 @@ export interface paths {
get: operations["open_dm_open_dm"];
};
"/users/{target}/mutual": {
/** Retrieve a list of mutual friends and servers with another user. */
/** Retrieve a list of mutual friends, servers, groups and DMs with another user. */
get: operations["find_mutual_mutual"];
};
"/users/{target}/friend": {
@@ -1144,12 +1144,14 @@ export interface components {
*/
d: number;
};
/** @description Mutual friends and servers response */
/** @description Mutual friends, servers, groups and DMs response */
MutualResponse: {
/** @description Array of mutual user IDs that both users are friends with */
users: string[];
/** @description Array of mutual server IDs that both users are in */
servers: string[];
/** @description Array of mutual group and dm IDs that both users are in */
channels: string[];
};
/** @description User lookup information */
DataSendFriendRequest: {
@@ -2933,7 +2935,7 @@ export interface operations {
};
};
};
/** Retrieve a list of mutual friends and servers with another user. */
/** Retrieve a list of mutual friends, servers, groups and DMs with another user. */
find_mutual_mutual: {
parameters: {
path: {