diff --git a/go.mod b/go.mod index eafd7e92b..a509ccde0 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/checkmarx/ast-cli -go 1.24.4 +go 1.24.6 require ( github.com/Checkmarx/containers-resolver v1.0.19 diff --git a/internal/wrappers/access-management.go b/internal/wrappers/access-management.go index dbd8a43f9..877f6ed9f 100644 --- a/internal/wrappers/access-management.go +++ b/internal/wrappers/access-management.go @@ -1,13 +1,13 @@ package wrappers type AssignmentResponse struct { - EntityID string `json:"entityID"` - EntityType string `json:"entityType"` - EntityName string `json:"entityName"` - EntityRoles []string `json:"entityRoles"` - ResourceID string `json:"resourceID"` - ResourceType string `json:"resourceType"` - ResourceName string `json:"resourceName"` + EntityID string `json:"entityID"` + EntityType string `json:"entityType"` + EntityName string `json:"entityName"` + EntityRoles []interface{} `json:"entityRoles"` + ResourceID string `json:"resourceID"` + ResourceType string `json:"resourceType"` + ResourceName string `json:"resourceName"` } type AccessManagementWrapper interface {