@awsless/awsless 0.0.156 → 0.0.158
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.
- package/dist/bin.js +6 -3
- package/dist/features/cognito-client-secret/bundle.zip +0 -0
- package/dist/features/delete-bucket/bundle.zip +0 -0
- package/dist/features/delete-hosted-zone/bundle.zip +0 -0
- package/dist/features/global-exports/bundle.zip +0 -0
- package/dist/features/invalidate-cache/bundle.zip +0 -0
- package/dist/features/upload-bucket-asset/bundle.zip +0 -0
- package/package.json +3 -3
package/dist/bin.js
CHANGED
|
@@ -4430,9 +4430,11 @@ var Bucket = class extends Resource {
|
|
|
4430
4430
|
"s3:GetObjectAttributes"
|
|
4431
4431
|
],
|
|
4432
4432
|
resources: [
|
|
4433
|
-
sub("arn:${AWS::Partition}
|
|
4434
|
-
|
|
4435
|
-
|
|
4433
|
+
sub("arn:${AWS::Partition}:s3:::${bucket}", {
|
|
4434
|
+
bucket: this.name
|
|
4435
|
+
}),
|
|
4436
|
+
sub("arn:${AWS::Partition}:s3:::${bucket}/*", {
|
|
4437
|
+
bucket: this.name
|
|
4436
4438
|
})
|
|
4437
4439
|
]
|
|
4438
4440
|
};
|
|
@@ -4975,6 +4977,7 @@ var Table = class extends Resource {
|
|
|
4975
4977
|
"dynamodb:DescribeTable",
|
|
4976
4978
|
"dynamodb:PutItem",
|
|
4977
4979
|
"dynamodb:GetItem",
|
|
4980
|
+
"dynamodb:UpdateItem",
|
|
4978
4981
|
"dynamodb:DeleteItem",
|
|
4979
4982
|
"dynamodb:TransactWrite",
|
|
4980
4983
|
"dynamodb:BatchWriteItem",
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@awsless/awsless",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.158",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
}
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
|
-
"@awsless/lambda": "^0.0.18",
|
|
32
31
|
"@awsless/redis": "^0.0.10",
|
|
33
|
-
"@awsless/s3": "^0.0.8",
|
|
34
32
|
"@awsless/sns": "^0.0.7",
|
|
33
|
+
"@awsless/lambda": "^0.0.18",
|
|
34
|
+
"@awsless/s3": "^0.0.8",
|
|
35
35
|
"@awsless/ssm": "^0.0.7",
|
|
36
36
|
"@awsless/sqs": "^0.0.7",
|
|
37
37
|
"@awsless/validate": "^0.0.13",
|