@continuous-excellence/ze-great-dashboard-aws 0.31.2 → 0.31.3
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/lambda.mjs +7 -4
- package/package.json +1 -1
package/dist/lambda.mjs
CHANGED
|
@@ -26039,7 +26039,7 @@ var require_dist_cjs16 = __commonJS({
|
|
|
26039
26039
|
Region: { type: "builtInParams", name: "region" },
|
|
26040
26040
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" }
|
|
26041
26041
|
};
|
|
26042
|
-
var version2 = "3.
|
|
26042
|
+
var version2 = "3.1132.0";
|
|
26043
26043
|
var packageInfo = {
|
|
26044
26044
|
version: version2
|
|
26045
26045
|
};
|
|
@@ -27817,7 +27817,7 @@ var require_dist_cjs17 = __commonJS({
|
|
|
27817
27817
|
Region: { type: "builtInParams", name: "region" },
|
|
27818
27818
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" }
|
|
27819
27819
|
};
|
|
27820
|
-
var version2 = "3.
|
|
27820
|
+
var version2 = "3.1132.0";
|
|
27821
27821
|
var packageInfo = {
|
|
27822
27822
|
version: version2
|
|
27823
27823
|
};
|
|
@@ -71461,7 +71461,10 @@ var HonoRequest = class {
|
|
|
71461
71461
|
if (anyCachedKey === "json") {
|
|
71462
71462
|
body = JSON.stringify(body);
|
|
71463
71463
|
}
|
|
71464
|
-
|
|
71464
|
+
const contentType = anyCachedKey === "formData" ? void 0 : raw2.headers.get("content-type");
|
|
71465
|
+
return new Response(body, {
|
|
71466
|
+
headers: contentType ? { "Content-Type": contentType } : void 0
|
|
71467
|
+
})[key]();
|
|
71465
71468
|
});
|
|
71466
71469
|
}
|
|
71467
71470
|
return bodyCache[key] = raw2[key]();
|
|
@@ -72094,7 +72097,7 @@ var Context = class {
|
|
|
72094
72097
|
const locationString = String(location);
|
|
72095
72098
|
this.header(
|
|
72096
72099
|
"Location",
|
|
72097
|
-
//
|
|
72100
|
+
// Multibytes should be encoded
|
|
72098
72101
|
// eslint-disable-next-line no-control-regex
|
|
72099
72102
|
!/[^\x00-\xFF]/.test(locationString) ? locationString : encodeURI(locationString)
|
|
72100
72103
|
);
|
package/package.json
CHANGED