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.
80 lines
2.3 KiB
Go
80 lines
2.3 KiB
Go
package request
|
|
|
|
import "cs-ai-agent/internal/pkg/enums"
|
|
|
|
type CreateAgentProfileRequest struct {
|
|
UserID int64 `json:"userId"`
|
|
TeamID int64 `json:"teamId"`
|
|
AgentCode string `json:"agentCode"`
|
|
DisplayName string `json:"displayName"`
|
|
Avatar string `json:"avatar"`
|
|
ServiceStatus enums.ServiceStatus `json:"serviceStatus"`
|
|
MaxConcurrentCount int `json:"maxConcurrentCount"`
|
|
PriorityLevel int `json:"priorityLevel"`
|
|
AutoAssignEnabled bool `json:"autoAssignEnabled"`
|
|
ReceiveOfflineMessage bool `json:"receiveOfflineMessage"`
|
|
Remark string `json:"remark"`
|
|
}
|
|
|
|
type UpdateAgentProfileRequest struct {
|
|
ID int64 `json:"id"`
|
|
CreateAgentProfileRequest
|
|
}
|
|
|
|
type DeleteAgentProfileRequest struct {
|
|
ID int64 `json:"id"`
|
|
}
|
|
|
|
type CreateAgentTeamRequest struct {
|
|
Name string `json:"name"`
|
|
LeaderUserID int64 `json:"leaderUserId"`
|
|
Status int `json:"status"`
|
|
Description string `json:"description"`
|
|
Remark string `json:"remark"`
|
|
}
|
|
|
|
type UpdateAgentTeamRequest struct {
|
|
ID int64 `json:"id"`
|
|
Name string `json:"name"`
|
|
LeaderUserID int64 `json:"leaderUserId"`
|
|
Status int `json:"status"`
|
|
Description string `json:"description"`
|
|
Remark string `json:"remark"`
|
|
}
|
|
|
|
type DeleteAgentTeamRequest struct {
|
|
ID int64 `json:"id"`
|
|
}
|
|
|
|
type CreateAgentTeamScheduleRequest struct {
|
|
TeamID int64 `json:"teamId"`
|
|
StartAt string `json:"startAt"`
|
|
EndAt string `json:"endAt"`
|
|
Remark string `json:"remark"`
|
|
}
|
|
|
|
type UpdateAgentTeamScheduleRequest struct {
|
|
ID int64 `json:"id"`
|
|
CreateAgentTeamScheduleRequest
|
|
}
|
|
|
|
type DeleteAgentTeamScheduleRequest struct {
|
|
ID int64 `json:"id"`
|
|
}
|
|
|
|
type AgentTeamScheduleCalendarRequest struct {
|
|
StartAt string `json:"startAt"`
|
|
EndAt string `json:"endAt"`
|
|
TeamID int64 `json:"teamId"`
|
|
}
|
|
|
|
type AgentTeamScheduleBatchRequest struct {
|
|
TeamIDs []int64 `json:"teamIds"`
|
|
StartDate string `json:"startDate"`
|
|
EndDate string `json:"endDate"`
|
|
Weekdays []int `json:"weekdays"`
|
|
StartTime string `json:"startTime"`
|
|
EndTime string `json:"endTime"`
|
|
Remark string `json:"remark"`
|
|
}
|