@aesop-fables/triginta 0.2.0 → 0.2.2

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,6 +4,6 @@ export * from './Decorators';
4
4
  export * from './Middleware';
5
5
  export * from './HttpLambda';
6
6
  export * from './HttpLambdaServices';
7
- export * from './RouteRegistry';
7
+ export { default as RouteRegistry } from './RouteRegistry';
8
8
  export * from './invokeHttpHandler';
9
9
  export { IHandler, IHttpEndpoint };
package/lib/index.js CHANGED
@@ -13,10 +13,15 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (functi
13
13
  var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
+ var __importDefault = (this && this.__importDefault) || function (mod) {
17
+ return (mod && mod.__esModule) ? mod : { "default": mod };
18
+ };
16
19
  Object.defineProperty(exports, "__esModule", { value: true });
20
+ exports.RouteRegistry = void 0;
17
21
  __exportStar(require("./Decorators"), exports);
18
22
  __exportStar(require("./Middleware"), exports);
19
23
  __exportStar(require("./HttpLambda"), exports);
20
24
  __exportStar(require("./HttpLambdaServices"), exports);
21
- __exportStar(require("./RouteRegistry"), exports);
25
+ var RouteRegistry_1 = require("./RouteRegistry");
26
+ Object.defineProperty(exports, "RouteRegistry", { enumerable: true, get: function () { return __importDefault(RouteRegistry_1).default; } });
22
27
  __exportStar(require("./invokeHttpHandler"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aesop-fables/triginta",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "A lightweight framework that wraps the basic infrastructure usages of AWS Lambda (SQS, Kinesis, etc.).",
5
5
  "type": "commonjs",
6
6
  "exports": {