@bprotsyk/aso-core 1.2.109 → 1.2.110

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.
@@ -13,11 +13,6 @@ export interface IFlashApp extends Document {
13
13
  bundle: string;
14
14
  pushesEnabled?: boolean;
15
15
  sourceUrl?: string;
16
- reservePlugId?: string;
17
- reservePlugType?: PlugType;
18
- reservePlugContent?: string;
19
- reservePlugStatus?: FlashAppPlugStatus;
20
- reservePlugAccountId?: number;
21
16
  policyUrl?: string;
22
17
  type: FlashAppType;
23
18
  geos: string;
@@ -48,9 +43,6 @@ export interface IntegrationAlterations {
48
43
  export interface IAppGenerationOptions {
49
44
  splashName: string;
50
45
  webViewName: string;
51
- linkName: string;
52
- savedName: string;
53
- paranoidSeed: number;
54
46
  }
55
47
  export interface IAppKeitaroData {
56
48
  redirectCampaignId: number;
@@ -14,5 +14,6 @@ export interface IUpsertFlashAppRequest {
14
14
  }
15
15
  export interface IUpsertFlashAppResponse {
16
16
  data: IUpsertFlashAppRequest;
17
+ linkName: string;
17
18
  archive: string;
18
19
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "1.2.109",
3
+ "version": "1.2.110",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -17,11 +17,6 @@ export interface IFlashApp extends Document {
17
17
 
18
18
  pushesEnabled?: boolean
19
19
  sourceUrl?: string,
20
- reservePlugId?: string
21
- reservePlugType?: PlugType
22
- reservePlugContent?: string
23
- reservePlugStatus?: FlashAppPlugStatus
24
- reservePlugAccountId?: number
25
20
  policyUrl?: string
26
21
  type: FlashAppType,
27
22
  geos: string,
@@ -57,9 +52,6 @@ export interface IntegrationAlterations {
57
52
  export interface IAppGenerationOptions {
58
53
  splashName: string
59
54
  webViewName: string
60
- linkName: string
61
- savedName: string
62
- paranoidSeed: number
63
55
  }
64
56
 
65
57
  export interface IAppKeitaroData {
@@ -20,6 +20,7 @@ export interface IUpsertFlashAppRequest {
20
20
 
21
21
  export interface IUpsertFlashAppResponse {
22
22
  data: IUpsertFlashAppRequest,
23
+ linkName: string,
23
24
  archive: string
24
25
  }
25
26