diff --git a/sentry/organization_repositories.go b/sentry/organization_repositories.go index 3f85a0d..5b2976a 100644 --- a/sentry/organization_repositories.go +++ b/sentry/organization_repositories.go @@ -2,6 +2,7 @@ package sentry import ( "context" + "encoding/json" "fmt" "time" ) @@ -22,7 +23,8 @@ type OrganizationRepository struct { Status string `json:"status"` DateCreated time.Time `json:"dateCreated"` IntegrationId string `json:"integrationId"` - ExternalSlug string `json:"externalSlug"` + ExternalSlug json.RawMessage `json:"externalSlug"` + ExternalId string `json:"externalId"` } // OrganizationRepositoriesService provides methods for accessing Sentry organization repositories API endpoints.