@bprotsyk/aso-core 1.2.147 → 1.2.149
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
|
@@ -49,7 +49,7 @@ export interface IPrivacyPolicyParams {
|
|
|
49
49
|
mustRead: boolean;
|
|
50
50
|
dark: boolean;
|
|
51
51
|
path: string;
|
|
52
|
-
|
|
52
|
+
advertisingIdQuery: string;
|
|
53
53
|
confirmFunctionName: string;
|
|
54
54
|
redirectFunctionName: string;
|
|
55
55
|
redirect: boolean;
|
|
@@ -100,6 +100,7 @@ export declare enum PlugType {
|
|
|
100
100
|
}
|
|
101
101
|
export declare const FlashAppSchema: mongoose.Schema<any, mongoose.Model<any, any, any, any, any>, {}, {}, {}, {}, mongoose.DefaultSchemaOptions, {
|
|
102
102
|
type: string;
|
|
103
|
+
enabled: boolean;
|
|
103
104
|
id: number;
|
|
104
105
|
bundle: string;
|
|
105
106
|
trackingUrl: string;
|
|
@@ -107,7 +108,6 @@ export declare const FlashAppSchema: mongoose.Schema<any, mongoose.Model<any, an
|
|
|
107
108
|
onesignalAppId: string;
|
|
108
109
|
onesignalRestApiKey: string;
|
|
109
110
|
name?: string | undefined;
|
|
110
|
-
enabled?: boolean | undefined;
|
|
111
111
|
pushesEnabled?: boolean | undefined;
|
|
112
112
|
sourceUrl?: string | undefined;
|
|
113
113
|
integrationVersion?: number | undefined;
|
package/lib/flash/flash-app.js
CHANGED
package/package.json
CHANGED
package/src/flash/flash-app.ts
CHANGED
|
@@ -61,7 +61,7 @@ export interface IPrivacyPolicyParams {
|
|
|
61
61
|
dark: boolean,
|
|
62
62
|
|
|
63
63
|
path: string,
|
|
64
|
-
|
|
64
|
+
advertisingIdQuery: string
|
|
65
65
|
confirmFunctionName: string,
|
|
66
66
|
redirectFunctionName: string,
|
|
67
67
|
|
|
@@ -125,7 +125,11 @@ export const FlashAppSchema = new Schema({
|
|
|
125
125
|
unique: true,
|
|
126
126
|
required: true
|
|
127
127
|
},
|
|
128
|
-
enabled:
|
|
128
|
+
enabled: {
|
|
129
|
+
type: Boolean,
|
|
130
|
+
required: true,
|
|
131
|
+
default: false
|
|
132
|
+
},
|
|
129
133
|
bundle: {
|
|
130
134
|
type: String,
|
|
131
135
|
unique: true,
|