@liberfi.io/react-predict 0.3.67 → 0.3.69

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.
@@ -213,6 +213,194 @@ interface OrderbookBatchResult {
213
213
  interface OrderbooksBatchResponse {
214
214
  results: OrderbookBatchResult[];
215
215
  }
216
+ /** Top-level evergreen sports section. */
217
+ type SportsSection = "sports" | "esports";
218
+ /** Sports provider used by orderbook keys and search results. */
219
+ type SportsProviderSource = "polymarket";
220
+ /** Public Sports event card type. */
221
+ type SportsEventType = "match" | "prop";
222
+ /** Sports event route result kind. */
223
+ type SportsRouteType = "match" | "prop" | "child_redirect" | "not_sports";
224
+ /** Taxonomy node kind. */
225
+ type SportsTaxonomyNodeType = "sport" | "game" | "league" | "tournament" | "category";
226
+ /** Binary outcome side accepted by existing Predict orderbook APIs. */
227
+ type SportsBinaryOutcome = OrderbookOutcome;
228
+ interface SportsTaxonomyNode {
229
+ section?: SportsSection;
230
+ node_type: SportsTaxonomyNodeType;
231
+ slug: string;
232
+ label: string;
233
+ children?: SportsTaxonomyNode[];
234
+ }
235
+ interface SportsTaxonomySection {
236
+ section: SportsSection;
237
+ children: SportsTaxonomyNode[];
238
+ }
239
+ interface SportsTaxonomyResponse {
240
+ sections: SportsTaxonomySection[];
241
+ }
242
+ interface SportsParticipant {
243
+ name: string;
244
+ role?: string;
245
+ slug?: string;
246
+ logo_url?: string;
247
+ abbreviation?: string;
248
+ }
249
+ interface SportsLiveState {
250
+ status?: string;
251
+ status_text?: string;
252
+ clock?: string | null;
253
+ period?: string | null;
254
+ score?: unknown;
255
+ score_state?: unknown;
256
+ observed_at_unix_ms?: number;
257
+ }
258
+ interface SportsOrderbookKey {
259
+ market_slug: string;
260
+ source: SportsProviderSource;
261
+ outcome: SportsBinaryOutcome;
262
+ }
263
+ interface SportsMarketOutcome {
264
+ outcome: SportsBinaryOutcome;
265
+ label: string;
266
+ price?: number;
267
+ best_bid?: number;
268
+ best_ask?: number;
269
+ last_trade_price?: number;
270
+ orderbook?: SportsOrderbookKey;
271
+ }
272
+ interface SportsInlineMarket {
273
+ market_slug: string;
274
+ market_type?: string;
275
+ label: string;
276
+ outcomes: SportsMarketOutcome[];
277
+ }
278
+ interface SportsMarket extends SportsInlineMarket {
279
+ condition_id?: string;
280
+ market_category?: string;
281
+ period?: string;
282
+ line?: number;
283
+ active?: boolean;
284
+ closed?: boolean;
285
+ accepting_orders?: boolean;
286
+ volume?: number;
287
+ liquidity?: number;
288
+ }
289
+ interface SportsMarketGroup {
290
+ market_category: string;
291
+ label: string;
292
+ markets: SportsMarket[];
293
+ }
294
+ interface SportsMatchCard {
295
+ match_group_slug: string;
296
+ section: SportsSection;
297
+ sport_slug?: string;
298
+ game_slug?: string;
299
+ league_slug?: string;
300
+ tournament_slug?: string;
301
+ title: string;
302
+ status: string;
303
+ start_time?: string;
304
+ participants?: SportsParticipant[];
305
+ market_count?: number;
306
+ live_state?: SportsLiveState;
307
+ inline_markets?: SportsInlineMarket[];
308
+ }
309
+ type SportsMatchesResponse = PredictPage<SportsMatchCard>;
310
+ interface SportsPropEventCard {
311
+ event_slug: string;
312
+ event_type: SportsEventType;
313
+ prop_type?: "futures" | "outright" | "player_prop" | "all" | string;
314
+ section: SportsSection;
315
+ sport_slug?: string;
316
+ game_slug?: string;
317
+ league_slug?: string;
318
+ tournament_slug?: string;
319
+ title: string;
320
+ status?: string;
321
+ start_time?: string;
322
+ parent_match_group_slug?: string;
323
+ markets?: SportsInlineMarket[];
324
+ }
325
+ type SportsPropsResponse = PredictPage<SportsPropEventCard>;
326
+ interface SportsRoutingResponse {
327
+ route_type: SportsRouteType;
328
+ slug: string;
329
+ section?: SportsSection;
330
+ match_group_slug?: string;
331
+ event_slug?: string;
332
+ redirect_to?: string;
333
+ status?: number;
334
+ }
335
+ interface SportsMatchDetail extends SportsMatchCard {
336
+ market_groups: SportsMarketGroup[];
337
+ }
338
+ interface SportsTaxonomyParams {
339
+ section?: SportsSection;
340
+ sport_slug?: string;
341
+ game_slug?: string;
342
+ league_slug?: string;
343
+ tournament_slug?: string;
344
+ lang?: string;
345
+ }
346
+ interface SportsMatchesParams {
347
+ sport_slug?: string;
348
+ game_slug?: string;
349
+ league_slug?: string;
350
+ tournament_slug?: string;
351
+ status?: string;
352
+ limit?: number;
353
+ cursor?: string;
354
+ lang?: string;
355
+ }
356
+ interface SportsPropsParams {
357
+ sport_slug?: string;
358
+ game_slug?: string;
359
+ league_slug?: string;
360
+ tournament_slug?: string;
361
+ prop_type?: "futures" | "outright" | "player_prop" | "all";
362
+ limit?: number;
363
+ cursor?: string;
364
+ lang?: string;
365
+ }
366
+ interface SportsRoutingParams {
367
+ lang?: string;
368
+ }
369
+ interface SportsMatchDetailParams {
370
+ lang?: string;
371
+ }
372
+ type EsportsTaxonomyParams = Omit<SportsTaxonomyParams, "section">;
373
+ type EsportsMatchesParams = SportsMatchesParams;
374
+ type EsportsPropsParams = SportsPropsParams;
375
+ type EsportsMatchDetailParams = SportsMatchDetailParams;
376
+ type PredictSearchResultType = "event" | "match_group" | "prop_event" | "market";
377
+ type PredictSearchSortField = "relevance" | "volume" | "start_time" | "updated_at";
378
+ interface PredictSearchParams {
379
+ q?: string;
380
+ result_type?: PredictSearchResultType | PredictSearchResultType[] | string;
381
+ source?: ProviderSource;
382
+ section?: SportsSection | string;
383
+ include_closed?: boolean;
384
+ sort_by?: PredictSearchSortField;
385
+ sort_asc?: boolean;
386
+ limit?: number;
387
+ cursor?: string;
388
+ lang?: string;
389
+ }
390
+ interface PredictSearchResult {
391
+ result_type: PredictSearchResultType;
392
+ document_id: string;
393
+ title: string;
394
+ source?: ProviderSource;
395
+ section?: SportsSection | string;
396
+ event_slug?: string;
397
+ match_group_slug?: string;
398
+ market_slug?: string;
399
+ detail_url: string;
400
+ status?: string;
401
+ score?: number;
402
+ }
403
+ type PredictSearchResponse = PredictPage<PredictSearchResult>;
216
404
  /** On-chain trade type. */
217
405
  type TradeType = "TRADE" | "SPLIT" | "MERGE" | "REDEEM" | "REWARD" | "CONVERSION" | "MAKER_REBATE" | "REFERRAL_REWARD";
218
406
  /** Lightweight event summary embedded in a trade. */
@@ -1254,6 +1442,26 @@ declare class PredictClient {
1254
1442
  * Maps to `GET /api/v1/events/:slug/similar?source=...`.
1255
1443
  */
1256
1444
  getSimilarEvents(slug: string, source: ProviderSource, params?: SimilarEventsParams): Promise<PredictEvent[]>;
1445
+ /** Maps to `GET /api/v1/sports/taxonomy`. */
1446
+ getSportsTaxonomy(params?: SportsTaxonomyParams): Promise<SportsTaxonomyResponse>;
1447
+ /** Maps to `GET /api/v1/sports/matches`. */
1448
+ getSportsMatches(params?: SportsMatchesParams): Promise<SportsMatchesResponse>;
1449
+ /** Maps to `GET /api/v1/sports/props`. */
1450
+ getSportsProps(params?: SportsPropsParams): Promise<SportsPropsResponse>;
1451
+ /** Maps to `GET /api/v1/esports/taxonomy`. */
1452
+ getEsportsTaxonomy(params?: EsportsTaxonomyParams): Promise<SportsTaxonomyResponse>;
1453
+ /** Maps to `GET /api/v1/esports/matches`. */
1454
+ getEsportsMatches(params?: EsportsMatchesParams): Promise<SportsMatchesResponse>;
1455
+ /** Maps to `GET /api/v1/esports/props`. */
1456
+ getEsportsProps(params?: EsportsPropsParams): Promise<SportsPropsResponse>;
1457
+ /** Maps to `GET /api/v1/sports/routing/:slug`. */
1458
+ getSportsRouting(slug: string, params?: SportsRoutingParams): Promise<SportsRoutingResponse>;
1459
+ /** Maps to `GET /api/v1/sports/matches/:match_group_slug`. */
1460
+ getSportsMatchDetail(section: "sports" | "esports", matchGroupSlug: string, params?: SportsMatchDetailParams): Promise<SportsMatchDetail>;
1461
+ /** Convenience wrapper for `GET /api/v1/esports/matches/:match_group_slug`. */
1462
+ getEsportsMatchDetail(matchGroupSlug: string, params?: EsportsMatchDetailParams): Promise<SportsMatchDetail>;
1463
+ /** Maps to `GET /api/v1/search`. */
1464
+ search(params?: PredictSearchParams): Promise<PredictSearchResponse>;
1257
1465
  /**
1258
1466
  * List comments for a prediction event.
1259
1467
  *
@@ -1747,6 +1955,41 @@ declare function eventQueryKey(slug: string, source?: ProviderSource, lang?: str
1747
1955
  */
1748
1956
  declare function fetchEvent(client: PredictClient, slug: string, source?: ProviderSource, lang?: string): Promise<PredictEvent>;
1749
1957
 
1958
+ declare function predictSearchQueryKey(params?: PredictSearchParams): unknown[];
1959
+ declare function resolvePredictSearchParams(params?: PredictSearchParams): PredictSearchParams;
1960
+ declare function fetchPredictSearch(client: PredictClient, params?: PredictSearchParams): Promise<PredictSearchResponse>;
1961
+
1962
+ declare function sportsTaxonomyQueryKey(params?: SportsTaxonomyParams): unknown[];
1963
+ declare function sportsMatchesQueryKey(params?: SportsMatchesParams): unknown[];
1964
+ declare function sportsPropsQueryKey(params?: SportsPropsParams): unknown[];
1965
+ declare function resolveSportsTaxonomyParams(params?: SportsTaxonomyParams): SportsTaxonomyParams;
1966
+ declare function resolveSportsMatchesParams(params?: SportsMatchesParams): SportsMatchesParams;
1967
+ declare function resolveSportsPropsParams(params?: SportsPropsParams): SportsPropsParams;
1968
+ declare function fetchSportsTaxonomy(client: PredictClient, params?: SportsTaxonomyParams): Promise<SportsTaxonomyResponse>;
1969
+ declare function fetchSportsMatches(client: PredictClient, params?: SportsMatchesParams): Promise<SportsMatchesResponse>;
1970
+ declare function fetchSportsProps(client: PredictClient, params?: SportsPropsParams): Promise<SportsPropsResponse>;
1971
+
1972
+ declare function esportsTaxonomyQueryKey(params?: EsportsTaxonomyParams): unknown[];
1973
+ declare function esportsMatchesQueryKey(params?: EsportsMatchesParams): unknown[];
1974
+ declare function esportsPropsQueryKey(params?: EsportsPropsParams): unknown[];
1975
+ declare function resolveEsportsTaxonomyParams(params?: EsportsTaxonomyParams): EsportsTaxonomyParams;
1976
+ declare function resolveEsportsMatchesParams(params?: EsportsMatchesParams): EsportsMatchesParams;
1977
+ declare function resolveEsportsPropsParams(params?: EsportsPropsParams): EsportsPropsParams;
1978
+ declare function fetchEsportsTaxonomy(client: PredictClient, params?: EsportsTaxonomyParams): Promise<SportsTaxonomyResponse>;
1979
+ declare function fetchEsportsMatches(client: PredictClient, params?: EsportsMatchesParams): Promise<SportsMatchesResponse>;
1980
+ declare function fetchEsportsProps(client: PredictClient, params?: EsportsPropsParams): Promise<SportsPropsResponse>;
1981
+
1982
+ declare function sportsRoutingQueryKey(slug: string, params?: SportsRoutingParams): unknown[];
1983
+ declare function resolveSportsRoutingParams(params?: SportsRoutingParams): SportsRoutingParams;
1984
+ declare function fetchSportsRouting(client: PredictClient, slug: string, params?: SportsRoutingParams): Promise<SportsRoutingResponse>;
1985
+
1986
+ declare function sportsMatchDetailQueryKey(section: SportsSection, matchGroupSlug: string, params?: SportsMatchDetailParams): unknown[];
1987
+ declare function esportsMatchDetailQueryKey(matchGroupSlug: string, params?: EsportsMatchDetailParams): unknown[];
1988
+ declare function resolveSportsMatchDetailParams(params?: SportsMatchDetailParams): SportsMatchDetailParams;
1989
+ declare function resolveEsportsMatchDetailParams(params?: EsportsMatchDetailParams): EsportsMatchDetailParams;
1990
+ declare function fetchSportsMatchDetail(client: PredictClient, section: SportsSection, matchGroupSlug: string, params?: SportsMatchDetailParams): Promise<SportsMatchDetail>;
1991
+ declare function fetchEsportsMatchDetail(client: PredictClient, matchGroupSlug: string, params?: EsportsMatchDetailParams): Promise<SportsMatchDetail>;
1992
+
1750
1993
  /**
1751
1994
  * Server-safe pure functions for market query helpers.
1752
1995
  *
@@ -2121,4 +2364,4 @@ declare function buildClobPayload(signedOrder: SignedOrder, owner: string): Clob
2121
2364
  */
2122
2365
  declare function getPolymarketSharesPrecision(tickSize: string): number;
2123
2366
 
2124
- export { type PolymarketWithdrawRequest as $, type AvailableSharesResponse as A, type BalanceResponse as B, type Candlestick as C, type MatchMarketPage as D, type EventStats as E, type ListTradesParams as F, type ListTradesMultiParams as G, type DFlowQuoteRequest as H, type DFlowQuoteResponse as I, type DFlowSubmitResponse as J, type DFlowSubmitRequest as K, type ListEventsParams as L, type MatchesParams as M, type DFlowKYCStatus as N, type OrderbookOutcome as O, PredictClient as P, type PolymarketSetupStatus as Q, type PolymarketDepositWalletDeployResponse as R, type SimilarEventsParams as S, type WithdrawBuildRequest as T, type WithdrawSubmitResponse as U, type WithdrawSubmitRequest as V, type WithdrawBuildResponse as W, type WithdrawStatusResponse as X, type PolymarketDepositAddresses as Y, type PolymarketSupportedAsset as Z, type PolymarketWithdrawResponse as _, PredictWsClient as a, type MatchesStats as a$, type PolymarketWithdrawPrepareResponse as a0, type PolymarketWithdrawPrepareRequest as a1, type PolymarketWithdrawQuoteResponse as a2, type PolymarketWithdrawQuoteRequest as a3, type PolymarketWithdrawRelayBuildResponse as a4, type PolymarketWithdrawRelayBuildRequest as a5, type PolymarketWithdrawRelaySubmitResponse as a6, type PolymarketWithdrawRelaySubmitRequest as a7, type PolymarketWithdrawBridgeStatusResponse as a8, type PolymarketRedeemResponse as a9, type EventSummary as aA, type MarketSummary as aB, type PredictCommentProfile as aC, type PricePoint as aD, type PredictPosition as aE, type PositionValue as aF, type PositionValueError as aG, type OrderStatus as aH, type OrderSide as aI, type DFlowOrderContext as aJ, type PolymarketOrderType as aK, type PolymarketTickSize as aL, type PolymarketWalletKind as aM, type PolymarketDepositWalletDeployRequest as aN, type DepositBuildRequest as aO, type DepositBuildResponse as aP, type DepositSubmitRequest as aQ, type DepositSubmitResponse as aR, type DepositStatusResponse as aS, type UnsignedTx as aT, type PolymarketBridgeToken as aU, type PolymarketSupportedAssetsResponse as aV, type PolymarketTypedDataArg as aW, type MatchStatus as aX, type MatchGroupEntry as aY, type MatchGroupMarket as aZ, type MatchSortField as a_, type PolymarketTypedData as aa, type TickSizeResponse as ab, type FeeRateResponse as ac, type RebateConfig as ad, type WsConnectionStatus as ae, type WsDataMessage as af, type WsPriceEvent as ag, type WsOrderbookEvent as ah, type WsTradeEvent as ai, type CreateOrderInput as aj, createPredictClient as ak, type PredictClientOptions as al, createPredictWsClient as am, type PredictWsClientConfig as an, type ProviderMeta as ao, type PredictTag as ap, type SettlementSource as aq, type MarketStatus as ar, type MarketResult as as, type MarketOutcome as at, type OrderbookLevel as au, type OrderbookBatchItem as av, type OrderbookBatchResult as aw, type OrderbooksBatchRequest as ax, type OrderbooksBatchResponse as ay, type TradeType as az, type PredictPage as b, type MatchConfidenceTier as b0, type SignalTag as b1, type MatchLeg as b2, type MatchMarketFlat as b3, type WsChannel as b4, type WsChannelEvent as b5, type WsClientMessage as b6, type WsSubscribeMessage as b7, type WsPingMessage as b8, type WsServerMessage as b9, buildPolymarketL2Headers as bA, derivePolymarketApiKey as bB, type HttpMethod as bC, type PolymarketL2HeadersInput as bD, type PolymarketL2Headers as bE, type BuildClobAuthMessageInput as bF, CTF_EXCHANGE_ADDRESS as bG, NEG_RISK_CTF_EXCHANGE_ADDRESS as bH, USDC_ADDRESS as bI, POLYGON_CHAIN_ID as bJ, buildCtfExchangeDomain as bK, CTF_ORDER_TYPES as bL, ORDER_TYPE as bM, SIDE as bN, buildOrderMessage as bO, buildSignedOrder as bP, buildClobPayload as bQ, getPolymarketSharesPrecision as bR, normalizePolymarketTickSize as bS, type ClobOrderPayload as bT, type BuildOrderMessageInput as bU, type OrderMessage as bV, type SignedOrder as bW, DEFAULT_PAGE_SIZE as bX, type WsPongMessage as ba, type WsSubscribedMessage as bb, type WsErrorCode as bc, type WsErrorMessage as bd, type PolymarketRedeemPrepareInput as be, type PolymarketRedeemPrepareResponse as bf, type PolymarketRedeemInput as bg, eventQueryKey as bh, fetchEvent as bi, resolveTagSlug as bj, resolveEventsParams as bk, infiniteEventsQueryKey as bl, fetchEventsPage as bm, type ResolveEventsParamsInput as bn, type TagSlugSelection as bo, marketQueryKey as bp, fetchMarket as bq, matchesQueryKey as br, matchQueryKey as bs, fetchMatchesPage as bt, matchMarketsQueryKey as bu, fetchMatchMarketsPage as bv, CLOB_AUTH_DOMAIN as bw, CLOB_AUTH_TYPES as bx, buildClobAuthMessage as by, hmacSha256Base64 as bz, type PredictEvent as c, type ProviderSource as d, type EventStatus as e, type EventSortField as f, type PredictMarket as g, type Orderbook as h, type ListMarketTradesParams as i, type PredictTrade as j, type PriceHistoryRange as k, type PriceHistoryParams as l, type PriceHistoryResponse as m, type ListCandlesticksParams as n, type ListCommentsParams as o, type PredictComment as p, type PositionsResponse as q, type PositionValueResponse as r, type ListOrdersParams as s, type PredictOrder as t, type ListOrdersMultiParams as u, type PredictOrdersResponse as v, type CancelOrderResult as w, type MatchGroupPage as x, type MatchGroup as y, type MatchMarketParams as z };
2367
+ export { type ListTradesParams as $, type PredictTrade as A, type PriceHistoryRange as B, type PriceHistoryParams as C, type PriceHistoryResponse as D, type EsportsTaxonomyParams as E, type ListCandlesticksParams as F, type Candlestick as G, type ListCommentsParams as H, type PredictComment as I, type PositionsResponse as J, type PositionValueResponse as K, type ListEventsParams as L, type AvailableSharesResponse as M, type BalanceResponse as N, type Orderbook as O, PredictClient as P, type ListOrdersParams as Q, type PredictOrder as R, type SportsTaxonomyParams as S, type ListOrdersMultiParams as T, type PredictOrdersResponse as U, type CancelOrderResult as V, type MatchesParams as W, type MatchGroupPage as X, type MatchGroup as Y, type MatchMarketParams as Z, type MatchMarketPage as _, PredictWsClient as a, type SportsMarket as a$, type ListTradesMultiParams as a0, type DFlowQuoteRequest as a1, type DFlowQuoteResponse as a2, type DFlowSubmitResponse as a3, type DFlowSubmitRequest as a4, type DFlowKYCStatus as a5, type PolymarketSetupStatus as a6, type PolymarketDepositWalletDeployResponse as a7, type WithdrawBuildResponse as a8, type WithdrawBuildRequest as a9, type CreateOrderInput as aA, createPredictClient as aB, type PredictClientOptions as aC, createPredictWsClient as aD, type PredictWsClientConfig as aE, type ProviderMeta as aF, type PredictTag as aG, type SettlementSource as aH, type MarketStatus as aI, type MarketResult as aJ, type MarketOutcome as aK, type OrderbookLevel as aL, type OrderbookBatchItem as aM, type OrderbookBatchResult as aN, type OrderbooksBatchRequest as aO, type OrderbooksBatchResponse as aP, type SportsProviderSource as aQ, type SportsEventType as aR, type SportsRouteType as aS, type SportsTaxonomyNodeType as aT, type SportsBinaryOutcome as aU, type SportsTaxonomyNode as aV, type SportsTaxonomySection as aW, type SportsParticipant as aX, type SportsLiveState as aY, type SportsMarketOutcome as aZ, type SportsInlineMarket as a_, type WithdrawSubmitResponse as aa, type WithdrawSubmitRequest as ab, type WithdrawStatusResponse as ac, type PolymarketDepositAddresses as ad, type PolymarketSupportedAsset as ae, type PolymarketWithdrawResponse as af, type PolymarketWithdrawRequest as ag, type PolymarketWithdrawPrepareResponse as ah, type PolymarketWithdrawPrepareRequest as ai, type PolymarketWithdrawQuoteResponse as aj, type PolymarketWithdrawQuoteRequest as ak, type PolymarketWithdrawRelayBuildResponse as al, type PolymarketWithdrawRelayBuildRequest as am, type PolymarketWithdrawRelaySubmitResponse as an, type PolymarketWithdrawRelaySubmitRequest as ao, type PolymarketWithdrawBridgeStatusResponse as ap, type PolymarketRedeemResponse as aq, type PolymarketTypedData as ar, type TickSizeResponse as as, type FeeRateResponse as at, type RebateConfig as au, type WsConnectionStatus as av, type WsDataMessage as aw, type WsPriceEvent as ax, type WsOrderbookEvent as ay, type WsTradeEvent as az, type PredictPage as b, esportsTaxonomyQueryKey as b$, type SportsMarketGroup as b0, type SportsMatchCard as b1, type SportsPropEventCard as b2, type EsportsMatchDetailParams as b3, type PredictSearchResultType as b4, type PredictSearchSortField as b5, type PredictSearchResult as b6, type TradeType as b7, type EventSummary as b8, type MarketSummary as b9, type MatchConfidenceTier as bA, type SignalTag as bB, type MatchLeg as bC, type MatchMarketFlat as bD, type WsChannel as bE, type WsChannelEvent as bF, type WsClientMessage as bG, type WsSubscribeMessage as bH, type WsPingMessage as bI, type WsServerMessage as bJ, type WsPongMessage as bK, type WsSubscribedMessage as bL, type WsErrorCode as bM, type WsErrorMessage as bN, type PolymarketRedeemPrepareInput as bO, type PolymarketRedeemPrepareResponse as bP, type PolymarketRedeemInput as bQ, eventQueryKey as bR, fetchEvent as bS, predictSearchQueryKey as bT, fetchPredictSearch as bU, sportsTaxonomyQueryKey as bV, fetchSportsTaxonomy as bW, sportsMatchesQueryKey as bX, fetchSportsMatches as bY, sportsPropsQueryKey as bZ, fetchSportsProps as b_, type PredictCommentProfile as ba, type PricePoint as bb, type PredictPosition as bc, type PositionValue as bd, type PositionValueError as be, type OrderStatus as bf, type OrderSide as bg, type DFlowOrderContext as bh, type PolymarketOrderType as bi, type PolymarketTickSize as bj, type PolymarketWalletKind as bk, type PolymarketDepositWalletDeployRequest as bl, type DepositBuildRequest as bm, type DepositBuildResponse as bn, type DepositSubmitRequest as bo, type DepositSubmitResponse as bp, type DepositStatusResponse as bq, type UnsignedTx as br, type PolymarketBridgeToken as bs, type PolymarketSupportedAssetsResponse as bt, type PolymarketTypedDataArg as bu, type MatchStatus as bv, type MatchGroupEntry as bw, type MatchGroupMarket as bx, type MatchSortField as by, type MatchesStats as bz, type PredictEvent as c, fetchEsportsTaxonomy as c0, esportsMatchesQueryKey as c1, fetchEsportsMatches as c2, esportsPropsQueryKey as c3, fetchEsportsProps as c4, sportsRoutingQueryKey as c5, fetchSportsRouting as c6, sportsMatchDetailQueryKey as c7, fetchSportsMatchDetail as c8, resolveTagSlug as c9, buildCtfExchangeDomain as cA, CTF_ORDER_TYPES as cB, ORDER_TYPE as cC, SIDE as cD, buildOrderMessage as cE, buildSignedOrder as cF, buildClobPayload as cG, getPolymarketSharesPrecision as cH, normalizePolymarketTickSize as cI, type ClobOrderPayload as cJ, type BuildOrderMessageInput as cK, type OrderMessage as cL, type SignedOrder as cM, DEFAULT_PAGE_SIZE as cN, resolveSportsTaxonomyParams as cO, resolveSportsMatchesParams as cP, resolveSportsPropsParams as cQ, resolveEsportsTaxonomyParams as cR, resolveEsportsMatchesParams as cS, resolveEsportsPropsParams as cT, resolveSportsRoutingParams as cU, esportsMatchDetailQueryKey as cV, resolveSportsMatchDetailParams as cW, resolveEsportsMatchDetailParams as cX, fetchEsportsMatchDetail as cY, resolvePredictSearchParams as cZ, resolveEventsParams as ca, infiniteEventsQueryKey as cb, fetchEventsPage as cc, type ResolveEventsParamsInput as cd, type TagSlugSelection as ce, marketQueryKey as cf, fetchMarket as cg, matchesQueryKey as ch, matchQueryKey as ci, fetchMatchesPage as cj, matchMarketsQueryKey as ck, fetchMatchMarketsPage as cl, CLOB_AUTH_DOMAIN as cm, CLOB_AUTH_TYPES as cn, buildClobAuthMessage as co, hmacSha256Base64 as cp, buildPolymarketL2Headers as cq, derivePolymarketApiKey as cr, type HttpMethod as cs, type PolymarketL2HeadersInput as ct, type PolymarketL2Headers as cu, type BuildClobAuthMessageInput as cv, CTF_EXCHANGE_ADDRESS as cw, NEG_RISK_CTF_EXCHANGE_ADDRESS as cx, USDC_ADDRESS as cy, POLYGON_CHAIN_ID as cz, type ProviderSource as d, type PredictSearchParams as e, type PredictSearchResponse as f, type SportsTaxonomyResponse as g, type SportsMatchesParams as h, type SportsMatchesResponse as i, type SportsPropsParams as j, type SportsPropsResponse as k, type EsportsMatchesParams as l, type EsportsPropsParams as m, type SportsRoutingParams as n, type SportsRoutingResponse as o, type SportsSection as p, type SportsMatchDetailParams as q, type SportsMatchDetail as r, type SportsOrderbookKey as s, type EventStats as t, type EventStatus as u, type EventSortField as v, type SimilarEventsParams as w, type PredictMarket as x, type OrderbookOutcome as y, type ListMarketTradesParams as z };
@@ -213,6 +213,194 @@ interface OrderbookBatchResult {
213
213
  interface OrderbooksBatchResponse {
214
214
  results: OrderbookBatchResult[];
215
215
  }
216
+ /** Top-level evergreen sports section. */
217
+ type SportsSection = "sports" | "esports";
218
+ /** Sports provider used by orderbook keys and search results. */
219
+ type SportsProviderSource = "polymarket";
220
+ /** Public Sports event card type. */
221
+ type SportsEventType = "match" | "prop";
222
+ /** Sports event route result kind. */
223
+ type SportsRouteType = "match" | "prop" | "child_redirect" | "not_sports";
224
+ /** Taxonomy node kind. */
225
+ type SportsTaxonomyNodeType = "sport" | "game" | "league" | "tournament" | "category";
226
+ /** Binary outcome side accepted by existing Predict orderbook APIs. */
227
+ type SportsBinaryOutcome = OrderbookOutcome;
228
+ interface SportsTaxonomyNode {
229
+ section?: SportsSection;
230
+ node_type: SportsTaxonomyNodeType;
231
+ slug: string;
232
+ label: string;
233
+ children?: SportsTaxonomyNode[];
234
+ }
235
+ interface SportsTaxonomySection {
236
+ section: SportsSection;
237
+ children: SportsTaxonomyNode[];
238
+ }
239
+ interface SportsTaxonomyResponse {
240
+ sections: SportsTaxonomySection[];
241
+ }
242
+ interface SportsParticipant {
243
+ name: string;
244
+ role?: string;
245
+ slug?: string;
246
+ logo_url?: string;
247
+ abbreviation?: string;
248
+ }
249
+ interface SportsLiveState {
250
+ status?: string;
251
+ status_text?: string;
252
+ clock?: string | null;
253
+ period?: string | null;
254
+ score?: unknown;
255
+ score_state?: unknown;
256
+ observed_at_unix_ms?: number;
257
+ }
258
+ interface SportsOrderbookKey {
259
+ market_slug: string;
260
+ source: SportsProviderSource;
261
+ outcome: SportsBinaryOutcome;
262
+ }
263
+ interface SportsMarketOutcome {
264
+ outcome: SportsBinaryOutcome;
265
+ label: string;
266
+ price?: number;
267
+ best_bid?: number;
268
+ best_ask?: number;
269
+ last_trade_price?: number;
270
+ orderbook?: SportsOrderbookKey;
271
+ }
272
+ interface SportsInlineMarket {
273
+ market_slug: string;
274
+ market_type?: string;
275
+ label: string;
276
+ outcomes: SportsMarketOutcome[];
277
+ }
278
+ interface SportsMarket extends SportsInlineMarket {
279
+ condition_id?: string;
280
+ market_category?: string;
281
+ period?: string;
282
+ line?: number;
283
+ active?: boolean;
284
+ closed?: boolean;
285
+ accepting_orders?: boolean;
286
+ volume?: number;
287
+ liquidity?: number;
288
+ }
289
+ interface SportsMarketGroup {
290
+ market_category: string;
291
+ label: string;
292
+ markets: SportsMarket[];
293
+ }
294
+ interface SportsMatchCard {
295
+ match_group_slug: string;
296
+ section: SportsSection;
297
+ sport_slug?: string;
298
+ game_slug?: string;
299
+ league_slug?: string;
300
+ tournament_slug?: string;
301
+ title: string;
302
+ status: string;
303
+ start_time?: string;
304
+ participants?: SportsParticipant[];
305
+ market_count?: number;
306
+ live_state?: SportsLiveState;
307
+ inline_markets?: SportsInlineMarket[];
308
+ }
309
+ type SportsMatchesResponse = PredictPage<SportsMatchCard>;
310
+ interface SportsPropEventCard {
311
+ event_slug: string;
312
+ event_type: SportsEventType;
313
+ prop_type?: "futures" | "outright" | "player_prop" | "all" | string;
314
+ section: SportsSection;
315
+ sport_slug?: string;
316
+ game_slug?: string;
317
+ league_slug?: string;
318
+ tournament_slug?: string;
319
+ title: string;
320
+ status?: string;
321
+ start_time?: string;
322
+ parent_match_group_slug?: string;
323
+ markets?: SportsInlineMarket[];
324
+ }
325
+ type SportsPropsResponse = PredictPage<SportsPropEventCard>;
326
+ interface SportsRoutingResponse {
327
+ route_type: SportsRouteType;
328
+ slug: string;
329
+ section?: SportsSection;
330
+ match_group_slug?: string;
331
+ event_slug?: string;
332
+ redirect_to?: string;
333
+ status?: number;
334
+ }
335
+ interface SportsMatchDetail extends SportsMatchCard {
336
+ market_groups: SportsMarketGroup[];
337
+ }
338
+ interface SportsTaxonomyParams {
339
+ section?: SportsSection;
340
+ sport_slug?: string;
341
+ game_slug?: string;
342
+ league_slug?: string;
343
+ tournament_slug?: string;
344
+ lang?: string;
345
+ }
346
+ interface SportsMatchesParams {
347
+ sport_slug?: string;
348
+ game_slug?: string;
349
+ league_slug?: string;
350
+ tournament_slug?: string;
351
+ status?: string;
352
+ limit?: number;
353
+ cursor?: string;
354
+ lang?: string;
355
+ }
356
+ interface SportsPropsParams {
357
+ sport_slug?: string;
358
+ game_slug?: string;
359
+ league_slug?: string;
360
+ tournament_slug?: string;
361
+ prop_type?: "futures" | "outright" | "player_prop" | "all";
362
+ limit?: number;
363
+ cursor?: string;
364
+ lang?: string;
365
+ }
366
+ interface SportsRoutingParams {
367
+ lang?: string;
368
+ }
369
+ interface SportsMatchDetailParams {
370
+ lang?: string;
371
+ }
372
+ type EsportsTaxonomyParams = Omit<SportsTaxonomyParams, "section">;
373
+ type EsportsMatchesParams = SportsMatchesParams;
374
+ type EsportsPropsParams = SportsPropsParams;
375
+ type EsportsMatchDetailParams = SportsMatchDetailParams;
376
+ type PredictSearchResultType = "event" | "match_group" | "prop_event" | "market";
377
+ type PredictSearchSortField = "relevance" | "volume" | "start_time" | "updated_at";
378
+ interface PredictSearchParams {
379
+ q?: string;
380
+ result_type?: PredictSearchResultType | PredictSearchResultType[] | string;
381
+ source?: ProviderSource;
382
+ section?: SportsSection | string;
383
+ include_closed?: boolean;
384
+ sort_by?: PredictSearchSortField;
385
+ sort_asc?: boolean;
386
+ limit?: number;
387
+ cursor?: string;
388
+ lang?: string;
389
+ }
390
+ interface PredictSearchResult {
391
+ result_type: PredictSearchResultType;
392
+ document_id: string;
393
+ title: string;
394
+ source?: ProviderSource;
395
+ section?: SportsSection | string;
396
+ event_slug?: string;
397
+ match_group_slug?: string;
398
+ market_slug?: string;
399
+ detail_url: string;
400
+ status?: string;
401
+ score?: number;
402
+ }
403
+ type PredictSearchResponse = PredictPage<PredictSearchResult>;
216
404
  /** On-chain trade type. */
217
405
  type TradeType = "TRADE" | "SPLIT" | "MERGE" | "REDEEM" | "REWARD" | "CONVERSION" | "MAKER_REBATE" | "REFERRAL_REWARD";
218
406
  /** Lightweight event summary embedded in a trade. */
@@ -1254,6 +1442,26 @@ declare class PredictClient {
1254
1442
  * Maps to `GET /api/v1/events/:slug/similar?source=...`.
1255
1443
  */
1256
1444
  getSimilarEvents(slug: string, source: ProviderSource, params?: SimilarEventsParams): Promise<PredictEvent[]>;
1445
+ /** Maps to `GET /api/v1/sports/taxonomy`. */
1446
+ getSportsTaxonomy(params?: SportsTaxonomyParams): Promise<SportsTaxonomyResponse>;
1447
+ /** Maps to `GET /api/v1/sports/matches`. */
1448
+ getSportsMatches(params?: SportsMatchesParams): Promise<SportsMatchesResponse>;
1449
+ /** Maps to `GET /api/v1/sports/props`. */
1450
+ getSportsProps(params?: SportsPropsParams): Promise<SportsPropsResponse>;
1451
+ /** Maps to `GET /api/v1/esports/taxonomy`. */
1452
+ getEsportsTaxonomy(params?: EsportsTaxonomyParams): Promise<SportsTaxonomyResponse>;
1453
+ /** Maps to `GET /api/v1/esports/matches`. */
1454
+ getEsportsMatches(params?: EsportsMatchesParams): Promise<SportsMatchesResponse>;
1455
+ /** Maps to `GET /api/v1/esports/props`. */
1456
+ getEsportsProps(params?: EsportsPropsParams): Promise<SportsPropsResponse>;
1457
+ /** Maps to `GET /api/v1/sports/routing/:slug`. */
1458
+ getSportsRouting(slug: string, params?: SportsRoutingParams): Promise<SportsRoutingResponse>;
1459
+ /** Maps to `GET /api/v1/sports/matches/:match_group_slug`. */
1460
+ getSportsMatchDetail(section: "sports" | "esports", matchGroupSlug: string, params?: SportsMatchDetailParams): Promise<SportsMatchDetail>;
1461
+ /** Convenience wrapper for `GET /api/v1/esports/matches/:match_group_slug`. */
1462
+ getEsportsMatchDetail(matchGroupSlug: string, params?: EsportsMatchDetailParams): Promise<SportsMatchDetail>;
1463
+ /** Maps to `GET /api/v1/search`. */
1464
+ search(params?: PredictSearchParams): Promise<PredictSearchResponse>;
1257
1465
  /**
1258
1466
  * List comments for a prediction event.
1259
1467
  *
@@ -1747,6 +1955,41 @@ declare function eventQueryKey(slug: string, source?: ProviderSource, lang?: str
1747
1955
  */
1748
1956
  declare function fetchEvent(client: PredictClient, slug: string, source?: ProviderSource, lang?: string): Promise<PredictEvent>;
1749
1957
 
1958
+ declare function predictSearchQueryKey(params?: PredictSearchParams): unknown[];
1959
+ declare function resolvePredictSearchParams(params?: PredictSearchParams): PredictSearchParams;
1960
+ declare function fetchPredictSearch(client: PredictClient, params?: PredictSearchParams): Promise<PredictSearchResponse>;
1961
+
1962
+ declare function sportsTaxonomyQueryKey(params?: SportsTaxonomyParams): unknown[];
1963
+ declare function sportsMatchesQueryKey(params?: SportsMatchesParams): unknown[];
1964
+ declare function sportsPropsQueryKey(params?: SportsPropsParams): unknown[];
1965
+ declare function resolveSportsTaxonomyParams(params?: SportsTaxonomyParams): SportsTaxonomyParams;
1966
+ declare function resolveSportsMatchesParams(params?: SportsMatchesParams): SportsMatchesParams;
1967
+ declare function resolveSportsPropsParams(params?: SportsPropsParams): SportsPropsParams;
1968
+ declare function fetchSportsTaxonomy(client: PredictClient, params?: SportsTaxonomyParams): Promise<SportsTaxonomyResponse>;
1969
+ declare function fetchSportsMatches(client: PredictClient, params?: SportsMatchesParams): Promise<SportsMatchesResponse>;
1970
+ declare function fetchSportsProps(client: PredictClient, params?: SportsPropsParams): Promise<SportsPropsResponse>;
1971
+
1972
+ declare function esportsTaxonomyQueryKey(params?: EsportsTaxonomyParams): unknown[];
1973
+ declare function esportsMatchesQueryKey(params?: EsportsMatchesParams): unknown[];
1974
+ declare function esportsPropsQueryKey(params?: EsportsPropsParams): unknown[];
1975
+ declare function resolveEsportsTaxonomyParams(params?: EsportsTaxonomyParams): EsportsTaxonomyParams;
1976
+ declare function resolveEsportsMatchesParams(params?: EsportsMatchesParams): EsportsMatchesParams;
1977
+ declare function resolveEsportsPropsParams(params?: EsportsPropsParams): EsportsPropsParams;
1978
+ declare function fetchEsportsTaxonomy(client: PredictClient, params?: EsportsTaxonomyParams): Promise<SportsTaxonomyResponse>;
1979
+ declare function fetchEsportsMatches(client: PredictClient, params?: EsportsMatchesParams): Promise<SportsMatchesResponse>;
1980
+ declare function fetchEsportsProps(client: PredictClient, params?: EsportsPropsParams): Promise<SportsPropsResponse>;
1981
+
1982
+ declare function sportsRoutingQueryKey(slug: string, params?: SportsRoutingParams): unknown[];
1983
+ declare function resolveSportsRoutingParams(params?: SportsRoutingParams): SportsRoutingParams;
1984
+ declare function fetchSportsRouting(client: PredictClient, slug: string, params?: SportsRoutingParams): Promise<SportsRoutingResponse>;
1985
+
1986
+ declare function sportsMatchDetailQueryKey(section: SportsSection, matchGroupSlug: string, params?: SportsMatchDetailParams): unknown[];
1987
+ declare function esportsMatchDetailQueryKey(matchGroupSlug: string, params?: EsportsMatchDetailParams): unknown[];
1988
+ declare function resolveSportsMatchDetailParams(params?: SportsMatchDetailParams): SportsMatchDetailParams;
1989
+ declare function resolveEsportsMatchDetailParams(params?: EsportsMatchDetailParams): EsportsMatchDetailParams;
1990
+ declare function fetchSportsMatchDetail(client: PredictClient, section: SportsSection, matchGroupSlug: string, params?: SportsMatchDetailParams): Promise<SportsMatchDetail>;
1991
+ declare function fetchEsportsMatchDetail(client: PredictClient, matchGroupSlug: string, params?: EsportsMatchDetailParams): Promise<SportsMatchDetail>;
1992
+
1750
1993
  /**
1751
1994
  * Server-safe pure functions for market query helpers.
1752
1995
  *
@@ -2121,4 +2364,4 @@ declare function buildClobPayload(signedOrder: SignedOrder, owner: string): Clob
2121
2364
  */
2122
2365
  declare function getPolymarketSharesPrecision(tickSize: string): number;
2123
2366
 
2124
- export { type PolymarketWithdrawRequest as $, type AvailableSharesResponse as A, type BalanceResponse as B, type Candlestick as C, type MatchMarketPage as D, type EventStats as E, type ListTradesParams as F, type ListTradesMultiParams as G, type DFlowQuoteRequest as H, type DFlowQuoteResponse as I, type DFlowSubmitResponse as J, type DFlowSubmitRequest as K, type ListEventsParams as L, type MatchesParams as M, type DFlowKYCStatus as N, type OrderbookOutcome as O, PredictClient as P, type PolymarketSetupStatus as Q, type PolymarketDepositWalletDeployResponse as R, type SimilarEventsParams as S, type WithdrawBuildRequest as T, type WithdrawSubmitResponse as U, type WithdrawSubmitRequest as V, type WithdrawBuildResponse as W, type WithdrawStatusResponse as X, type PolymarketDepositAddresses as Y, type PolymarketSupportedAsset as Z, type PolymarketWithdrawResponse as _, PredictWsClient as a, type MatchesStats as a$, type PolymarketWithdrawPrepareResponse as a0, type PolymarketWithdrawPrepareRequest as a1, type PolymarketWithdrawQuoteResponse as a2, type PolymarketWithdrawQuoteRequest as a3, type PolymarketWithdrawRelayBuildResponse as a4, type PolymarketWithdrawRelayBuildRequest as a5, type PolymarketWithdrawRelaySubmitResponse as a6, type PolymarketWithdrawRelaySubmitRequest as a7, type PolymarketWithdrawBridgeStatusResponse as a8, type PolymarketRedeemResponse as a9, type EventSummary as aA, type MarketSummary as aB, type PredictCommentProfile as aC, type PricePoint as aD, type PredictPosition as aE, type PositionValue as aF, type PositionValueError as aG, type OrderStatus as aH, type OrderSide as aI, type DFlowOrderContext as aJ, type PolymarketOrderType as aK, type PolymarketTickSize as aL, type PolymarketWalletKind as aM, type PolymarketDepositWalletDeployRequest as aN, type DepositBuildRequest as aO, type DepositBuildResponse as aP, type DepositSubmitRequest as aQ, type DepositSubmitResponse as aR, type DepositStatusResponse as aS, type UnsignedTx as aT, type PolymarketBridgeToken as aU, type PolymarketSupportedAssetsResponse as aV, type PolymarketTypedDataArg as aW, type MatchStatus as aX, type MatchGroupEntry as aY, type MatchGroupMarket as aZ, type MatchSortField as a_, type PolymarketTypedData as aa, type TickSizeResponse as ab, type FeeRateResponse as ac, type RebateConfig as ad, type WsConnectionStatus as ae, type WsDataMessage as af, type WsPriceEvent as ag, type WsOrderbookEvent as ah, type WsTradeEvent as ai, type CreateOrderInput as aj, createPredictClient as ak, type PredictClientOptions as al, createPredictWsClient as am, type PredictWsClientConfig as an, type ProviderMeta as ao, type PredictTag as ap, type SettlementSource as aq, type MarketStatus as ar, type MarketResult as as, type MarketOutcome as at, type OrderbookLevel as au, type OrderbookBatchItem as av, type OrderbookBatchResult as aw, type OrderbooksBatchRequest as ax, type OrderbooksBatchResponse as ay, type TradeType as az, type PredictPage as b, type MatchConfidenceTier as b0, type SignalTag as b1, type MatchLeg as b2, type MatchMarketFlat as b3, type WsChannel as b4, type WsChannelEvent as b5, type WsClientMessage as b6, type WsSubscribeMessage as b7, type WsPingMessage as b8, type WsServerMessage as b9, buildPolymarketL2Headers as bA, derivePolymarketApiKey as bB, type HttpMethod as bC, type PolymarketL2HeadersInput as bD, type PolymarketL2Headers as bE, type BuildClobAuthMessageInput as bF, CTF_EXCHANGE_ADDRESS as bG, NEG_RISK_CTF_EXCHANGE_ADDRESS as bH, USDC_ADDRESS as bI, POLYGON_CHAIN_ID as bJ, buildCtfExchangeDomain as bK, CTF_ORDER_TYPES as bL, ORDER_TYPE as bM, SIDE as bN, buildOrderMessage as bO, buildSignedOrder as bP, buildClobPayload as bQ, getPolymarketSharesPrecision as bR, normalizePolymarketTickSize as bS, type ClobOrderPayload as bT, type BuildOrderMessageInput as bU, type OrderMessage as bV, type SignedOrder as bW, DEFAULT_PAGE_SIZE as bX, type WsPongMessage as ba, type WsSubscribedMessage as bb, type WsErrorCode as bc, type WsErrorMessage as bd, type PolymarketRedeemPrepareInput as be, type PolymarketRedeemPrepareResponse as bf, type PolymarketRedeemInput as bg, eventQueryKey as bh, fetchEvent as bi, resolveTagSlug as bj, resolveEventsParams as bk, infiniteEventsQueryKey as bl, fetchEventsPage as bm, type ResolveEventsParamsInput as bn, type TagSlugSelection as bo, marketQueryKey as bp, fetchMarket as bq, matchesQueryKey as br, matchQueryKey as bs, fetchMatchesPage as bt, matchMarketsQueryKey as bu, fetchMatchMarketsPage as bv, CLOB_AUTH_DOMAIN as bw, CLOB_AUTH_TYPES as bx, buildClobAuthMessage as by, hmacSha256Base64 as bz, type PredictEvent as c, type ProviderSource as d, type EventStatus as e, type EventSortField as f, type PredictMarket as g, type Orderbook as h, type ListMarketTradesParams as i, type PredictTrade as j, type PriceHistoryRange as k, type PriceHistoryParams as l, type PriceHistoryResponse as m, type ListCandlesticksParams as n, type ListCommentsParams as o, type PredictComment as p, type PositionsResponse as q, type PositionValueResponse as r, type ListOrdersParams as s, type PredictOrder as t, type ListOrdersMultiParams as u, type PredictOrdersResponse as v, type CancelOrderResult as w, type MatchGroupPage as x, type MatchGroup as y, type MatchMarketParams as z };
2367
+ export { type ListTradesParams as $, type PredictTrade as A, type PriceHistoryRange as B, type PriceHistoryParams as C, type PriceHistoryResponse as D, type EsportsTaxonomyParams as E, type ListCandlesticksParams as F, type Candlestick as G, type ListCommentsParams as H, type PredictComment as I, type PositionsResponse as J, type PositionValueResponse as K, type ListEventsParams as L, type AvailableSharesResponse as M, type BalanceResponse as N, type Orderbook as O, PredictClient as P, type ListOrdersParams as Q, type PredictOrder as R, type SportsTaxonomyParams as S, type ListOrdersMultiParams as T, type PredictOrdersResponse as U, type CancelOrderResult as V, type MatchesParams as W, type MatchGroupPage as X, type MatchGroup as Y, type MatchMarketParams as Z, type MatchMarketPage as _, PredictWsClient as a, type SportsMarket as a$, type ListTradesMultiParams as a0, type DFlowQuoteRequest as a1, type DFlowQuoteResponse as a2, type DFlowSubmitResponse as a3, type DFlowSubmitRequest as a4, type DFlowKYCStatus as a5, type PolymarketSetupStatus as a6, type PolymarketDepositWalletDeployResponse as a7, type WithdrawBuildResponse as a8, type WithdrawBuildRequest as a9, type CreateOrderInput as aA, createPredictClient as aB, type PredictClientOptions as aC, createPredictWsClient as aD, type PredictWsClientConfig as aE, type ProviderMeta as aF, type PredictTag as aG, type SettlementSource as aH, type MarketStatus as aI, type MarketResult as aJ, type MarketOutcome as aK, type OrderbookLevel as aL, type OrderbookBatchItem as aM, type OrderbookBatchResult as aN, type OrderbooksBatchRequest as aO, type OrderbooksBatchResponse as aP, type SportsProviderSource as aQ, type SportsEventType as aR, type SportsRouteType as aS, type SportsTaxonomyNodeType as aT, type SportsBinaryOutcome as aU, type SportsTaxonomyNode as aV, type SportsTaxonomySection as aW, type SportsParticipant as aX, type SportsLiveState as aY, type SportsMarketOutcome as aZ, type SportsInlineMarket as a_, type WithdrawSubmitResponse as aa, type WithdrawSubmitRequest as ab, type WithdrawStatusResponse as ac, type PolymarketDepositAddresses as ad, type PolymarketSupportedAsset as ae, type PolymarketWithdrawResponse as af, type PolymarketWithdrawRequest as ag, type PolymarketWithdrawPrepareResponse as ah, type PolymarketWithdrawPrepareRequest as ai, type PolymarketWithdrawQuoteResponse as aj, type PolymarketWithdrawQuoteRequest as ak, type PolymarketWithdrawRelayBuildResponse as al, type PolymarketWithdrawRelayBuildRequest as am, type PolymarketWithdrawRelaySubmitResponse as an, type PolymarketWithdrawRelaySubmitRequest as ao, type PolymarketWithdrawBridgeStatusResponse as ap, type PolymarketRedeemResponse as aq, type PolymarketTypedData as ar, type TickSizeResponse as as, type FeeRateResponse as at, type RebateConfig as au, type WsConnectionStatus as av, type WsDataMessage as aw, type WsPriceEvent as ax, type WsOrderbookEvent as ay, type WsTradeEvent as az, type PredictPage as b, esportsTaxonomyQueryKey as b$, type SportsMarketGroup as b0, type SportsMatchCard as b1, type SportsPropEventCard as b2, type EsportsMatchDetailParams as b3, type PredictSearchResultType as b4, type PredictSearchSortField as b5, type PredictSearchResult as b6, type TradeType as b7, type EventSummary as b8, type MarketSummary as b9, type MatchConfidenceTier as bA, type SignalTag as bB, type MatchLeg as bC, type MatchMarketFlat as bD, type WsChannel as bE, type WsChannelEvent as bF, type WsClientMessage as bG, type WsSubscribeMessage as bH, type WsPingMessage as bI, type WsServerMessage as bJ, type WsPongMessage as bK, type WsSubscribedMessage as bL, type WsErrorCode as bM, type WsErrorMessage as bN, type PolymarketRedeemPrepareInput as bO, type PolymarketRedeemPrepareResponse as bP, type PolymarketRedeemInput as bQ, eventQueryKey as bR, fetchEvent as bS, predictSearchQueryKey as bT, fetchPredictSearch as bU, sportsTaxonomyQueryKey as bV, fetchSportsTaxonomy as bW, sportsMatchesQueryKey as bX, fetchSportsMatches as bY, sportsPropsQueryKey as bZ, fetchSportsProps as b_, type PredictCommentProfile as ba, type PricePoint as bb, type PredictPosition as bc, type PositionValue as bd, type PositionValueError as be, type OrderStatus as bf, type OrderSide as bg, type DFlowOrderContext as bh, type PolymarketOrderType as bi, type PolymarketTickSize as bj, type PolymarketWalletKind as bk, type PolymarketDepositWalletDeployRequest as bl, type DepositBuildRequest as bm, type DepositBuildResponse as bn, type DepositSubmitRequest as bo, type DepositSubmitResponse as bp, type DepositStatusResponse as bq, type UnsignedTx as br, type PolymarketBridgeToken as bs, type PolymarketSupportedAssetsResponse as bt, type PolymarketTypedDataArg as bu, type MatchStatus as bv, type MatchGroupEntry as bw, type MatchGroupMarket as bx, type MatchSortField as by, type MatchesStats as bz, type PredictEvent as c, fetchEsportsTaxonomy as c0, esportsMatchesQueryKey as c1, fetchEsportsMatches as c2, esportsPropsQueryKey as c3, fetchEsportsProps as c4, sportsRoutingQueryKey as c5, fetchSportsRouting as c6, sportsMatchDetailQueryKey as c7, fetchSportsMatchDetail as c8, resolveTagSlug as c9, buildCtfExchangeDomain as cA, CTF_ORDER_TYPES as cB, ORDER_TYPE as cC, SIDE as cD, buildOrderMessage as cE, buildSignedOrder as cF, buildClobPayload as cG, getPolymarketSharesPrecision as cH, normalizePolymarketTickSize as cI, type ClobOrderPayload as cJ, type BuildOrderMessageInput as cK, type OrderMessage as cL, type SignedOrder as cM, DEFAULT_PAGE_SIZE as cN, resolveSportsTaxonomyParams as cO, resolveSportsMatchesParams as cP, resolveSportsPropsParams as cQ, resolveEsportsTaxonomyParams as cR, resolveEsportsMatchesParams as cS, resolveEsportsPropsParams as cT, resolveSportsRoutingParams as cU, esportsMatchDetailQueryKey as cV, resolveSportsMatchDetailParams as cW, resolveEsportsMatchDetailParams as cX, fetchEsportsMatchDetail as cY, resolvePredictSearchParams as cZ, resolveEventsParams as ca, infiniteEventsQueryKey as cb, fetchEventsPage as cc, type ResolveEventsParamsInput as cd, type TagSlugSelection as ce, marketQueryKey as cf, fetchMarket as cg, matchesQueryKey as ch, matchQueryKey as ci, fetchMatchesPage as cj, matchMarketsQueryKey as ck, fetchMatchMarketsPage as cl, CLOB_AUTH_DOMAIN as cm, CLOB_AUTH_TYPES as cn, buildClobAuthMessage as co, hmacSha256Base64 as cp, buildPolymarketL2Headers as cq, derivePolymarketApiKey as cr, type HttpMethod as cs, type PolymarketL2HeadersInput as ct, type PolymarketL2Headers as cu, type BuildClobAuthMessageInput as cv, CTF_EXCHANGE_ADDRESS as cw, NEG_RISK_CTF_EXCHANGE_ADDRESS as cx, USDC_ADDRESS as cy, POLYGON_CHAIN_ID as cz, type ProviderSource as d, type PredictSearchParams as e, type PredictSearchResponse as f, type SportsTaxonomyResponse as g, type SportsMatchesParams as h, type SportsMatchesResponse as i, type SportsPropsParams as j, type SportsPropsResponse as k, type EsportsMatchesParams as l, type EsportsPropsParams as m, type SportsRoutingParams as n, type SportsRoutingResponse as o, type SportsSection as p, type SportsMatchDetailParams as q, type SportsMatchDetail as r, type SportsOrderbookKey as s, type EventStats as t, type EventStatus as u, type EventSortField as v, type SimilarEventsParams as w, type PredictMarket as x, type OrderbookOutcome as y, type ListMarketTradesParams as z };
package/dist/server.d.mts CHANGED
@@ -1 +1 @@
1
- export { B as BalanceResponse, bF as BuildClobAuthMessageInput, bU as BuildOrderMessageInput, bw as CLOB_AUTH_DOMAIN, bx as CLOB_AUTH_TYPES, bG as CTF_EXCHANGE_ADDRESS, bL as CTF_ORDER_TYPES, w as CancelOrderResult, C as Candlestick, bT as ClobOrderPayload, aj as CreateOrderInput, bX as DEFAULT_PAGE_SIZE, aJ as DFlowOrderContext, H as DFlowQuoteRequest, I as DFlowQuoteResponse, K as DFlowSubmitRequest, J as DFlowSubmitResponse, aO as DepositBuildRequest, aP as DepositBuildResponse, aS as DepositStatusResponse, aQ as DepositSubmitRequest, aR as DepositSubmitResponse, f as EventSortField, e as EventStatus, aA as EventSummary, bC as HttpMethod, n as ListCandlesticksParams, L as ListEventsParams, i as ListMarketTradesParams, s as ListOrdersParams, F as ListTradesParams, at as MarketOutcome, as as MarketResult, ar as MarketStatus, aB as MarketSummary, b0 as MatchConfidenceTier, y as MatchGroup, aY as MatchGroupEntry, aZ as MatchGroupMarket, x as MatchGroupPage, b2 as MatchLeg, b3 as MatchMarketFlat, D as MatchMarketPage, z as MatchMarketParams, a_ as MatchSortField, aX as MatchStatus, M as MatchesParams, a$ as MatchesStats, bH as NEG_RISK_CTF_EXCHANGE_ADDRESS, bM as ORDER_TYPE, bV as OrderMessage, aI as OrderSide, aH as OrderStatus, h as Orderbook, au as OrderbookLevel, bJ as POLYGON_CHAIN_ID, bE as PolymarketL2Headers, bD as PolymarketL2HeadersInput, aK as PolymarketOrderType, aF as PositionValue, aG as PositionValueError, r as PositionValueResponse, q as PositionsResponse, P as PredictClient, al as PredictClientOptions, c as PredictEvent, g as PredictMarket, t as PredictOrder, b as PredictPage, aE as PredictPosition, ap as PredictTag, j as PredictTrade, a as PredictWsClient, an as PredictWsClientConfig, l as PriceHistoryParams, k as PriceHistoryRange, m as PriceHistoryResponse, aD as PricePoint, ao as ProviderMeta, d as ProviderSource, bn as ResolveEventsParamsInput, bN as SIDE, aq as SettlementSource, b1 as SignalTag, bW as SignedOrder, S as SimilarEventsParams, bo as TagSlugSelection, az as TradeType, bI as USDC_ADDRESS, aT as UnsignedTx, b4 as WsChannel, b5 as WsChannelEvent, b6 as WsClientMessage, ae as WsConnectionStatus, af as WsDataMessage, bc as WsErrorCode, bd as WsErrorMessage, ah as WsOrderbookEvent, b8 as WsPingMessage, ba as WsPongMessage, ag as WsPriceEvent, b9 as WsServerMessage, b7 as WsSubscribeMessage, bb as WsSubscribedMessage, ai as WsTradeEvent, by as buildClobAuthMessage, bQ as buildClobPayload, bK as buildCtfExchangeDomain, bO as buildOrderMessage, bA as buildPolymarketL2Headers, bP as buildSignedOrder, ak as createPredictClient, am as createPredictWsClient, bB as derivePolymarketApiKey, bh as eventQueryKey, bi as fetchEvent, bm as fetchEventsPage, bq as fetchMarket, bv as fetchMatchMarketsPage, bt as fetchMatchesPage, bz as hmacSha256Base64, bl as infiniteEventsQueryKey, bp as marketQueryKey, bu as matchMarketsQueryKey, bs as matchQueryKey, br as matchesQueryKey, bk as resolveEventsParams, bj as resolveTagSlug } from './server-B6SSpkMN.mjs';
1
+ export { N as BalanceResponse, cv as BuildClobAuthMessageInput, cK as BuildOrderMessageInput, cm as CLOB_AUTH_DOMAIN, cn as CLOB_AUTH_TYPES, cw as CTF_EXCHANGE_ADDRESS, cB as CTF_ORDER_TYPES, V as CancelOrderResult, G as Candlestick, cJ as ClobOrderPayload, aA as CreateOrderInput, cN as DEFAULT_PAGE_SIZE, bh as DFlowOrderContext, a1 as DFlowQuoteRequest, a2 as DFlowQuoteResponse, a4 as DFlowSubmitRequest, a3 as DFlowSubmitResponse, bm as DepositBuildRequest, bn as DepositBuildResponse, bq as DepositStatusResponse, bo as DepositSubmitRequest, bp as DepositSubmitResponse, b3 as EsportsMatchDetailParams, l as EsportsMatchesParams, m as EsportsPropsParams, E as EsportsTaxonomyParams, v as EventSortField, u as EventStatus, b8 as EventSummary, cs as HttpMethod, F as ListCandlesticksParams, L as ListEventsParams, z as ListMarketTradesParams, Q as ListOrdersParams, $ as ListTradesParams, aK as MarketOutcome, aJ as MarketResult, aI as MarketStatus, b9 as MarketSummary, bA as MatchConfidenceTier, Y as MatchGroup, bw as MatchGroupEntry, bx as MatchGroupMarket, X as MatchGroupPage, bC as MatchLeg, bD as MatchMarketFlat, _ as MatchMarketPage, Z as MatchMarketParams, by as MatchSortField, bv as MatchStatus, W as MatchesParams, bz as MatchesStats, cx as NEG_RISK_CTF_EXCHANGE_ADDRESS, cC as ORDER_TYPE, cL as OrderMessage, bg as OrderSide, bf as OrderStatus, O as Orderbook, aL as OrderbookLevel, cz as POLYGON_CHAIN_ID, cu as PolymarketL2Headers, ct as PolymarketL2HeadersInput, bi as PolymarketOrderType, bd as PositionValue, be as PositionValueError, K as PositionValueResponse, J as PositionsResponse, P as PredictClient, aC as PredictClientOptions, c as PredictEvent, x as PredictMarket, R as PredictOrder, b as PredictPage, bc as PredictPosition, e as PredictSearchParams, f as PredictSearchResponse, b6 as PredictSearchResult, b4 as PredictSearchResultType, b5 as PredictSearchSortField, aG as PredictTag, A as PredictTrade, a as PredictWsClient, aE as PredictWsClientConfig, C as PriceHistoryParams, B as PriceHistoryRange, D as PriceHistoryResponse, bb as PricePoint, aF as ProviderMeta, d as ProviderSource, cd as ResolveEventsParamsInput, cD as SIDE, aH as SettlementSource, bB as SignalTag, cM as SignedOrder, w as SimilarEventsParams, aU as SportsBinaryOutcome, aR as SportsEventType, a_ as SportsInlineMarket, aY as SportsLiveState, a$ as SportsMarket, b0 as SportsMarketGroup, aZ as SportsMarketOutcome, b1 as SportsMatchCard, r as SportsMatchDetail, q as SportsMatchDetailParams, h as SportsMatchesParams, i as SportsMatchesResponse, s as SportsOrderbookKey, aX as SportsParticipant, b2 as SportsPropEventCard, j as SportsPropsParams, k as SportsPropsResponse, aQ as SportsProviderSource, aS as SportsRouteType, n as SportsRoutingParams, o as SportsRoutingResponse, p as SportsSection, aV as SportsTaxonomyNode, aT as SportsTaxonomyNodeType, S as SportsTaxonomyParams, g as SportsTaxonomyResponse, aW as SportsTaxonomySection, ce as TagSlugSelection, b7 as TradeType, cy as USDC_ADDRESS, br as UnsignedTx, bE as WsChannel, bF as WsChannelEvent, bG as WsClientMessage, av as WsConnectionStatus, aw as WsDataMessage, bM as WsErrorCode, bN as WsErrorMessage, ay as WsOrderbookEvent, bI as WsPingMessage, bK as WsPongMessage, ax as WsPriceEvent, bJ as WsServerMessage, bH as WsSubscribeMessage, bL as WsSubscribedMessage, az as WsTradeEvent, co as buildClobAuthMessage, cG as buildClobPayload, cA as buildCtfExchangeDomain, cE as buildOrderMessage, cq as buildPolymarketL2Headers, cF as buildSignedOrder, aB as createPredictClient, aD as createPredictWsClient, cr as derivePolymarketApiKey, cV as esportsMatchDetailQueryKey, c1 as esportsMatchesQueryKey, c3 as esportsPropsQueryKey, b$ as esportsTaxonomyQueryKey, bR as eventQueryKey, cY as fetchEsportsMatchDetail, c2 as fetchEsportsMatches, c4 as fetchEsportsProps, c0 as fetchEsportsTaxonomy, bS as fetchEvent, cc as fetchEventsPage, cg as fetchMarket, cl as fetchMatchMarketsPage, cj as fetchMatchesPage, bU as fetchPredictSearch, c8 as fetchSportsMatchDetail, bY as fetchSportsMatches, b_ as fetchSportsProps, c6 as fetchSportsRouting, bW as fetchSportsTaxonomy, cp as hmacSha256Base64, cb as infiniteEventsQueryKey, cf as marketQueryKey, ck as matchMarketsQueryKey, ci as matchQueryKey, ch as matchesQueryKey, bT as predictSearchQueryKey, cX as resolveEsportsMatchDetailParams, cS as resolveEsportsMatchesParams, cT as resolveEsportsPropsParams, cR as resolveEsportsTaxonomyParams, ca as resolveEventsParams, cZ as resolvePredictSearchParams, cW as resolveSportsMatchDetailParams, cP as resolveSportsMatchesParams, cQ as resolveSportsPropsParams, cU as resolveSportsRoutingParams, cO as resolveSportsTaxonomyParams, c9 as resolveTagSlug, c7 as sportsMatchDetailQueryKey, bX as sportsMatchesQueryKey, bZ as sportsPropsQueryKey, c5 as sportsRoutingQueryKey, bV as sportsTaxonomyQueryKey } from './server-CCZfNoWO.mjs';
package/dist/server.d.ts CHANGED
@@ -1 +1 @@
1
- export { B as BalanceResponse, bF as BuildClobAuthMessageInput, bU as BuildOrderMessageInput, bw as CLOB_AUTH_DOMAIN, bx as CLOB_AUTH_TYPES, bG as CTF_EXCHANGE_ADDRESS, bL as CTF_ORDER_TYPES, w as CancelOrderResult, C as Candlestick, bT as ClobOrderPayload, aj as CreateOrderInput, bX as DEFAULT_PAGE_SIZE, aJ as DFlowOrderContext, H as DFlowQuoteRequest, I as DFlowQuoteResponse, K as DFlowSubmitRequest, J as DFlowSubmitResponse, aO as DepositBuildRequest, aP as DepositBuildResponse, aS as DepositStatusResponse, aQ as DepositSubmitRequest, aR as DepositSubmitResponse, f as EventSortField, e as EventStatus, aA as EventSummary, bC as HttpMethod, n as ListCandlesticksParams, L as ListEventsParams, i as ListMarketTradesParams, s as ListOrdersParams, F as ListTradesParams, at as MarketOutcome, as as MarketResult, ar as MarketStatus, aB as MarketSummary, b0 as MatchConfidenceTier, y as MatchGroup, aY as MatchGroupEntry, aZ as MatchGroupMarket, x as MatchGroupPage, b2 as MatchLeg, b3 as MatchMarketFlat, D as MatchMarketPage, z as MatchMarketParams, a_ as MatchSortField, aX as MatchStatus, M as MatchesParams, a$ as MatchesStats, bH as NEG_RISK_CTF_EXCHANGE_ADDRESS, bM as ORDER_TYPE, bV as OrderMessage, aI as OrderSide, aH as OrderStatus, h as Orderbook, au as OrderbookLevel, bJ as POLYGON_CHAIN_ID, bE as PolymarketL2Headers, bD as PolymarketL2HeadersInput, aK as PolymarketOrderType, aF as PositionValue, aG as PositionValueError, r as PositionValueResponse, q as PositionsResponse, P as PredictClient, al as PredictClientOptions, c as PredictEvent, g as PredictMarket, t as PredictOrder, b as PredictPage, aE as PredictPosition, ap as PredictTag, j as PredictTrade, a as PredictWsClient, an as PredictWsClientConfig, l as PriceHistoryParams, k as PriceHistoryRange, m as PriceHistoryResponse, aD as PricePoint, ao as ProviderMeta, d as ProviderSource, bn as ResolveEventsParamsInput, bN as SIDE, aq as SettlementSource, b1 as SignalTag, bW as SignedOrder, S as SimilarEventsParams, bo as TagSlugSelection, az as TradeType, bI as USDC_ADDRESS, aT as UnsignedTx, b4 as WsChannel, b5 as WsChannelEvent, b6 as WsClientMessage, ae as WsConnectionStatus, af as WsDataMessage, bc as WsErrorCode, bd as WsErrorMessage, ah as WsOrderbookEvent, b8 as WsPingMessage, ba as WsPongMessage, ag as WsPriceEvent, b9 as WsServerMessage, b7 as WsSubscribeMessage, bb as WsSubscribedMessage, ai as WsTradeEvent, by as buildClobAuthMessage, bQ as buildClobPayload, bK as buildCtfExchangeDomain, bO as buildOrderMessage, bA as buildPolymarketL2Headers, bP as buildSignedOrder, ak as createPredictClient, am as createPredictWsClient, bB as derivePolymarketApiKey, bh as eventQueryKey, bi as fetchEvent, bm as fetchEventsPage, bq as fetchMarket, bv as fetchMatchMarketsPage, bt as fetchMatchesPage, bz as hmacSha256Base64, bl as infiniteEventsQueryKey, bp as marketQueryKey, bu as matchMarketsQueryKey, bs as matchQueryKey, br as matchesQueryKey, bk as resolveEventsParams, bj as resolveTagSlug } from './server-B6SSpkMN.js';
1
+ export { N as BalanceResponse, cv as BuildClobAuthMessageInput, cK as BuildOrderMessageInput, cm as CLOB_AUTH_DOMAIN, cn as CLOB_AUTH_TYPES, cw as CTF_EXCHANGE_ADDRESS, cB as CTF_ORDER_TYPES, V as CancelOrderResult, G as Candlestick, cJ as ClobOrderPayload, aA as CreateOrderInput, cN as DEFAULT_PAGE_SIZE, bh as DFlowOrderContext, a1 as DFlowQuoteRequest, a2 as DFlowQuoteResponse, a4 as DFlowSubmitRequest, a3 as DFlowSubmitResponse, bm as DepositBuildRequest, bn as DepositBuildResponse, bq as DepositStatusResponse, bo as DepositSubmitRequest, bp as DepositSubmitResponse, b3 as EsportsMatchDetailParams, l as EsportsMatchesParams, m as EsportsPropsParams, E as EsportsTaxonomyParams, v as EventSortField, u as EventStatus, b8 as EventSummary, cs as HttpMethod, F as ListCandlesticksParams, L as ListEventsParams, z as ListMarketTradesParams, Q as ListOrdersParams, $ as ListTradesParams, aK as MarketOutcome, aJ as MarketResult, aI as MarketStatus, b9 as MarketSummary, bA as MatchConfidenceTier, Y as MatchGroup, bw as MatchGroupEntry, bx as MatchGroupMarket, X as MatchGroupPage, bC as MatchLeg, bD as MatchMarketFlat, _ as MatchMarketPage, Z as MatchMarketParams, by as MatchSortField, bv as MatchStatus, W as MatchesParams, bz as MatchesStats, cx as NEG_RISK_CTF_EXCHANGE_ADDRESS, cC as ORDER_TYPE, cL as OrderMessage, bg as OrderSide, bf as OrderStatus, O as Orderbook, aL as OrderbookLevel, cz as POLYGON_CHAIN_ID, cu as PolymarketL2Headers, ct as PolymarketL2HeadersInput, bi as PolymarketOrderType, bd as PositionValue, be as PositionValueError, K as PositionValueResponse, J as PositionsResponse, P as PredictClient, aC as PredictClientOptions, c as PredictEvent, x as PredictMarket, R as PredictOrder, b as PredictPage, bc as PredictPosition, e as PredictSearchParams, f as PredictSearchResponse, b6 as PredictSearchResult, b4 as PredictSearchResultType, b5 as PredictSearchSortField, aG as PredictTag, A as PredictTrade, a as PredictWsClient, aE as PredictWsClientConfig, C as PriceHistoryParams, B as PriceHistoryRange, D as PriceHistoryResponse, bb as PricePoint, aF as ProviderMeta, d as ProviderSource, cd as ResolveEventsParamsInput, cD as SIDE, aH as SettlementSource, bB as SignalTag, cM as SignedOrder, w as SimilarEventsParams, aU as SportsBinaryOutcome, aR as SportsEventType, a_ as SportsInlineMarket, aY as SportsLiveState, a$ as SportsMarket, b0 as SportsMarketGroup, aZ as SportsMarketOutcome, b1 as SportsMatchCard, r as SportsMatchDetail, q as SportsMatchDetailParams, h as SportsMatchesParams, i as SportsMatchesResponse, s as SportsOrderbookKey, aX as SportsParticipant, b2 as SportsPropEventCard, j as SportsPropsParams, k as SportsPropsResponse, aQ as SportsProviderSource, aS as SportsRouteType, n as SportsRoutingParams, o as SportsRoutingResponse, p as SportsSection, aV as SportsTaxonomyNode, aT as SportsTaxonomyNodeType, S as SportsTaxonomyParams, g as SportsTaxonomyResponse, aW as SportsTaxonomySection, ce as TagSlugSelection, b7 as TradeType, cy as USDC_ADDRESS, br as UnsignedTx, bE as WsChannel, bF as WsChannelEvent, bG as WsClientMessage, av as WsConnectionStatus, aw as WsDataMessage, bM as WsErrorCode, bN as WsErrorMessage, ay as WsOrderbookEvent, bI as WsPingMessage, bK as WsPongMessage, ax as WsPriceEvent, bJ as WsServerMessage, bH as WsSubscribeMessage, bL as WsSubscribedMessage, az as WsTradeEvent, co as buildClobAuthMessage, cG as buildClobPayload, cA as buildCtfExchangeDomain, cE as buildOrderMessage, cq as buildPolymarketL2Headers, cF as buildSignedOrder, aB as createPredictClient, aD as createPredictWsClient, cr as derivePolymarketApiKey, cV as esportsMatchDetailQueryKey, c1 as esportsMatchesQueryKey, c3 as esportsPropsQueryKey, b$ as esportsTaxonomyQueryKey, bR as eventQueryKey, cY as fetchEsportsMatchDetail, c2 as fetchEsportsMatches, c4 as fetchEsportsProps, c0 as fetchEsportsTaxonomy, bS as fetchEvent, cc as fetchEventsPage, cg as fetchMarket, cl as fetchMatchMarketsPage, cj as fetchMatchesPage, bU as fetchPredictSearch, c8 as fetchSportsMatchDetail, bY as fetchSportsMatches, b_ as fetchSportsProps, c6 as fetchSportsRouting, bW as fetchSportsTaxonomy, cp as hmacSha256Base64, cb as infiniteEventsQueryKey, cf as marketQueryKey, ck as matchMarketsQueryKey, ci as matchQueryKey, ch as matchesQueryKey, bT as predictSearchQueryKey, cX as resolveEsportsMatchDetailParams, cS as resolveEsportsMatchesParams, cT as resolveEsportsPropsParams, cR as resolveEsportsTaxonomyParams, ca as resolveEventsParams, cZ as resolvePredictSearchParams, cW as resolveSportsMatchDetailParams, cP as resolveSportsMatchesParams, cQ as resolveSportsPropsParams, cU as resolveSportsRoutingParams, cO as resolveSportsTaxonomyParams, c9 as resolveTagSlug, c7 as sportsMatchDetailQueryKey, bX as sportsMatchesQueryKey, bZ as sportsPropsQueryKey, c5 as sportsRoutingQueryKey, bV as sportsTaxonomyQueryKey } from './server-CCZfNoWO.js';