@bprotsyk/aso-core 1.2.145 → 1.2.146

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.
@@ -107,6 +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
111
  pushesEnabled?: boolean | undefined;
111
112
  sourceUrl?: string | undefined;
112
113
  integrationVersion?: number | undefined;
@@ -27,6 +27,7 @@ exports.FlashAppSchema = new mongoose_1.Schema({
27
27
  unique: true,
28
28
  required: true
29
29
  },
30
+ on: Boolean,
30
31
  bundle: {
31
32
  type: String,
32
33
  unique: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "1.2.145",
3
+ "version": "1.2.146",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -125,6 +125,7 @@ export const FlashAppSchema = new Schema({
125
125
  unique: true,
126
126
  required: true
127
127
  },
128
+ on: Boolean,
128
129
  bundle: {
129
130
  type: String,
130
131
  unique: true,