@bprotsyk/aso-core 1.2.156 → 1.2.158
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
|
@@ -32,8 +32,8 @@ export interface IFlashApp extends Document {
|
|
|
32
32
|
developerParams: IDeveloperParams;
|
|
33
33
|
}
|
|
34
34
|
export interface IOffersStubParams {
|
|
35
|
-
|
|
36
|
-
|
|
35
|
+
offersPath: string;
|
|
36
|
+
imagesPath: string;
|
|
37
37
|
}
|
|
38
38
|
export interface IDomainParams {
|
|
39
39
|
name: string;
|
|
@@ -116,11 +116,11 @@ export declare const FlashAppSchema: mongoose.Schema<any, mongoose.Model<any, an
|
|
|
116
116
|
geos: string;
|
|
117
117
|
onesignalAppId: string;
|
|
118
118
|
onesignalRestApiKey: string;
|
|
119
|
+
integrationVersion: string;
|
|
119
120
|
name?: string | undefined;
|
|
120
121
|
webInterfaceName?: string | undefined;
|
|
121
122
|
pushesEnabled?: boolean | undefined;
|
|
122
123
|
sourceUrl?: string | undefined;
|
|
123
|
-
integrationVersion?: number | undefined;
|
|
124
124
|
integrationAlterations?: any;
|
|
125
125
|
removeDataParams?: any;
|
|
126
126
|
privacyPolicyParams?: any;
|
package/lib/flash/flash-app.js
CHANGED
|
@@ -71,7 +71,11 @@ exports.FlashAppSchema = new mongoose_1.Schema({
|
|
|
71
71
|
linkPath: {
|
|
72
72
|
type: String
|
|
73
73
|
},
|
|
74
|
-
integrationVersion:
|
|
74
|
+
integrationVersion: {
|
|
75
|
+
type: String,
|
|
76
|
+
default: IntegrationVersion.MVVM,
|
|
77
|
+
enum: IntegrationVersion
|
|
78
|
+
},
|
|
75
79
|
integrationAlterations: Object,
|
|
76
80
|
generationOptions: {
|
|
77
81
|
splashName: {
|
package/package.json
CHANGED
package/src/flash/flash-app.ts
CHANGED
|
@@ -41,8 +41,8 @@ export interface IFlashApp extends Document {
|
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
export interface IOffersStubParams {
|
|
44
|
-
|
|
45
|
-
|
|
44
|
+
offersPath: string,
|
|
45
|
+
imagesPath: string
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
export interface IDomainParams {
|
|
@@ -184,7 +184,11 @@ export const FlashAppSchema = new Schema({
|
|
|
184
184
|
type: String
|
|
185
185
|
},
|
|
186
186
|
|
|
187
|
-
integrationVersion:
|
|
187
|
+
integrationVersion: {
|
|
188
|
+
type: String,
|
|
189
|
+
default: IntegrationVersion.MVVM,
|
|
190
|
+
enum: IntegrationVersion
|
|
191
|
+
},
|
|
188
192
|
integrationAlterations: Object,
|
|
189
193
|
|
|
190
194
|
generationOptions: {
|