@bprotsyk/aso-core 1.1.14 → 1.1.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.
@@ -23,7 +23,7 @@
23
23
  /// <reference types="mongoose/types/virtuals" />
24
24
  /// <reference types="mongoose/types/inferschematype" />
25
25
  import { Model, Schema } from "mongoose";
26
- export interface IApp {
26
+ export interface IFlashApp {
27
27
  id: number;
28
28
  name: string;
29
29
  email: string;
package/lib/index.d.ts CHANGED
@@ -11,3 +11,4 @@ export { IOffer } from "./shared/offer";
11
11
  export { IOfferWallSection } from "./aso/offerwall/offerwall-section";
12
12
  export { IOfferWallOffer } from "./aso/offerwall/offerwall-offer";
13
13
  export { IOfferWallResponse } from "./aso/offerwall/offerwall-response";
14
+ export { IFlashApp, FlashAppSchema } from "./flash/flash-app";
package/lib/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.asoConfigToDefault_v4 = exports.asoConfigToDefault_v3 = exports.asoConfigToDefault_v2 = exports.asoConfigToDefault_v1 = exports.asoConfigToDefault_v0 = void 0;
3
+ exports.FlashAppSchema = exports.asoConfigToDefault_v4 = exports.asoConfigToDefault_v3 = exports.asoConfigToDefault_v2 = exports.asoConfigToDefault_v1 = exports.asoConfigToDefault_v0 = void 0;
4
4
  var aso_config_v0_1 = require("./aso/config/aso-config-v0");
5
5
  Object.defineProperty(exports, "asoConfigToDefault_v0", { enumerable: true, get: function () { return aso_config_v0_1.asoConfigToDefault_v0; } });
6
6
  var aso_config_v1_1 = require("./aso/config/aso-config-v1");
@@ -11,3 +11,5 @@ var aso_config_v3_1 = require("./aso/config/aso-config-v3");
11
11
  Object.defineProperty(exports, "asoConfigToDefault_v3", { enumerable: true, get: function () { return aso_config_v3_1.asoConfigToDefault_v3; } });
12
12
  var aso_config_v4_1 = require("./aso/config/aso-config-v4");
13
13
  Object.defineProperty(exports, "asoConfigToDefault_v4", { enumerable: true, get: function () { return aso_config_v4_1.asoConfigToDefault_v4; } });
14
+ var flash_app_1 = require("./flash/flash-app");
15
+ Object.defineProperty(exports, "FlashAppSchema", { enumerable: true, get: function () { return flash_app_1.FlashAppSchema; } });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "1.1.14",
3
+ "version": "1.1.15",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -2,7 +2,7 @@ import { Model, model, Schema } from "mongoose";
2
2
 
3
3
  // TODO add date of policy in case we need to recreate it
4
4
  // and all data necessary. test
5
- export interface IApp {
5
+ export interface IFlashApp {
6
6
  id: number
7
7
  name: string
8
8
  email: string
package/src/index.ts CHANGED
@@ -12,4 +12,6 @@ export { IOffer } from "./shared/offer"
12
12
 
13
13
  export {IOfferWallSection} from "./aso/offerwall/offerwall-section"
14
14
  export {IOfferWallOffer} from "./aso/offerwall/offerwall-offer"
15
- export {IOfferWallResponse} from "./aso/offerwall/offerwall-response"
15
+ export {IOfferWallResponse} from "./aso/offerwall/offerwall-response"
16
+
17
+ export {IFlashApp, FlashAppSchema} from "./flash/flash-app"