@wraps.dev/cli 2.23.0 → 2.23.1
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/api-lambda.zip
CHANGED
|
Binary file
|
package/dist/cli.js
CHANGED
|
@@ -8366,7 +8366,7 @@ async function deployInboundLambda(config2) {
|
|
|
8366
8366
|
const functionName = "wraps-inbound-email-processor";
|
|
8367
8367
|
const lambdaFunction = new aws17.lambda.Function(functionName, {
|
|
8368
8368
|
name: functionName,
|
|
8369
|
-
runtime: "
|
|
8369
|
+
runtime: "nodejs24.x",
|
|
8370
8370
|
handler: "index.handler",
|
|
8371
8371
|
role: lambdaRole.arn,
|
|
8372
8372
|
code: new pulumi13.asset.FileArchive(inboundProcessorCode),
|
|
@@ -26391,7 +26391,7 @@ async function loadWrapsConfig(wrapsDir) {
|
|
|
26391
26391
|
write: false,
|
|
26392
26392
|
format: "esm",
|
|
26393
26393
|
platform: "node",
|
|
26394
|
-
target: "
|
|
26394
|
+
target: "node24",
|
|
26395
26395
|
alias: {
|
|
26396
26396
|
"@wraps.dev/client": join12(shimDir, "wraps-client-shim.mjs")
|
|
26397
26397
|
}
|
|
@@ -26453,7 +26453,7 @@ async function compileForPreview(filePath, slug, wrapsDir) {
|
|
|
26453
26453
|
write: false,
|
|
26454
26454
|
format: "esm",
|
|
26455
26455
|
platform: "node",
|
|
26456
|
-
target: "
|
|
26456
|
+
target: "node24",
|
|
26457
26457
|
jsx: "automatic",
|
|
26458
26458
|
nodePaths: cliNodeModules,
|
|
26459
26459
|
banner: {
|
|
@@ -27102,7 +27102,7 @@ async function compileTemplate(filePath, slug, source, sourceHash, wrapsDir) {
|
|
|
27102
27102
|
write: false,
|
|
27103
27103
|
format: "esm",
|
|
27104
27104
|
platform: "node",
|
|
27105
|
-
target: "
|
|
27105
|
+
target: "node24",
|
|
27106
27106
|
jsx: "automatic",
|
|
27107
27107
|
nodePaths: cliNodeModules,
|
|
27108
27108
|
// Provide require() for CJS dependencies bundled into ESM output
|
|
@@ -30593,7 +30593,7 @@ function durationToSeconds(duration) {
|
|
|
30593
30593
|
write: false,
|
|
30594
30594
|
format: "esm",
|
|
30595
30595
|
platform: "node",
|
|
30596
|
-
target: "
|
|
30596
|
+
target: "node24",
|
|
30597
30597
|
alias: {
|
|
30598
30598
|
"@wraps.dev/client": join17(shimDir, "wraps-client-shim.mjs")
|
|
30599
30599
|
}
|
|
@@ -33767,7 +33767,7 @@ async function deploySelfhostStack(config2) {
|
|
|
33767
33767
|
});
|
|
33768
33768
|
const lambdaFn = new aws20.lambda.Function("wraps-selfhost-api", {
|
|
33769
33769
|
name: "wraps-selfhost-api",
|
|
33770
|
-
runtime: "
|
|
33770
|
+
runtime: "nodejs24.x",
|
|
33771
33771
|
handler: "lambda.handler",
|
|
33772
33772
|
role: role.arn,
|
|
33773
33773
|
code: new pulumi25.asset.FileArchive(config2.lambdaZipPath),
|
|
@@ -38394,7 +38394,7 @@ async function deploySMSLambdaFunction(config2) {
|
|
|
38394
38394
|
"wraps-sms-event-processor",
|
|
38395
38395
|
{
|
|
38396
38396
|
name: "wraps-sms-event-processor",
|
|
38397
|
-
runtime: "
|
|
38397
|
+
runtime: "nodejs24.x",
|
|
38398
38398
|
handler: "index.handler",
|
|
38399
38399
|
role: lambdaRole.arn,
|
|
38400
38400
|
code: new pulumi31.asset.FileArchive(codeDir),
|