fix: align seed-bids agent status enum value
Some checks failed
Deploy to 110 WOOO Server / deploy (push) Failing after 7s

This commit is contained in:
OG T
2026-06-09 18:15:38 +08:00
parent 47d9c60d48
commit b7fb12f68f

View File

@@ -6,7 +6,7 @@ async function main() {
data: {
agent_id: "agent-spammer",
type: "BUILDER",
status: "ACTIVE",
status: "WHITELISTED",
scout_reputation: {
create: { successful_conversions: 1, spam_score: 0.9, chargeback_count: 9 }
}
@@ -17,7 +17,7 @@ async function main() {
data: {
agent_id: "agent-expensive",
type: "BUILDER",
status: "ACTIVE",
status: "WHITELISTED",
scout_reputation: {
create: { successful_conversions: 10, spam_score: 0.05, chargeback_count: 0 }
}
@@ -28,7 +28,7 @@ async function main() {
data: {
agent_id: "agent-balanced",
type: "BUILDER",
status: "ACTIVE",
status: "WHITELISTED",
scout_reputation: {
create: { successful_conversions: 5, spam_score: 0.1, chargeback_count: 1 }
}