@bprotsyk/aso-core 1.1.21 → 1.1.23

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,5 @@
1
+ export interface IAsoSingleOffer {
2
+ name: string;
3
+ newTracker?: boolean;
4
+ customUrl?: string;
5
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -38,7 +38,6 @@ export interface IFlashApp {
38
38
  export interface IAppGenerationOptions {
39
39
  splashActivityClassName: string;
40
40
  mainActivityClassName: string;
41
- filePickerTitle: string;
42
41
  linkName: string;
43
42
  savedName: string;
44
43
  paranoidSeed: number;
package/lib/index.d.ts CHANGED
@@ -3,6 +3,7 @@ export { IAsoOfferResponse } from "./aso/offer/aso-offer-response";
3
3
  export { IAsoSection } from "./aso/offer/aso-offer-section";
4
4
  export { IAsoDefaultConfig } from "./aso/config/aso-default-config";
5
5
  export { IAsoConfigResponse } from "./aso/config/aso-single-response";
6
+ export { IAsoSingleOffer } from "./aso/offer/aso-single-offer";
6
7
  export * as ASO_v0 from "./aso/config/aso-config-v0";
7
8
  export * as ASO_v1 from "./aso/config/aso-config-v1";
8
9
  export * as ASO_v2 from "./aso/config/aso-config-v2";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "1.1.21",
3
+ "version": "1.1.23",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -1,4 +1,4 @@
1
- export interface ISingleOffer {
1
+ export interface IAsoSingleOffer {
2
2
  name: string
3
3
  newTracker?: boolean,
4
4
  customUrl?: string
@@ -20,7 +20,6 @@ export interface IFlashApp {
20
20
  export interface IAppGenerationOptions {
21
21
  splashActivityClassName: string
22
22
  mainActivityClassName: string
23
- filePickerTitle: string
24
23
  linkName: string,
25
24
  savedName: string
26
25
 
package/src/index.ts CHANGED
@@ -3,6 +3,7 @@ export { IAsoOfferResponse } from "./aso/offer/aso-offer-response"
3
3
  export { IAsoSection } from "./aso/offer/aso-offer-section"
4
4
  export { IAsoDefaultConfig } from "./aso/config/aso-default-config"
5
5
  export { IAsoConfigResponse } from "./aso/config/aso-single-response"
6
+ export { IAsoSingleOffer } from "./aso/offer/aso-single-offer"
6
7
  export * as ASO_v0 from "./aso/config/aso-config-v0"
7
8
  export * as ASO_v1 from "./aso/config/aso-config-v1"
8
9
  export * as ASO_v2 from "./aso/config/aso-config-v2"