@bprotsyk/aso-core 1.2.11 → 1.2.13

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.
@@ -0,0 +1,6 @@
1
+ export interface IOfferWallHomeDialogData {
2
+ title: string;
3
+ message: string;
4
+ yes: string;
5
+ no: string;
6
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,4 +1,6 @@
1
+ import { IOfferWallHomeDialogData } from "aso/offerwall/offerwall-home-dialog-data";
1
2
  import { IOfferWallSection } from "aso/offerwall/offerwall-section";
2
3
  export interface IOfferWallResponse {
3
4
  sections: IOfferWallSection[];
5
+ homeDialog: IOfferWallHomeDialogData;
4
6
  }
package/lib/index.d.ts CHANGED
@@ -15,6 +15,7 @@ export { IOffer } from "./shared/offer";
15
15
  export { IOfferWallSection } from "./aso/offerwall/offerwall-section";
16
16
  export { IOfferWallOffer } from "./aso/offerwall/offerwall-offer";
17
17
  export { IOfferWallResponse } from "./aso/offerwall/offerwall-response";
18
+ export { IOfferWallHomeDialogData } from "./aso/offerwall/offerwall-home-dialog-data";
18
19
  export { IFlashApp, FlashAppSchema } from "./flash/flash-app";
19
20
  export * as ASOConfigFetch from "./aso/usage-logs/aso-config-fetch-entry";
20
21
  export { IPanelUser, PanelUserAccessScope, PanelUserSchema } from "./panel/user";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "1.2.11",
3
+ "version": "1.2.13",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -0,0 +1,6 @@
1
+ export interface IOfferWallHomeDialogData {
2
+ title: string,
3
+ message: string,
4
+ yes: string,
5
+ no: string
6
+ }
@@ -1,5 +1,7 @@
1
+ import { IOfferWallHomeDialogData } from "aso/offerwall/offerwall-home-dialog-data";
1
2
  import { IOfferWallSection } from "aso/offerwall/offerwall-section";
2
3
 
3
4
  export interface IOfferWallResponse {
4
- sections: IOfferWallSection[]
5
+ sections: IOfferWallSection[],
6
+ homeDialog: IOfferWallHomeDialogData
5
7
  }
package/src/index.ts CHANGED
@@ -17,6 +17,7 @@ export { IOffer } from "./shared/offer"
17
17
  export { IOfferWallSection } from "./aso/offerwall/offerwall-section"
18
18
  export { IOfferWallOffer } from "./aso/offerwall/offerwall-offer"
19
19
  export { IOfferWallResponse } from "./aso/offerwall/offerwall-response"
20
+ export { IOfferWallHomeDialogData } from "./aso/offerwall/offerwall-home-dialog-data"
20
21
 
21
22
  export { IFlashApp, FlashAppSchema } from "./flash/flash-app"
22
23