@bprotsyk/aso-core 1.2.143 → 1.2.144

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.
@@ -52,6 +52,7 @@ export interface IPrivacyPolicyParams {
52
52
  adverisingIdQuery: string;
53
53
  confirmFunctionName: string;
54
54
  redirectFunctionName: string;
55
+ redirect: boolean;
55
56
  }
56
57
  export declare enum IntegrationVersion {
57
58
  MVVM = "MVVM",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "1.2.143",
3
+ "version": "1.2.144",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -26,12 +26,12 @@ export interface IFlashApp extends Document {
26
26
  onesignalAppId: string
27
27
  onesignalRestApiKey: string
28
28
 
29
- generationOptions: IAppGenerationOptions,
30
- keitaroData: IAppKeitaroData | null,
29
+ generationOptions: IAppGenerationOptions
30
+ keitaroData: IAppKeitaroData | null
31
31
  integrationVersion: IntegrationVersion
32
- integrationAlterations?: IntegrationAlterations,
32
+ integrationAlterations?: IntegrationAlterations
33
33
 
34
- removeDataParams?: IRemoveDataParams,
34
+ removeDataParams?: IRemoveDataParams
35
35
  privacyPolicyParams?: IPrivacyPolicyParams
36
36
  domainParams: IDomainParams
37
37
  developerParams: IDeveloperParams
@@ -63,7 +63,9 @@ export interface IPrivacyPolicyParams {
63
63
  path: string,
64
64
  adverisingIdQuery: string
65
65
  confirmFunctionName: string,
66
- redirectFunctionName: string
66
+ redirectFunctionName: string,
67
+
68
+ redirect: boolean
67
69
  }
68
70
 
69
71
  export enum IntegrationVersion {