chore: production rollout for external traffic monitoring, SDK ecosystem, and admin observability
Some checks failed
Deploy to 110 WOOO Server / deploy (push) Failing after 9s

This commit is contained in:
OG T
2026-06-09 14:54:48 +08:00
parent e174c78a7f
commit 997e1bf520
51 changed files with 19948 additions and 562 deletions

View File

@@ -22,11 +22,11 @@ exports.$Enums = {}
/**
* Prisma Client JS version: 6.19.3
* Query Engine version: a9055b89e58b4b5bfb59600785423b1db3d0e75d
* Query Engine version: c2990dca591cba766e3b7ef5d9e8a84796e47ab7
*/
Prisma.prismaVersion = {
client: "6.19.3",
engine: "a9055b89e58b4b5bfb59600785423b1db3d0e75d"
engine: "c2990dca591cba766e3b7ef5d9e8a84796e47ab7"
}
Prisma.PrismaClientKnownRequestError = () => {
@@ -221,8 +221,14 @@ exports.Prisma.AgentProfileScalarFieldEnum = {
wallet_address: 'wallet_address',
status: 'status',
capabilities: 'capabilities',
contact_endpoints: 'contact_endpoints',
discovery_source: 'discovery_source',
created_at: 'created_at',
updated_at: 'updated_at'
updated_at: 'updated_at',
crypto_address: 'crypto_address',
mcp_endpoint: 'mcp_endpoint',
staked_amount: 'staked_amount',
tier: 'tier'
};
exports.Prisma.AffiliateLedgerScalarFieldEnum = {
@@ -254,10 +260,80 @@ exports.Prisma.BidProposalScalarFieldEnum = {
estimated_duration_hours: 'estimated_duration_hours',
quality_guarantee: 'quality_guarantee',
status: 'status',
counter_offer_amount: 'counter_offer_amount',
broker_agent_id: 'broker_agent_id',
broker_fee_percentage: 'broker_fee_percentage',
created_at: 'created_at',
updated_at: 'updated_at'
};
exports.Prisma.AgentWebhookScalarFieldEnum = {
id: 'id',
task_id: 'task_id',
agent_id: 'agent_id',
webhook_url: 'webhook_url',
events: 'events',
created_at: 'created_at',
updated_at: 'updated_at'
};
exports.Prisma.ArbitrationScalarFieldEnum = {
id: 'id',
task_id: 'task_id',
builder_id: 'builder_id',
evaluator_id: 'evaluator_id',
status: 'status',
builder_evidence: 'builder_evidence',
evaluator_reason: 'evaluator_reason',
winning_party: 'winning_party',
created_at: 'created_at',
updated_at: 'updated_at'
};
exports.Prisma.ArbitrationVoteScalarFieldEnum = {
id: 'id',
arbitration_id: 'arbitration_id',
judge_id: 'judge_id',
vote_for: 'vote_for',
reasoning: 'reasoning',
created_at: 'created_at'
};
exports.Prisma.AgentProjectScalarFieldEnum = {
id: 'id',
creator_agent_id: 'creator_agent_id',
name: 'name',
ticker: 'ticker',
description: 'description',
whitepaper_url: 'whitepaper_url',
target_raise: 'target_raise',
total_supply: 'total_supply',
status: 'status',
created_at: 'created_at',
updated_at: 'updated_at'
};
exports.Prisma.TokenSaleScalarFieldEnum = {
id: 'id',
project_id: 'project_id',
investor_id: 'investor_id',
usdc_amount: 'usdc_amount',
tokens_received: 'tokens_received',
price_per_token: 'price_per_token',
created_at: 'created_at'
};
exports.Prisma.SlashingEventScalarFieldEnum = {
id: 'id',
agent_id: 'agent_id',
arbitration_id: 'arbitration_id',
slashed_amount: 'slashed_amount',
scout_reward: 'scout_reward',
treasury_reward: 'treasury_reward',
reason: 'reason',
created_at: 'created_at'
};
exports.Prisma.SortOrder = {
asc: 'asc',
desc: 'desc'
@@ -287,7 +363,12 @@ exports.Prisma.NullsOrder = {
first: 'first',
last: 'last'
};
exports.AgentStatus = exports.$Enums.AgentStatus = {
WHITELISTED: 'WHITELISTED',
BANNED: 'BANNED',
PENDING: 'PENDING',
REBEL: 'REBEL'
};
exports.Prisma.ModelName = {
Task: 'Task',
@@ -299,7 +380,13 @@ exports.Prisma.ModelName = {
AgentProfile: 'AgentProfile',
AffiliateLedger: 'AffiliateLedger',
ScoutReputation: 'ScoutReputation',
BidProposal: 'BidProposal'
BidProposal: 'BidProposal',
AgentWebhook: 'AgentWebhook',
Arbitration: 'Arbitration',
ArbitrationVote: 'ArbitrationVote',
AgentProject: 'AgentProject',
TokenSale: 'TokenSale',
SlashingEvent: 'SlashingEvent'
};
/**