@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 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
@@ -13,7 +13,7 @@ export type emailPluginOptions = {
13
13
  */
14
14
  client: client;
15
15
  };
16
- export interface emailPluginContext {
16
+ export interface EmailPluginContext {
17
17
  emailPlugin: {
18
18
  client: client;
19
19
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flink-app/email-plugin",
3
- "version": "2.0.0-alpha.75",
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.75"
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.75"
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 { emailPluginContext } from "@flink-app/email-plugin";
171
+ import { EmailPluginContext } from "@flink-app/email-plugin";
172
172
 
173
- export interface Ctx extends FlinkContext<emailPluginContext> {
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 emailPluginContext {
181
+ interface EmailPluginContext {
182
182
  emailPlugin: {
183
183
  client: client; // Unified email client interface
184
184
  };
package/src/index.ts CHANGED
@@ -15,7 +15,7 @@ export type emailPluginOptions = {
15
15
  client: client;
16
16
  };
17
17
 
18
- export interface emailPluginContext {
18
+ export interface EmailPluginContext {
19
19
  emailPlugin: {
20
20
  client: client;
21
21
  };