@xuda.io/xuda-dbs-plugin-xuda 1.0.125 → 1.0.126

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 (2) hide show
  1. package/package.json +1 -1
  2. package/studio.mjs +6 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xuda.io/xuda-dbs-plugin-xuda",
3
- "version": "1.0.125",
3
+ "version": "1.0.126",
4
4
  "description": "Xuda Database Socket for Xuda's proprietary structure powered by CouchDB",
5
5
  "scripts": {
6
6
  "pub": "npm version patch --force && npm publish --access public"
package/studio.mjs CHANGED
@@ -3,7 +3,12 @@ var _this = {};
3
3
  const check_unique = async function (e, docP, table_obj, db) {
4
4
  if (typeof func !== "undefined") {
5
5
  const SESSION_ID = Object.keys(SESSION_OBJ)[0];
6
- const ret = await func.common.perform_rpi_request(SESSION_ID, serviceP);
6
+ const ret = await func.common.perform_rpi_request(
7
+ SESSION_ID,
8
+ serviceP,
9
+ {},
10
+ docP
11
+ );
7
12
  return ret``;
8
13
  }
9
14