@bprotsyk/aso-core 1.2.86 → 1.2.88

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.
@@ -62,8 +62,8 @@ exports.FlashAppSchema = new mongoose_1.Schema({
62
62
  },
63
63
  reservePlugType: {
64
64
  type: String,
65
- enum: FlashAppPlugStatus,
66
- default: FlashAppPlugStatus.DISABLED,
65
+ enum: PlugType,
66
+ default: PlugType.PASTEBIN,
67
67
  required: false
68
68
  },
69
69
  reservePlugContent: {
@@ -3,6 +3,7 @@ export interface IUpsertFlashAppRequest {
3
3
  name: string;
4
4
  bundle: string;
5
5
  plugContent?: string;
6
+ plugId?: string;
6
7
  plugAccountId: number;
7
8
  onesignalAppId: string;
8
9
  onesignalRestApiKey: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "1.2.86",
3
+ "version": "1.2.88",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -116,8 +116,8 @@ export const FlashAppSchema = new Schema({
116
116
  },
117
117
  reservePlugType: {
118
118
  type: String,
119
- enum: FlashAppPlugStatus,
120
- default: FlashAppPlugStatus.DISABLED,
119
+ enum: PlugType,
120
+ default: PlugType.PASTEBIN,
121
121
  required: false
122
122
  },
123
123
  reservePlugContent: {
@@ -5,6 +5,7 @@ export interface IUpsertFlashAppRequest {
5
5
  name: string
6
6
  bundle: string
7
7
  plugContent?: string,
8
+ plugId?: string,
8
9
  plugAccountId: number,
9
10
 
10
11
  onesignalAppId: string