@bprotsyk/aso-core 1.2.150 → 1.2.152

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.
@@ -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;
@@ -42,6 +42,7 @@ exports.FlashAppSchema = new mongoose_1.Schema({
42
42
  type: String,
43
43
  default: null
44
44
  },
45
+ webInterfaceName: String,
45
46
  pushesEnabled: Boolean,
46
47
  sourceUrl: String,
47
48
  policyUrl: {
@@ -8,6 +8,7 @@ export interface IUpsertFlashAppRequest {
8
8
  geos: string;
9
9
  onesignalAppId: string;
10
10
  onesignalRestApiKey: string;
11
+ webInterfaceName: string;
11
12
  policyUrl: string;
12
13
  generationOptions: Partial<IAppGenerationOptions>;
13
14
  keitaroData?: Partial<IAppKeitaroData>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "1.2.150",
3
+ "version": "1.2.152",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -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: {
@@ -11,6 +11,7 @@ export interface IUpsertFlashAppRequest {
11
11
 
12
12
  onesignalAppId: string
13
13
  onesignalRestApiKey: string
14
+ webInterfaceName: string,
14
15
 
15
16
  policyUrl: string,
16
17