@byaga/cdk-patterns 0.8.2 → 0.8.3
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 +1 -0
- package/lib/index.js +3 -1
- package/package.json +7 -7
- package/src/index.ts +1 -0
package/lib/index.d.ts
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
export { ApiCertificate } from "./ApiCertificate";
|
2
|
+
export { CognitoApiGatewayAuthorizer } from "./CognitoApiGatewayAuthorizer";
|
2
3
|
export { DeployStack } from "./DeployStack";
|
3
4
|
export { DynamoDbTable } from "./DynamoDbTable";
|
4
5
|
export { FunctionIntegration } from "./FunctionIntegration";
|
package/lib/index.js
CHANGED
@@ -1,8 +1,10 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.StaticWebSite = exports.SsmParameter = exports.Role = exports.RestApi = exports.Output = exports.NodeJsLambdaLayer = exports.NodeJsLambda = exports.FunctionIntegration = exports.DynamoDbTable = exports.DeployStack = exports.ApiCertificate = void 0;
|
3
|
+
exports.StaticWebSite = exports.SsmParameter = exports.Role = exports.RestApi = exports.Output = exports.NodeJsLambdaLayer = exports.NodeJsLambda = exports.FunctionIntegration = exports.DynamoDbTable = exports.DeployStack = exports.CognitoApiGatewayAuthorizer = 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
|
+
var CognitoApiGatewayAuthorizer_1 = require("./CognitoApiGatewayAuthorizer");
|
7
|
+
Object.defineProperty(exports, "CognitoApiGatewayAuthorizer", { enumerable: true, get: function () { return CognitoApiGatewayAuthorizer_1.CognitoApiGatewayAuthorizer; } });
|
6
8
|
var DeployStack_1 = require("./DeployStack");
|
7
9
|
Object.defineProperty(exports, "DeployStack", { enumerable: true, get: function () { return DeployStack_1.DeployStack; } });
|
8
10
|
var DynamoDbTable_1 = require("./DynamoDbTable");
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@byaga/cdk-patterns",
|
3
|
-
"version": "0.8.
|
3
|
+
"version": "0.8.3",
|
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",
|
@@ -15,14 +15,14 @@
|
|
15
15
|
"author": "VeryFineHat",
|
16
16
|
"license": "MIT",
|
17
17
|
"dependencies": {
|
18
|
-
"@types/fs-extra": "^11.0.
|
19
|
-
"aws-cdk": "^2.
|
20
|
-
"aws-cdk-lib": "^2.
|
21
|
-
"constructs": "^10.
|
18
|
+
"@types/fs-extra": "^11.0.3",
|
19
|
+
"aws-cdk": "^2.103.1",
|
20
|
+
"aws-cdk-lib": "^2.103.1",
|
21
|
+
"constructs": "^10.3.0",
|
22
22
|
"fs-extra": "^11.1.1"
|
23
23
|
},
|
24
24
|
"devDependencies": {
|
25
|
-
"@types/node": "^20.
|
26
|
-
"typescript": "^5.
|
25
|
+
"@types/node": "^20.8.9",
|
26
|
+
"typescript": "^5.2.2"
|
27
27
|
}
|
28
28
|
}
|
package/src/index.ts
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
export {ApiCertificate} from "./ApiCertificate";
|
2
|
+
export {CognitoApiGatewayAuthorizer} from "./CognitoApiGatewayAuthorizer";
|
2
3
|
export {DeployStack} from "./DeployStack";
|
3
4
|
export {DynamoDbTable} from "./DynamoDbTable";
|
4
5
|
export {FunctionIntegration} from "./FunctionIntegration";
|