@flink-app/email-plugin 2.0.0-alpha.75 → 2.0.0-alpha.77
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/CHANGELOG.md +13 -0
- package/dist/index.d.ts +1 -1
- package/package.json +3 -3
- package/readme.md +3 -3
- package/src/index.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @flink-app/email-plugin
|
|
2
2
|
|
|
3
|
+
## 2.0.0-alpha.77
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @flink-app/flink@2.0.0-alpha.77
|
|
8
|
+
|
|
9
|
+
## 2.0.0-alpha.76
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Add resolveTokenTTL callback to jwt-auth-plugin for dynamic token TTL based on role. Fix renames in email-plugin and inbound-email-plugin. Fix tsconfig in generic-auth-plugin.
|
|
14
|
+
- @flink-app/flink@2.0.0-alpha.76
|
|
15
|
+
|
|
3
16
|
## 2.0.0-alpha.75
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flink-app/email-plugin",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.77",
|
|
4
4
|
"description": "Flink plugin that provides multi-provider email sending capabilities with support for SendGrid, SMTP, Flowmailer, and AWS SES",
|
|
5
5
|
"author": "johan@frost.se",
|
|
6
6
|
"publishConfig": {
|
|
@@ -20,11 +20,11 @@
|
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@types/jasmine": "^3.7.1",
|
|
22
22
|
"@types/node": "22.13.10",
|
|
23
|
-
"@flink-app/flink": "2.0.0-alpha.
|
|
23
|
+
"@flink-app/flink": "2.0.0-alpha.77"
|
|
24
24
|
},
|
|
25
25
|
"gitHead": "4243e3b3cd6d4e1ca001a61baa8436bf2bbe4113",
|
|
26
26
|
"peerDependencies": {
|
|
27
|
-
"@flink-app/flink": ">=2.0.0-alpha.
|
|
27
|
+
"@flink-app/flink": ">=2.0.0-alpha.77"
|
|
28
28
|
},
|
|
29
29
|
"scripts": {
|
|
30
30
|
"test": "jasmine-ts --config=./spec/support/jasmine.json",
|
package/readme.md
CHANGED
|
@@ -168,9 +168,9 @@ Add the plugin context to your app's context type (usually in `Ctx.ts`):
|
|
|
168
168
|
|
|
169
169
|
```typescript
|
|
170
170
|
import { FlinkContext } from "@flink-app/flink";
|
|
171
|
-
import {
|
|
171
|
+
import { EmailPluginContext } from "@flink-app/email-plugin";
|
|
172
172
|
|
|
173
|
-
export interface Ctx extends FlinkContext<
|
|
173
|
+
export interface Ctx extends FlinkContext<EmailPluginContext> {
|
|
174
174
|
// Your other context properties
|
|
175
175
|
}
|
|
176
176
|
```
|
|
@@ -178,7 +178,7 @@ export interface Ctx extends FlinkContext<emailPluginContext> {
|
|
|
178
178
|
**Plugin Context Interface:**
|
|
179
179
|
|
|
180
180
|
```typescript
|
|
181
|
-
interface
|
|
181
|
+
interface EmailPluginContext {
|
|
182
182
|
emailPlugin: {
|
|
183
183
|
client: client; // Unified email client interface
|
|
184
184
|
};
|