@bprotsyk/aso-core 1.2.31 → 1.2.33
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 +7 -11
- package/package.json +1 -1
- package/src/flash/flash-app.ts +9 -13
package/lib/flash/flash-app.js
CHANGED
|
@@ -181,17 +181,13 @@ async function updateSchemaAndMoveValue(model) {
|
|
|
181
181
|
$project: {
|
|
182
182
|
pastebinUrl: 0,
|
|
183
183
|
email: 0,
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
keyCity: 0,
|
|
192
|
-
keyAlias: 0,
|
|
193
|
-
keyPassword: 0
|
|
194
|
-
}
|
|
184
|
+
"generationOptionskeyFileName": 0,
|
|
185
|
+
"generationOptionskeyDeveloperName": 0,
|
|
186
|
+
"generationOptionskeyDeveloperOrganization": 0,
|
|
187
|
+
"generationOptionskeyCountryCode": 0,
|
|
188
|
+
"generationOptionskeyCity": 0,
|
|
189
|
+
"generationOptionskeyAlias": 0,
|
|
190
|
+
"generationOptionskeyPassword": 0
|
|
195
191
|
}
|
|
196
192
|
},
|
|
197
193
|
{
|
package/package.json
CHANGED
package/src/flash/flash-app.ts
CHANGED
|
@@ -251,17 +251,13 @@ export async function updateSchemaAndMoveValue(model: Model<IFlashAppUpdated>):
|
|
|
251
251
|
$project: {
|
|
252
252
|
pastebinUrl: 0,
|
|
253
253
|
email: 0,
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
keyCity: 0,
|
|
262
|
-
keyAlias: 0,
|
|
263
|
-
keyPassword: 0
|
|
264
|
-
}
|
|
254
|
+
"generationOptionskeyFileName": 0,
|
|
255
|
+
"generationOptionskeyDeveloperName": 0,
|
|
256
|
+
"generationOptionskeyDeveloperOrganization": 0,
|
|
257
|
+
"generationOptionskeyCountryCode": 0,
|
|
258
|
+
"generationOptionskeyCity": 0,
|
|
259
|
+
"generationOptionskeyAlias": 0,
|
|
260
|
+
"generationOptionskeyPassword": 0
|
|
265
261
|
}
|
|
266
262
|
},
|
|
267
263
|
{
|
|
@@ -281,7 +277,7 @@ export async function updateSchemaAndMoveValue(model: Model<IFlashAppUpdated>):
|
|
|
281
277
|
policyUrl: null,
|
|
282
278
|
developerName: '$generationOptions.keyDeveloperName',
|
|
283
279
|
developerEmail: '$email',
|
|
284
|
-
developerOrganization: '$generationOptions.keyDeveloperOrganization',
|
|
280
|
+
developerOrganization: '$generationOptions.keyDeveloperOrganization',
|
|
285
281
|
},
|
|
286
282
|
$unset: [
|
|
287
283
|
'email',
|
|
@@ -300,4 +296,4 @@ export async function updateSchemaAndMoveValue(model: Model<IFlashAppUpdated>):
|
|
|
300
296
|
...aggregationPipeline,
|
|
301
297
|
updateOperation
|
|
302
298
|
]);
|
|
303
|
-
}``
|
|
299
|
+
} ``
|