@bprotsyk/aso-core 1.2.141 → 1.2.142
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
|
@@ -9,6 +9,7 @@ export declare enum FlashAppPlugStatus {
|
|
|
9
9
|
}
|
|
10
10
|
export interface IFlashApp extends Document {
|
|
11
11
|
id: number;
|
|
12
|
+
on: boolean;
|
|
12
13
|
name: string;
|
|
13
14
|
trackingUrl?: string;
|
|
14
15
|
bundle: string;
|
|
@@ -31,7 +32,6 @@ export interface IFlashApp extends Document {
|
|
|
31
32
|
export interface IDomainParams {
|
|
32
33
|
name: string;
|
|
33
34
|
clouflareZone: string;
|
|
34
|
-
enabled: boolean;
|
|
35
35
|
}
|
|
36
36
|
export interface IRemoveDataParams {
|
|
37
37
|
buttonText: string;
|
|
@@ -51,6 +51,7 @@ export interface IPrivacyPolicyParams {
|
|
|
51
51
|
dark: boolean;
|
|
52
52
|
path: string;
|
|
53
53
|
adverisingIdQuery: string;
|
|
54
|
+
redirectFunctionName: string;
|
|
54
55
|
}
|
|
55
56
|
export declare enum IntegrationVersion {
|
|
56
57
|
MVVM = "MVVM",
|
package/package.json
CHANGED
package/src/flash/flash-app.ts
CHANGED
|
@@ -12,6 +12,7 @@ export enum FlashAppPlugStatus {
|
|
|
12
12
|
|
|
13
13
|
export interface IFlashApp extends Document {
|
|
14
14
|
id: number
|
|
15
|
+
on: boolean,
|
|
15
16
|
name: string
|
|
16
17
|
trackingUrl?: string
|
|
17
18
|
bundle: string
|
|
@@ -39,7 +40,6 @@ export interface IFlashApp extends Document {
|
|
|
39
40
|
export interface IDomainParams {
|
|
40
41
|
name: string,
|
|
41
42
|
clouflareZone: string,
|
|
42
|
-
enabled: boolean
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
export interface IRemoveDataParams {
|
|
@@ -63,6 +63,7 @@ export interface IPrivacyPolicyParams {
|
|
|
63
63
|
|
|
64
64
|
path: string,
|
|
65
65
|
adverisingIdQuery: string
|
|
66
|
+
redirectFunctionName: string
|
|
66
67
|
}
|
|
67
68
|
|
|
68
69
|
export enum IntegrationVersion {
|