@friggframework/devtools 2.0.0--canary.428.08c3f6f.0 → 2.0.0--canary.428.887095f.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.
@@ -1552,10 +1552,8 @@ const composeServerlessDefinition = async (AppDefinition) => {
1552
1552
  // ALWAYS manage NAT Gateway through CloudFormation for self-healing
1553
1553
  // This ensures NAT Gateway is always in the correct subnet with proper configuration
1554
1554
 
1555
- console.log('AppDefinition.vpc.natGateway', AppDefinition.vpc.natGateway);
1556
- const natGatewayManagement =
1557
- AppDefinition.vpc.natGateway?.management || 'discover';
1558
- console.log('natGatewayManagement', natGatewayManagement);
1555
+ // Use only the new 'management' property pattern from backend/index.js
1556
+ const natGatewayManagement = AppDefinition.vpc.natGateway?.management || 'discover';
1559
1557
  let needsNewNatGateway =
1560
1558
  natGatewayManagement === 'createAndManage' ||
1561
1559
  discoveredResources.needsNewNatGateway === true; // Use healing flag
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.428.08c3f6f.0",
4
+ "version": "2.0.0--canary.428.887095f.0",
5
5
  "dependencies": {
6
6
  "@aws-sdk/client-ec2": "^3.835.0",
7
7
  "@aws-sdk/client-kms": "^3.835.0",
@@ -9,8 +9,8 @@
9
9
  "@babel/eslint-parser": "^7.18.9",
10
10
  "@babel/parser": "^7.25.3",
11
11
  "@babel/traverse": "^7.25.3",
12
- "@friggframework/schemas": "2.0.0--canary.428.08c3f6f.0",
13
- "@friggframework/test": "2.0.0--canary.428.08c3f6f.0",
12
+ "@friggframework/schemas": "2.0.0--canary.428.887095f.0",
13
+ "@friggframework/test": "2.0.0--canary.428.887095f.0",
14
14
  "@hapi/boom": "^10.0.1",
15
15
  "@inquirer/prompts": "^5.3.8",
16
16
  "axios": "^1.7.2",
@@ -32,8 +32,8 @@
32
32
  "serverless-http": "^2.7.0"
33
33
  },
34
34
  "devDependencies": {
35
- "@friggframework/eslint-config": "2.0.0--canary.428.08c3f6f.0",
36
- "@friggframework/prettier-config": "2.0.0--canary.428.08c3f6f.0",
35
+ "@friggframework/eslint-config": "2.0.0--canary.428.887095f.0",
36
+ "@friggframework/prettier-config": "2.0.0--canary.428.887095f.0",
37
37
  "jest": "^30.1.3",
38
38
  "prettier": "^2.7.1",
39
39
  "serverless": "3.39.0",
@@ -66,5 +66,5 @@
66
66
  "publishConfig": {
67
67
  "access": "public"
68
68
  },
69
- "gitHead": "08c3f6fe0ca98334f07909301c2ec1812746f657"
69
+ "gitHead": "887095f388c5ff1f0cbfc86c25a803fa8b5e134a"
70
70
  }