@bprotsyk/aso-core 1.2.106 → 1.2.108
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
|
@@ -46,8 +46,8 @@ export interface IntegrationAlterations {
|
|
|
46
46
|
layoutType: AlternativeLayoutType;
|
|
47
47
|
}
|
|
48
48
|
export interface IAppGenerationOptions {
|
|
49
|
-
|
|
50
|
-
|
|
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
|
-
|
|
93
|
-
|
|
92
|
+
splashName: string;
|
|
93
|
+
webViewName: string;
|
|
94
94
|
linkName: string;
|
|
95
95
|
savedName: string;
|
|
96
96
|
paranoidSeed: number;
|
package/lib/flash/flash-app.js
CHANGED
|
@@ -79,11 +79,11 @@ exports.FlashAppSchema = new mongoose_1.Schema({
|
|
|
79
79
|
integrationVersion: Number,
|
|
80
80
|
integrationAlterations: Object,
|
|
81
81
|
generationOptions: {
|
|
82
|
-
|
|
82
|
+
splashName: {
|
|
83
83
|
type: String,
|
|
84
84
|
required: true
|
|
85
85
|
},
|
|
86
|
-
|
|
86
|
+
webViewName: {
|
|
87
87
|
type: String,
|
|
88
88
|
required: true
|
|
89
89
|
},
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IAppKeitaroData } from "flash/flash-app";
|
|
1
|
+
import { IAppGenerationOptions, IAppKeitaroData } from "flash/flash-app";
|
|
2
2
|
export interface IUpsertFlashAppRequest {
|
|
3
3
|
id: number;
|
|
4
4
|
name: string;
|
|
@@ -12,13 +12,6 @@ export interface IUpsertFlashAppRequest {
|
|
|
12
12
|
generationOptions: IAppGenerationOptions;
|
|
13
13
|
keitaroData?: Partial<IAppKeitaroData>;
|
|
14
14
|
}
|
|
15
|
-
export interface IAppGenerationOptions {
|
|
16
|
-
splashActivityClassName: string;
|
|
17
|
-
mainActivityClassName: string;
|
|
18
|
-
linkName: string;
|
|
19
|
-
savedName: string;
|
|
20
|
-
paranoidSeed: number;
|
|
21
|
-
}
|
|
22
15
|
export interface IUpsertFlashAppResponse {
|
|
23
16
|
data: IUpsertFlashAppRequest;
|
|
24
17
|
archive: string;
|
package/package.json
CHANGED
package/src/flash/flash-app.ts
CHANGED
|
@@ -55,8 +55,8 @@ export interface IntegrationAlterations {
|
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
export interface IAppGenerationOptions {
|
|
58
|
-
|
|
59
|
-
|
|
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
|
-
|
|
150
|
+
splashName: {
|
|
151
151
|
type: String,
|
|
152
152
|
required: true
|
|
153
153
|
},
|
|
154
|
-
|
|
154
|
+
webViewName: {
|
|
155
155
|
type: String,
|
|
156
156
|
required: true
|
|
157
157
|
},
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IAppKeitaroData } from "flash/flash-app"
|
|
1
|
+
import { IAppGenerationOptions, IAppKeitaroData } from "flash/flash-app"
|
|
2
2
|
import { PlugType } from "index"
|
|
3
3
|
|
|
4
4
|
export interface IUpsertFlashAppRequest {
|
|
@@ -17,13 +17,6 @@ export interface IUpsertFlashAppRequest {
|
|
|
17
17
|
keitaroData?: Partial<IAppKeitaroData>
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
-
export interface IAppGenerationOptions {
|
|
21
|
-
splashActivityClassName: string
|
|
22
|
-
mainActivityClassName: string
|
|
23
|
-
linkName: string
|
|
24
|
-
savedName: string
|
|
25
|
-
paranoidSeed: number
|
|
26
|
-
}
|
|
27
20
|
|
|
28
21
|
export interface IUpsertFlashAppResponse {
|
|
29
22
|
data: IUpsertFlashAppRequest,
|