@friggframework/core 2.0.0--canary.461.467ef19.0 → 2.0.0--canary.461.f753a98.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.
@@ -3,7 +3,7 @@ const { createAppHandler } = require('./../app-handler-helpers');
3
3
 
4
4
  const router = createIntegrationRouter();
5
5
 
6
- router.route('/redirect/:appId').get((req, res) => {
6
+ router.route('/api/integrations/redirect/:appId').get((req, res) => {
7
7
  res.redirect(
8
8
  `${process.env.FRONTEND_URI}/redirect/${req.params.appId
9
9
  }?${new URLSearchParams(req.query)}`
@@ -12,7 +12,8 @@
12
12
  const { createAppHandler } = require('../app-handler-helpers');
13
13
  const dbMigrationRouter = require('./db-migration');
14
14
 
15
- module.exports.handler = createAppHandler(
15
+ // Export handler directly (Lambda config points to db-migration.handler)
16
+ module.exports = createAppHandler(
16
17
  'db-migration-router',
17
18
  dbMigrationRouter,
18
19
  true // shouldUseDatabase - need DB for Process repository
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@friggframework/core",
3
3
  "prettier": "@friggframework/prettier-config",
4
- "version": "2.0.0--canary.461.467ef19.0",
4
+ "version": "2.0.0--canary.461.f753a98.0",
5
5
  "dependencies": {
6
6
  "@aws-sdk/client-apigatewaymanagementapi": "^3.588.0",
7
7
  "@aws-sdk/client-kms": "^3.588.0",
@@ -37,9 +37,9 @@
37
37
  }
38
38
  },
39
39
  "devDependencies": {
40
- "@friggframework/eslint-config": "2.0.0--canary.461.467ef19.0",
41
- "@friggframework/prettier-config": "2.0.0--canary.461.467ef19.0",
42
- "@friggframework/test": "2.0.0--canary.461.467ef19.0",
40
+ "@friggframework/eslint-config": "2.0.0--canary.461.f753a98.0",
41
+ "@friggframework/prettier-config": "2.0.0--canary.461.f753a98.0",
42
+ "@friggframework/test": "2.0.0--canary.461.f753a98.0",
43
43
  "@prisma/client": "^6.17.0",
44
44
  "@types/lodash": "4.17.15",
45
45
  "@typescript-eslint/eslint-plugin": "^8.0.0",
@@ -79,5 +79,5 @@
79
79
  "publishConfig": {
80
80
  "access": "public"
81
81
  },
82
- "gitHead": "467ef1939b683cb3efa40c5c83f423b40f26e5a5"
82
+ "gitHead": "f753a98f8601dcb06cd579c918a9b132fce2d61b"
83
83
  }