Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions sdks/typescript/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@
*/


import { Exchange, Polymarket, Kalshi, KalshiDemo, Limitless, Myriad, Probable, Baozi, Opinion, Metaculus, Smarkets, PolymarketUS, GeminiTitan, Hyperliquid, SuiBets, Mock } from "./pmxt/client.js";
import { Exchange, Polymarket, Kalshi, KalshiDemo, Limitless, Myriad, Probable, Baozi, Opinion, Metaculus, Smarkets, PolymarketUS, GeminiTitan, Hyperliquid, SuiBets, Suibets, Mock } from "./pmxt/client.js";
import { Router } from "./pmxt/router.js";
import { ServerManager } from "./pmxt/server-manager.js";
import { FeedClient } from "./pmxt/feed-client.js";
import * as models from "./pmxt/models.js";
import * as errors from "./pmxt/errors.js";

export { Exchange, Polymarket, Kalshi, KalshiDemo, Limitless, Myriad, Probable, Baozi, Opinion, Metaculus, Smarkets, PolymarketUS, GeminiTitan, Hyperliquid, SuiBets, Mock, PolymarketOptions } from "./pmxt/client.js";
export { Exchange, Polymarket, Kalshi, KalshiDemo, Limitless, Myriad, Probable, Baozi, Opinion, Metaculus, Smarkets, PolymarketUS, GeminiTitan, Hyperliquid, SuiBets, Suibets, Mock, PolymarketOptions } from "./pmxt/client.js";
export { FeedClient } from "./pmxt/feed-client.js";
export type { Ticker, Tickers, OHLCV, Market as FeedMarket, OracleRound, FeedClientOptions } from "./pmxt/feed-client.js";
export { Router } from "./pmxt/router.js";
Expand Down Expand Up @@ -87,6 +87,7 @@ const pmxt = {
GeminiTitan,
Hyperliquid,
SuiBets,
Suibets,
Mock,
Router,
ServerManager,
Expand Down
3 changes: 3 additions & 0 deletions sdks/typescript/pmxt/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2874,6 +2874,9 @@ export class SuiBets extends Exchange {
}
}

// Backwards-compatible casing alias matching the Python SDK export.
export const Suibets = SuiBets;

/**
* Mock exchange client.
*
Expand Down
Loading