@bprotsyk/aso-core 1.2.145 → 1.2.147
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/flash/flash-app.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export declare enum FlashAppPlugStatus {
|
|
|
9
9
|
}
|
|
10
10
|
export interface IFlashApp extends Document {
|
|
11
11
|
id: number;
|
|
12
|
-
|
|
12
|
+
enabled: boolean;
|
|
13
13
|
name: string;
|
|
14
14
|
trackingUrl?: string;
|
|
15
15
|
bundle: string;
|
|
@@ -107,6 +107,7 @@ export declare const FlashAppSchema: mongoose.Schema<any, mongoose.Model<any, an
|
|
|
107
107
|
onesignalAppId: string;
|
|
108
108
|
onesignalRestApiKey: string;
|
|
109
109
|
name?: string | undefined;
|
|
110
|
+
enabled?: boolean | undefined;
|
|
110
111
|
pushesEnabled?: boolean | undefined;
|
|
111
112
|
sourceUrl?: string | undefined;
|
|
112
113
|
integrationVersion?: number | undefined;
|
package/lib/flash/flash-app.js
CHANGED
package/package.json
CHANGED
package/src/flash/flash-app.ts
CHANGED
|
@@ -12,7 +12,7 @@ export enum FlashAppPlugStatus {
|
|
|
12
12
|
|
|
13
13
|
export interface IFlashApp extends Document {
|
|
14
14
|
id: number
|
|
15
|
-
|
|
15
|
+
enabled: boolean,
|
|
16
16
|
name: string
|
|
17
17
|
trackingUrl?: string
|
|
18
18
|
bundle: string
|
|
@@ -125,6 +125,7 @@ export const FlashAppSchema = new Schema({
|
|
|
125
125
|
unique: true,
|
|
126
126
|
required: true
|
|
127
127
|
},
|
|
128
|
+
enabled: Boolean,
|
|
128
129
|
bundle: {
|
|
129
130
|
type: String,
|
|
130
131
|
unique: true,
|