@friggframework/devtools 2.0.0--canary.553.80601bc.0 → 2.0.0--canary.553.f839939.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.
|
@@ -376,10 +376,10 @@ class IntegrationBuilder extends InfrastructureBuilder {
|
|
|
376
376
|
Namespace: 'AWS/SQS',
|
|
377
377
|
MetricName: 'ApproximateNumberOfMessagesVisible',
|
|
378
378
|
Statistic: 'Maximum',
|
|
379
|
-
Threshold:
|
|
379
|
+
Threshold: 500,
|
|
380
380
|
ComparisonOperator: 'GreaterThanThreshold',
|
|
381
381
|
EvaluationPeriods: 1,
|
|
382
|
-
Period:
|
|
382
|
+
Period: 300,
|
|
383
383
|
AlarmActions: [{ Ref: 'InternalErrorBridgeTopic' }],
|
|
384
384
|
Dimensions: [
|
|
385
385
|
{ Name: 'QueueName', Value: queueName },
|
|
@@ -409,7 +409,7 @@ describe('IntegrationBuilder', () => {
|
|
|
409
409
|
expect(result.resources.DLQMessageAlarm.Type).toBe('AWS::CloudWatch::Alarm');
|
|
410
410
|
expect(result.resources.DLQMessageAlarm.Properties.MetricName).toBe('ApproximateNumberOfMessagesVisible');
|
|
411
411
|
expect(result.resources.DLQMessageAlarm.Properties.ComparisonOperator).toBe('GreaterThanThreshold');
|
|
412
|
-
expect(result.resources.DLQMessageAlarm.Properties.Threshold).toBe(
|
|
412
|
+
expect(result.resources.DLQMessageAlarm.Properties.Threshold).toBe(500);
|
|
413
413
|
});
|
|
414
414
|
|
|
415
415
|
it('should wire alarm to InternalErrorBridgeTopic for notifications', async () => {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@friggframework/devtools",
|
|
3
3
|
"prettier": "@friggframework/prettier-config",
|
|
4
|
-
"version": "2.0.0--canary.553.
|
|
4
|
+
"version": "2.0.0--canary.553.f839939.0",
|
|
5
5
|
"bin": {
|
|
6
6
|
"frigg": "./frigg-cli/index.js"
|
|
7
7
|
},
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"@babel/eslint-parser": "^7.18.9",
|
|
26
26
|
"@babel/parser": "^7.25.3",
|
|
27
27
|
"@babel/traverse": "^7.25.3",
|
|
28
|
-
"@friggframework/core": "2.0.0--canary.553.
|
|
29
|
-
"@friggframework/schemas": "2.0.0--canary.553.
|
|
30
|
-
"@friggframework/test": "2.0.0--canary.553.
|
|
28
|
+
"@friggframework/core": "2.0.0--canary.553.f839939.0",
|
|
29
|
+
"@friggframework/schemas": "2.0.0--canary.553.f839939.0",
|
|
30
|
+
"@friggframework/test": "2.0.0--canary.553.f839939.0",
|
|
31
31
|
"@hapi/boom": "^10.0.1",
|
|
32
32
|
"@inquirer/prompts": "^5.3.8",
|
|
33
33
|
"axios": "^1.7.2",
|
|
@@ -55,8 +55,8 @@
|
|
|
55
55
|
"validate-npm-package-name": "^5.0.0"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@friggframework/eslint-config": "2.0.0--canary.553.
|
|
59
|
-
"@friggframework/prettier-config": "2.0.0--canary.553.
|
|
58
|
+
"@friggframework/eslint-config": "2.0.0--canary.553.f839939.0",
|
|
59
|
+
"@friggframework/prettier-config": "2.0.0--canary.553.f839939.0",
|
|
60
60
|
"aws-sdk-client-mock": "^4.1.0",
|
|
61
61
|
"aws-sdk-client-mock-jest": "^4.1.0",
|
|
62
62
|
"jest": "^30.1.3",
|
|
@@ -88,5 +88,5 @@
|
|
|
88
88
|
"publishConfig": {
|
|
89
89
|
"access": "public"
|
|
90
90
|
},
|
|
91
|
-
"gitHead": "
|
|
91
|
+
"gitHead": "f839939da2c1454956d177b8d73b79d449d21b14"
|
|
92
92
|
}
|