@bprotsyk/aso-core 1.2.105 → 1.2.107

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.
@@ -38,8 +38,7 @@ export declare enum AlternativeOnBackPressed {
38
38
  }
39
39
  export declare enum AlternativeOnActivityResult {
40
40
  OVERRIDE = "Override",
41
- CALLBACK = "Callback",
42
- CALLBACK_FRAGMENT = "Callback in fragment"
41
+ CALLBACK = "Callback"
43
42
  }
44
43
  export interface IFlashIntegration {
45
44
  id: number;
@@ -54,5 +54,4 @@ var AlternativeOnActivityResult;
54
54
  (function (AlternativeOnActivityResult) {
55
55
  AlternativeOnActivityResult["OVERRIDE"] = "Override";
56
56
  AlternativeOnActivityResult["CALLBACK"] = "Callback";
57
- AlternativeOnActivityResult["CALLBACK_FRAGMENT"] = "Callback in fragment";
58
57
  })(AlternativeOnActivityResult = exports.AlternativeOnActivityResult || (exports.AlternativeOnActivityResult = {}));
@@ -46,8 +46,8 @@ export interface IntegrationAlterations {
46
46
  layoutType: AlternativeLayoutType;
47
47
  }
48
48
  export interface IAppGenerationOptions {
49
- splashActivityClassName: string;
50
- webViewClassName: string;
49
+ splashName: string;
50
+ webViewName: string;
51
51
  linkName: string;
52
52
  savedName: string;
53
53
  paranoidSeed: number;
@@ -89,8 +89,8 @@ export declare const FlashAppSchema: mongoose.Schema<any, mongoose.Model<any, an
89
89
  integrationAlterations?: any;
90
90
  policyUrl?: string | undefined;
91
91
  generationOptions?: {
92
- splashActivityClassName: string;
93
- webViewClassName: string;
92
+ splashName: string;
93
+ webViewName: string;
94
94
  linkName: string;
95
95
  savedName: string;
96
96
  paranoidSeed: number;
@@ -79,11 +79,11 @@ exports.FlashAppSchema = new mongoose_1.Schema({
79
79
  integrationVersion: Number,
80
80
  integrationAlterations: Object,
81
81
  generationOptions: {
82
- splashActivityClassName: {
82
+ splashName: {
83
83
  type: String,
84
84
  required: true
85
85
  },
86
- webViewClassName: {
86
+ webViewName: {
87
87
  type: String,
88
88
  required: true
89
89
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "1.2.105",
3
+ "version": "1.2.107",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -50,8 +50,7 @@ export enum AlternativeOnBackPressed {
50
50
 
51
51
  export enum AlternativeOnActivityResult {
52
52
  OVERRIDE = "Override",
53
- CALLBACK = "Callback",
54
- CALLBACK_FRAGMENT = "Callback in fragment"
53
+ CALLBACK = "Callback"
55
54
  }
56
55
 
57
56
  export interface IFlashIntegration {
@@ -55,8 +55,8 @@ export interface IntegrationAlterations {
55
55
  }
56
56
 
57
57
  export interface IAppGenerationOptions {
58
- splashActivityClassName: string
59
- webViewClassName: string
58
+ splashName: string
59
+ webViewName: string
60
60
  linkName: string
61
61
  savedName: string
62
62
  paranoidSeed: number
@@ -147,11 +147,11 @@ export const FlashAppSchema = new Schema({
147
147
  integrationAlterations: Object,
148
148
 
149
149
  generationOptions: {
150
- splashActivityClassName: {
150
+ splashName: {
151
151
  type: String,
152
152
  required: true
153
153
  },
154
- webViewClassName: {
154
+ webViewName: {
155
155
  type: String,
156
156
  required: true
157
157
  },