@gradientedge/cdk-utils 9.60.0 → 9.61.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.
@@ -97,6 +97,7 @@ class AzureServicebusManager {
97
97
  duplicateDetectionHistoryTimeWindow: props.duplicateDetectionHistoryTimeWindow ?? 'PT1M',
98
98
  requiresDuplicateDetection: props.requiresDuplicateDetection ?? true,
99
99
  deadLetteringOnMessageExpiration: props.deadLetteringOnMessageExpiration ?? true,
100
+ defaultMessageTtl: props.defaultMessageTtl ?? 'PT48H',
100
101
  });
101
102
  (0, utils_1.createAzureTfOutput)(`${id}-servicebusQueueName`, scope, servicebusQueue.name);
102
103
  (0, utils_1.createAzureTfOutput)(`${id}-servicebusQueueFriendlyUniqueId`, scope, servicebusQueue.friendlyUniqueId);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradientedge/cdk-utils",
3
- "version": "9.60.0",
3
+ "version": "9.61.0",
4
4
  "description": "Utilities for AWS CDK provisioning",
5
5
  "main": "dist/index.js",
6
6
  "engines": {
@@ -109,6 +109,7 @@ export class AzureServicebusManager {
109
109
  duplicateDetectionHistoryTimeWindow: props.duplicateDetectionHistoryTimeWindow ?? 'PT1M',
110
110
  requiresDuplicateDetection: props.requiresDuplicateDetection ?? true,
111
111
  deadLetteringOnMessageExpiration: props.deadLetteringOnMessageExpiration ?? true,
112
+ defaultMessageTtl: props.defaultMessageTtl ?? 'PT48H',
112
113
  })
113
114
 
114
115
  createAzureTfOutput(`${id}-servicebusQueueName`, scope, servicebusQueue.name)