5d7c10aeab
- Updated runtime configuration to use __CS_AI_AGENT_WIDGET_CONFIG__ instead of __CS_AGENT_WIDGET_CONFIG__. - Changed message types in support host bridge from "cs-agent" to "cs-ai-agent". - Minified SDK script updated to reflect new AI agent naming conventions. - Adjusted scrollbar styles in main.scss to use .cs-ai-agent-scrollbar instead of .cs-agent-scrollbar.
37 lines
1.0 KiB
Go
37 lines
1.0 KiB
Go
package builders
|
|
|
|
import (
|
|
"cs-ai-agent/internal/models"
|
|
"cs-ai-agent/internal/pkg/dto/response"
|
|
"cs-ai-agent/internal/pkg/utils"
|
|
"time"
|
|
)
|
|
|
|
func BuildCustomerContactResponse(item *models.CustomerContact) response.CustomerContactResponse {
|
|
if item == nil {
|
|
return response.CustomerContactResponse{}
|
|
}
|
|
return response.CustomerContactResponse{
|
|
ID: item.ID,
|
|
CustomerID: item.CustomerID,
|
|
ContactType: item.ContactType,
|
|
ContactValue: item.ContactValue,
|
|
IsPrimary: item.IsPrimary,
|
|
IsVerified: item.IsVerified,
|
|
VerifiedAt: utils.FormatTimePtr(item.VerifiedAt),
|
|
Source: item.Source,
|
|
Status: item.Status,
|
|
Remark: item.Remark,
|
|
CreatedAt: item.CreatedAt.Format(time.DateTime),
|
|
UpdatedAt: item.UpdatedAt.Format(time.DateTime),
|
|
}
|
|
}
|
|
|
|
func BuildCustomerContactList(list []models.CustomerContact) []response.CustomerContactResponse {
|
|
results := make([]response.CustomerContactResponse, 0, len(list))
|
|
for i := range list {
|
|
results = append(results, BuildCustomerContactResponse(&list[i]))
|
|
}
|
|
return results
|
|
}
|