Skip to content

Commit be09e0b

Browse files
author
Sergey Khomushin
committed
build version 3.7.0
1 parent 2a676bc commit be09e0b

File tree

9 files changed

+688
-445
lines changed

9 files changed

+688
-445
lines changed

cjs/methods/send/send.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const send = (serviceID, templateID, templatePrams, publicKey) => {
1616
const uID = publicKey || store_1.store._userID;
1717
(0, validateParams_1.validateParams)(uID, serviceID, templateID);
1818
const params = {
19-
lib_version: '3.6.2',
19+
lib_version: '3.7.0',
2020
user_id: uID,
2121
service_id: serviceID,
2222
template_id: templateID,

cjs/methods/sendForm/sendForm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const sendForm = (serviceID, templateID, form, publicKey) => {
3030
const currentForm = findHTMLForm(form);
3131
(0, validateParams_1.validateParams)(uID, serviceID, templateID);
3232
const formData = new FormData(currentForm);
33-
formData.append('lib_version', '3.6.2');
33+
formData.append('lib_version', '3.7.0');
3434
formData.append('service_id', serviceID);
3535
formData.append('template_id', templateID);
3636
formData.append('user_id', uID);

0 commit comments

Comments
 (0)