p6-cdk-namer 0.10.8 → 1.0.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/.jsii CHANGED
@@ -3884,7 +3884,7 @@
3884
3884
  },
3885
3885
  "name": "p6-cdk-namer",
3886
3886
  "readme": {
3887
- "markdown": "AWS CDK setups up a Custom Resource via Cloud Formation which sets the AWS IAM Account Alias\n\n# P6Namer\n\n## LICENSE\n\n[![License](https://img.shields.io/badge/License-Apache%202.0-yellowgreen.svg)](https://opensource.org/licenses/Apache-2.0)\n\n## Other\n\n[![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/p6m7g8/p6-cdk-namer) ![Sonarcloud Status](https://sonarcloud.io/api/project_badges/measure?project=p6m7g8_p6-cdk-namer&metric=alert_status) ![GitHub commit activity](https://img.shields.io/github/commit-activity/y/p6m7g8/p6-cdk-namer) ![GitHub commit activity](https://img.shields.io/github/commit-activity/m/p6m7g8/p6-cdk-namer)\n\n## Usage\n\n```ts\n...\nimport { P6Namer } from 'p6-cdk-namer';\n\nnew P6Namer(this, 'AccountAlias', {\n accountAlias: 'THE-ALIAS',\n});\n```\n\n## Architecture\n\n![./assets/diagram.png](./assets/diagram.png)\n\n## Author\n\nPhilip M. Gollucci <pgollucci@p6m7g8.com>\n"
3887
+ "markdown": "AWS CDK setups up a Custom Resource via Cloud Formation which sets the AWS IAM Account Alias\n\n# P6Namer\n\n## LICENSE\n\n[![License](https://img.shields.io/badge/License-Apache%202.0-yellowgreen.svg)](https://opensource.org/licenses/Apache-2.0)\n\n## Other\n\n[![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/p6m7g8/p6-cdk-namer) ![Sonarcloud Status](https://sonarcloud.io/api/project_badges/measure?project=p6m7g8_p6-cdk-namer&metric=alert_status) ![GitHub commit activity](https://img.shields.io/github/commit-activity/y/p6m7g8/p6-cdk-namer) ![GitHub commit activity](https://img.shields.io/github/commit-activity/m/p6m7g8/p6-cdk-namer)\n\n## Usage\n\n```ts\n...\nimport { P6Namer } from 'p6-cdk-namer';\n\nnew P6Namer(this, 'AccountAlias', {\n accountAlias: 'THE-ALIAS',\n});\n```\n\n## Architecture\n\n![./assets/diagram.png](./assets/diagram.png)\n\n## Author\n\nPhilip M. Gollucci <pgollucci@p6m7g8.com>\n\n"
3888
3888
  },
3889
3889
  "repository": {
3890
3890
  "type": "git",
@@ -3978,6 +3978,6 @@
3978
3978
  "symbolId": "src/p6namer:P6Namer"
3979
3979
  }
3980
3980
  },
3981
- "version": "0.10.8",
3982
- "fingerprint": "ttNGlWX8vV27BBdtDD1stFVNRWFSCI1Bn2+hljw7YaU="
3981
+ "version": "1.0.1",
3982
+ "fingerprint": "cw7ylsWzn9rZuAhoxWQs3vaZyx/BkqTEhHFOCmV6i/E="
3983
3983
  }
package/README.md CHANGED
@@ -28,3 +28,4 @@ new P6Namer(this, 'AccountAlias', {
28
28
  ## Author
29
29
 
30
30
  Philip M. Gollucci <pgollucci@p6m7g8.com>
31
+
package/lib/p6namer.js CHANGED
@@ -31,7 +31,7 @@ const lambdajs = __importStar(require("aws-cdk-lib/aws-lambda-nodejs"));
31
31
  const cr = __importStar(require("aws-cdk-lib/custom-resources"));
32
32
  const floyd = __importStar(require("cdk-iam-floyd"));
33
33
  class P6Namer extends cdk.Resource {
34
- static [JSII_RTTI_SYMBOL_1] = { fqn: "p6-cdk-namer.P6Namer", version: "0.10.8" };
34
+ static [JSII_RTTI_SYMBOL_1] = { fqn: "p6-cdk-namer.P6Namer", version: "1.0.1" };
35
35
  constructor(scope, id, props) {
36
36
  super(scope, id);
37
37
  const policy = new floyd.Statement.Iam().allow().toCreateAccountAlias();
package/package.json CHANGED
@@ -53,8 +53,8 @@
53
53
  "@types/aws-lambda": "^8.10.145",
54
54
  "@types/jest": "^29.5.14",
55
55
  "@types/node": "22.8.2",
56
- "@typescript-eslint/eslint-plugin": "^8.12.0",
57
- "@typescript-eslint/parser": "^8.12.0",
56
+ "@typescript-eslint/eslint-plugin": "^8.12.2",
57
+ "@typescript-eslint/parser": "^8.12.2",
58
58
  "aws-cdk": "^2.164.1",
59
59
  "aws-cdk-lib": "2.164.1",
60
60
  "cdk-dia": "^0.11.0",
@@ -102,7 +102,7 @@
102
102
  "main": "lib/index.js",
103
103
  "types": "src/index.d.ts",
104
104
  "license": "Apache-2.0",
105
- "version": "0.10.8",
105
+ "version": "1.0.1",
106
106
  "jsii": {
107
107
  "outdir": "dist",
108
108
  "tsc": {