@bprotsyk/aso-core 1.2.150 → 1.2.151
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
|
@@ -20,6 +20,7 @@ export interface IFlashApp extends Document {
|
|
|
20
20
|
geos: string;
|
|
21
21
|
onesignalAppId: string;
|
|
22
22
|
onesignalRestApiKey: string;
|
|
23
|
+
webInterfaceName: string;
|
|
23
24
|
generationOptions: IAppGenerationOptions;
|
|
24
25
|
keitaroData: IAppKeitaroData | null;
|
|
25
26
|
integrationVersion: IntegrationVersion;
|
|
@@ -108,6 +109,7 @@ export declare const FlashAppSchema: mongoose.Schema<any, mongoose.Model<any, an
|
|
|
108
109
|
onesignalAppId: string;
|
|
109
110
|
onesignalRestApiKey: string;
|
|
110
111
|
name?: string | undefined;
|
|
112
|
+
webInterfaceName?: string | undefined;
|
|
111
113
|
pushesEnabled?: boolean | undefined;
|
|
112
114
|
sourceUrl?: string | undefined;
|
|
113
115
|
integrationVersion?: number | undefined;
|
package/lib/flash/flash-app.js
CHANGED
package/package.json
CHANGED
package/src/flash/flash-app.ts
CHANGED
|
@@ -26,6 +26,8 @@ export interface IFlashApp extends Document {
|
|
|
26
26
|
onesignalAppId: string
|
|
27
27
|
onesignalRestApiKey: string
|
|
28
28
|
|
|
29
|
+
webInterfaceName: string
|
|
30
|
+
|
|
29
31
|
generationOptions: IAppGenerationOptions
|
|
30
32
|
keitaroData: IAppKeitaroData | null
|
|
31
33
|
integrationVersion: IntegrationVersion
|
|
@@ -141,6 +143,7 @@ export const FlashAppSchema = new Schema({
|
|
|
141
143
|
default: null
|
|
142
144
|
},
|
|
143
145
|
|
|
146
|
+
webInterfaceName: String,
|
|
144
147
|
pushesEnabled: Boolean,
|
|
145
148
|
sourceUrl: String,
|
|
146
149
|
policyUrl: {
|