@docbrasil/api-systemmanager 1.0.75 → 1.0.76
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/api/admin/notification.js +0 -24
- package/api/user/document.js +3 -1
- package/dist/bundle.cjs +3 -25
- package/dist/bundle.mjs +1 -1
- package/package.json +1 -1
|
@@ -47,30 +47,6 @@ class AdminNotification {
|
|
|
47
47
|
};
|
|
48
48
|
}
|
|
49
49
|
|
|
50
|
-
/**
|
|
51
|
-
* @description Send real time notification
|
|
52
|
-
* @param {object} params Params to send notification
|
|
53
|
-
* @param {string} params.userIds Users to send notification
|
|
54
|
-
* @param {object} params.message Object with data to send user
|
|
55
|
-
* @param {object} session Session, token JWT
|
|
56
|
-
* @returns {Promise<*>}
|
|
57
|
-
*/
|
|
58
|
-
async realTime(params, session) {
|
|
59
|
-
const self = this;
|
|
60
|
-
|
|
61
|
-
try {
|
|
62
|
-
Joi.assert(params, Joi.object().required(), 'Object with params to add notifications');
|
|
63
|
-
Joi.assert(params.userIds, Joi.array().required(), 'OrgId of the user SU');
|
|
64
|
-
Joi.assert(params.message, Joi.object().required(), 'Object with data to send user');
|
|
65
|
-
Joi.assert(session, Joi.string().required(), 'Session, token JWT');
|
|
66
|
-
|
|
67
|
-
const apiCall = self.client.post(`/admin/send/notifications`, params, self._setHeader(session));
|
|
68
|
-
return self._returnData(await apiCall);
|
|
69
|
-
} catch (ex) {
|
|
70
|
-
throw ex;
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
|
|
74
50
|
/**
|
|
75
51
|
* @author CloudBrasil <abernardo.br@gmail.com>
|
|
76
52
|
* @description Create notification
|
package/api/user/document.js
CHANGED
package/dist/bundle.cjs
CHANGED
|
@@ -1163,7 +1163,9 @@ class Documents {
|
|
|
1163
1163
|
const self = this;
|
|
1164
1164
|
const reqOpts = {
|
|
1165
1165
|
headers: {
|
|
1166
|
-
'Content-Type': type
|
|
1166
|
+
'Content-Type': type,
|
|
1167
|
+
maxContentLength: Infinity,
|
|
1168
|
+
maxBodyLength: Infinity
|
|
1167
1169
|
}
|
|
1168
1170
|
};
|
|
1169
1171
|
|
|
@@ -9597,30 +9599,6 @@ class AdminNotification {
|
|
|
9597
9599
|
};
|
|
9598
9600
|
}
|
|
9599
9601
|
|
|
9600
|
-
/**
|
|
9601
|
-
* @description Send real time notification
|
|
9602
|
-
* @param {object} params Params to send notification
|
|
9603
|
-
* @param {string} params.userIds Users to send notification
|
|
9604
|
-
* @param {object} params.message Object with data to send user
|
|
9605
|
-
* @param {object} session Session, token JWT
|
|
9606
|
-
* @returns {Promise<*>}
|
|
9607
|
-
*/
|
|
9608
|
-
async realTime(params, session) {
|
|
9609
|
-
const self = this;
|
|
9610
|
-
|
|
9611
|
-
try {
|
|
9612
|
-
Joi__default["default"].assert(params, Joi__default["default"].object().required(), 'Object with params to add notifications');
|
|
9613
|
-
Joi__default["default"].assert(params.userIds, Joi__default["default"].array().required(), 'OrgId of the user SU');
|
|
9614
|
-
Joi__default["default"].assert(params.message, Joi__default["default"].object().required(), 'Object with data to send user');
|
|
9615
|
-
Joi__default["default"].assert(session, Joi__default["default"].string().required(), 'Session, token JWT');
|
|
9616
|
-
|
|
9617
|
-
const apiCall = self.client.post(`/admin/send/notifications`, params, self._setHeader(session));
|
|
9618
|
-
return self._returnData(await apiCall);
|
|
9619
|
-
} catch (ex) {
|
|
9620
|
-
throw ex;
|
|
9621
|
-
}
|
|
9622
|
-
}
|
|
9623
|
-
|
|
9624
9602
|
/**
|
|
9625
9603
|
* @author CloudBrasil <abernardo.br@gmail.com>
|
|
9626
9604
|
* @description Create notification
|