Add debug logging and update API authentication

- Add comprehensive logging to all interest API endpoints and NocoDB utilities
- Update create-interest and delete-interest endpoints to accept additional x-tag value
- Add missing imports for deleteInterest and updateInterest functions
- Log request details, processing steps, and errors for better debugging
This commit is contained in:
2025-06-09 23:19:52 +02:00
parent f593036d0f
commit 1866dfd010
5 changed files with 109 additions and 28 deletions

View File

@@ -62,9 +62,9 @@ export type ContactMethodPreferred = "Email" | "Phone";
export const ContactMethodPreferredFlow = ["Email", "Phone"];
export type EOIStatus = "Awaiting Further Details" | "Signed";
export type EOIStatus = "Awaiting Further Details" | "Waiting for Signatures" | "Signed";
export const EOIStatusFlow = ["Awaiting Further Details", "Signed"];
export const EOIStatusFlow = ["Awaiting Further Details", "Waiting for Signatures", "Signed"];
export type BerthInfoSentStatus = "Pending" | "Yes";