@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.
package/lib/flash/flash-app.d.ts
CHANGED
|
@@ -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;
|
package/lib/flash/flash-app.js
CHANGED
package/package.json
CHANGED
package/src/flash/flash-app.ts
CHANGED
|
@@ -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> {
|