@friggframework/devtools 2.0.0--canary.404.e9d4980.0 → 2.0.0--canary.405.b87f8d8.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.
|
@@ -651,6 +651,20 @@ const composeServerlessDefinition = (AppDefinition) => {
|
|
|
651
651
|
},
|
|
652
652
|
};
|
|
653
653
|
|
|
654
|
+
definition.provider.environment.BASE_URL = {
|
|
655
|
+
'Fn::Join': [
|
|
656
|
+
'',
|
|
657
|
+
[
|
|
658
|
+
'https://',
|
|
659
|
+
{ Ref: 'ApiGatewayRestApi' },
|
|
660
|
+
'.execute-api.',
|
|
661
|
+
{ Ref: 'AWS::Region' },
|
|
662
|
+
'.amazonaws.com/',
|
|
663
|
+
'${self:provider.stage}',
|
|
664
|
+
],
|
|
665
|
+
],
|
|
666
|
+
};
|
|
667
|
+
|
|
654
668
|
// KMS Configuration based on App Definition
|
|
655
669
|
if (AppDefinition.encryption?.useDefaultKMSForFieldLevelEncryption === true) {
|
|
656
670
|
// Add KMS IAM permissions
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@friggframework/devtools",
|
|
3
3
|
"prettier": "@friggframework/prettier-config",
|
|
4
|
-
"version": "2.0.0--canary.
|
|
4
|
+
"version": "2.0.0--canary.405.b87f8d8.0",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@babel/eslint-parser": "^7.18.9",
|
|
7
7
|
"@babel/parser": "^7.25.3",
|
|
8
8
|
"@babel/traverse": "^7.25.3",
|
|
9
|
-
"@friggframework/test": "2.0.0--canary.
|
|
9
|
+
"@friggframework/test": "2.0.0--canary.405.b87f8d8.0",
|
|
10
10
|
"@hapi/boom": "^10.0.1",
|
|
11
11
|
"@inquirer/prompts": "^5.3.8",
|
|
12
12
|
"axios": "^1.7.2",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"serverless-http": "^2.7.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@friggframework/eslint-config": "2.0.0--canary.
|
|
31
|
-
"@friggframework/prettier-config": "2.0.0--canary.
|
|
30
|
+
"@friggframework/eslint-config": "2.0.0--canary.405.b87f8d8.0",
|
|
31
|
+
"@friggframework/prettier-config": "2.0.0--canary.405.b87f8d8.0",
|
|
32
32
|
"prettier": "^2.7.1",
|
|
33
33
|
"serverless": "3.39.0",
|
|
34
34
|
"serverless-dotenv-plugin": "^6.0.0",
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"publishConfig": {
|
|
61
61
|
"access": "public"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "b87f8d874639f6fbb52c8a7efc7841c879a1286f"
|
|
64
64
|
}
|