@byaga/cdk-patterns 0.6.0 → 0.6.1

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
@@ -3,3 +3,4 @@ export { IDeployStack } from "./IDeployStack";
3
3
  export { IDomainConfig } from "./IDomainConfig";
4
4
  export { IHostedZoneConfig } from "./IHostedZoneConfig";
5
5
  export { IStackArguments } from "./IStackArguments";
6
+ export { Role } from "./Role";
package/lib/index.js CHANGED
@@ -1,7 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.IDeployStack = exports.ApiCertificate = void 0;
3
+ exports.Role = exports.IDeployStack = exports.ApiCertificate = void 0;
4
4
  var ApiCertificate_1 = require("./ApiCertificate");
5
5
  Object.defineProperty(exports, "ApiCertificate", { enumerable: true, get: function () { return ApiCertificate_1.ApiCertificate; } });
6
6
  var IDeployStack_1 = require("./IDeployStack");
7
7
  Object.defineProperty(exports, "IDeployStack", { enumerable: true, get: function () { return IDeployStack_1.IDeployStack; } });
8
+ var Role_1 = require("./Role");
9
+ Object.defineProperty(exports, "Role", { enumerable: true, get: function () { return Role_1.Role; } });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byaga/cdk-patterns",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "Collection of common patterns used when making AWS CloudFormation templates using CDK",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
package/src/index.ts CHANGED
@@ -3,3 +3,4 @@ export {IDeployStack} from "./IDeployStack";
3
3
  export {IDomainConfig} from "./IDomainConfig";
4
4
  export {IHostedZoneConfig} from "./IHostedZoneConfig";
5
5
  export {IStackArguments} from "./IStackArguments";
6
+ export {Role} from "./Role";