@bprotsyk/aso-core 1.2.148 → 1.2.150
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 +1 -1
- package/lib/flash/flash-app.js +5 -1
- package/lib/panel/flash/create-flash-app-request.d.ts +2 -0
- package/lib/utils/keitaro-utils.js +2 -2
- package/package.json +1 -1
- package/src/flash/flash-app.ts +5 -1
- package/src/panel/flash/create-flash-app-request.ts +2 -0
- package/src/utils/keitaro-utils.ts +2 -2
package/lib/flash/flash-app.d.ts
CHANGED
|
@@ -100,6 +100,7 @@ export declare enum PlugType {
|
|
|
100
100
|
}
|
|
101
101
|
export declare const FlashAppSchema: mongoose.Schema<any, mongoose.Model<any, any, any, any, any>, {}, {}, {}, {}, mongoose.DefaultSchemaOptions, {
|
|
102
102
|
type: string;
|
|
103
|
+
enabled: boolean;
|
|
103
104
|
id: number;
|
|
104
105
|
bundle: string;
|
|
105
106
|
trackingUrl: string;
|
|
@@ -107,7 +108,6 @@ export declare const FlashAppSchema: mongoose.Schema<any, mongoose.Model<any, an
|
|
|
107
108
|
onesignalAppId: string;
|
|
108
109
|
onesignalRestApiKey: string;
|
|
109
110
|
name?: string | undefined;
|
|
110
|
-
enabled?: boolean | undefined;
|
|
111
111
|
pushesEnabled?: boolean | undefined;
|
|
112
112
|
sourceUrl?: string | undefined;
|
|
113
113
|
integrationVersion?: number | undefined;
|
package/lib/flash/flash-app.js
CHANGED
|
@@ -290,7 +290,7 @@ function createBPStreamPartialPayload(app) {
|
|
|
290
290
|
filters: [{
|
|
291
291
|
name: "country",
|
|
292
292
|
mode: "reject",
|
|
293
|
-
payload: app.geos.split("
|
|
293
|
+
payload: app.geos.split(" ")
|
|
294
294
|
}, {
|
|
295
295
|
name: "bot",
|
|
296
296
|
mode: "accept",
|
|
@@ -311,7 +311,7 @@ function createOWStreamPartialPayload(app) {
|
|
|
311
311
|
filters: [{
|
|
312
312
|
name: "country",
|
|
313
313
|
mode: "accept",
|
|
314
|
-
payload: app.geos.split("
|
|
314
|
+
payload: app.geos.split(" ")
|
|
315
315
|
}],
|
|
316
316
|
};
|
|
317
317
|
}
|
package/package.json
CHANGED
package/src/flash/flash-app.ts
CHANGED
|
@@ -315,7 +315,7 @@ function createBPStreamPartialPayload(app: IFlashApp): Partial<IKeitaroStream> {
|
|
|
315
315
|
filters: [{
|
|
316
316
|
name: "country",
|
|
317
317
|
mode: "reject",
|
|
318
|
-
payload: app.geos.split("
|
|
318
|
+
payload: app.geos.split(" ")
|
|
319
319
|
}, {
|
|
320
320
|
name: "bot",
|
|
321
321
|
mode: "accept",
|
|
@@ -337,7 +337,7 @@ export function createOWStreamPartialPayload(app: IFlashApp): Partial<IKeitaroSt
|
|
|
337
337
|
filters: [{
|
|
338
338
|
name: "country",
|
|
339
339
|
mode: "accept",
|
|
340
|
-
payload: app.geos.split("
|
|
340
|
+
payload: app.geos.split(" ")
|
|
341
341
|
}],
|
|
342
342
|
}
|
|
343
343
|
}
|