@bprotsyk/aso-core 1.2.174 → 1.2.176
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
|
@@ -24,6 +24,7 @@ export interface IFlashApp extends Document {
|
|
|
24
24
|
privacyPolicyParams?: IPrivacyPolicyParams;
|
|
25
25
|
offersStubParams?: IOffersStubParams;
|
|
26
26
|
directParams?: IDirectParams;
|
|
27
|
+
bannerParams?: IBannerParams;
|
|
27
28
|
domainParams: IDomainParams;
|
|
28
29
|
developerParams: IDeveloperParams;
|
|
29
30
|
}
|
|
@@ -39,6 +40,12 @@ export interface IDirectParams {
|
|
|
39
40
|
path: string;
|
|
40
41
|
response: string;
|
|
41
42
|
}
|
|
43
|
+
export interface IBannerParams {
|
|
44
|
+
dataPath: string;
|
|
45
|
+
imagePath: string;
|
|
46
|
+
imageParam: string;
|
|
47
|
+
linkParam: string;
|
|
48
|
+
}
|
|
42
49
|
export interface IRemoveDataParams {
|
|
43
50
|
buttonText: string;
|
|
44
51
|
resultText: string;
|
|
@@ -128,6 +135,7 @@ export declare const FlashAppSchema: mongoose.Schema<any, mongoose.Model<any, an
|
|
|
128
135
|
removeDataParams?: any;
|
|
129
136
|
privacyPolicyParams?: any;
|
|
130
137
|
offersStubParams?: any;
|
|
138
|
+
bannerParams?: any;
|
|
131
139
|
directParams?: any;
|
|
132
140
|
policyUrl?: string | undefined;
|
|
133
141
|
linkPath?: string | undefined;
|
package/lib/flash/flash-app.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IAppGenerationOptions, IAppKeitaroData, IDeveloperParams, IDirectParams, IDomainParams, IOffersStubParams, IPrivacyPolicyParams, IRemoveDataParams, IntegrationVersion } from "flash/flash-app";
|
|
1
|
+
import { IAppGenerationOptions, IAppKeitaroData, IBannerParams, IDeveloperParams, IDirectParams, IDomainParams, IOffersStubParams, IPrivacyPolicyParams, IRemoveDataParams, IntegrationVersion } from "flash/flash-app";
|
|
2
2
|
export interface IUpsertFlashAppRequest {
|
|
3
3
|
id: number;
|
|
4
4
|
name: string;
|
|
@@ -16,6 +16,7 @@ export interface IUpsertFlashAppRequest {
|
|
|
16
16
|
removeDataParams?: IRemoveDataParams;
|
|
17
17
|
privacyPolicyParams?: IPrivacyPolicyParams;
|
|
18
18
|
offersStubParams?: IOffersStubParams;
|
|
19
|
+
bannerParams?: IBannerParams;
|
|
19
20
|
developerParams?: IDeveloperParams;
|
|
20
21
|
domainParams: IDomainParams;
|
|
21
22
|
directParams?: IDirectParams;
|
package/package.json
CHANGED
package/src/flash/flash-app.ts
CHANGED
|
@@ -31,6 +31,7 @@ export interface IFlashApp extends Document {
|
|
|
31
31
|
privacyPolicyParams?: IPrivacyPolicyParams
|
|
32
32
|
offersStubParams?: IOffersStubParams
|
|
33
33
|
directParams?: IDirectParams,
|
|
34
|
+
bannerParams?: IBannerParams,
|
|
34
35
|
domainParams: IDomainParams
|
|
35
36
|
developerParams: IDeveloperParams
|
|
36
37
|
}
|
|
@@ -50,6 +51,13 @@ export interface IDirectParams {
|
|
|
50
51
|
response: string,
|
|
51
52
|
}
|
|
52
53
|
|
|
54
|
+
export interface IBannerParams {
|
|
55
|
+
dataPath: string,
|
|
56
|
+
imagePath: string,
|
|
57
|
+
imageParam: string,
|
|
58
|
+
linkParam: string
|
|
59
|
+
}
|
|
60
|
+
|
|
53
61
|
export interface IRemoveDataParams {
|
|
54
62
|
buttonText: string,
|
|
55
63
|
resultText: string,
|
|
@@ -273,6 +281,7 @@ export const FlashAppSchema = new Schema({
|
|
|
273
281
|
removeDataParams: Object,
|
|
274
282
|
privacyPolicyParams: Object,
|
|
275
283
|
offersStubParams: Object,
|
|
284
|
+
bannerParams: Object,
|
|
276
285
|
directParams: Object,
|
|
277
286
|
domainParams: {
|
|
278
287
|
name: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IAppGenerationOptions, IAppKeitaroData, IDeveloperParams, IDirectParams, IDomainParams, IOffersStubParams, IPrivacyPolicyParams, IRemoveDataParams, IntegrationVersion } from "flash/flash-app"
|
|
1
|
+
import { IAppGenerationOptions, IAppKeitaroData, IBannerParams, IDeveloperParams, IDirectParams, IDomainParams, IOffersStubParams, IPrivacyPolicyParams, IRemoveDataParams, IntegrationVersion } from "flash/flash-app"
|
|
2
2
|
import { PlugType } from "index"
|
|
3
3
|
|
|
4
4
|
export interface IUpsertFlashAppRequest {
|
|
@@ -22,6 +22,7 @@ export interface IUpsertFlashAppRequest {
|
|
|
22
22
|
removeDataParams?: IRemoveDataParams,
|
|
23
23
|
privacyPolicyParams?: IPrivacyPolicyParams,
|
|
24
24
|
offersStubParams?: IOffersStubParams,
|
|
25
|
+
bannerParams?: IBannerParams,
|
|
25
26
|
developerParams?: IDeveloperParams,
|
|
26
27
|
domainParams: IDomainParams,
|
|
27
28
|
directParams?: IDirectParams,
|