@friggframework/devtools 2.0.0-next.93 → 2.0.0-next.95

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.
@@ -16,14 +16,14 @@
16
16
  "@friggframework/core": "^2.0.0-next.0",
17
17
  "@friggframework/schemas": "^2.0.0-next.0",
18
18
  "@inquirer/prompts": "^5.3.8",
19
- "axios": "^1.7.2",
19
+ "axios": "^1.18.0",
20
20
  "chalk": "^4.1.2",
21
21
  "commander": "^12.1.0",
22
22
  "cross-spawn": "^7.0.3",
23
23
  "dotenv": "^16.4.5",
24
24
  "fs-extra": "^11.2.0",
25
25
  "js-yaml": "^4.1.0",
26
- "lodash": "4.17.21",
26
+ "lodash": "4.18.1",
27
27
  "node-cache": "^5.1.2",
28
28
  "open": "^8.4.2",
29
29
  "osls": "^3.40.1",
@@ -311,6 +311,16 @@ function createBaseDefinition(
311
311
  { httpApi: { path: '/health/{proxy+}', method: 'GET' } },
312
312
  ],
313
313
  },
314
+ reporting: {
315
+ handler: 'node_modules/@friggframework/core/handlers/routers/reporting.handler',
316
+ ...(usePrismaLayer && { layers: [{ Ref: 'PrismaLambdaLayer' }] }),
317
+ skipEsbuild: true, // Handlers in node_modules don't need bundling
318
+ package: skipEsbuildPackageConfig,
319
+ events: [
320
+ { httpApi: { path: '/api/v2/reports', method: 'GET' } },
321
+ { httpApi: { path: '/api/v2/reports/{proxy+}', method: 'GET' } },
322
+ ],
323
+ },
314
324
  // Note: dbMigrate removed - MigrationBuilder now handles migration infrastructure
315
325
  // See: packages/devtools/infrastructure/domains/database/migration-builder.js
316
326
  },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@friggframework/devtools",
3
3
  "prettier": "@friggframework/prettier-config",
4
- "version": "2.0.0-next.93",
4
+ "version": "2.0.0-next.95",
5
5
  "bin": {
6
6
  "frigg": "./frigg-cli/index.js"
7
7
  },
@@ -25,13 +25,13 @@
25
25
  "@babel/eslint-parser": "^7.18.9",
26
26
  "@babel/parser": "^7.25.3",
27
27
  "@babel/traverse": "^7.25.3",
28
- "@friggframework/core": "2.0.0-next.93",
29
- "@friggframework/schemas": "2.0.0-next.93",
30
- "@friggframework/test": "2.0.0-next.93",
28
+ "@friggframework/core": "2.0.0-next.95",
29
+ "@friggframework/schemas": "2.0.0-next.95",
30
+ "@friggframework/test": "2.0.0-next.95",
31
31
  "@hapi/boom": "^10.0.1",
32
32
  "@inquirer/prompts": "^5.3.8",
33
- "axios": "^1.7.2",
34
- "body-parser": "^1.20.2",
33
+ "axios": "^1.18.0",
34
+ "body-parser": "^1.20.5",
35
35
  "chalk": "^4.1.2",
36
36
  "commander": "^12.1.0",
37
37
  "cors": "^2.8.5",
@@ -43,11 +43,11 @@
43
43
  "eslint-plugin-markdown": "^3.0.0",
44
44
  "eslint-plugin-no-only-tests": "^3.0.0",
45
45
  "eslint-plugin-yaml": "^0.5.0",
46
- "express": "^4.19.2",
46
+ "express": "^4.22.2",
47
47
  "express-async-handler": "^1.2.0",
48
48
  "fs-extra": "^11.2.0",
49
49
  "js-yaml": "^4.1.0",
50
- "lodash": "4.17.21",
50
+ "lodash": "4.18.1",
51
51
  "node-cache": "^5.1.2",
52
52
  "open": "^8.4.2",
53
53
  "semver": "^7.6.0",
@@ -55,8 +55,8 @@
55
55
  "validate-npm-package-name": "^5.0.0"
56
56
  },
57
57
  "devDependencies": {
58
- "@friggframework/eslint-config": "2.0.0-next.93",
59
- "@friggframework/prettier-config": "2.0.0-next.93",
58
+ "@friggframework/eslint-config": "2.0.0-next.95",
59
+ "@friggframework/prettier-config": "2.0.0-next.95",
60
60
  "aws-sdk-client-mock": "^4.1.0",
61
61
  "aws-sdk-client-mock-jest": "^4.1.0",
62
62
  "jest": "^30.1.3",
@@ -88,5 +88,5 @@
88
88
  "publishConfig": {
89
89
  "access": "public"
90
90
  },
91
- "gitHead": "abfd168927bbd6f1620ccbeb0a61225e19ce1a28"
91
+ "gitHead": "18d7e66ce7f397ad6e96d9006d81118cd96445ec"
92
92
  }