@friggframework/devtools 2.0.0--canary.622.7034306.0 → 2.0.0--canary.627.9cf8622.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.
@@ -478,6 +478,12 @@ class MigrationBuilder extends InfrastructureBuilder {
478
478
  },
479
479
  },
480
480
  { httpApi: { path: '/admin/db-migrate', method: 'POST' } },
481
+ {
482
+ httpApi: {
483
+ path: '/admin/db-migrate/resolve',
484
+ method: 'POST',
485
+ },
486
+ },
481
487
  {
482
488
  httpApi: {
483
489
  path: '/admin/db-migrate/{processId}',
@@ -229,7 +229,7 @@ describe('MigrationBuilder', () => {
229
229
  expect(result.functions.dbMigrationRouter.skipEsbuild).toBe(true);
230
230
  expect(result.functions.dbMigrationRouter.timeout).toBe(30);
231
231
  expect(result.functions.dbMigrationRouter.memorySize).toBe(512);
232
- expect(result.functions.dbMigrationRouter.events).toHaveLength(3);
232
+ expect(result.functions.dbMigrationRouter.events).toHaveLength(4);
233
233
  // Must match core's Express router mounted under /admin/db-migrate.
234
234
  expect(result.functions.dbMigrationRouter.events).toContainEqual({
235
235
  httpApi: { path: '/admin/db-migrate/status', method: 'GET' },
@@ -237,6 +237,9 @@ describe('MigrationBuilder', () => {
237
237
  expect(result.functions.dbMigrationRouter.events).toContainEqual({
238
238
  httpApi: { path: '/admin/db-migrate', method: 'POST' },
239
239
  });
240
+ expect(result.functions.dbMigrationRouter.events).toContainEqual({
241
+ httpApi: { path: '/admin/db-migrate/resolve', method: 'POST' },
242
+ });
240
243
  expect(result.functions.dbMigrationRouter.events).toContainEqual({
241
244
  httpApi: { path: '/admin/db-migrate/{processId}', method: 'GET' },
242
245
  });
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--canary.622.7034306.0",
4
+ "version": "2.0.0--canary.627.9cf8622.0",
5
5
  "bin": {
6
6
  "frigg": "./frigg-cli/index.js"
7
7
  },
@@ -26,9 +26,9 @@
26
26
  "@babel/eslint-parser": "^7.18.9",
27
27
  "@babel/parser": "^7.25.3",
28
28
  "@babel/traverse": "^7.25.3",
29
- "@friggframework/core": "2.0.0--canary.622.7034306.0",
30
- "@friggframework/schemas": "2.0.0--canary.622.7034306.0",
31
- "@friggframework/test": "2.0.0--canary.622.7034306.0",
29
+ "@friggframework/core": "2.0.0--canary.627.9cf8622.0",
30
+ "@friggframework/schemas": "2.0.0--canary.627.9cf8622.0",
31
+ "@friggframework/test": "2.0.0--canary.627.9cf8622.0",
32
32
  "@hapi/boom": "^10.0.1",
33
33
  "@inquirer/prompts": "^5.3.8",
34
34
  "axios": "^1.18.0",
@@ -56,8 +56,8 @@
56
56
  "validate-npm-package-name": "^5.0.0"
57
57
  },
58
58
  "devDependencies": {
59
- "@friggframework/eslint-config": "2.0.0--canary.622.7034306.0",
60
- "@friggframework/prettier-config": "2.0.0--canary.622.7034306.0",
59
+ "@friggframework/eslint-config": "2.0.0--canary.627.9cf8622.0",
60
+ "@friggframework/prettier-config": "2.0.0--canary.627.9cf8622.0",
61
61
  "aws-sdk-client-mock": "^4.1.0",
62
62
  "aws-sdk-client-mock-jest": "^4.1.0",
63
63
  "jest": "^30.1.3",
@@ -89,5 +89,5 @@
89
89
  "publishConfig": {
90
90
  "access": "public"
91
91
  },
92
- "gitHead": "7034306f1af15cfd2ae0990c6b33d3a31ffe0b77"
92
+ "gitHead": "9cf8622beb42a7a630438459adc973dccbc54c3e"
93
93
  }