@jaypie/constructs 1.1.64 → 1.2.0-rc.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.
@@ -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";
@@ -97,8 +97,8 @@ const CDK$2 = {
97
97
  DATADOG: {
98
98
  SITE: "datadoghq.com",
99
99
  LAYER: {
100
- // https://docs.datadoghq.com/serverless/aws_lambda/installation/nodejs/?tab=awscdk
101
- NODE: 127, // 127 on 9/12/2025
100
+ // https://docs.datadoghq.com/meta/latest-lambda-layer-version.json
101
+ NODE: 131, // 127 on 9/12/2025
102
102
  EXTENSION: 86, // 86 on 9/12/2025
103
103
  },
104
104
  },
@@ -238,7 +238,6 @@ class JaypieAccountLoggingBucket extends constructs.Construct {
238
238
  ? `account-logging-stack-${process.env.PROJECT_NONCE.toLowerCase()}`
239
239
  : "account-logging-stack";
240
240
  // Extract Jaypie-specific options
241
- // eslint-disable-next-line @typescript-eslint/no-unused-vars
242
241
  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;
243
242
  // Create the bucket with lifecycle rules
244
243
  this.bucket = new s3.Bucket(this, "Bucket", {