feat: webhook for forms
Node.js CI / Lint and Test (push) Successful in 45s

This commit is contained in:
2025-08-27 18:55:22 -07:00
parent b92fe0a730
commit d5c0abe4d8
6 changed files with 140 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
/**
* @copyright NHCarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
/* eslint-disable @typescript-eslint/naming-convention -- Baserow uses snake case */
export interface FormSubmission {
table_id: number;
items: Array<{ id: number }>;
}