@wraps.dev/cli 2.22.8 → 2.23.0
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 +0 -0
- package/dist/cli.js +905 -801
- package/dist/cli.js.map +1 -1
- package/dist/lambda/event-processor/.bundled +1 -1
- package/dist/lambda/inbound-processor/.bundled +1 -1
- package/dist/lambda/sms-event-processor/.bundled +1 -1
- package/dist/selfhost-migrations/0058_email_log_sent_at_idx.sql +1 -0
- package/dist/selfhost-migrations/meta/_journal.json +7 -0
- package/package.json +3 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
Built at: 2026-
|
|
1
|
+
Built at: 2026-06-04T16:44:33.134Z
|
|
@@ -1 +1 @@
|
|
|
1
|
-
Built at: 2026-
|
|
1
|
+
Built at: 2026-06-04T16:44:33.219Z
|
|
@@ -1 +1 @@
|
|
|
1
|
-
Built at: 2026-
|
|
1
|
+
Built at: 2026-06-04T16:44:33.144Z
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
CREATE INDEX IF NOT EXISTS "message_send_org_channel_sent_at_idx" ON "message_send" ("organization_id","channel","sent_at");
|
|
@@ -407,6 +407,13 @@
|
|
|
407
407
|
"when": 1778272845152,
|
|
408
408
|
"tag": "0057_audit_log_actoremail_jsonb",
|
|
409
409
|
"breakpoints": true
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"idx": 58,
|
|
413
|
+
"version": "7",
|
|
414
|
+
"when": 1748908800000,
|
|
415
|
+
"tag": "0058_email_log_sent_at_idx",
|
|
416
|
+
"breakpoints": true
|
|
410
417
|
}
|
|
411
418
|
]
|
|
412
419
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wraps.dev/cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.23.0",
|
|
4
4
|
"description": "Deploy email, SMS, and CDN infrastructure to your AWS account with one command. Sets up SES with DKIM/SPF/DMARC, event processing, and history automatically.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/cli.js",
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"author": "Wraps",
|
|
47
47
|
"license": "AGPL-3.0-or-later",
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@neondatabase/serverless": "^1.0.1",
|
|
50
49
|
"drizzle-orm": "^0.45.2",
|
|
50
|
+
"pg": "^8.14.1",
|
|
51
51
|
"@aws-sdk/client-acm": "3.1030.0",
|
|
52
52
|
"@aws-sdk/client-cloudformation": "3.1030.0",
|
|
53
53
|
"@aws-sdk/client-cloudfront": "3.1030.0",
|
|
@@ -89,6 +89,7 @@
|
|
|
89
89
|
},
|
|
90
90
|
"devDependencies": {
|
|
91
91
|
"@types/express": "^5.0.0",
|
|
92
|
+
"@types/pg": "^8.11.14",
|
|
92
93
|
"@types/mailparser": "3.4.6",
|
|
93
94
|
"@types/node": "24.10.0",
|
|
94
95
|
"@types/react": "19.2.4",
|