@bprotsyk/aso-core 1.2.34 → 1.2.36

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.
@@ -221,7 +221,7 @@ async function updateSchemaAndMoveValue(model) {
221
221
  ]
222
222
  };
223
223
  await model.updateMany({}, [
224
- ...aggregationPipeline,
224
+ aggregationPipeline,
225
225
  updateOperation
226
226
  ]);
227
227
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "1.2.34",
3
+ "version": "1.2.36",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -293,7 +293,7 @@ export async function updateSchemaAndMoveValue(model: Model<IFlashAppUpdated>):
293
293
  };
294
294
 
295
295
  await model.updateMany({}, [
296
- ...aggregationPipeline,
296
+ aggregationPipeline,
297
297
  updateOperation
298
298
  ]);
299
299
  } ``