quidproquo-core 0.0.12 → 0.0.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.
package/lib/index.d.ts CHANGED
@@ -4,5 +4,6 @@ export { EventActionTypeEnum } from "./actions/event/EventActionTypeEnum";
4
4
  export { MathActionTypeEnum } from "./actions/math/MathActionTypeEnum";
5
5
  export { PlatformActionTypeEnum } from "./actions/platform/PlatformActionTypeEnum";
6
6
  export { SystemActionTypeEnum } from "./actions/system/SystemActionTypeEnum";
7
+ export { defineAppName, AppNameQPQConfigSetting, } from "./config/settings/appName";
7
8
  export { QPQCoreConfigSettingType, QPQConfigSetting, QPQConfig, } from "./config/QPQConfig";
8
- export { default as qpqCoreUtils } from "./qpqCoreUtils";
9
+ export * as qpqCoreUtils from "./qpqCoreUtils";
package/lib/index.js CHANGED
@@ -1,9 +1,29 @@
1
1
  "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
4
24
  };
5
25
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.qpqCoreUtils = exports.QPQCoreConfigSettingType = exports.SystemActionTypeEnum = exports.PlatformActionTypeEnum = exports.MathActionTypeEnum = exports.EventActionTypeEnum = exports.GuidActionTypeEnum = exports.DateActionTypeEnum = void 0;
26
+ exports.qpqCoreUtils = exports.QPQCoreConfigSettingType = exports.defineAppName = exports.SystemActionTypeEnum = exports.PlatformActionTypeEnum = exports.MathActionTypeEnum = exports.EventActionTypeEnum = exports.GuidActionTypeEnum = exports.DateActionTypeEnum = void 0;
7
27
  var DateActionTypeEnum_1 = require("./actions/date/DateActionTypeEnum");
8
28
  Object.defineProperty(exports, "DateActionTypeEnum", { enumerable: true, get: function () { return DateActionTypeEnum_1.DateActionTypeEnum; } });
9
29
  var GuidActionTypeEnum_1 = require("./actions/guid/GuidActionTypeEnum");
@@ -16,7 +36,8 @@ var PlatformActionTypeEnum_1 = require("./actions/platform/PlatformActionTypeEnu
16
36
  Object.defineProperty(exports, "PlatformActionTypeEnum", { enumerable: true, get: function () { return PlatformActionTypeEnum_1.PlatformActionTypeEnum; } });
17
37
  var SystemActionTypeEnum_1 = require("./actions/system/SystemActionTypeEnum");
18
38
  Object.defineProperty(exports, "SystemActionTypeEnum", { enumerable: true, get: function () { return SystemActionTypeEnum_1.SystemActionTypeEnum; } });
39
+ var appName_1 = require("./config/settings/appName");
40
+ Object.defineProperty(exports, "defineAppName", { enumerable: true, get: function () { return appName_1.defineAppName; } });
19
41
  var QPQConfig_1 = require("./config/QPQConfig");
20
42
  Object.defineProperty(exports, "QPQCoreConfigSettingType", { enumerable: true, get: function () { return QPQConfig_1.QPQCoreConfigSettingType; } });
21
- var qpqCoreUtils_1 = require("./qpqCoreUtils");
22
- Object.defineProperty(exports, "qpqCoreUtils", { enumerable: true, get: function () { return __importDefault(qpqCoreUtils_1).default; } });
43
+ exports.qpqCoreUtils = __importStar(require("./qpqCoreUtils"));
@@ -2,9 +2,3 @@ import { QPQConfig, QPQConfigSetting } from "./config/QPQConfig";
2
2
  export declare const getConfigSettings: <T extends QPQConfigSetting>(configs: QPQConfig, configSettingType: string) => T[];
3
3
  export declare const getConfigSetting: <T extends QPQConfigSetting>(configs: QPQConfig, serviceInfrastructureConfigType: string) => T | undefined;
4
4
  export declare const getAppName: (configs: QPQConfig) => string;
5
- declare const _default: {
6
- getConfigSettings: <T extends QPQConfigSetting>(configs: QPQConfig, configSettingType: string) => T[];
7
- getConfigSetting: <T_1 extends QPQConfigSetting>(configs: QPQConfig, serviceInfrastructureConfigType: string) => T_1 | undefined;
8
- getAppName: (configs: QPQConfig) => string;
9
- };
10
- export default _default;
@@ -20,8 +20,3 @@ const getAppName = (configs) => {
20
20
  return appName;
21
21
  };
22
22
  exports.getAppName = getAppName;
23
- exports.default = {
24
- getConfigSettings: exports.getConfigSettings,
25
- getConfigSetting: exports.getConfigSetting,
26
- getAppName: exports.getAppName,
27
- };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quidproquo-core",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.js",