@docbrasil/api-systemmanager 1.1.19 → 1.1.20

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.
Files changed (104) hide show
  1. package/api/admin/doctypes.js +3 -3
  2. package/api/admin/document.js +7 -7
  3. package/api/admin/form.js +3 -3
  4. package/api/admin/index.js +1 -1
  5. package/api/admin/list.js +3 -3
  6. package/api/admin/message.js +2 -2
  7. package/api/admin/notification.js +5 -5
  8. package/api/admin/organization.js +3 -3
  9. package/api/admin/plugin.js +2 -2
  10. package/api/admin/policy.js +3 -3
  11. package/api/admin/processes.js +4 -4
  12. package/api/admin/task.js +3 -3
  13. package/api/admin/user.js +6 -6
  14. package/api/dispatch.js +2 -2
  15. package/api/external.js +5 -5
  16. package/api/general/geoLocation.js +3 -3
  17. package/api/general/index.js +1 -1
  18. package/api/login.js +7 -7
  19. package/api/session.js +1 -1
  20. package/api/user/application.js +2 -2
  21. package/api/user/datasource.js +2 -2
  22. package/api/user/document.js +13 -13
  23. package/api/user/help.js +2 -2
  24. package/api/user/index.js +1 -1
  25. package/api/user/my_tasks.js +12 -12
  26. package/api/user/notification.js +4 -4
  27. package/api/user/organization.js +4 -4
  28. package/api/user/page.js +2 -2
  29. package/api/user/process.js +12 -12
  30. package/api/user/register.js +4 -4
  31. package/api/user/settings.js +5 -5
  32. package/api/user/task.js +41 -4
  33. package/api/user/task_available.js +3 -3
  34. package/api/user/updates.js +1 -1
  35. package/api/user/user.js +8 -8
  36. package/dist/bundle.cjs +180 -143
  37. package/dist/bundle.mjs +1 -1
  38. package/doc/api.md +129 -102
  39. package/docs/Admin.html +1 -1
  40. package/docs/AdminDocuments.html +6 -6
  41. package/docs/AdminForm.html +2 -2
  42. package/docs/AdminLists.html +2 -2
  43. package/docs/AdminNotification.html +4 -4
  44. package/docs/AdminPlugin.html +1 -1
  45. package/docs/AdminPolicy.html +1 -1
  46. package/docs/AdminProcesses.html +2 -2
  47. package/docs/AdminTask.html +1 -1
  48. package/docs/AdminUser.html +4 -4
  49. package/docs/Application.html +1 -1
  50. package/docs/Datasource.html +1 -1
  51. package/docs/Dispatch.html +1 -1
  52. package/docs/Documents.html +10 -10
  53. package/docs/External.html +4 -4
  54. package/docs/GeoLocation.html +1 -1
  55. package/docs/Help.html +1 -1
  56. package/docs/Login.html +6 -6
  57. package/docs/MyTasks.html +10 -10
  58. package/docs/Notification.html +3 -3
  59. package/docs/Organization.html +6 -6
  60. package/docs/Page.html +1 -1
  61. package/docs/Process.html +9 -9
  62. package/docs/Register.html +3 -3
  63. package/docs/Settings.html +3 -3
  64. package/docs/Task.html +287 -3
  65. package/docs/TaskAvailable.html +2 -2
  66. package/docs/User.html +6 -6
  67. package/docs/Users.html +2 -2
  68. package/docs/admin_doctypes.js.html +3 -3
  69. package/docs/admin_document.js.html +7 -7
  70. package/docs/admin_form.js.html +3 -3
  71. package/docs/admin_index.js.html +1 -1
  72. package/docs/admin_list.js.html +3 -3
  73. package/docs/admin_message.js.html +2 -2
  74. package/docs/admin_notification.js.html +5 -5
  75. package/docs/admin_organization.js.html +3 -3
  76. package/docs/admin_plugin.js.html +2 -2
  77. package/docs/admin_policy.js.html +3 -3
  78. package/docs/admin_processes.js.html +4 -4
  79. package/docs/admin_task.js.html +3 -3
  80. package/docs/admin_user.js.html +6 -6
  81. package/docs/dispatch.js.html +2 -2
  82. package/docs/external.js.html +5 -5
  83. package/docs/general_geoLocation.js.html +3 -3
  84. package/docs/general_index.js.html +1 -1
  85. package/docs/login.js.html +7 -7
  86. package/docs/session.js.html +1 -1
  87. package/docs/user_application.js.html +2 -2
  88. package/docs/user_datasource.js.html +2 -2
  89. package/docs/user_document.js.html +13 -13
  90. package/docs/user_help.js.html +2 -2
  91. package/docs/user_index.js.html +1 -1
  92. package/docs/user_my_tasks.js.html +11 -11
  93. package/docs/user_notification.js.html +4 -4
  94. package/docs/user_organization.js.html +4 -4
  95. package/docs/user_page.js.html +2 -2
  96. package/docs/user_process.js.html +12 -12
  97. package/docs/user_register.js.html +4 -4
  98. package/docs/user_settings.js.html +5 -5
  99. package/docs/user_task.js.html +41 -4
  100. package/docs/user_task_available.js.html +3 -3
  101. package/docs/user_updates.js.html +1 -1
  102. package/docs/user_user.js.html +8 -8
  103. package/package.json +1 -1
  104. package/.project +0 -11
package/api/user/user.js CHANGED
@@ -23,7 +23,7 @@ class User {
23
23
  }
24
24
 
25
25
  /**
26
- * @author CloudBrasil <abernardo.br@gmail.com>
26
+ * @author Myndware <augusto.pissarra@myndware.com>
27
27
  * @description Get the return data and check for errors
28
28
  * @param {object} retData Response HTTP
29
29
  * @return {*}
@@ -38,7 +38,7 @@ class User {
38
38
  }
39
39
 
40
40
  /**
41
- * @author CloudBrasil <abernardo.br@gmail.com>
41
+ * @author Myndware <augusto.pissarra@myndware.com>
42
42
  * @description Set header with new session
43
43
  * @param {string} session Session, token JWT
44
44
  * @return {object} header with new session
@@ -53,7 +53,7 @@ class User {
53
53
  }
54
54
 
55
55
  /**
56
- * @author CloudBrasil <abernardo.br@gmail.com>
56
+ * @author Myndware <augusto.pissarra@myndware.com>
57
57
  * @description Update avatar of user by session of user not allow session user SU
58
58
  * @param {object} params Params to update avatar
59
59
  * @param {string} params.avatar Image in base64 to update
@@ -93,7 +93,7 @@ class User {
93
93
  }
94
94
 
95
95
  /**
96
- * @author CloudBrasil <abernardo.br@gmail.com>
96
+ * @author Myndware <augusto.pissarra@myndware.com>
97
97
  * @description Remove avatar of user by session of user not allow session user SU
98
98
  * @param {string} session Is token JWT of user NOT allow SU
99
99
  * @return {Promise}
@@ -120,7 +120,7 @@ class User {
120
120
  }
121
121
 
122
122
  /**
123
- * @author CloudBrasil <abernardo.br@gmail.com>
123
+ * @author Myndware <augusto.pissarra@myndware.com>
124
124
  * @description Remove the signature of user by session
125
125
  * @param {string} session Is token JWT of user NOT allow SU
126
126
  * @return {Promise}
@@ -147,7 +147,7 @@ class User {
147
147
  }
148
148
 
149
149
  /**
150
- * @author CloudBrasil <abernardo.br@gmail.com>
150
+ * @author Myndware <augusto.pissarra@myndware.com>
151
151
  * @description Sava a new signature of user by session
152
152
  * @param {object} data The signature data to save
153
153
  * @param {string} data.type CURSIVE or HANDWRITE
@@ -194,7 +194,7 @@ class User {
194
194
  }
195
195
 
196
196
  /**
197
- * @author CloudBrasil <abernardo.br@gmail.com>
197
+ * @author Myndware <augusto.pissarra@myndware.com>
198
198
  * @description Update a user profile by id
199
199
  * @param {object} params Params to update task
200
200
  * @param {string} params.name The name of the user
@@ -254,7 +254,7 @@ class User {
254
254
  }
255
255
 
256
256
  /**
257
- * @author CloudBrasil <abernardo.br@gmail.com>
257
+ * @author Myndware <augusto.pissarra@myndware.com>
258
258
  * @description Change a user's organization
259
259
  * @param {string} id Organization id
260
260
  * @param {string} session Is token JWT of user NOT allow SU