@ebenos/framework
Advanced tools
Comparing version 3.2.10 to 3.2.12
@@ -100,3 +100,2 @@ "use strict"; | ||
case 'message': | ||
params[2].delay = waiter; | ||
messages.push({ | ||
@@ -106,3 +105,3 @@ type: 'message', | ||
message: params[1], | ||
options: params[2] | ||
options: Object.assign(Object.assign({}, params[2]), { delay: waiter }) | ||
}); | ||
@@ -114,4 +113,8 @@ waiter = 0; | ||
type: 'typing_on', | ||
id: params[0] | ||
id: params[0], | ||
options: { | ||
delay: waiter | ||
} | ||
}); | ||
waiter = 0; | ||
continue; | ||
@@ -121,4 +124,8 @@ case 'typing_off': | ||
type: 'typing_off', | ||
id: params[0] | ||
id: params[0], | ||
options: { | ||
delay: waiter | ||
} | ||
}); | ||
waiter = 0; | ||
continue; | ||
@@ -128,4 +135,8 @@ case 'mark_seen': | ||
type: 'mark_seen', | ||
id: params[0] | ||
id: params[0], | ||
options: { | ||
delay: waiter | ||
} | ||
}); | ||
waiter = 0; | ||
continue; | ||
@@ -132,0 +143,0 @@ } |
{ | ||
"name": "@ebenos/framework", | ||
"version": "3.2.10", | ||
"version": "3.2.12", | ||
"description": "A module-based NodeJS chatbot framework.", | ||
@@ -58,3 +58,3 @@ "main": "./build/index.js", | ||
], | ||
"gitHead": "c629d43aa80c4b8b56b50537e27ba6d71ce12a9c" | ||
"gitHead": "de490ee7c349fe899a741fc772a651c742df8fd5" | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
91404
1488