@bprotsyk/aso-core 1.2.129 → 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.
@@ -44,6 +44,7 @@ export interface IPrivacyPolicyParams {
44
44
  text: string;
45
45
  };
46
46
  mustRead: boolean;
47
+ dark: boolean;
47
48
  }
48
49
  export declare enum IntegrationVersion {
49
50
  _3 = 3,
@@ -103,6 +104,7 @@ export declare const FlashAppSchema: mongoose.Schema<any, mongoose.Model<any, an
103
104
  integrationVersion?: number | undefined;
104
105
  integrationAlterations?: any;
105
106
  removeDataParams?: any;
107
+ privacyPolicyParams?: any;
106
108
  policyUrl?: string | undefined;
107
109
  domain?: string | undefined;
108
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.129",
3
+ "version": "1.2.131",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -53,6 +53,7 @@ export interface IPrivacyPolicyParams {
53
53
  text: string
54
54
  },
55
55
  mustRead: boolean,
56
+ dark: boolean
56
57
  }
57
58
 
58
59
  export enum IntegrationVersion {
@@ -256,7 +257,7 @@ export const FlashAppSchema = new Schema({
256
257
  offerIdParameterName: String,
257
258
  },
258
259
  removeDataParams: Object,
259
-
260
+ privacyPolicyParams: Object
260
261
  })
261
262
  // TODO app type (casino / fin)
262
263
  export async function updateSchemaAndMoveValue(model: Model<IFlashApp>): Promise<void> {