Add body type to request and tab dropdown

This commit is contained in:
Gregory Schier
2023-03-14 11:18:56 -07:00
parent 619c8d9e72
commit efa5455a7b
12 changed files with 280 additions and 152 deletions

View File

@@ -20,6 +20,7 @@ export interface HttpRequest extends BaseModel {
name: string;
url: string;
body: string | null;
bodyType: string | null;
method: string;
headers: HttpHeader[];
}