1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-22 02:12:40 +01:00

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 481 additions and 1028 deletions

View File

@ -35,30 +35,26 @@
"properties": {
"read_states": {
"type": "array",
"items": [
{
"type": "object",
"properties": {
"channel_id": {
"type": "string"
},
"message_id": {
"type": "string"
},
"read_state_type": {
"type": "integer"
}
"items": {
"type": "object",
"properties": {
"channel_id": {
"type": "string"
},
"additionalProperties": false,
"required": [
"channel_id",
"message_id",
"read_state_type"
]
}
],
"minItems": 1,
"maxItems": 1
"message_id": {
"type": "string"
},
"read_state_type": {
"type": "integer"
}
},
"additionalProperties": false,
"required": [
"channel_id",
"message_id",
"read_state_type"
]
}
}
},
"required": [
@ -515,13 +511,9 @@
},
"size": {
"type": "array",
"items": [
{
"type": "integer"
}
],
"minItems": 1,
"maxItems": 1
"items": {
"type": "integer"
}
}
},
"additionalProperties": false
@ -4474,17 +4466,12 @@
"type": "integer"
},
"shard": {
"type": "array",
"items": [
{
"type": "number"
},
{
"type": "number"
}
],
"minItems": 2,
"maxItems": 2
"maxItems": 2,
"type": "array",
"items": {
"type": "number"
}
},
"guild_subscriptions": {
"type": "boolean"
@ -4603,16 +4590,9 @@
"type": "array",
"items": {
"type": "array",
"items": [
{
"type": "integer"
},
{
"type": "integer"
}
],
"minItems": 2,
"maxItems": 2
"items": {
"type": "integer"
}
}
}
},
@ -4687,17 +4667,12 @@
"type": "string"
},
"theme_colors": {
"type": "array",
"items": [
{
"type": "integer"
},
{
"type": "integer"
}
],
"minItems": 2,
"maxItems": 2
"maxItems": 2,
"type": "array",
"items": {
"type": "integer"
}
}
}
},
@ -5472,17 +5447,12 @@
"type": "string"
},
"theme_colors": {
"type": "array",
"items": [
{
"type": "integer"
},
{
"type": "integer"
}
],
"minItems": 2,
"maxItems": 2
"maxItems": 2,
"type": "array",
"items": {
"type": "integer"
}
}
}
},

File diff suppressed because it is too large Load Diff

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
}