engage-engine 1.257.90970035 → 1.257.90970036
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/engage.cpp +6 -6
- package/package.json +2 -1
package/engage.cpp
CHANGED
|
@@ -786,13 +786,13 @@ NAN_METHOD(setLogTagExtension)
|
|
|
786
786
|
}
|
|
787
787
|
|
|
788
788
|
//--------------------------------------------------------
|
|
789
|
-
NAN_METHOD(
|
|
789
|
+
NAN_METHOD(enableSyslog)
|
|
790
790
|
{
|
|
791
791
|
NANRETI(engageEnableSyslog(INTVAL(0) == 1 ? ENGAGE_SYSLOG_ENABLE : ENGAGE_SYSLOG_DISABLE));
|
|
792
792
|
}
|
|
793
793
|
|
|
794
794
|
//--------------------------------------------------------
|
|
795
|
-
NAN_METHOD(
|
|
795
|
+
NAN_METHOD(enableWatchdog)
|
|
796
796
|
{
|
|
797
797
|
NANRETI(engageEnableWatchdog(INTVAL(0) == 1 ? ENGAGE_WATCHDOG_ENABLE : ENGAGE_WATCHDOG_DISABLE));
|
|
798
798
|
}
|
|
@@ -1016,7 +1016,7 @@ NAN_METHOD(updateLicense)
|
|
|
1016
1016
|
// TODO: engageUnregisterGroupRtpHandler
|
|
1017
1017
|
|
|
1018
1018
|
//--------------------------------------------------------
|
|
1019
|
-
NAN_METHOD(
|
|
1019
|
+
NAN_METHOD(sendGroupBlob)
|
|
1020
1020
|
{
|
|
1021
1021
|
// Get the buffer data
|
|
1022
1022
|
uint8_t* blobBytes = (uint8_t*) node::Buffer::Data(info[1]);
|
|
@@ -1037,7 +1037,7 @@ NAN_METHOD(engageSendGroupBlob)
|
|
|
1037
1037
|
}
|
|
1038
1038
|
|
|
1039
1039
|
//--------------------------------------------------------
|
|
1040
|
-
NAN_METHOD(
|
|
1040
|
+
NAN_METHOD(sendGroupRaw)
|
|
1041
1041
|
{
|
|
1042
1042
|
// Get the buffer data
|
|
1043
1043
|
uint8_t* rawBytes = (uint8_t*) node::Buffer::Data(info[1]);
|
|
@@ -1401,8 +1401,8 @@ NAN_MODULE_INIT(Init)
|
|
|
1401
1401
|
|
|
1402
1402
|
ENGAGE_BINDING(encrypt);
|
|
1403
1403
|
ENGAGE_BINDING(decrypt);
|
|
1404
|
-
ENGAGE_BINDING(
|
|
1405
|
-
ENGAGE_BINDING(
|
|
1404
|
+
ENGAGE_BINDING(sendGroupBlob);
|
|
1405
|
+
ENGAGE_BINDING(sendGroupRaw);
|
|
1406
1406
|
|
|
1407
1407
|
ENGAGE_BINDING(updateLicense);
|
|
1408
1408
|
ENGAGE_BINDING(getVersion);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "engage-engine",
|
|
3
|
-
"version": "1.257.
|
|
3
|
+
"version": "1.257.90970036",
|
|
4
4
|
"description": "Use Engage to communicate with everyone, everywhere, from any device",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"homepage": "https://github.com/rallytac/pub#readme",
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"bindings": "^1.5.0",
|
|
25
|
+
"chalk": "^4.1.2",
|
|
25
26
|
"nan": "^2.14.0",
|
|
26
27
|
"node-gyp": "^9.0.3"
|
|
27
28
|
}
|