@bprotsyk/aso-core 2.1.6 → 2.1.7

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/app/app.d.ts CHANGED
@@ -165,6 +165,7 @@ export declare const AppSchema: mongoose.Schema<any, mongoose.Model<any, any, an
165
165
  enabled: boolean;
166
166
  bundle: string;
167
167
  trackingUrl: string;
168
+ integrationVersion: string;
168
169
  geos: string;
169
170
  name?: string | undefined;
170
171
  pushesEnabled?: boolean | undefined;
package/lib/app/app.js CHANGED
@@ -54,6 +54,11 @@ exports.AppSchema = new mongoose_1.Schema({
54
54
  default: null
55
55
  },
56
56
  pushesEnabled: Boolean,
57
+ integrationVersion: {
58
+ type: String,
59
+ enum: IntegrationVersion,
60
+ default: null
61
+ },
57
62
  type: {
58
63
  type: String,
59
64
  enum: app_type_1.AppType,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "2.1.6",
3
+ "version": "2.1.7",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
package/src/app/app.ts CHANGED
@@ -211,7 +211,11 @@ export const AppSchema = new Schema({
211
211
  },
212
212
 
213
213
  pushesEnabled: Boolean,
214
-
214
+ integrationVersion: {
215
+ type: String,
216
+ enum: IntegrationVersion,
217
+ default: null
218
+ },
215
219
  type: {
216
220
  type: String,
217
221
  enum: AppType,