From b6d847fecbf40404b1531dfc7a44281767a2cc84 Mon Sep 17 00:00:00 2001 From: Tyler Mairose Date: Wed, 4 Sep 2024 09:49:18 -0400 Subject: [PATCH] Fix AccountActivity struct --- internal/search/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/search/types.go b/internal/search/types.go index 07bd2310..69310b51 100644 --- a/internal/search/types.go +++ b/internal/search/types.go @@ -86,7 +86,7 @@ type AccountActivity struct { AttributeRequests []struct { Op string `json:"op,omitempty"` Name string `json:"name,omitempty"` - Value string `json:"value,omitempty"` + Value interface{} `json:"value,omitempty"` } `json:"attributeRequests,omitempty"` } `json:"originalRequests,omitempty"` ExpansionItems []interface{} `json:"expansionItems,omitempty"`