You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: libs/repositories/src/gen/cow/cow-api-types.ts
+150Lines changed: 150 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -481,6 +481,27 @@ export interface paths {
481
481
patch?: never;
482
482
trace?: never;
483
483
};
484
+
"/api/v1/debug/order/{uid}": {
485
+
parameters: {
486
+
query?: never;
487
+
header?: never;
488
+
path?: never;
489
+
cookie?: never;
490
+
};
491
+
/**
492
+
* Debug an order's lifecycle.
493
+
* @description Returns a comprehensive debug report for the given order, including order details, lifecycle events, auction participation, proposed solutions, executions, trades, and settlement attempts.
/** @description The UID of the order being debugged. */
1295
+
orderUid: components["schemas"]["UID"];
1296
+
order: components["schemas"]["Order"];
1297
+
events: components["schemas"]["DebugEvent"][];
1298
+
/** @description Auctions this order participated in, sorted by ID. Each auction groups all related data: native prices, proposed solutions, executions, settlement attempts, and fee policies.
/** @description Event type (e.g. created, ready, filtered, traded). */
1305
+
label: string;
1306
+
/** Format: date-time */
1307
+
timestamp: string;
1308
+
};
1309
+
DebugAuction: {
1310
+
/** @description Auction ID. */
1311
+
id: number;
1312
+
/** @description Block number of the auction. */
1313
+
block: number;
1314
+
/** @description Deadline block for the auction. */
1315
+
deadline: number;
1316
+
/** @description Native prices for the order's sell and buy tokens in this auction. Keys are hex-encoded token addresses, values are decimal price strings.
0 commit comments