@bprotsyk/aso-core 1.2.173 → 1.2.175
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,10 @@ export interface IDirectParams {
|
|
|
39
40
|
path: string;
|
|
40
41
|
response: string;
|
|
41
42
|
}
|
|
43
|
+
export interface IBannerParams {
|
|
44
|
+
dataPath: string;
|
|
45
|
+
imagePath: string;
|
|
46
|
+
}
|
|
42
47
|
export interface IRemoveDataParams {
|
|
43
48
|
buttonText: string;
|
|
44
49
|
resultText: string;
|
|
@@ -128,6 +133,7 @@ export declare const FlashAppSchema: mongoose.Schema<any, mongoose.Model<any, an
|
|
|
128
133
|
removeDataParams?: any;
|
|
129
134
|
privacyPolicyParams?: any;
|
|
130
135
|
offersStubParams?: any;
|
|
136
|
+
bannerParams?: any;
|
|
131
137
|
directParams?: any;
|
|
132
138
|
policyUrl?: string | undefined;
|
|
133
139
|
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,11 @@ export interface IDirectParams {
|
|
|
50
51
|
response: string,
|
|
51
52
|
}
|
|
52
53
|
|
|
54
|
+
export interface IBannerParams {
|
|
55
|
+
dataPath: string,
|
|
56
|
+
imagePath: string
|
|
57
|
+
}
|
|
58
|
+
|
|
53
59
|
export interface IRemoveDataParams {
|
|
54
60
|
buttonText: string,
|
|
55
61
|
resultText: string,
|
|
@@ -273,6 +279,7 @@ export const FlashAppSchema = new Schema({
|
|
|
273
279
|
removeDataParams: Object,
|
|
274
280
|
privacyPolicyParams: Object,
|
|
275
281
|
offersStubParams: Object,
|
|
282
|
+
bannerParams: Object,
|
|
276
283
|
directParams: Object,
|
|
277
284
|
domainParams: {
|
|
278
285
|
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,
|