@wraps.dev/cli 2.17.4 → 2.17.6
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
Built at: 2026-
|
|
1
|
+
Built at: 2026-03-04T18:36:39.479Z
|
|
@@ -1 +1 @@
|
|
|
1
|
-
Built at: 2026-
|
|
1
|
+
Built at: 2026-03-04T18:36:39.555Z
|
|
@@ -103,7 +103,10 @@ export async function handler(event: S3Event, context: Context) {
|
|
|
103
103
|
|
|
104
104
|
if (headers[key] != null) {
|
|
105
105
|
// Multiple values for same header — combine strings, keep first object
|
|
106
|
-
if (
|
|
106
|
+
if (
|
|
107
|
+
typeof headers[key] === "string" &&
|
|
108
|
+
typeof headerValue === "string"
|
|
109
|
+
) {
|
|
107
110
|
headers[key] = `${headers[key]}, ${headerValue}`;
|
|
108
111
|
}
|
|
109
112
|
} else {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
Built at: 2026-
|
|
1
|
+
Built at: 2026-03-04T18:36:39.484Z
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wraps.dev/cli",
|
|
3
|
-
"version": "2.17.
|
|
3
|
+
"version": "2.17.6",
|
|
4
4
|
"description": "CLI for deploying Wraps email infrastructure to your AWS account",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/cli.js",
|
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"tsx": "4.20.6",
|
|
87
87
|
"typescript": "^5.9.3",
|
|
88
88
|
"vitest": "^4.0.7",
|
|
89
|
-
"@wraps/
|
|
90
|
-
"@wraps/
|
|
89
|
+
"@wraps/email-check": "1.0.0",
|
|
90
|
+
"@wraps/core": "0.1.0"
|
|
91
91
|
},
|
|
92
92
|
"engines": {
|
|
93
93
|
"node": ">=20.0.0"
|