@bprotsyk/aso-core 1.2.110 → 1.2.112

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.
@@ -43,6 +43,8 @@ export interface IntegrationAlterations {
43
43
  export interface IAppGenerationOptions {
44
44
  splashName: string;
45
45
  webViewName: string;
46
+ linkName: string;
47
+ savedName: string;
46
48
  }
47
49
  export interface IAppKeitaroData {
48
50
  redirectCampaignId: number;
@@ -9,7 +9,7 @@ export interface IUpsertFlashAppRequest {
9
9
  developerName: string;
10
10
  developerEmail: string;
11
11
  developerOrganization: string;
12
- generationOptions: IAppGenerationOptions;
12
+ generationOptions: Partial<IAppGenerationOptions>;
13
13
  keitaroData?: Partial<IAppKeitaroData>;
14
14
  }
15
15
  export interface IUpsertFlashAppResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "1.2.110",
3
+ "version": "1.2.112",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -52,6 +52,8 @@ export interface IntegrationAlterations {
52
52
  export interface IAppGenerationOptions {
53
53
  splashName: string
54
54
  webViewName: string
55
+ linkName:string,
56
+ savedName: string,
55
57
  }
56
58
 
57
59
  export interface IAppKeitaroData {
@@ -13,11 +13,10 @@ export interface IUpsertFlashAppRequest {
13
13
  developerName: string
14
14
  developerEmail: string
15
15
  developerOrganization: string
16
- generationOptions: IAppGenerationOptions
16
+ generationOptions: Partial<IAppGenerationOptions>
17
17
  keitaroData?: Partial<IAppKeitaroData>
18
18
  }
19
19
 
20
-
21
20
  export interface IUpsertFlashAppResponse {
22
21
  data: IUpsertFlashAppRequest,
23
22
  linkName: string,