@bprotsyk/aso-core 1.2.38 → 1.2.40
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 +9 -11
- package/package.json +1 -1
- package/src/flash/flash-app.ts +9 -11
package/lib/flash/flash-app.js
CHANGED
|
@@ -179,15 +179,15 @@ async function updateSchemaAndMoveValue(model) {
|
|
|
179
179
|
const aggregationPipeline = [
|
|
180
180
|
{
|
|
181
181
|
'$project': {
|
|
182
|
-
"pastebinUrl":
|
|
183
|
-
"email":
|
|
184
|
-
"generationOptions.keyFileName":
|
|
185
|
-
"generationOptions.keyDeveloperName":
|
|
186
|
-
"generationOptions.keyDeveloperOrganization":
|
|
187
|
-
"generationOptions.keyCountryCode":
|
|
188
|
-
"generationOptions.keyCity":
|
|
189
|
-
"generationOptions.keyAlias":
|
|
190
|
-
"generationOptions.keyPassword":
|
|
182
|
+
"pastebinUrl": 0,
|
|
183
|
+
"email": 0,
|
|
184
|
+
"generationOptions.keyFileName": 0,
|
|
185
|
+
"generationOptions.keyDeveloperName": 0,
|
|
186
|
+
"generationOptions.keyDeveloperOrganization": 0,
|
|
187
|
+
"generationOptions.keyCountryCode": 0,
|
|
188
|
+
"generationOptions.keyCity": 0,
|
|
189
|
+
"generationOptions.keyAlias": 0,
|
|
190
|
+
"generationOptions.keyPassword": 0
|
|
191
191
|
}
|
|
192
192
|
},
|
|
193
193
|
{
|
|
@@ -204,8 +204,6 @@ async function updateSchemaAndMoveValue(model) {
|
|
|
204
204
|
const updateOperation = {
|
|
205
205
|
$set: {
|
|
206
206
|
plugUrl: '$pastebinUrl',
|
|
207
|
-
reservePlugUrl: null,
|
|
208
|
-
policyUrl: null,
|
|
209
207
|
developerName: '$generationOptions.keyDeveloperName',
|
|
210
208
|
developerEmail: '$email',
|
|
211
209
|
developerOrganization: '$generationOptions.keyDeveloperOrganization',
|
package/package.json
CHANGED
package/src/flash/flash-app.ts
CHANGED
|
@@ -249,15 +249,15 @@ export async function updateSchemaAndMoveValue(model: Model<IFlashAppUpdated>):
|
|
|
249
249
|
const aggregationPipeline = [
|
|
250
250
|
{
|
|
251
251
|
'$project': {
|
|
252
|
-
"pastebinUrl":
|
|
253
|
-
"email":
|
|
254
|
-
"generationOptions.keyFileName":
|
|
255
|
-
"generationOptions.keyDeveloperName":
|
|
256
|
-
"generationOptions.keyDeveloperOrganization":
|
|
257
|
-
"generationOptions.keyCountryCode":
|
|
258
|
-
"generationOptions.keyCity":
|
|
259
|
-
"generationOptions.keyAlias":
|
|
260
|
-
"generationOptions.keyPassword":
|
|
252
|
+
"pastebinUrl": 0,
|
|
253
|
+
"email": 0,
|
|
254
|
+
"generationOptions.keyFileName": 0,
|
|
255
|
+
"generationOptions.keyDeveloperName": 0,
|
|
256
|
+
"generationOptions.keyDeveloperOrganization": 0,
|
|
257
|
+
"generationOptions.keyCountryCode": 0,
|
|
258
|
+
"generationOptions.keyCity": 0,
|
|
259
|
+
"generationOptions.keyAlias": 0,
|
|
260
|
+
"generationOptions.keyPassword": 0
|
|
261
261
|
}
|
|
262
262
|
},
|
|
263
263
|
{
|
|
@@ -275,8 +275,6 @@ export async function updateSchemaAndMoveValue(model: Model<IFlashAppUpdated>):
|
|
|
275
275
|
const updateOperation: UpdateQuery<IFlashAppUpdated> = {
|
|
276
276
|
$set: {
|
|
277
277
|
plugUrl: '$pastebinUrl',
|
|
278
|
-
reservePlugUrl: null,
|
|
279
|
-
policyUrl: null,
|
|
280
278
|
developerName: '$generationOptions.keyDeveloperName',
|
|
281
279
|
developerEmail: '$email',
|
|
282
280
|
developerOrganization: '$generationOptions.keyDeveloperOrganization',
|