Add request filter for intercept

This commit is contained in:
David Stotijn
2022-03-15 19:32:29 +01:00
parent d051d48941
commit f4074a8060
18 changed files with 500 additions and 69 deletions

View File

@ -83,7 +83,8 @@ type HTTPResponseLog struct {
}
type InterceptSettings struct {
Enabled bool `json:"enabled"`
Enabled bool `json:"enabled"`
RequestFilter *string `json:"requestFilter"`
}
type ModifyRequestInput struct {
@ -164,7 +165,8 @@ type SenderRequestInput struct {
}
type UpdateInterceptSettingsInput struct {
Enabled bool `json:"enabled"`
Enabled bool `json:"enabled"`
RequestFilter *string `json:"requestFilter"`
}
type HTTPMethod string