@bprotsyk/aso-core 1.2.146 → 1.2.148

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.
@@ -9,7 +9,7 @@ export declare enum FlashAppPlugStatus {
9
9
  }
10
10
  export interface IFlashApp extends Document {
11
11
  id: number;
12
- on: boolean;
12
+ enabled: boolean;
13
13
  name: string;
14
14
  trackingUrl?: string;
15
15
  bundle: string;
@@ -49,7 +49,7 @@ export interface IPrivacyPolicyParams {
49
49
  mustRead: boolean;
50
50
  dark: boolean;
51
51
  path: string;
52
- adverisingIdQuery: string;
52
+ advertisingIdQuery: string;
53
53
  confirmFunctionName: string;
54
54
  redirectFunctionName: string;
55
55
  redirect: boolean;
@@ -107,7 +107,7 @@ export declare const FlashAppSchema: mongoose.Schema<any, mongoose.Model<any, an
107
107
  onesignalAppId: string;
108
108
  onesignalRestApiKey: string;
109
109
  name?: string | undefined;
110
- on?: boolean | undefined;
110
+ enabled?: boolean | undefined;
111
111
  pushesEnabled?: boolean | undefined;
112
112
  sourceUrl?: string | undefined;
113
113
  integrationVersion?: number | undefined;
@@ -27,7 +27,7 @@ exports.FlashAppSchema = new mongoose_1.Schema({
27
27
  unique: true,
28
28
  required: true
29
29
  },
30
- on: Boolean,
30
+ enabled: Boolean,
31
31
  bundle: {
32
32
  type: String,
33
33
  unique: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "1.2.146",
3
+ "version": "1.2.148",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -12,7 +12,7 @@ export enum FlashAppPlugStatus {
12
12
 
13
13
  export interface IFlashApp extends Document {
14
14
  id: number
15
- on: boolean,
15
+ enabled: boolean,
16
16
  name: string
17
17
  trackingUrl?: string
18
18
  bundle: string
@@ -61,7 +61,7 @@ export interface IPrivacyPolicyParams {
61
61
  dark: boolean,
62
62
 
63
63
  path: string,
64
- adverisingIdQuery: string
64
+ advertisingIdQuery: string
65
65
  confirmFunctionName: string,
66
66
  redirectFunctionName: string,
67
67
 
@@ -125,7 +125,7 @@ export const FlashAppSchema = new Schema({
125
125
  unique: true,
126
126
  required: true
127
127
  },
128
- on: Boolean,
128
+ enabled: Boolean,
129
129
  bundle: {
130
130
  type: String,
131
131
  unique: true,