Finish bridge generalization

This commit is contained in:
Darren Clarke 2024-04-26 15:49:58 +02:00
parent cb7a3a08dc
commit cca8d03988
93 changed files with 634 additions and 2085 deletions

View file

@ -7,16 +7,16 @@ const entities = [
"whatsapp",
"signal",
"voice",
"webhook",
"user",
"webhooks",
"users",
] as const;
export type Entity = (typeof entities)[number];
export type FieldDescription = {
name: string;
type: string;
label: string;
type?: string;
lines?: number;
copyable?: boolean;
defaultValue?: string;