feat: clean up prompt schema into formats instead of platforms
Node.js CI / CI (pull_request) Failing after 27s
Security Scan and Upload / Security & DefectDojo Upload (pull_request) Successful in 56s

This commit is contained in:
2025-12-23 19:40:25 -08:00
parent 0dba248370
commit e010b4904b
3 changed files with 45 additions and 139 deletions
+3 -11
View File
@@ -9,18 +9,10 @@
* @see {@link announcementJsonSchema}
*/
export interface AnnouncementResponse {
bluesky: Array<string>;
discord: {
markdown: {
content: string;
title: string;
};
facebook: string;
linkedin: string;
mastodon: Array<string>;
reddit: {
content: string;
title: string;
};
threads: Array<string>;
twitter: Array<string>;
plaintext: string;
threaded: Array<string>;
}