@docbrasil/api-systemmanager 1.0.93 → 1.0.95
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/user/task.js +2 -2
- package/api/user/task_available.js +2 -2
- package/dist/bundle.cjs +4 -4
- package/dist/bundle.mjs +1 -1
- package/doc/api.md +2 -2
- package/package.json +1 -1
package/doc/api.md
CHANGED
|
@@ -2188,7 +2188,7 @@ Find task by id and update
|
|
|
2188
2188
|
| params.taskId | <code>string</code> | | Task id (_id database) |
|
|
2189
2189
|
| params.actionGuid | <code>string</code> | | GUID of the action |
|
|
2190
2190
|
| params.orgId | <code>string</code> | | Organization id (_id database) |
|
|
2191
|
-
| params.
|
|
2191
|
+
| params.payload | <code>any</code> | <code>{}</code> | Payload to send in action |
|
|
2192
2192
|
| session | <code>string</code> | | Session, token JWT |
|
|
2193
2193
|
|
|
2194
2194
|
**Example**
|
|
@@ -2199,7 +2199,7 @@ const params = {
|
|
|
2199
2199
|
taskId: '5df7f19618430c89a41a19d2',
|
|
2200
2200
|
actionGuid: 'b3823a2ae52c7a05bfb9590fe427038d'
|
|
2201
2201
|
orgId: '5df7f19618430c89a41a1bc3',
|
|
2202
|
-
|
|
2202
|
+
payload: {}',
|
|
2203
2203
|
};
|
|
2204
2204
|
const session = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...';
|
|
2205
2205
|
await api.user.task.executeActionFinalize(params, session);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@docbrasil/api-systemmanager",
|
|
3
3
|
"description": "Module API System Manager",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.95",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"doc": "rm -f doc/api.md && jsdoc2md api/**/** > doc/api.md",
|
|
7
7
|
"doc:w": "rimraf doc/api.md && jsdoc2md api/**/** > doc/api.md",
|