diff --git a/assets/schemas.json b/assets/schemas.json index 77df48bdd..e893cb997 100644 --- a/assets/schemas.json +++ b/assets/schemas.json @@ -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" }, diff --git a/src/util/schemas/MessageCreateSchema.ts b/src/util/schemas/MessageCreateSchema.ts index 7e130751c..91c0817cd 100644 --- a/src/util/schemas/MessageCreateSchema.ts +++ b/src/util/schemas/MessageCreateSchema.ts @@ -26,6 +26,7 @@ type Attachment = { export interface MessageCreateSchema { type?: number; content?: string; + mobile_network_type?: string; nonce?: string; channel_id?: string; tts?: boolean;