@aicore/cocodb-ws-client 1.0.12 → 1.0.13

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/src/utils/api.js +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aicore/cocodb-ws-client",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "description": "Websocket client for cocoDb",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
package/src/utils/api.js CHANGED
@@ -350,7 +350,8 @@ export function query(tableName, queryString, useIndexForFields = null, options=
350
350
  request: {
351
351
  tableName: tableName,
352
352
  queryString: queryString,
353
- useIndexForFields: useIndexForFields
353
+ useIndexForFields: useIndexForFields,
354
+ options
354
355
  }
355
356
  });
356
357
  }