diff --git a/backend/src/@types/fastify.d.ts b/backend/src/@types/fastify.d.ts index b2a37755f..c02347038 100644 --- a/backend/src/@types/fastify.d.ts +++ b/backend/src/@types/fastify.d.ts @@ -95,7 +95,7 @@ import { TWorkflowIntegrationServiceFactory } from "@app/services/workflow-integ declare module "@fastify/request-context" { interface RequestContextData { - requestId: string; + reqId: string; } } diff --git a/backend/src/db/migrations/20241127091918_webhook-to-kms.ts b/backend/src/db/migrations/20250109104500_webhook-to-kms.ts similarity index 100% rename from backend/src/db/migrations/20241127091918_webhook-to-kms.ts rename to backend/src/db/migrations/20250109104500_webhook-to-kms.ts diff --git a/backend/src/db/migrations/20241128090536_secret-rotation-to-kms.ts b/backend/src/db/migrations/20250109104501_secret-rotation-to-kms.ts similarity index 100% rename from backend/src/db/migrations/20241128090536_secret-rotation-to-kms.ts rename to backend/src/db/migrations/20250109104501_secret-rotation-to-kms.ts diff --git a/backend/src/db/migrations/20241129180030_identity-k8-auth-to-kms.ts b/backend/src/db/migrations/20250109104502_identity-k8-auth-to-kms.ts similarity index 100% rename from backend/src/db/migrations/20241129180030_identity-k8-auth-to-kms.ts rename to backend/src/db/migrations/20250109104502_identity-k8-auth-to-kms.ts diff --git a/backend/src/db/migrations/20241129180053_identity-oidc-auth-to-kms.ts b/backend/src/db/migrations/20250109104502_identity-oidc-auth-to-kms.ts similarity index 100% rename from backend/src/db/migrations/20241129180053_identity-oidc-auth-to-kms.ts rename to backend/src/db/migrations/20250109104502_identity-oidc-auth-to-kms.ts diff --git a/backend/src/db/migrations/20241128092853_dynamic-secret-root-to-kms.ts b/backend/src/db/migrations/20250109104503_dynamic-secret-root-to-kms.ts similarity index 100% rename from backend/src/db/migrations/20241128092853_dynamic-secret-root-to-kms.ts rename to backend/src/db/migrations/20250109104503_dynamic-secret-root-to-kms.ts diff --git a/backend/src/db/migrations/20241129175559_directory-config-to-kms.ts b/backend/src/db/migrations/20250109104508_directory-config-to-kms.ts similarity index 100% rename from backend/src/db/migrations/20241129175559_directory-config-to-kms.ts rename to backend/src/db/migrations/20250109104508_directory-config-to-kms.ts diff --git a/backend/src/server/app.ts b/backend/src/server/app.ts index 577b115ae..26f556508 100644 --- a/backend/src/server/app.ts +++ b/backend/src/server/app.ts @@ -143,4 +143,4 @@ export const main = async ({ db, hsmModule, auditLogDb, smtp, logger, queue, key await queue.shutdown(); process.exit(1); } -}; \ No newline at end of file +};