@bprotsyk/aso-core 1.2.38 → 1.2.39
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 +13 -13
- package/package.json +1 -1
- package/src/flash/flash-app.ts +13 -13
package/lib/flash/flash-app.js
CHANGED
|
@@ -177,19 +177,19 @@ exports.FlashAppSchemaUpdated = new mongoose_1.Schema({
|
|
|
177
177
|
});
|
|
178
178
|
async function updateSchemaAndMoveValue(model) {
|
|
179
179
|
const aggregationPipeline = [
|
|
180
|
-
{
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
},
|
|
180
|
+
// {
|
|
181
|
+
// '$project': {
|
|
182
|
+
// "pastebinUrl": "REMOVE",
|
|
183
|
+
// "email": "REMOVE",
|
|
184
|
+
// "generationOptions.keyFileName": "REMOVE",
|
|
185
|
+
// "generationOptions.keyDeveloperName": "REMOVE",
|
|
186
|
+
// "generationOptions.keyDeveloperOrganization": "REMOVE",
|
|
187
|
+
// "generationOptions.keyCountryCode": "REMOVE",
|
|
188
|
+
// "generationOptions.keyCity": "REMOVE",
|
|
189
|
+
// "generationOptions.keyAlias": "REMOVE",
|
|
190
|
+
// "generationOptions.keyPassword": "REMOVE"
|
|
191
|
+
// }
|
|
192
|
+
// },
|
|
193
193
|
{
|
|
194
194
|
'$addFields': {
|
|
195
195
|
'plugUrl': `$pastebinUrl`,
|
package/package.json
CHANGED
package/src/flash/flash-app.ts
CHANGED
|
@@ -247,19 +247,19 @@ export const FlashAppSchemaUpdated = new Schema({
|
|
|
247
247
|
|
|
248
248
|
export async function updateSchemaAndMoveValue(model: Model<IFlashAppUpdated>): Promise<void> {
|
|
249
249
|
const aggregationPipeline = [
|
|
250
|
-
{
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
},
|
|
250
|
+
// {
|
|
251
|
+
// '$project': {
|
|
252
|
+
// "pastebinUrl": "REMOVE",
|
|
253
|
+
// "email": "REMOVE",
|
|
254
|
+
// "generationOptions.keyFileName": "REMOVE",
|
|
255
|
+
// "generationOptions.keyDeveloperName": "REMOVE",
|
|
256
|
+
// "generationOptions.keyDeveloperOrganization": "REMOVE",
|
|
257
|
+
// "generationOptions.keyCountryCode": "REMOVE",
|
|
258
|
+
// "generationOptions.keyCity": "REMOVE",
|
|
259
|
+
// "generationOptions.keyAlias": "REMOVE",
|
|
260
|
+
// "generationOptions.keyPassword": "REMOVE"
|
|
261
|
+
// }
|
|
262
|
+
// },
|
|
263
263
|
{
|
|
264
264
|
'$addFields': {
|
|
265
265
|
'plugUrl': `$pastebinUrl`,
|