@bprotsyk/aso-core 1.2.130 → 1.2.132

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.
@@ -36,6 +36,7 @@ export interface IRemoveDataParams {
36
36
  resultText: string;
37
37
  errorText: string;
38
38
  inputHint: string;
39
+ dark: boolean;
39
40
  }
40
41
  export interface IPrivacyPolicyParams {
41
42
  callbackMethodName: string;
@@ -104,6 +105,7 @@ export declare const FlashAppSchema: mongoose.Schema<any, mongoose.Model<any, an
104
105
  integrationVersion?: number | undefined;
105
106
  integrationAlterations?: any;
106
107
  removeDataParams?: any;
108
+ privacyPolicyParams?: any;
107
109
  policyUrl?: string | undefined;
108
110
  domain?: string | undefined;
109
111
  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.132",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -44,6 +44,7 @@ export interface IRemoveDataParams {
44
44
  resultText: string,
45
45
  errorText: string,
46
46
  inputHint: string,
47
+ dark: boolean
47
48
  }
48
49
 
49
50
  export interface IPrivacyPolicyParams {
@@ -257,7 +258,7 @@ export const FlashAppSchema = new Schema({
257
258
  offerIdParameterName: String,
258
259
  },
259
260
  removeDataParams: Object,
260
-
261
+ privacyPolicyParams: Object
261
262
  })
262
263
  // TODO app type (casino / fin)
263
264
  export async function updateSchemaAndMoveValue(model: Model<IFlashApp>): Promise<void> {