@gbozee/ultimate 0.0.2-121 → 0.0.2-122
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/frontend/frontend-index.js +1318 -0
- package/dist/frontend-index.js +14 -7
- package/dist/index.cjs +180 -90
- package/dist/index.d.ts +4 -1
- package/dist/index.js +188 -94
- package/dist/mcp-client.cjs +50 -25
- package/dist/mcp-client.js +50 -25
- package/dist/mcp-server.cjs +186 -93
- package/dist/mcp-server.js +194 -97
- package/dist/mcp.d.ts +5 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1626,7 +1626,10 @@ declare class ExchangePosition {
|
|
|
1626
1626
|
}): Promise<any>;
|
|
1627
1627
|
}
|
|
1628
1628
|
declare class ExchangeAccount$1 {
|
|
1629
|
-
|
|
1629
|
+
instance: {
|
|
1630
|
+
owner: string;
|
|
1631
|
+
exchange: string;
|
|
1632
|
+
};
|
|
1630
1633
|
exchange: BaseExchange;
|
|
1631
1634
|
main_exchange?: BaseExchange;
|
|
1632
1635
|
private app_db;
|