corebasic 1.0.117 → 1.0.118

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/libs/elabase.js +2 -0
  2. package/package.json +1 -1
package/libs/elabase.js CHANGED
@@ -160,6 +160,8 @@ export const update = async (meta, collection, query, update, options) => {
160
160
  collection = `${meta.company}.${collection}`
161
161
  if (meta.company !== "GLOBAL") {
162
162
  query.company = meta.company
163
+ update.$set = update.$set ?? {}
164
+ update.$set.company = meta.company
163
165
  if (update?.$setOnInsert)
164
166
  update.$setOnInsert.company = meta.company
165
167
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "corebasic",
3
3
  "type": "module",
4
- "version": "1.0.117",
4
+ "version": "1.0.118",
5
5
  "description": "",
6
6
  "main": "index.js",
7
7
  "scripts": {