Request body is now an object

This commit is contained in:
Gregory Schier
2023-11-12 11:16:12 -08:00
parent ef23a85577
commit 758154fa14
16 changed files with 73 additions and 54 deletions

View File

@@ -56,7 +56,7 @@ export interface HttpRequest extends BaseModel {
sortPriority: number;
name: string;
url: string;
body: string | null;
body: Record<string, string | number | boolean | null | undefined>;
bodyType: string | null;
authentication: Record<string, string | number | boolean | null | undefined>;
authenticationType: string | null;