@friggframework/devtools 2.0.0-next.21 → 2.0.0-next.23

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.
@@ -129,6 +129,28 @@ const composeServerlessDefinition = (AppDefinition) => {
129
129
  Ref: 'InternalErrorBridgeTopic',
130
130
  },
131
131
  },
132
+ {
133
+ Effect: 'Allow',
134
+ Action: [
135
+ 'sqs:SendMessage',
136
+ 'sqs:SendMessageBatch',
137
+ 'sqs:GetQueueUrl',
138
+ 'sqs:GetQueueAttributes'
139
+ ],
140
+ Resource: [
141
+ {
142
+ 'Fn::GetAtt': ['InternalErrorQueue', 'Arn']
143
+ },
144
+ {
145
+ 'Fn::Join': [
146
+ ':',
147
+ [
148
+ 'arn:aws:sqs:${self:provider.region}:*:${self:service}--${self:provider.stage}-*Queue'
149
+ ]
150
+ ]
151
+ }
152
+ ],
153
+ }
132
154
  ],
133
155
  },
134
156
  plugins: [
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-next.21",
4
+ "version": "2.0.0-next.23",
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-next.21",
9
+ "@friggframework/test": "2.0.0-next.23",
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-next.21",
31
- "@friggframework/prettier-config": "2.0.0-next.21",
30
+ "@friggframework/eslint-config": "2.0.0-next.23",
31
+ "@friggframework/prettier-config": "2.0.0-next.23",
32
32
  "prettier": "^2.7.1",
33
33
  "serverless": "3.39.0",
34
34
  "serverless-dotenv-plugin": "^6.0.0",
@@ -59,5 +59,5 @@
59
59
  "publishConfig": {
60
60
  "access": "public"
61
61
  },
62
- "gitHead": "ad1d397f60175576cb2d939ae6c75533ee5a4c2a"
62
+ "gitHead": "73a095711956729566b4eb0cc588c886fa74087e"
63
63
  }