feat(RESTPostAPIChannelMessageJSONBody): add enforce_nonce (#874)

This commit is contained in:
n1ck_pro
2024-02-12 22:13:34 +01:00
committed by GitHub
parent f329a80a6b
commit 9564941b3a
4 changed files with 20 additions and 0 deletions

View File

@@ -318,6 +318,11 @@ export interface RESTPostAPIChannelMessageJSONBody {
* Message flags combined as a bitfield
*/
flags?: MessageFlags | undefined;
/**
* If `true` and nonce is present, it will be checked for uniqueness in the past few minutes.
* If another message was created by the same author with the same nonce, that message will be returned and no new message will be created.
*/
enforce_nonce?: boolean | undefined;
}
/**

View File

@@ -326,6 +326,11 @@ export interface RESTPostAPIChannelMessageJSONBody {
* Message flags combined as a bitfield
*/
flags?: MessageFlags | undefined;
/**
* If `true` and nonce is present, it will be checked for uniqueness in the past few minutes.
* If another message was created by the same author with the same nonce, that message will be returned and no new message will be created.
*/
enforce_nonce?: boolean | undefined;
}
/**

View File

@@ -318,6 +318,11 @@ export interface RESTPostAPIChannelMessageJSONBody {
* Message flags combined as a bitfield
*/
flags?: MessageFlags | undefined;
/**
* If `true` and nonce is present, it will be checked for uniqueness in the past few minutes.
* If another message was created by the same author with the same nonce, that message will be returned and no new message will be created.
*/
enforce_nonce?: boolean | undefined;
}
/**

View File

@@ -326,6 +326,11 @@ export interface RESTPostAPIChannelMessageJSONBody {
* Message flags combined as a bitfield
*/
flags?: MessageFlags | undefined;
/**
* If `true` and nonce is present, it will be checked for uniqueness in the past few minutes.
* If another message was created by the same author with the same nonce, that message will be returned and no new message will be created.
*/
enforce_nonce?: boolean | undefined;
}
/**