@realtimex/email-automator 2.8.4 → 2.9.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/index.html CHANGED
@@ -5,7 +5,7 @@
5
5
  <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
7
  <title>Email Automator</title>
8
- <script type="module" crossorigin src="/assets/index-B9bx8Y2-.js"></script>
8
+ <script type="module" crossorigin src="/assets/index-fpSQFV7a.js"></script>
9
9
  <link rel="stylesheet" crossorigin href="/assets/index-BXVbfEhG.css">
10
10
  </head>
11
11
  <body>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@realtimex/email-automator",
3
- "version": "2.8.4",
3
+ "version": "2.9.0",
4
4
  "type": "module",
5
5
  "main": "dist/api/server.js",
6
6
  "bin": {
@@ -0,0 +1,5 @@
1
+ -- Migration: Add Intelligent Rename Setting
2
+ ALTER TABLE user_settings
3
+ ADD COLUMN IF NOT EXISTS intelligent_rename BOOLEAN DEFAULT false;
4
+
5
+ COMMENT ON COLUMN user_settings.intelligent_rename IS 'Whether to use slugified-hyphenated-names for archived .eml files.';