@bprotsyk/aso-core 2.1.23 → 2.1.24

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.
@@ -21,6 +21,7 @@ export interface IUpsertAppRequest {
21
21
  };
22
22
  proxied: boolean;
23
23
  imageFormat?: EImageFormat;
24
+ file?: any;
24
25
  }
25
26
  export interface IUpsertAppResponse {
26
27
  data: IUpsertAppRequest;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "2.1.23",
3
+ "version": "2.1.24",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -26,7 +26,8 @@ export interface IUpsertAppRequest {
26
26
  externalParams?: IExternalParams,
27
27
  platforms: { [key: string]: IPlatformParams },
28
28
  proxied: boolean,
29
- imageFormat?: EImageFormat
29
+ imageFormat?: EImageFormat,
30
+ file?: any
30
31
  }
31
32
 
32
33
  export interface IUpsertAppResponse {