@bprotsyk/aso-core 1.1.23 → 1.1.24

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.
@@ -26,6 +26,7 @@ import { Model, Schema } from "mongoose";
26
26
  export interface IFlashApp {
27
27
  id: number;
28
28
  name: string;
29
+ trackingUrl: string;
29
30
  email: string;
30
31
  bundle: string;
31
32
  pushesEnabled?: boolean;
@@ -55,6 +56,7 @@ export declare const FlashAppSchema: Schema<any, Model<any, any, any, any, any>,
55
56
  enabled: boolean;
56
57
  id?: number | undefined;
57
58
  version?: number | undefined;
59
+ trackingUrl?: string | undefined;
58
60
  onesignalAppId?: string | undefined;
59
61
  onesignalRestApiKey?: string | undefined;
60
62
  appsflyerEnabled?: boolean | undefined;
@@ -11,6 +11,7 @@ exports.FlashAppSchema = new mongoose_1.Schema({
11
11
  type: String,
12
12
  default: ""
13
13
  },
14
+ trackingUrl: String,
14
15
  email: {
15
16
  type: String,
16
17
  default: ""
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "1.1.23",
3
+ "version": "1.1.24",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -5,6 +5,7 @@ import { Model, model, Schema } from "mongoose";
5
5
  export interface IFlashApp {
6
6
  id: number
7
7
  name: string
8
+ trackingUrl: string
8
9
  email: string
9
10
  bundle: string
10
11
  pushesEnabled?: boolean,
@@ -49,6 +50,7 @@ export const FlashAppSchema = new Schema({
49
50
  type: String,
50
51
  default: ""
51
52
  },
53
+ trackingUrl: String,
52
54
  email: {
53
55
  type: String,
54
56
  default: ""