@bprotsyk/aso-core 1.2.14 → 1.2.15

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/index.d.ts CHANGED
@@ -21,4 +21,4 @@ export { IFlashAppListItem } from "./flash/flash-app-list-item";
21
21
  export * as ASOConfigFetch from "./aso/usage-logs/aso-config-fetch-entry";
22
22
  export { IPanelUser, PanelUserAccessScope, PanelUserSchema } from "./panel/user";
23
23
  export { IAuthToken } from "./panel/auth";
24
- export { IUpsertFlashAppRequest } from "./panel/flash/create-flash-app-request";
24
+ export { IUpsertFlashAppRequest, IUpsertFlashAppResponse } from "./panel/flash/create-flash-app-request";
@@ -21,3 +21,7 @@ export interface IUpsertFlashAppRequest {
21
21
  trackingUrl?: string;
22
22
  pushesEnabled?: boolean;
23
23
  }
24
+ export interface IUpsertFlashAppResponse {
25
+ data: IUpsertFlashAppRequest;
26
+ archive: string;
27
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "1.2.14",
3
+ "version": "1.2.15",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
package/src/index.ts CHANGED
@@ -26,4 +26,4 @@ export * as ASOConfigFetch from "./aso/usage-logs/aso-config-fetch-entry"
26
26
 
27
27
  export { IPanelUser, PanelUserAccessScope, PanelUserSchema } from "./panel/user"
28
28
  export { IAuthToken } from "./panel/auth"
29
- export { IUpsertFlashAppRequest } from "./panel/flash/create-flash-app-request"
29
+ export { IUpsertFlashAppRequest, IUpsertFlashAppResponse } from "./panel/flash/create-flash-app-request"
@@ -25,3 +25,8 @@ export interface IUpsertFlashAppRequest {
25
25
  pushesEnabled?: boolean
26
26
  }
27
27
 
28
+ export interface IUpsertFlashAppResponse {
29
+ data: IUpsertFlashAppRequest,
30
+ archive: string
31
+ }
32
+