Actualizacion de seguridad

This commit is contained in:
Pablinux
2024-07-13 00:27:32 -05:00
parent 90f05f7ad0
commit fa92efc258
186 changed files with 75113 additions and 17648 deletions

9
node_modules/telegraf/extra.js generated vendored
View File

@@ -42,6 +42,11 @@ class Extra {
return this
}
markdownV2 (value = true) {
this.parse_mode = value ? 'MarkdownV2' : undefined
return this
}
caption (caption = '') {
this.caption = caption
return this
@@ -75,6 +80,10 @@ class Extra {
return new Extra().markdown(value)
}
static markdownV2 (value) {
return new Extra().markdownV2(value)
}
static caption (caption) {
return new Extra().caption(caption)
}