@docbrasil/api-systemmanager 1.0.99 → 1.0.100
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/external.js +6 -1
- package/dist/bundle.cjs +6 -1
- package/package.json +1 -1
package/api/external.js
CHANGED
|
@@ -52,7 +52,12 @@ class External {
|
|
|
52
52
|
* @description Create new document
|
|
53
53
|
* @param {object} params Object for add new document
|
|
54
54
|
* @param {string} params.id Organization form id
|
|
55
|
-
* @return {Promise<object>}
|
|
55
|
+
* @return {Promise<object>} data
|
|
56
|
+
* @return {string} _id the id of the form
|
|
57
|
+
* @return {string} orgId the organization id of the form
|
|
58
|
+
* @return {string} responseToken the unique token registered internally by the system for all the next calls to the external form APIs
|
|
59
|
+
* The responseToken is unique and is ONLY valid for this session.
|
|
60
|
+
* @return {array<object>} groups the form groups to render
|
|
56
61
|
* @public
|
|
57
62
|
* @async
|
|
58
63
|
* @example
|
package/dist/bundle.cjs
CHANGED
|
@@ -11628,7 +11628,12 @@ class External {
|
|
|
11628
11628
|
* @description Create new document
|
|
11629
11629
|
* @param {object} params Object for add new document
|
|
11630
11630
|
* @param {string} params.id Organization form id
|
|
11631
|
-
* @return {Promise<object>}
|
|
11631
|
+
* @return {Promise<object>} data
|
|
11632
|
+
* @return {string} _id the id of the form
|
|
11633
|
+
* @return {string} orgId the organization id of the form
|
|
11634
|
+
* @return {string} responseToken the unique token registered internally by the system for all the next calls to the external form APIs
|
|
11635
|
+
* The responseToken is unique and is ONLY valid for this session.
|
|
11636
|
+
* @return {array<object>} groups the form groups to render
|
|
11632
11637
|
* @public
|
|
11633
11638
|
* @async
|
|
11634
11639
|
* @example
|
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.100",
|
|
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",
|