n8n 1.113.3 → 1.114.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.
Files changed (124) hide show
  1. package/dist/abstract-server.js +9 -3
  2. package/dist/abstract-server.js.map +1 -1
  3. package/dist/auth/auth.service.d.ts +6 -1
  4. package/dist/auth/auth.service.js +5 -1
  5. package/dist/auth/auth.service.js.map +1 -1
  6. package/dist/build.tsbuildinfo +1 -1
  7. package/dist/chat/utils.js +9 -2
  8. package/dist/chat/utils.js.map +1 -1
  9. package/dist/commands/base-command.js +0 -2
  10. package/dist/commands/base-command.js.map +1 -1
  11. package/dist/commands/import/entities.d.ts +3 -0
  12. package/dist/commands/import/entities.js +14 -7
  13. package/dist/commands/import/entities.js.map +1 -1
  14. package/dist/commands/start.js +5 -0
  15. package/dist/commands/start.js.map +1 -1
  16. package/dist/commands/webhook.js +2 -0
  17. package/dist/commands/webhook.js.map +1 -1
  18. package/dist/commands/worker.js +5 -0
  19. package/dist/commands/worker.js.map +1 -1
  20. package/dist/controller.registry.js +9 -5
  21. package/dist/controller.registry.js.map +1 -1
  22. package/dist/controllers/ai.controller.d.ts +2 -5
  23. package/dist/controllers/ai.controller.js +20 -1
  24. package/dist/controllers/ai.controller.js.map +1 -1
  25. package/dist/controllers/auth.controller.js +1 -1
  26. package/dist/controllers/auth.controller.js.map +1 -1
  27. package/dist/controllers/e2e.controller.js +1 -0
  28. package/dist/controllers/e2e.controller.js.map +1 -1
  29. package/dist/controllers/project.controller.d.ts +5 -2
  30. package/dist/controllers/project.controller.js +81 -15
  31. package/dist/controllers/project.controller.js.map +1 -1
  32. package/dist/credentials-overwrites.d.ts +17 -2
  33. package/dist/credentials-overwrites.js +134 -7
  34. package/dist/credentials-overwrites.js.map +1 -1
  35. package/dist/deprecation/deprecation.service.js +2 -9
  36. package/dist/deprecation/deprecation.service.js.map +1 -1
  37. package/dist/environments.ee/source-control/source-control-git.service.ee.d.ts +2 -2
  38. package/dist/environments.ee/source-control/source-control-git.service.ee.js +37 -21
  39. package/dist/environments.ee/source-control/source-control-git.service.ee.js.map +1 -1
  40. package/dist/environments.ee/source-control/source-control-preferences.service.ee.d.ts +7 -0
  41. package/dist/environments.ee/source-control/source-control-preferences.service.ee.js +46 -2
  42. package/dist/environments.ee/source-control/source-control-preferences.service.ee.js.map +1 -1
  43. package/dist/environments.ee/source-control/source-control.service.ee.js +7 -1
  44. package/dist/environments.ee/source-control/source-control.service.ee.js.map +1 -1
  45. package/dist/environments.ee/source-control/types/source-control-preferences.d.ts +3 -0
  46. package/dist/environments.ee/source-control/types/source-control-preferences.js +19 -0
  47. package/dist/environments.ee/source-control/types/source-control-preferences.js.map +1 -1
  48. package/dist/evaluation.ee/test-runner/test-runner.service.ee.js +0 -4
  49. package/dist/evaluation.ee/test-runner/test-runner.service.ee.js.map +1 -1
  50. package/dist/manual-execution.service.js +3 -9
  51. package/dist/manual-execution.service.js.map +1 -1
  52. package/dist/modules/data-table/data-table.module.js +0 -7
  53. package/dist/modules/data-table/data-table.module.js.map +1 -1
  54. package/dist/modules/insights/database/entities/insights-raw.d.ts +1 -1
  55. package/dist/modules/insights/database/repositories/insights-by-period.repository.d.ts +10 -6
  56. package/dist/modules/insights/database/repositories/insights-by-period.repository.js +52 -14
  57. package/dist/modules/insights/database/repositories/insights-by-period.repository.js.map +1 -1
  58. package/dist/modules/insights/insights.controller.d.ts +8 -10
  59. package/dist/modules/insights/insights.controller.js +91 -39
  60. package/dist/modules/insights/insights.controller.js.map +1 -1
  61. package/dist/modules/insights/insights.service.d.ts +16 -12
  62. package/dist/modules/insights/insights.service.js +36 -13
  63. package/dist/modules/insights/insights.service.js.map +1 -1
  64. package/dist/public-api/v1/handlers/projects/projects.handler.js +1 -1
  65. package/dist/public-api/v1/handlers/projects/projects.handler.js.map +1 -1
  66. package/dist/push/index.js +1 -1
  67. package/dist/push/index.js.map +1 -1
  68. package/dist/scaling/constants.d.ts +2 -2
  69. package/dist/scaling/job-processor.d.ts +3 -1
  70. package/dist/scaling/job-processor.js +11 -4
  71. package/dist/scaling/job-processor.js.map +1 -1
  72. package/dist/scaling/pubsub/pubsub.event-map.d.ts +1 -0
  73. package/dist/scaling/pubsub/pubsub.types.d.ts +2 -1
  74. package/dist/scaling/worker-server.js +24 -12
  75. package/dist/scaling/worker-server.js.map +1 -1
  76. package/dist/server.js +8 -4
  77. package/dist/server.js.map +1 -1
  78. package/dist/services/ai-workflow-builder.service.d.ts +5 -6
  79. package/dist/services/ai-workflow-builder.service.js +19 -3
  80. package/dist/services/ai-workflow-builder.service.js.map +1 -1
  81. package/dist/services/export.service.d.ts +2 -1
  82. package/dist/services/export.service.js +38 -5
  83. package/dist/services/export.service.js.map +1 -1
  84. package/dist/services/frontend.service.js +2 -1
  85. package/dist/services/frontend.service.js.map +1 -1
  86. package/dist/services/hooks.service.js +1 -1
  87. package/dist/services/hooks.service.js.map +1 -1
  88. package/dist/services/import.service.d.ts +17 -1
  89. package/dist/services/import.service.js +249 -2
  90. package/dist/services/import.service.js.map +1 -1
  91. package/dist/services/last-active-at.service.d.ts +1 -1
  92. package/dist/services/last-active-at.service.js +2 -5
  93. package/dist/services/last-active-at.service.js.map +1 -1
  94. package/dist/services/project.service.ee.d.ts +17 -2
  95. package/dist/services/project.service.ee.js +33 -0
  96. package/dist/services/project.service.ee.js.map +1 -1
  97. package/dist/services/role.service.js +4 -0
  98. package/dist/services/role.service.js.map +1 -1
  99. package/dist/sso.ee/oidc/oidc.service.ee.d.ts +2 -2
  100. package/dist/sso.ee/oidc/oidc.service.ee.js +5 -2
  101. package/dist/sso.ee/oidc/oidc.service.ee.js.map +1 -1
  102. package/dist/sso.ee/oidc/routes/oidc.controller.ee.d.ts +1 -1
  103. package/dist/user-management/email/templates/credentials-shared.handlebars +57 -70
  104. package/dist/user-management/email/templates/password-reset-requested.handlebars +67 -104
  105. package/dist/user-management/email/templates/project-shared.handlebars +52 -65
  106. package/dist/user-management/email/templates/user-invited.handlebars +57 -70
  107. package/dist/user-management/email/templates/workflow-shared.handlebars +57 -70
  108. package/dist/user-management/email/user-management-mailer.js +3 -2
  109. package/dist/user-management/email/user-management-mailer.js.map +1 -1
  110. package/dist/utils/validate-database-type.d.ts +2 -0
  111. package/dist/utils/validate-database-type.js +11 -0
  112. package/dist/utils/validate-database-type.js.map +1 -0
  113. package/dist/webhooks/webhook-helpers.d.ts +1 -0
  114. package/dist/webhooks/webhook-helpers.js +11 -4
  115. package/dist/webhooks/webhook-helpers.js.map +1 -1
  116. package/dist/webhooks/webhook-last-node-response-extractor.js +32 -5
  117. package/dist/webhooks/webhook-last-node-response-extractor.js.map +1 -1
  118. package/dist/workflows/workflow-execution.service.d.ts +1 -1
  119. package/dist/workflows/workflow-execution.service.js +1 -3
  120. package/dist/workflows/workflow-execution.service.js.map +1 -1
  121. package/dist/workflows/workflows.controller.d.ts +2 -2
  122. package/dist/workflows/workflows.controller.js +3 -4
  123. package/dist/workflows/workflows.controller.js.map +1 -1
  124. package/package.json +19 -19
@@ -94,139 +94,102 @@
94
94
  </style>
95
95
  </head>
96
96
 
97
- <body style="word-spacing:normal;">
98
- <div style="" lang="und" dir="auto">
97
+ <body style="word-spacing:normal;background-color:#ffffff;">
98
+ <div style="background-color:#ffffff;" lang="und" dir="auto">
99
99
  <!--[if mso | IE]><table align="center" border="0" cellpadding="0" cellspacing="0" class="" role="presentation" style="width:600px;" width="600" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]-->
100
100
  <div style="margin:0px auto;max-width:600px;">
101
101
  <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%;">
102
102
  <tbody>
103
103
  <tr>
104
- <td style="direction:ltr;font-size:0px;padding:20px 0;text-align:center;">
105
- <!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td align="left" class="" style="vertical-align:top;width:600px;" ><![endif]-->
104
+ <td style="direction:ltr;font-size:0px;padding:0 20px;text-align:center;">
105
+ <!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:560px;" ><![endif]-->
106
106
  <div class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;">
107
107
  <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
108
108
  <tbody>
109
109
  <tr>
110
- <td style="vertical-align:top;padding-left:15px;">
110
+ <td style="vertical-align:top;padding:0px;">
111
111
  <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="" width="100%">
112
112
  <tbody>
113
113
  <tr>
114
- <td align="left" style="font-size:0px;padding:0;word-break:break-word;">
114
+ <td align="left" style="font-size:0px;padding:0px;padding-top:20px;padding-bottom:40px;word-break:break-word;">
115
115
  <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px;">
116
116
  <tbody>
117
117
  <tr>
118
118
  <td style="width:125px;">
119
- <img alt="" src="cid:n8n-logo" style="border:0;display:block;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;" width="125" height="auto" />
119
+ <a href="https://n8n.io/" target="_blank">
120
+ <img alt="n8n" src="cid:n8n-logo" style="border:0;display:block;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;" width="125" height="auto" />
121
+ </a>
120
122
  </td>
121
123
  </tr>
122
124
  </tbody>
123
125
  </table>
124
126
  </td>
125
127
  </tr>
126
- </tbody>
127
- </table>
128
- </td>
129
- </tr>
130
- </tbody>
131
- </table>
132
- </div>
133
- <!--[if mso | IE]></td></tr></table><![endif]-->
134
- </td>
135
- </tr>
136
- </tbody>
137
- </table>
138
- </div>
139
- <!--[if mso | IE]></td></tr></table><table align="center" border="0" cellpadding="0" cellspacing="0" class="" role="presentation" style="width:600px;" width="600" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]-->
140
- <div style="margin:0px auto;max-width:600px;">
141
- <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%;">
142
- <tbody>
143
- <tr>
144
- <td style="direction:ltr;font-size:0px;padding:20px 0;text-align:center;">
145
- <!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td align="left" class="" style="vertical-align:top;width:600px;" ><![endif]-->
146
- <div class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;">
147
- <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
148
- <tbody>
149
- <tr>
150
- <td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;">
151
- <div style="font-family:Inter, Helvetica, Arial, sans-serif;font-size:24px;font-weight:400;line-height:24px;text-align:left;color:#444444;">Reset your n8n password</div>
152
- </td>
153
- </tr>
154
- </tbody>
155
- </table>
156
- </div>
157
- <!--[if mso | IE]></td></tr></table><![endif]-->
158
- </td>
159
- </tr>
160
- </tbody>
161
- </table>
162
- </div>
163
- <!--[if mso | IE]></td></tr></table><table align="center" border="0" cellpadding="0" cellspacing="0" class="" role="presentation" style="width:600px;" width="600" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]-->
164
- <div style="margin:0px auto;max-width:600px;">
165
- <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%;">
166
- <tbody>
167
- <tr>
168
- <td style="direction:ltr;font-size:0px;padding:20px 0;text-align:center;">
169
- <!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td align="left" class="" style="vertical-align:top;width:600px;" ><![endif]-->
170
- <div class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;">
171
- <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
172
- <tbody>
173
- <tr>
174
- <td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;">
175
- <div style="font-family:Inter, Helvetica, Arial, sans-serif;font-size:20px;font-weight:400;line-height:24px;text-align:left;color:#444444;">Hi {{firstName}},</div>
176
- </td>
177
- </tr>
178
- <tr>
179
- <td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;">
180
- <div style="font-family:Inter, Helvetica, Arial, sans-serif;font-size:16px;font-weight:400;line-height:24px;text-align:left;color:#444444;">Somebody asked to reset your password on n8n at <b>{{domain}}</b> .</div>
181
- </td>
182
- </tr>
183
- <tr>
184
- <td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;">
185
- <div style="font-family:Inter, Helvetica, Arial, sans-serif;font-size:16px;font-weight:400;line-height:24px;text-align:left;color:#444444;">Click the following link to choose a new password.</div>
186
- </td>
187
- </tr>
188
- <tr>
189
- <td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;">
190
- <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:separate;line-height:100%;">
191
- <tbody>
192
128
  <tr>
193
- <td align="center" bgcolor="#ff6f5c" role="presentation" style="border:none;border-radius:5px;cursor:auto;mso-padding-alt:10px 25px;background:#ff6f5c;" valign="middle">
194
- <a href="{{passwordResetUrl}}" style="display:inline-block;background:#ff6f5c;color:#ffffff;font-family:Inter, Helvetica, Arial, sans-serif;font-size:16px;font-weight:500;line-height:20px;margin:0;text-decoration:none;text-transform:none;padding:10px 25px;mso-padding-alt:0px;border-radius:5px;" target="_blank"> Set a new password </a>
129
+ <td align="left" style="font-size:0px;padding:8px 12px;word-break:break-word;">
130
+ <div style="font-family:Inter, Helvetica, Arial, sans-serif;font-size:22px;font-weight:400;line-height:1.5;text-align:left;color:#414244;">Reset your n8n password</div>
131
+ </td>
132
+ </tr>
133
+ <tr>
134
+ <td align="left" style="font-size:0px;padding:8px 12px;word-break:break-word;">
135
+ <div style="font-family:Inter, Helvetica, Arial, sans-serif;font-size:16px;line-height:1.5;text-align:left;color:#414244;">Hi {{firstName}},</div>
136
+ </td>
137
+ </tr>
138
+ <tr>
139
+ <td align="left" style="font-size:0px;padding:8px 12px;word-break:break-word;">
140
+ <div style="font-family:Inter, Helvetica, Arial, sans-serif;font-size:16px;line-height:1.5;text-align:left;color:#414244;">Somebody asked to reset your password on n8n at <b>{{domain}}</b>.</div>
141
+ </td>
142
+ </tr>
143
+ <tr>
144
+ <td align="left" style="font-size:0px;padding:8px 12px;word-break:break-word;">
145
+ <div style="font-family:Inter, Helvetica, Arial, sans-serif;font-size:16px;line-height:1.5;text-align:left;color:#414244;">Click the following link to choose a new password.</div>
146
+ </td>
147
+ </tr>
148
+ <tr>
149
+ <td align="left" style="font-size:0px;padding:20px 12px;word-break:break-word;">
150
+ <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:separate;line-height:100%;">
151
+ <tbody>
152
+ <tr>
153
+ <td align="center" bgcolor="#ff6f5c" role="presentation" style="border:none;border-radius:8px;cursor:auto;mso-padding-alt:8px 40px;background:#ff6f5c;" valign="middle">
154
+ <a href="{{passwordResetUrl}}" style="display:inline-block;background:#ff6f5c;color:#ffffff;font-family:Inter, Helvetica, Arial, sans-serif;font-size:16px;font-weight:normal;line-height:1.5;margin:0;text-decoration:none;text-transform:none;padding:8px 40px;mso-padding-alt:0px;border-radius:8px;" target="_blank"> Set a new password </a>
155
+ </td>
156
+ </tr>
157
+ </tbody>
158
+ </table>
159
+ </td>
160
+ </tr>
161
+ <tr>
162
+ <td align="left" style="font-size:0px;padding:8px 12px;word-break:break-word;">
163
+ <div style="font-family:Inter, Helvetica, Arial, sans-serif;font-size:14px;font-style:italic;font-weight:300;line-height:1.5;text-align:left;color:#909398;">The link is only valid for 20 minutes since this email was sent. If you did not request this email, you can safely ignore this. Your password will not be changed.</div>
164
+ </td>
165
+ </tr>
166
+ <tr>
167
+ <td style="font-size:0px;word-break:break-word;">
168
+ <div style="height:24px;line-height:24px;">&#8202;</div>
169
+ </td>
170
+ </tr>
171
+ <tr>
172
+ <td align="center" style="font-size:0px;padding:10px 12px;word-break:break-word;">
173
+ <p style="border-top:solid 1px #d9d9d9;font-size:1px;margin:0px auto;width:100%;">
174
+ </p>
175
+ <!--[if mso | IE]><table align="center" border="0" cellpadding="0" cellspacing="0" style="border-top:solid 1px #d9d9d9;font-size:1px;margin:0px auto;width:536px;" role="presentation" width="536px" ><tr><td style="height:0;line-height:0;"> &nbsp;
176
+ </td></tr></table><![endif]-->
177
+ </td>
178
+ </tr>
179
+ <tr>
180
+ <td style="font-size:0px;word-break:break-word;">
181
+ <div style="height:16px;line-height:16px;">&#8202;</div>
182
+ </td>
183
+ </tr>
184
+ <tr>
185
+ <td align="left" style="font-size:0px;padding:8px 12px;word-break:break-word;">
186
+ <div style="font-family:Inter, Helvetica, Arial, sans-serif;font-size:14px;font-weight:300;line-height:1.5;text-align:left;color:#909398;">n8n GmbH, Novalisstraße 10, 10115 Berlin, Germany<br /> ©{{ currentYear }} n8n GmbH, all rights reserved<br /></div>
195
187
  </td>
196
188
  </tr>
197
189
  </tbody>
198
190
  </table>
199
191
  </td>
200
192
  </tr>
201
- <tr>
202
- <td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;">
203
- <div style="font-family:Inter, Helvetica, Arial, sans-serif;font-size:14px;font-weight:400;line-height:24px;text-align:left;color:#444444;">The link is only valid for 20 minutes since this email was sent.</div>
204
- </td>
205
- </tr>
206
- </tbody>
207
- </table>
208
- </div>
209
- <!--[if mso | IE]></td></tr></table><![endif]-->
210
- </td>
211
- </tr>
212
- </tbody>
213
- </table>
214
- </div>
215
- <!--[if mso | IE]></td></tr></table><table align="center" border="0" cellpadding="0" cellspacing="0" class="" role="presentation" style="width:600px;" width="600" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]-->
216
- <div style="margin:0px auto;max-width:600px;">
217
- <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%;">
218
- <tbody>
219
- <tr>
220
- <td style="direction:ltr;font-size:0px;padding:20px 0;text-align:center;">
221
- <!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td align="left" class="" style="vertical-align:top;width:600px;" ><![endif]-->
222
- <div class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;">
223
- <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
224
- <tbody>
225
- <tr>
226
- <td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;">
227
- <div style="font-family:Inter, Helvetica, Arial, sans-serif;font-size:16px;font-weight:400;line-height:24px;text-align:left;color:#444444;">If you did not request this email, you can safely ignore this. <br /> Your password will not be changed.</div>
228
- </td>
229
- </tr>
230
193
  </tbody>
231
194
  </table>
232
195
  </div>
@@ -94,94 +94,81 @@
94
94
  </style>
95
95
  </head>
96
96
 
97
- <body style="word-spacing:normal;">
98
- <div style="" lang="und" dir="auto">
97
+ <body style="word-spacing:normal;background-color:#ffffff;">
98
+ <div style="background-color:#ffffff;" lang="und" dir="auto">
99
99
  <!--[if mso | IE]><table align="center" border="0" cellpadding="0" cellspacing="0" class="" role="presentation" style="width:600px;" width="600" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]-->
100
100
  <div style="margin:0px auto;max-width:600px;">
101
101
  <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%;">
102
102
  <tbody>
103
103
  <tr>
104
- <td style="direction:ltr;font-size:0px;padding:20px 0;text-align:center;">
105
- <!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td align="left" class="" style="vertical-align:top;width:600px;" ><![endif]-->
104
+ <td style="direction:ltr;font-size:0px;padding:0 20px;text-align:center;">
105
+ <!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:560px;" ><![endif]-->
106
106
  <div class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;">
107
107
  <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
108
108
  <tbody>
109
109
  <tr>
110
- <td style="vertical-align:top;padding-left:15px;">
110
+ <td style="vertical-align:top;padding:0px;">
111
111
  <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="" width="100%">
112
112
  <tbody>
113
113
  <tr>
114
- <td align="left" style="font-size:0px;padding:0;word-break:break-word;">
114
+ <td align="left" style="font-size:0px;padding:0px;padding-top:20px;padding-bottom:40px;word-break:break-word;">
115
115
  <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px;">
116
116
  <tbody>
117
117
  <tr>
118
118
  <td style="width:125px;">
119
- <img alt="" src="cid:n8n-logo" style="border:0;display:block;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;" width="125" height="auto" />
119
+ <a href="https://n8n.io/" target="_blank">
120
+ <img alt="n8n" src="cid:n8n-logo" style="border:0;display:block;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;" width="125" height="auto" />
121
+ </a>
120
122
  </td>
121
123
  </tr>
122
124
  </tbody>
123
125
  </table>
124
126
  </td>
125
127
  </tr>
126
- </tbody>
127
- </table>
128
- </td>
129
- </tr>
130
- </tbody>
131
- </table>
132
- </div>
133
- <!--[if mso | IE]></td></tr></table><![endif]-->
134
- </td>
135
- </tr>
136
- </tbody>
137
- </table>
138
- </div>
139
- <!--[if mso | IE]></td></tr></table><table align="center" border="0" cellpadding="0" cellspacing="0" class="" role="presentation" style="width:600px;" width="600" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]-->
140
- <div style="margin:0px auto;max-width:600px;">
141
- <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%;">
142
- <tbody>
143
- <tr>
144
- <td style="direction:ltr;font-size:0px;padding:20px 0;text-align:center;">
145
- <!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td align="left" class="" style="vertical-align:top;width:600px;" ><![endif]-->
146
- <div class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;">
147
- <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
148
- <tbody>
149
- <tr>
150
- <td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;">
151
- <div style="font-family:Inter, Helvetica, Arial, sans-serif;font-size:24px;font-weight:400;line-height:24px;text-align:left;color:#444444;">You have been added to the {{ projectName }} project as {{ role }}</div>
152
- </td>
153
- </tr>
154
- </tbody>
155
- </table>
156
- </div>
157
- <!--[if mso | IE]></td></tr></table><![endif]-->
158
- </td>
159
- </tr>
160
- </tbody>
161
- </table>
162
- </div>
163
- <!--[if mso | IE]></td></tr></table><table align="center" border="0" cellpadding="0" cellspacing="0" class="" role="presentation" style="width:600px;" width="600" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]-->
164
- <div style="margin:0px auto;max-width:600px;">
165
- <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%;">
166
- <tbody>
167
- <tr>
168
- <td style="direction:ltr;font-size:0px;padding:20px 0;text-align:center;">
169
- <!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td align="left" class="" style="vertical-align:top;width:600px;" ><![endif]-->
170
- <div class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;">
171
- <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
172
- <tbody>
173
- <tr>
174
- <td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;">
175
- <div style="font-family:Inter, Helvetica, Arial, sans-serif;font-size:16px;font-weight:400;line-height:24px;text-align:left;color:#444444;">This gives you access to all the workflows and credentials in that project</div>
176
- </td>
177
- </tr>
178
- <tr>
179
- <td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;">
180
- <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:separate;line-height:100%;">
181
- <tbody>
182
128
  <tr>
183
- <td align="center" bgcolor="#ff6f5c" role="presentation" style="border:none;border-radius:5px;cursor:auto;mso-padding-alt:10px 25px;background:#ff6f5c;" valign="middle">
184
- <a href="{{projectUrl}}" style="display:inline-block;background:#ff6f5c;color:#ffffff;font-family:Inter, Helvetica, Arial, sans-serif;font-size:16px;font-weight:500;line-height:20px;margin:0;text-decoration:none;text-transform:none;padding:10px 25px;mso-padding-alt:0px;border-radius:5px;" target="_blank"> View project </a>
129
+ <td align="left" style="font-size:0px;padding:8px 12px;word-break:break-word;">
130
+ <div style="font-family:Inter, Helvetica, Arial, sans-serif;font-size:22px;font-weight:400;line-height:1.5;text-align:left;color:#414244;">You have been added to the <b>{{ projectName }}</b> project as {{ role }}</div>
131
+ </td>
132
+ </tr>
133
+ <tr>
134
+ <td align="left" style="font-size:0px;padding:8px 12px;word-break:break-word;">
135
+ <div style="font-family:Inter, Helvetica, Arial, sans-serif;font-size:16px;line-height:1.5;text-align:left;color:#414244;">This gives you access to all the workflows and credentials in that project.</div>
136
+ </td>
137
+ </tr>
138
+ <tr>
139
+ <td align="left" style="font-size:0px;padding:20px 12px;word-break:break-word;">
140
+ <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:separate;line-height:100%;">
141
+ <tbody>
142
+ <tr>
143
+ <td align="center" bgcolor="#ff6f5c" role="presentation" style="border:none;border-radius:8px;cursor:auto;mso-padding-alt:8px 40px;background:#ff6f5c;" valign="middle">
144
+ <a href="{{projectUrl}}" style="display:inline-block;background:#ff6f5c;color:#ffffff;font-family:Inter, Helvetica, Arial, sans-serif;font-size:16px;font-weight:normal;line-height:1.5;margin:0;text-decoration:none;text-transform:none;padding:8px 40px;mso-padding-alt:0px;border-radius:8px;" target="_blank"> View project </a>
145
+ </td>
146
+ </tr>
147
+ </tbody>
148
+ </table>
149
+ </td>
150
+ </tr>
151
+ <tr>
152
+ <td style="font-size:0px;word-break:break-word;">
153
+ <div style="height:24px;line-height:24px;">&#8202;</div>
154
+ </td>
155
+ </tr>
156
+ <tr>
157
+ <td align="center" style="font-size:0px;padding:10px 12px;word-break:break-word;">
158
+ <p style="border-top:solid 1px #d9d9d9;font-size:1px;margin:0px auto;width:100%;">
159
+ </p>
160
+ <!--[if mso | IE]><table align="center" border="0" cellpadding="0" cellspacing="0" style="border-top:solid 1px #d9d9d9;font-size:1px;margin:0px auto;width:536px;" role="presentation" width="536px" ><tr><td style="height:0;line-height:0;"> &nbsp;
161
+ </td></tr></table><![endif]-->
162
+ </td>
163
+ </tr>
164
+ <tr>
165
+ <td style="font-size:0px;word-break:break-word;">
166
+ <div style="height:16px;line-height:16px;">&#8202;</div>
167
+ </td>
168
+ </tr>
169
+ <tr>
170
+ <td align="left" style="font-size:0px;padding:8px 12px;word-break:break-word;">
171
+ <div style="font-family:Inter, Helvetica, Arial, sans-serif;font-size:14px;font-weight:300;line-height:1.5;text-align:left;color:#909398;">n8n GmbH, Novalisstraße 10, 10115 Berlin, Germany<br /> ©{{ currentYear }} n8n GmbH, all rights reserved<br /></div>
185
172
  </td>
186
173
  </tr>
187
174
  </tbody>
@@ -94,99 +94,86 @@
94
94
  </style>
95
95
  </head>
96
96
 
97
- <body style="word-spacing:normal;">
98
- <div style="" lang="und" dir="auto">
97
+ <body style="word-spacing:normal;background-color:#ffffff;">
98
+ <div style="background-color:#ffffff;" lang="und" dir="auto">
99
99
  <!--[if mso | IE]><table align="center" border="0" cellpadding="0" cellspacing="0" class="" role="presentation" style="width:600px;" width="600" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]-->
100
100
  <div style="margin:0px auto;max-width:600px;">
101
101
  <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%;">
102
102
  <tbody>
103
103
  <tr>
104
- <td style="direction:ltr;font-size:0px;padding:20px 0;text-align:center;">
105
- <!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td align="left" class="" style="vertical-align:top;width:600px;" ><![endif]-->
104
+ <td style="direction:ltr;font-size:0px;padding:0 20px;text-align:center;">
105
+ <!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:560px;" ><![endif]-->
106
106
  <div class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;">
107
107
  <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
108
108
  <tbody>
109
109
  <tr>
110
- <td style="vertical-align:top;padding-left:15px;">
110
+ <td style="vertical-align:top;padding:0px;">
111
111
  <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="" width="100%">
112
112
  <tbody>
113
113
  <tr>
114
- <td align="left" style="font-size:0px;padding:0;word-break:break-word;">
114
+ <td align="left" style="font-size:0px;padding:0px;padding-top:20px;padding-bottom:40px;word-break:break-word;">
115
115
  <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px;">
116
116
  <tbody>
117
117
  <tr>
118
118
  <td style="width:125px;">
119
- <img alt="" src="cid:n8n-logo" style="border:0;display:block;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;" width="125" height="auto" />
119
+ <a href="https://n8n.io/" target="_blank">
120
+ <img alt="n8n" src="cid:n8n-logo" style="border:0;display:block;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;" width="125" height="auto" />
121
+ </a>
120
122
  </td>
121
123
  </tr>
122
124
  </tbody>
123
125
  </table>
124
126
  </td>
125
127
  </tr>
126
- </tbody>
127
- </table>
128
- </td>
129
- </tr>
130
- </tbody>
131
- </table>
132
- </div>
133
- <!--[if mso | IE]></td></tr></table><![endif]-->
134
- </td>
135
- </tr>
136
- </tbody>
137
- </table>
138
- </div>
139
- <!--[if mso | IE]></td></tr></table><table align="center" border="0" cellpadding="0" cellspacing="0" class="" role="presentation" style="width:600px;" width="600" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]-->
140
- <div style="margin:0px auto;max-width:600px;">
141
- <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%;">
142
- <tbody>
143
- <tr>
144
- <td style="direction:ltr;font-size:0px;padding:20px 0;text-align:center;">
145
- <!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td align="left" class="" style="vertical-align:top;width:600px;" ><![endif]-->
146
- <div class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;">
147
- <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
148
- <tbody>
149
- <tr>
150
- <td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;">
151
- <div style="font-family:Inter, Helvetica, Arial, sans-serif;font-size:24px;font-weight:400;line-height:24px;text-align:left;color:#444444;">Welcome to n8n! 🎉</div>
152
- </td>
153
- </tr>
154
- </tbody>
155
- </table>
156
- </div>
157
- <!--[if mso | IE]></td></tr></table><![endif]-->
158
- </td>
159
- </tr>
160
- </tbody>
161
- </table>
162
- </div>
163
- <!--[if mso | IE]></td></tr></table><table align="center" border="0" cellpadding="0" cellspacing="0" class="" role="presentation" style="width:600px;" width="600" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]-->
164
- <div style="margin:0px auto;max-width:600px;">
165
- <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%;">
166
- <tbody>
167
- <tr>
168
- <td style="direction:ltr;font-size:0px;padding:20px 0;text-align:center;">
169
- <!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td align="left" class="" style="vertical-align:top;width:600px;" ><![endif]-->
170
- <div class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;">
171
- <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
172
- <tbody>
173
- <tr>
174
- <td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;">
175
- <div style="font-family:Inter, Helvetica, Arial, sans-serif;font-size:16px;font-weight:400;line-height:24px;text-align:left;color:#444444;">You have been invited to join n8n at <b>{{domain}}</b> .</div>
176
- </td>
177
- </tr>
178
- <tr>
179
- <td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;">
180
- <div style="font-family:Inter, Helvetica, Arial, sans-serif;font-size:16px;font-weight:400;line-height:24px;text-align:left;color:#444444;">To accept, please click the button below.</div>
181
- </td>
182
- </tr>
183
- <tr>
184
- <td align="left" style="font-size:0px;padding:10px 25px;padding-top:20px;word-break:break-word;">
185
- <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:separate;line-height:100%;">
186
- <tbody>
187
128
  <tr>
188
- <td align="center" bgcolor="#ff6f5c" role="presentation" style="border:none;border-radius:5px;cursor:auto;mso-padding-alt:10px 25px;background:#ff6f5c;" valign="middle">
189
- <a href="{{inviteAcceptUrl}}" style="display:inline-block;background:#ff6f5c;color:#ffffff;font-family:Inter, Helvetica, Arial, sans-serif;font-size:16px;font-weight:500;line-height:20px;margin:0;text-decoration:none;text-transform:none;padding:10px 25px;mso-padding-alt:0px;border-radius:5px;" target="_blank"> Set up your n8n account </a>
129
+ <td align="left" style="font-size:0px;padding:8px 12px;word-break:break-word;">
130
+ <div style="font-family:Inter, Helvetica, Arial, sans-serif;font-size:22px;font-weight:400;line-height:1.5;text-align:left;color:#414244;">Welcome to n8n! 🎉</div>
131
+ </td>
132
+ </tr>
133
+ <tr>
134
+ <td align="left" style="font-size:0px;padding:8px 12px;word-break:break-word;">
135
+ <div style="font-family:Inter, Helvetica, Arial, sans-serif;font-size:16px;line-height:1.5;text-align:left;color:#414244;">You have been invited to join n8n at <b>{{domain}}</b>.</div>
136
+ </td>
137
+ </tr>
138
+ <tr>
139
+ <td align="left" style="font-size:0px;padding:8px 12px;word-break:break-word;">
140
+ <div style="font-family:Inter, Helvetica, Arial, sans-serif;font-size:16px;line-height:1.5;text-align:left;color:#414244;">To accept, please click the button below.</div>
141
+ </td>
142
+ </tr>
143
+ <tr>
144
+ <td align="left" style="font-size:0px;padding:20px 12px;word-break:break-word;">
145
+ <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:separate;line-height:100%;">
146
+ <tbody>
147
+ <tr>
148
+ <td align="center" bgcolor="#ff6f5c" role="presentation" style="border:none;border-radius:8px;cursor:auto;mso-padding-alt:8px 40px;background:#ff6f5c;" valign="middle">
149
+ <a href="{{inviteAcceptUrl}}" style="display:inline-block;background:#ff6f5c;color:#ffffff;font-family:Inter, Helvetica, Arial, sans-serif;font-size:16px;font-weight:normal;line-height:1.5;margin:0;text-decoration:none;text-transform:none;padding:8px 40px;mso-padding-alt:0px;border-radius:8px;" target="_blank"> Set up your n8n account </a>
150
+ </td>
151
+ </tr>
152
+ </tbody>
153
+ </table>
154
+ </td>
155
+ </tr>
156
+ <tr>
157
+ <td style="font-size:0px;word-break:break-word;">
158
+ <div style="height:24px;line-height:24px;">&#8202;</div>
159
+ </td>
160
+ </tr>
161
+ <tr>
162
+ <td align="center" style="font-size:0px;padding:10px 12px;word-break:break-word;">
163
+ <p style="border-top:solid 1px #d9d9d9;font-size:1px;margin:0px auto;width:100%;">
164
+ </p>
165
+ <!--[if mso | IE]><table align="center" border="0" cellpadding="0" cellspacing="0" style="border-top:solid 1px #d9d9d9;font-size:1px;margin:0px auto;width:536px;" role="presentation" width="536px" ><tr><td style="height:0;line-height:0;"> &nbsp;
166
+ </td></tr></table><![endif]-->
167
+ </td>
168
+ </tr>
169
+ <tr>
170
+ <td style="font-size:0px;word-break:break-word;">
171
+ <div style="height:16px;line-height:16px;">&#8202;</div>
172
+ </td>
173
+ </tr>
174
+ <tr>
175
+ <td align="left" style="font-size:0px;padding:8px 12px;word-break:break-word;">
176
+ <div style="font-family:Inter, Helvetica, Arial, sans-serif;font-size:14px;font-weight:300;line-height:1.5;text-align:left;color:#909398;">n8n GmbH, Novalisstraße 10, 10115 Berlin, Germany<br /> ©{{ currentYear }} n8n GmbH, all rights reserved<br /></div>
190
177
  </td>
191
178
  </tr>
192
179
  </tbody>