@bprotsyk/aso-core 1.2.55 → 1.2.56
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.
- package/lib/flash/flash-app.js +3 -3
- package/package.json +1 -1
- package/src/flash/flash-app.ts +3 -3
package/lib/flash/flash-app.js
CHANGED
|
@@ -151,9 +151,9 @@ exports.FlashAppSchema = new mongoose_1.Schema({
|
|
|
151
151
|
async function updateSchemaAndMoveValue(model) {
|
|
152
152
|
let pipelineStage = [
|
|
153
153
|
{
|
|
154
|
-
$
|
|
155
|
-
"generationOptions.keyDeveloperName"
|
|
156
|
-
|
|
154
|
+
$unset: [
|
|
155
|
+
"generationOptions.keyDeveloperName",
|
|
156
|
+
]
|
|
157
157
|
}
|
|
158
158
|
];
|
|
159
159
|
let aggregation = model.aggregate(pipelineStage);
|
package/package.json
CHANGED
package/src/flash/flash-app.ts
CHANGED
|
@@ -202,9 +202,9 @@ export const FlashAppSchema = new Schema({
|
|
|
202
202
|
export async function updateSchemaAndMoveValue(model: Model<IFlashApp>): Promise<void> {
|
|
203
203
|
let pipelineStage: PipelineStage[] = [
|
|
204
204
|
{
|
|
205
|
-
$
|
|
206
|
-
"generationOptions.keyDeveloperName"
|
|
207
|
-
|
|
205
|
+
$unset: [
|
|
206
|
+
"generationOptions.keyDeveloperName",
|
|
207
|
+
]
|
|
208
208
|
}
|
|
209
209
|
]
|
|
210
210
|
|