@bprotsyk/aso-core 1.2.107 → 1.2.109

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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "1.2.107",
3
+ "version": "1.2.109",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -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,