@bprotsyk/aso-core 1.2.130 → 1.2.131
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.d.ts
CHANGED
|
@@ -104,6 +104,7 @@ export declare const FlashAppSchema: mongoose.Schema<any, mongoose.Model<any, an
|
|
|
104
104
|
integrationVersion?: number | undefined;
|
|
105
105
|
integrationAlterations?: any;
|
|
106
106
|
removeDataParams?: any;
|
|
107
|
+
privacyPolicyParams?: any;
|
|
107
108
|
policyUrl?: string | undefined;
|
|
108
109
|
domain?: string | undefined;
|
|
109
110
|
linkPath?: string | undefined;
|
package/lib/flash/flash-app.js
CHANGED
package/package.json
CHANGED
package/src/flash/flash-app.ts
CHANGED
|
@@ -257,7 +257,7 @@ export const FlashAppSchema = new Schema({
|
|
|
257
257
|
offerIdParameterName: String,
|
|
258
258
|
},
|
|
259
259
|
removeDataParams: Object,
|
|
260
|
-
|
|
260
|
+
privacyPolicyParams: Object
|
|
261
261
|
})
|
|
262
262
|
// TODO app type (casino / fin)
|
|
263
263
|
export async function updateSchemaAndMoveValue(model: Model<IFlashApp>): Promise<void> {
|