Skip to content

Commit

Permalink
Merge pull request #1099 from CyberL1/master
Browse files Browse the repository at this point in the history
Add mobile_network_type to message create schema
  • Loading branch information
MaddyUnderStars authored Oct 1, 2023
2 parents 8279cd0 + 0c04f49 commit 551d2bf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions assets/schemas.json
Original file line number Diff line number Diff line change
Expand Up @@ -93099,6 +93099,9 @@
"content": {
"type": "string"
},
"mobile_network_type": {
"type": "string"
},
"nonce": {
"type": "string"
},
Expand Down Expand Up @@ -97417,6 +97420,9 @@
"content": {
"type": "string"
},
"mobile_network_type": {
"type": "string"
},
"nonce": {
"type": "string"
},
Expand Down
1 change: 1 addition & 0 deletions src/util/schemas/MessageCreateSchema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ type Attachment = {
export interface MessageCreateSchema {
type?: number;
content?: string;
mobile_network_type?: string;
nonce?: string;
channel_id?: string;
tts?: boolean;
Expand Down

0 comments on commit 551d2bf

Please sign in to comment.