changedInput schema / properties / request / anyOf
Previous value: -[
- {
- "additionalProperties": true,
- "type": "object"
- },
- {
- "description": "Complete request for wallet PnL summary (flattened).",
- "properties": {
- "chain": {
- "default": "evm",
- "type": "string"
- },
- "dateRange": {
- "description": "Date range for PnL summary analysis",
- "properties": {
- "from": {
- "description": "Start value: token (see above) or date (YYYY-MM-DD or ___-MM-DD).",
- "type": "string"
- },
- "to": {
- "description": "End value: token (see above) or date (YYYY-MM-DD or ___-MM-DD).",
- "type": "string"
- }
- },
- "required": [
- "from",
- "to"
- ],
- "type": "object"
- },
- "walletAddress": {
- "description": "The wallet address to analyze",
- "type": "string"
- }
- },
- "required": [
- "walletAddress",
- "dateRange"
- ],
- "type": "object"
- }
-]New value: +[
+ {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ {
+ "description": "Complete request for wallet PnL summary (flattened).",
+ "properties": {
+ "chain": {
+ "default": "evm",
+ "description": "Blockchain to query. Use 'hyperliquid' for Hyperliquid perp traders only (realized PnL from fills + current unrealized snapshot). 'evm'/'all' on an EVM address reports spot/on-chain and Hyperliquid perp results in separate sections. Or pass a specific chain name for that chain's spot PnL alone.",
+ "type": "string"
+ },
+ "dateRange": {
+ "description": "Date range for PnL summary analysis",
+ "properties": {
+ "from": {
+ "description": "Start value: token (see above) or date (YYYY-MM-DD or ___-MM-DD).",
+ "type": "string"
+ },
+ "to": {
+ "description": "End value: token (see above) or date (YYYY-MM-DD or ___-MM-DD).",
+ "type": "string"
+ }
+ },
+ "required": [
+ "from",
+ "to"
+ ],
+ "type": "object"
+ },
+ "walletAddress": {
+ "description": "The wallet address to analyze",
+ "type": "string"
+ }
+ },
+ "required": [
+ "walletAddress",
+ "dateRange"
+ ],
+ "type": "object"
+ }
+]