1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-08 11:52:55 +01:00
This commit is contained in:
Puyodead1 2023-12-20 03:07:37 -05:00
parent 87def2856e
commit 9b9d3c3493
No known key found for this signature in database
GPG Key ID: A4FA4FEC0DD353FC
2 changed files with 4 additions and 7 deletions

View File

@ -478218,11 +478218,8 @@
"type": "string"
},
"url": {
"description": "The URL to the corresponding installer.\nOnly provided if auto updates are available for the selected platform.",
"type": [
"null",
"string"
]
"description": "The URL to the corresponding installer.",
"type": "string"
},
"notes": {
"description": "Any extra notes for the update\nOnly provided if auto updates are available for the selected platform.",

View File

@ -43,10 +43,10 @@ export class Release extends BaseClass {
enabled: boolean;
@Column({ nullable: true })
notes: string | null;
notes?: string;
@Column({ nullable: true })
signature: string | null;
signature?: string;
@Column({ default: "stable" })
channel: string;