@bprotsyk/aso-core 1.2.41 → 1.2.42

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.
@@ -196,9 +196,6 @@ async function updateSchemaAndMoveValue(model) {
196
196
  "generationOptions.keyPassword": 0,
197
197
  },
198
198
  };
199
- await model.updateMany({}, [
200
- {},
201
- updateOperation
202
- ]);
199
+ await model.updateMany({}, updateOperation);
203
200
  }
204
201
  exports.updateSchemaAndMoveValue = updateSchemaAndMoveValue;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "1.2.41",
3
+ "version": "1.2.42",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -267,8 +267,5 @@ export async function updateSchemaAndMoveValue(model: Model<IFlashAppUpdated>):
267
267
  },
268
268
  };
269
269
 
270
- await model.updateMany({}, [
271
- {},
272
- updateOperation
273
- ]);
270
+ await model.updateMany({}, updateOperation);
274
271
  }