@bprotsyk/aso-core 1.1.22 → 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;
@@ -38,7 +39,6 @@ export interface IFlashApp {
38
39
  export interface IAppGenerationOptions {
39
40
  splashActivityClassName: string;
40
41
  mainActivityClassName: string;
41
- filePickerTitle: string;
42
42
  linkName: string;
43
43
  savedName: string;
44
44
  paranoidSeed: number;
@@ -56,6 +56,7 @@ export declare const FlashAppSchema: Schema<any, Model<any, any, any, any, any>,
56
56
  enabled: boolean;
57
57
  id?: number | undefined;
58
58
  version?: number | undefined;
59
+ trackingUrl?: string | undefined;
59
60
  onesignalAppId?: string | undefined;
60
61
  onesignalRestApiKey?: string | undefined;
61
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.22",
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,
@@ -20,7 +21,6 @@ export interface IFlashApp {
20
21
  export interface IAppGenerationOptions {
21
22
  splashActivityClassName: string
22
23
  mainActivityClassName: string
23
- filePickerTitle: string
24
24
  linkName: string,
25
25
  savedName: string
26
26
 
@@ -50,6 +50,7 @@ export const FlashAppSchema = new Schema({
50
50
  type: String,
51
51
  default: ""
52
52
  },
53
+ trackingUrl: String,
53
54
  email: {
54
55
  type: String,
55
56
  default: ""