@awsless/awsless 0.0.642 → 0.0.643
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
CHANGED
|
@@ -4093,7 +4093,7 @@ var cronFeature = defineFeature({
|
|
|
4093
4093
|
target: {
|
|
4094
4094
|
arn: lambda.arn,
|
|
4095
4095
|
roleArn: scheduleRole.arn,
|
|
4096
|
-
input: JSON.stringify(props.payload)
|
|
4096
|
+
input: JSON.stringify(props.payload) ?? "{}"
|
|
4097
4097
|
}
|
|
4098
4098
|
});
|
|
4099
4099
|
}
|
|
@@ -7387,7 +7387,7 @@ var getViewerRequestFunctionCode = (props) => {
|
|
|
7387
7387
|
]);
|
|
7388
7388
|
};
|
|
7389
7389
|
var BLOCK_DIRECT_ACCESS_TO_CLOUDFRONT = `
|
|
7390
|
-
if (headers.host.value.includes('cloudfront.net')) {
|
|
7390
|
+
if (headers.host && headers.host.value.includes('cloudfront.net')) {
|
|
7391
7391
|
return {
|
|
7392
7392
|
statusCode: 403,
|
|
7393
7393
|
statusDescription: 'Forbidden'
|
|
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.643",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -35,21 +35,21 @@
|
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"@awsless/big-float": "^0.1.5",
|
|
37
37
|
"@awsless/cloudwatch": "^0.0.1",
|
|
38
|
-
"@awsless/clui": "^0.0.8",
|
|
39
|
-
"@awsless/dynamodb": "^0.3.14",
|
|
40
|
-
"@awsless/iot": "^0.0.3",
|
|
41
|
-
"@awsless/json": "^0.0.11",
|
|
42
38
|
"@awsless/duration": "^0.0.4",
|
|
43
|
-
"@awsless/
|
|
44
|
-
"@awsless/
|
|
39
|
+
"@awsless/json": "^0.0.11",
|
|
40
|
+
"@awsless/iot": "^0.0.3",
|
|
45
41
|
"@awsless/lambda": "^0.0.37",
|
|
46
|
-
"@awsless/
|
|
47
|
-
"@awsless/sns": "^0.0.10",
|
|
48
|
-
"@awsless/sqs": "^0.0.16",
|
|
42
|
+
"@awsless/clui": "^0.0.8",
|
|
49
43
|
"@awsless/s3": "^0.0.21",
|
|
44
|
+
"@awsless/dynamodb": "^0.3.15",
|
|
45
|
+
"@awsless/mqtt": "^0.0.2",
|
|
46
|
+
"@awsless/redis": "^0.0.14",
|
|
50
47
|
"@awsless/validate": "^0.1.5",
|
|
48
|
+
"@awsless/weak-cache": "^0.0.1",
|
|
49
|
+
"@awsless/open-search": "^0.0.21",
|
|
50
|
+
"@awsless/sns": "^0.0.10",
|
|
51
51
|
"@awsless/ssm": "^0.0.7",
|
|
52
|
-
"@awsless/
|
|
52
|
+
"@awsless/sqs": "^0.0.16"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@aws-sdk/client-cloudformation": "^3.369.0",
|
|
@@ -115,13 +115,13 @@
|
|
|
115
115
|
"zod-to-json-schema": "^3.24.3",
|
|
116
116
|
"@awsless/big-float": "^0.1.5",
|
|
117
117
|
"@awsless/cloudwatch": "^0.0.1",
|
|
118
|
-
"@awsless/clui": "^0.0.8",
|
|
119
|
-
"@awsless/json": "^0.0.11",
|
|
120
118
|
"@awsless/duration": "^0.0.4",
|
|
121
119
|
"@awsless/scheduler": "^0.0.4",
|
|
122
|
-
"@awsless/
|
|
120
|
+
"@awsless/size": "^0.0.2",
|
|
123
121
|
"@awsless/validate": "^0.1.5",
|
|
124
|
-
"@awsless/
|
|
122
|
+
"@awsless/json": "^0.0.11",
|
|
123
|
+
"@awsless/clui": "^0.0.8",
|
|
124
|
+
"@awsless/ts-file-cache": "^0.0.12"
|
|
125
125
|
},
|
|
126
126
|
"devDependencies": {
|
|
127
127
|
"@hono/node-server": "1.19.9",
|