@bprotsyk/aso-core 1.2.7 → 1.2.8

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.
@@ -84,6 +84,6 @@ exports.FlashAppSchema = new mongoose_1.Schema({
84
84
  keyPassword: {
85
85
  type: String,
86
86
  required: true
87
- }
87
+ },
88
88
  }
89
89
  });
@@ -16,4 +16,7 @@ export interface IUpsertFlashAppRequest {
16
16
  keyCity: string;
17
17
  keyAlias: string;
18
18
  keyPassword: string;
19
+ email?: string;
20
+ trackingUrl?: string;
21
+ pushesEnabled?: boolean;
19
22
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "1.2.7",
3
+ "version": "1.2.8",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -119,7 +119,7 @@ export const FlashAppSchema = new Schema({
119
119
  keyPassword: {
120
120
  type: String,
121
121
  required: true
122
- }
122
+ },
123
123
  }
124
124
  })
125
125
 
@@ -18,5 +18,9 @@ export interface IUpsertFlashAppRequest {
18
18
  keyCity: string
19
19
  keyAlias: string
20
20
  keyPassword: string,
21
+
22
+ email?: string,
23
+ trackingUrl?: string
24
+ pushesEnabled?: boolean
21
25
  }
22
26