From 93d9d6551b9c6f4da88f7199d8894ee9bb0e2dc4 Mon Sep 17 00:00:00 2001 From: Koushik S Date: Thu, 11 Jul 2024 14:50:56 +0530 Subject: [PATCH] Update integration request with missing field --- integration/request.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/integration/request.go b/integration/request.go index d52b4e1..3ba22fa 100644 --- a/integration/request.go +++ b/integration/request.go @@ -49,6 +49,7 @@ type APIBasedIntegrationRequest struct { Name string `json:"name"` Type string `json:"type"` AllowWriteAccess *bool `json:"allowWriteAccess"` + AllowConfigurationAccess *bool `json:"allowConfigurationAccess"` IgnoreRespondersFromPayload *bool `json:"ignoreRespondersFromPayload"` SuppressNotifications *bool `json:"suppressNotifications"` OwnerTeam *og.OwnerTeam `json:"ownerTeam,omitempty"` @@ -79,6 +80,7 @@ type WebhookIntegrationRequest struct { Name string `json:"name"` Type string `json:"type"` AllowWriteAccess *bool `json:"allowWriteAccess"` + AllowConfigurationAccess *bool `json:"allowConfigurationAccess"` SuppressNotifications *bool `json:"suppressNotifications"` OwnerTeam *og.OwnerTeam `json:"ownerTeam,omitempty"` Responders []Responder `json:"responders,omitempty"`