@flink-app/stripe-plugin 2.0.0-alpha.50 → 2.0.0-alpha.52

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.
@@ -1,4 +1,4 @@
1
- // Generated Wed Feb 11 2026 15:03:17 GMT+0100 (Central European Standard Time)
1
+ // Generated Thu Feb 12 2026 20:37:07 GMT+0100 (Central European Standard Time)
2
2
  import { autoRegisteredAgents } from "@flink-app/flink";
3
3
  export const agents = [];
4
4
  autoRegisteredAgents.push(...agents);
@@ -1,4 +1,4 @@
1
- // Generated Wed Feb 11 2026 15:03:17 GMT+0100 (Central European Standard Time)
1
+ // Generated Thu Feb 12 2026 20:37:07 GMT+0100 (Central European Standard Time)
2
2
  import { autoRegisteredHandlers, HttpMethod } from "@flink-app/flink";
3
3
  import * as HandlebarsTemplateHandler_0 from "../src/handlers/HandlebarsTemplateHandler";
4
4
 
@@ -1,4 +1,4 @@
1
- // Generated Wed Feb 11 2026 15:03:17 GMT+0100 (Central European Standard Time)
1
+ // Generated Thu Feb 12 2026 20:37:07 GMT+0100 (Central European Standard Time)
2
2
  import { autoRegisteredJobs } from "@flink-app/flink";
3
3
  export const jobs = [];
4
4
  autoRegisteredJobs.push(...jobs);
@@ -1,4 +1,4 @@
1
- // Generated Wed Feb 11 2026 15:03:17 GMT+0100 (Central European Standard Time)
1
+ // Generated Thu Feb 12 2026 20:37:07 GMT+0100 (Central European Standard Time)
2
2
  import { autoRegisteredRepos } from "@flink-app/flink";
3
3
  export const repos = [];
4
4
  autoRegisteredRepos.push(...repos);
@@ -1,4 +1,4 @@
1
- // Generated Wed Feb 11 2026 15:03:17 GMT+0100 (Central European Standard Time)
1
+ // Generated Thu Feb 12 2026 20:37:07 GMT+0100 (Central European Standard Time)
2
2
  import { autoRegisteredTools } from "@flink-app/flink";
3
3
  export const tools = [];
4
4
  autoRegisteredTools.push(...tools);
@@ -1 +1 @@
1
- // Generated Wed Feb 11 2026 15:03:17 GMT+0100 (Central European Standard Time)
1
+ // Generated Thu Feb 12 2026 20:37:07 GMT+0100 (Central European Standard Time)
package/.flink/start.ts CHANGED
@@ -1,4 +1,4 @@
1
- // Generated Wed Feb 11 2026 15:03:17 GMT+0100 (Central European Standard Time)
1
+ // Generated Thu Feb 12 2026 20:37:07 GMT+0100 (Central European Standard Time)
2
2
  import "./generatedHandlers";
3
3
  import "./generatedRepos";
4
4
  import "./generatedTools";
package/CHANGELOG.md CHANGED
@@ -1,5 +1,37 @@
1
1
  # @flink-app/stripe-plugin
2
2
 
3
+ ## 2.0.0-alpha.52
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [fe9f8f2]
8
+ - @flink-app/flink@2.0.0-alpha.52
9
+
10
+ ## 2.0.0-alpha.51
11
+
12
+ ### Patch Changes
13
+
14
+ - fix: add peerDependencies to all plugins and adapters
15
+
16
+ **Breaking Change Prevention:**
17
+
18
+ - Added "@flink-app/flink": ">=2.0.0-alpha.0" as peerDependency to all plugins
19
+ - Fixed oidc-plugin peerDependencies from "workspace:\*" to proper version ranges
20
+ - Fixed oauth-plugin to include @flink-app/flink peerDependency
21
+
22
+ **JWT Auth Plugin Interface Fix:**
23
+
24
+ - Removed redundant createToken declaration from JwtAuthPlugin interface
25
+ - The method is already inherited from FlinkAuthPlugin, this fixes TypeScript type checking issues
26
+
27
+ **Why this matters:**
28
+
29
+ - Ensures only one version of @flink-app/flink exists in node_modules
30
+ - Prevents type conflicts when TypeScript resolves interfaces across packages
31
+ - Follows standard plugin architecture best practices (same pattern as React, Webpack, etc.)
32
+ - Package managers now warn if incompatible versions are installed
33
+ - @flink-app/flink@2.0.0-alpha.51
34
+
3
35
  ## 2.0.0-alpha.50
4
36
 
5
37
  ## 2.0.0-alpha.49
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.agents = void 0;
4
- // Generated Wed Feb 11 2026 15:03:17 GMT+0100 (Central European Standard Time)
4
+ // Generated Thu Feb 12 2026 20:37:07 GMT+0100 (Central European Standard Time)
5
5
  var flink_1 = require("@flink-app/flink");
6
6
  exports.agents = [];
7
7
  flink_1.autoRegisteredAgents.push.apply(flink_1.autoRegisteredAgents, exports.agents);
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.handlers = void 0;
4
- // Generated Wed Feb 11 2026 15:03:17 GMT+0100 (Central European Standard Time)
4
+ // Generated Thu Feb 12 2026 20:37:07 GMT+0100 (Central European Standard Time)
5
5
  var flink_1 = require("@flink-app/flink");
6
6
  exports.handlers = [];
7
7
  flink_1.autoRegisteredHandlers.push.apply(flink_1.autoRegisteredHandlers, exports.handlers);
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.jobs = void 0;
4
- // Generated Wed Feb 11 2026 15:03:17 GMT+0100 (Central European Standard Time)
4
+ // Generated Thu Feb 12 2026 20:37:07 GMT+0100 (Central European Standard Time)
5
5
  var flink_1 = require("@flink-app/flink");
6
6
  exports.jobs = [];
7
7
  flink_1.autoRegisteredJobs.push.apply(flink_1.autoRegisteredJobs, exports.jobs);
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.repos = void 0;
4
- // Generated Wed Feb 11 2026 15:03:17 GMT+0100 (Central European Standard Time)
4
+ // Generated Thu Feb 12 2026 20:37:07 GMT+0100 (Central European Standard Time)
5
5
  var flink_1 = require("@flink-app/flink");
6
6
  exports.repos = [];
7
7
  flink_1.autoRegisteredRepos.push.apply(flink_1.autoRegisteredRepos, exports.repos);
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.tools = void 0;
4
- // Generated Wed Feb 11 2026 15:03:17 GMT+0100 (Central European Standard Time)
4
+ // Generated Thu Feb 12 2026 20:37:07 GMT+0100 (Central European Standard Time)
5
5
  var flink_1 = require("@flink-app/flink");
6
6
  exports.tools = [];
7
7
  flink_1.autoRegisteredTools.push.apply(flink_1.autoRegisteredTools, exports.tools);
@@ -1,2 +1,2 @@
1
1
  "use strict";
2
- // Generated Wed Feb 11 2026 15:03:17 GMT+0100 (Central European Standard Time)
2
+ // Generated Thu Feb 12 2026 20:37:07 GMT+0100 (Central European Standard Time)
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- // Generated Wed Feb 11 2026 15:03:17 GMT+0100 (Central European Standard Time)
3
+ // Generated Thu Feb 12 2026 20:37:07 GMT+0100 (Central European Standard Time)
4
4
  require("./generatedHandlers");
5
5
  require("./generatedRepos");
6
6
  require("./generatedTools");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flink-app/stripe-plugin",
3
- "version": "2.0.0-alpha.50",
3
+ "version": "2.0.0-alpha.52",
4
4
  "description": "Flink plugin to work with stripe payments",
5
5
  "author": "johan@frost.se",
6
6
  "publishConfig": {
@@ -21,9 +21,12 @@
21
21
  "@types/express-fileupload": "^1.1.7",
22
22
  "@types/jsonwebtoken": "^8.5.5",
23
23
  "@types/node": "22.13.10",
24
- "@flink-app/flink": "2.0.0-alpha.50"
24
+ "@flink-app/flink": "2.0.0-alpha.52"
25
25
  },
26
26
  "gitHead": "4243e3b3cd6d4e1ca001a61baa8436bf2bbe4113",
27
+ "peerDependencies": {
28
+ "@flink-app/flink": ">=2.0.0-alpha.52"
29
+ },
27
30
  "scripts": {
28
31
  "test": "echo \"Error: no test specified\"",
29
32
  "build": "flink build",