@bprotsyk/aso-core 1.2.139 → 1.2.140

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.
@@ -19,7 +19,6 @@ export interface IFlashApp extends Document {
19
19
  geos: string;
20
20
  onesignalAppId: string;
21
21
  onesignalRestApiKey: string;
22
- linkPath: string;
23
22
  generationOptions: IAppGenerationOptions;
24
23
  keitaroData: IAppKeitaroData | null;
25
24
  integrationVersion: IntegrationVersion;
@@ -40,6 +39,7 @@ export interface IRemoveDataParams {
40
39
  errorText: string;
41
40
  inputHint: string;
42
41
  dark: boolean;
42
+ path: string;
43
43
  }
44
44
  export interface IPrivacyPolicyParams {
45
45
  callbackMethodName: string;
@@ -49,6 +49,8 @@ export interface IPrivacyPolicyParams {
49
49
  };
50
50
  mustRead: boolean;
51
51
  dark: boolean;
52
+ path: string;
53
+ adverisingIdQuery: string;
52
54
  }
53
55
  export declare enum IntegrationVersion {
54
56
  MVVM = "MVVM",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "1.2.139",
3
+ "version": "1.2.140",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -25,8 +25,6 @@ export interface IFlashApp extends Document {
25
25
  onesignalAppId: string
26
26
  onesignalRestApiKey: string
27
27
 
28
- linkPath: string,
29
-
30
28
  generationOptions: IAppGenerationOptions,
31
29
  keitaroData: IAppKeitaroData | null,
32
30
  integrationVersion: IntegrationVersion
@@ -49,7 +47,9 @@ export interface IRemoveDataParams {
49
47
  resultText: string,
50
48
  errorText: string,
51
49
  inputHint: string,
52
- dark: boolean
50
+ dark: boolean,
51
+
52
+ path: string
53
53
  }
54
54
 
55
55
  export interface IPrivacyPolicyParams {
@@ -59,7 +59,10 @@ export interface IPrivacyPolicyParams {
59
59
  text: string
60
60
  },
61
61
  mustRead: boolean,
62
- dark: boolean
62
+ dark: boolean,
63
+
64
+ path: string,
65
+ adverisingIdQuery: string
63
66
  }
64
67
 
65
68
  export enum IntegrationVersion {