@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.
- package/lib/flash/flash-app.d.ts +1 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.js +3 -1
- package/package.json +1 -1
- package/src/flash/flash-app.ts +1 -1
- package/src/index.ts +3 -1
package/lib/flash/flash-app.d.ts
CHANGED
|
@@ -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
|
|
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
package/src/flash/flash-app.ts
CHANGED
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"
|