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

Merge pull request #1099 from CyberL1/master

Add mobile_network_type to message create schema
This commit is contained in:
Madeline 2023-10-02 07:46:24 +11:00 committed by GitHub
commit 551d2bf5e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

View File

@ -93099,6 +93099,9 @@
"content": {
"type": "string"
},
"mobile_network_type": {
"type": "string"
},
"nonce": {
"type": "string"
},
@ -97417,6 +97420,9 @@
"content": {
"type": "string"
},
"mobile_network_type": {
"type": "string"
},
"nonce": {
"type": "string"
},

View File

@ -26,6 +26,7 @@ type Attachment = {
export interface MessageCreateSchema {
type?: number;
content?: string;
mobile_network_type?: string;
nonce?: string;
channel_id?: string;
tts?: boolean;