@jaypie/constructs 1.1.64 → 1.2.0-rc.0
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/dist/cjs/helpers/index.d.ts +1 -1
- package/dist/cjs/index.cjs +2 -3
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/esm/helpers/index.d.ts +1 -1
- package/dist/esm/index.js +2 -3
- package/dist/esm/index.js.map +1 -1
- package/package.json +3 -4
- package/LICENSE.txt +0 -21
|
@@ -3,7 +3,7 @@ export { constructEnvName } from "./constructEnvName";
|
|
|
3
3
|
export { constructStackName } from "./constructStackName";
|
|
4
4
|
export { constructTagger } from "./constructTagger";
|
|
5
5
|
export { envHostname } from "./envHostname";
|
|
6
|
-
export { extendDatadogRole, ExtendDatadogRoleOptions } from "./extendDatadogRole";
|
|
6
|
+
export { extendDatadogRole, ExtendDatadogRoleOptions, } from "./extendDatadogRole";
|
|
7
7
|
export { isEnv, isProductionEnv, isSandboxEnv } from "./isEnv";
|
|
8
8
|
export { isValidHostname } from "./isValidHostname";
|
|
9
9
|
export { isValidSubdomain } from "./isValidSubdomain";
|
package/dist/esm/index.js
CHANGED
|
@@ -66,8 +66,8 @@ const CDK$2 = {
|
|
|
66
66
|
DATADOG: {
|
|
67
67
|
SITE: "datadoghq.com",
|
|
68
68
|
LAYER: {
|
|
69
|
-
// https://docs.datadoghq.com/
|
|
70
|
-
NODE:
|
|
69
|
+
// https://docs.datadoghq.com/meta/latest-lambda-layer-version.json
|
|
70
|
+
NODE: 131, // 127 on 9/12/2025
|
|
71
71
|
EXTENSION: 86, // 86 on 9/12/2025
|
|
72
72
|
},
|
|
73
73
|
},
|
|
@@ -207,7 +207,6 @@ class JaypieAccountLoggingBucket extends Construct {
|
|
|
207
207
|
? `account-logging-stack-${process.env.PROJECT_NONCE.toLowerCase()}`
|
|
208
208
|
: "account-logging-stack";
|
|
209
209
|
// Extract Jaypie-specific options
|
|
210
|
-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
211
210
|
const { bucketName = defaultBucketName, createOutput = true, expirationDays = 365, exportName = CDK$2.IMPORT.LOG_BUCKET, glacierTransitionDays = 180, id: _id, infrequentAccessTransitionDays = 30, outputDescription = "Account-wide logging bucket", project, service = CDK$2.SERVICE.INFRASTRUCTURE, ...bucketProps } = props;
|
|
212
211
|
// Create the bucket with lifecycle rules
|
|
213
212
|
this.bucket = new Bucket(this, "Bucket", {
|