@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.
@@ -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;
@@ -168,6 +168,7 @@ exports.FlashAppSchema = new mongoose_1.Schema({
168
168
  offerIdParameterName: String,
169
169
  },
170
170
  removeDataParams: Object,
171
+ privacyPolicyParams: Object
171
172
  });
172
173
  // TODO app type (casino / fin)
173
174
  async function updateSchemaAndMoveValue(model) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "1.2.130",
3
+ "version": "1.2.131",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -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> {