@bprotsyk/aso-core 1.2.44 → 1.2.45

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
@@ -18,6 +18,7 @@ export { IOfferWallResponse } from "./aso/offerwall/offerwall-response";
18
18
  export { IOfferWallHomeDialogData } from "./aso/offerwall/offerwall-home-dialog-data";
19
19
  export { IFlashApp as IFlashAppOld, IFlashAppUpdated as IFlashApp, FlashAppSchema as FlashAppSchemaOld, FlashAppSchemaUpdated as FlashAppSchema, updateSchemaAndMoveValue } from "./flash/flash-app";
20
20
  export { IFlashAppListItem } from "./flash/flash-app-list-item";
21
+ export { FlashAppType } from "./flash/flash-app-type";
21
22
  export * as ASOConfigFetch from "./aso/usage-logs/aso-config-fetch-entry";
22
23
  export { IPanelUser, PanelUserAccessScope, PanelUserSchema } from "./panel/user";
23
24
  export { IAuthToken } from "./panel/auth";
package/lib/index.js CHANGED
@@ -23,7 +23,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
23
23
  return result;
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
- exports.KeitaroService = exports.ColoredText = exports.ShapeDiv = exports.PanelUserSchema = exports.PanelUserAccessScope = exports.ASOConfigFetch = exports.updateSchemaAndMoveValue = exports.FlashAppSchema = exports.FlashAppSchemaOld = exports.ASO_v5 = exports.ASO_v4 = exports.ASO_v3 = exports.ASO_v2 = exports.ASO_v1 = exports.ASO_v0 = void 0;
26
+ exports.KeitaroService = exports.ColoredText = exports.ShapeDiv = exports.PanelUserSchema = exports.PanelUserAccessScope = exports.ASOConfigFetch = exports.FlashAppType = exports.updateSchemaAndMoveValue = exports.FlashAppSchema = exports.FlashAppSchemaOld = exports.ASO_v5 = exports.ASO_v4 = exports.ASO_v3 = exports.ASO_v2 = exports.ASO_v1 = exports.ASO_v0 = void 0;
27
27
  exports.ASO_v0 = __importStar(require("./aso/config/aso-config-v0"));
28
28
  exports.ASO_v1 = __importStar(require("./aso/config/aso-config-v1"));
29
29
  exports.ASO_v2 = __importStar(require("./aso/config/aso-config-v2"));
@@ -34,6 +34,8 @@ var flash_app_1 = require("./flash/flash-app");
34
34
  Object.defineProperty(exports, "FlashAppSchemaOld", { enumerable: true, get: function () { return flash_app_1.FlashAppSchema; } });
35
35
  Object.defineProperty(exports, "FlashAppSchema", { enumerable: true, get: function () { return flash_app_1.FlashAppSchemaUpdated; } });
36
36
  Object.defineProperty(exports, "updateSchemaAndMoveValue", { enumerable: true, get: function () { return flash_app_1.updateSchemaAndMoveValue; } });
37
+ var flash_app_type_1 = require("./flash/flash-app-type");
38
+ Object.defineProperty(exports, "FlashAppType", { enumerable: true, get: function () { return flash_app_type_1.FlashAppType; } });
37
39
  exports.ASOConfigFetch = __importStar(require("./aso/usage-logs/aso-config-fetch-entry"));
38
40
  var user_1 = require("./panel/user");
39
41
  Object.defineProperty(exports, "PanelUserAccessScope", { enumerable: true, get: function () { return user_1.PanelUserAccessScope; } });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "1.2.44",
3
+ "version": "1.2.45",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
package/src/index.ts CHANGED
@@ -21,6 +21,7 @@ export { IOfferWallHomeDialogData } from "./aso/offerwall/offerwall-home-dialog-
21
21
 
22
22
  export { IFlashApp as IFlashAppOld, IFlashAppUpdated as IFlashApp, FlashAppSchema as FlashAppSchemaOld, FlashAppSchemaUpdated as FlashAppSchema, updateSchemaAndMoveValue } from "./flash/flash-app"
23
23
  export { IFlashAppListItem } from "./flash/flash-app-list-item"
24
+ export { FlashAppType } from "./flash/flash-app-type"
24
25
 
25
26
  export * as ASOConfigFetch from "./aso/usage-logs/aso-config-fetch-entry"
26
27