fix: test webhook endpoint mutation

Resolves #376
This commit is contained in:
Lakhan Samani
2023-08-02 00:04:07 +05:30
parent fab3c2f87e
commit 9a8d20b698
4 changed files with 15 additions and 5 deletions

View File

@@ -301,9 +301,10 @@ type SignUpInput struct {
}
type TestEndpointRequest struct {
Endpoint string `json:"endpoint"`
EventName string `json:"event_name"`
Headers map[string]interface{} `json:"headers"`
Endpoint string `json:"endpoint"`
EventName string `json:"event_name"`
EventDescription *string `json:"event_description"`
Headers map[string]interface{} `json:"headers"`
}
type TestEndpointResponse struct {