New: Add headers setting in webhook connection

(cherry picked from commit 78fb20282de73c0ea47375895a807235385d90e3)

Closes #5242
This commit is contained in:
Gauthier 2024-11-15 04:01:05 +01:00 committed by Bogdan
parent 396b2ae7c1
commit 739019498f
15 changed files with 237 additions and 291 deletions

View file

@ -1,3 +1,10 @@
export type InputChanged<T = unknown> = {
name: string;
value: T;
};
export type InputOnChange<T> = (change: InputChanged<T>) => void;
export type CheckInputChanged = {
name: string;
value: boolean;