@resolveio/server-lib 20.12.46 → 20.12.48

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/methods.ts CHANGED
@@ -132,6 +132,9 @@ export function SERVER_METHODS(resolveioServer) {
132
132
  reportbuilderCronJob: (data: Object, cb?: Function): Promise<any> => {
133
133
  return resolveioServer.call('reportbuilderCronJob', data, cb);
134
134
  },
135
+ reportbuilderreportWithId: (id: string, cb?: Function): Promise<any> => {
136
+ return resolveioServer.call('reportbuilderreportWithId', id, cb);
137
+ },
135
138
  resetUserPassword: (userId: string, cb?: Function): Promise<any> => {
136
139
  return resolveioServer.call('resetUserPassword', userId, cb);
137
140
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@resolveio/server-lib",
3
- "version": "20.12.46",
3
+ "version": "20.12.48",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "package": "./build_package.sh",