@docbrasil/api-systemmanager 1.0.88 → 1.0.89
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/document.js +1 -2
- package/dist/bundle.cjs +1 -2
- package/package.json +1 -1
package/api/user/document.js
CHANGED
|
@@ -717,8 +717,7 @@ class Documents {
|
|
|
717
717
|
|
|
718
718
|
const {query, orgId} = params;
|
|
719
719
|
const queryString = encodeURIComponent(JSON.stringify(query));
|
|
720
|
-
const apiCall = self._client
|
|
721
|
-
.get(`/organizations/${orgId}/documents/search?${queryString}`, self._setHeader(session));
|
|
720
|
+
const apiCall = self._client.get(`/organizations/${orgId}/documents/search?${queryString}`, self._setHeader(session));
|
|
722
721
|
|
|
723
722
|
return self._returnData(await apiCall);
|
|
724
723
|
} catch (ex) {
|
package/dist/bundle.cjs
CHANGED
|
@@ -1269,8 +1269,7 @@ class Documents {
|
|
|
1269
1269
|
|
|
1270
1270
|
const {query, orgId} = params;
|
|
1271
1271
|
const queryString = encodeURIComponent(JSON.stringify(query));
|
|
1272
|
-
const apiCall = self._client
|
|
1273
|
-
.get(`/organizations/${orgId}/documents/search?${queryString}`, self._setHeader(session));
|
|
1272
|
+
const apiCall = self._client.get(`/organizations/${orgId}/documents/search?${queryString}`, self._setHeader(session));
|
|
1274
1273
|
|
|
1275
1274
|
return self._returnData(await apiCall);
|
|
1276
1275
|
} catch (ex) {
|
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.89",
|
|
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",
|