oapi: bug fixes

This commit is contained in:
Puyodead1 2023-03-25 20:21:13 -04:00
parent 3a23842924
commit 0d666732c6
No known key found for this signature in database
GPG Key ID: A4FA4FEC0DD353FC
10 changed files with 29 additions and 20 deletions

Binary file not shown.

Binary file not shown.

View File

@ -135,7 +135,7 @@ function main() {
definitions = { ...definitions, [name]: { ...part } };
}
modify(definitions);
// modify(definitions);
fs.writeFileSync(schemaPath, JSON.stringify(definitions, null, 4));
}

View File

@ -267,7 +267,9 @@ export async function onLazyRequest(this: WebSocket, { d }: Payload) {
if (!Array.isArray(ranges)) throw new Error("Not a valid Array");
const member_count = await Member.count({ where: { guild_id } });
const ops = await Promise.all(ranges.map((x) => getMembers(guild_id, x)));
const ops = await Promise.all(
ranges.map((x) => getMembers(guild_id, x as [number, number])),
);
// TODO: unsubscribe member_events that are not in op.members

View File

@ -36,7 +36,7 @@ export interface Activity {
};
party?: {
id?: string;
size?: [number]; // used to show the party's current and maximum size // TODO: array length 2
size?: number[]; // used to show the party's current and maximum size // TODO: array length 2
};
assets?: {
large_image?: string; // the id for a large asset of the activity, usually a snowflake

View File

@ -17,11 +17,9 @@
*/
export interface AckBulkSchema {
read_states: [
{
channel_id: string;
message_id: string;
read_state_type: number; // WHat is this?
},
];
read_states: {
channel_id: string;
message_id: string;
read_state_type: number; // WHat is this?
}[];
}

View File

@ -109,7 +109,11 @@ export interface IdentifySchema {
compress?: boolean;
large_threshold?: number;
largeThreshold?: number;
shard?: [bigint, bigint];
/**
* @minItems 2
* @maxItems 2
*/
shard?: bigint[]; // puyo: changed from [bigint, bigint] because it breaks openapi
guild_subscriptions?: boolean;
capabilities?: number;
client_state?: {

View File

@ -19,7 +19,12 @@
export interface LazyRequestSchema {
guild_id: string;
channels?: {
[key: string]: [number, number][];
/**
* @items.type integer
* @minItems 2
* @maxItems 2
*/
[key: string]: number[][]; // puyo: changed from [number, number] because it breaks openapi
};
activities?: boolean;
threads?: boolean;

View File

@ -21,9 +21,9 @@ export interface MemberChangeProfileSchema {
nick?: string;
bio?: string;
pronouns?: string;
/*
* @items.type integer
/**
* @minItems 2
* @maxItems 2
*/
theme_colors?: [number, number];
theme_colors?: number[]; // puyo: changed from [number, number] because it breaks openapi
}

View File

@ -21,9 +21,9 @@ export interface UserProfileModifySchema {
accent_color?: number | null;
banner?: string | null;
pronouns?: string;
/*
* @items.type integer
/**
* @minItems 2
* @maxItems 2
*/
theme_colors?: [number, number];
theme_colors?: number[]; // puyo: changed from [number, number] because it breaks openapi
}