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