chore(assets): Recompile assets

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2025-09-24 09:59:00 +02:00
parent 4ec538f0d2
commit b6b3b414af
No known key found for this signature in database
GPG key ID: F72FA5B49FFA96B0
4 changed files with 24 additions and 0 deletions

View file

@ -7956,6 +7956,12 @@
"type": "boolean",
"default": false,
"description": "Whether the poll should be saved as a draft (only allowed for moderators and with `talk-polls-drafts` capability)"
},
"threadId": {
"type": "integer",
"format": "int64",
"default": 0,
"description": "Thread id which this poll should be posted into (also requires `threads` capability)"
}
}
}

View file

@ -7861,6 +7861,12 @@
"type": "boolean",
"default": false,
"description": "Whether the poll should be saved as a draft (only allowed for moderators and with `talk-polls-drafts` capability)"
},
"threadId": {
"type": "integer",
"format": "int64",
"default": 0,
"description": "Thread id which this poll should be posted into (also requires `threads` capability)"
}
}
}

View file

@ -5340,6 +5340,12 @@ export interface operations {
* @default false
*/
draft?: boolean;
/**
* Format: int64
* @description Thread id which this poll should be posted into (also requires `threads` capability)
* @default 0
*/
threadId?: number;
};
};
};

View file

@ -4802,6 +4802,12 @@ export interface operations {
* @default false
*/
draft?: boolean;
/**
* Format: int64
* @description Thread id which this poll should be posted into (also requires `threads` capability)
* @default 0
*/
threadId?: number;
};
};
};