@agg-build/hooks 1.3.0 → 2.1.0
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/README.md +1 -1
- package/dist/{chunk-OBHXWQ6L.mjs → chunk-DK4YDVPH.mjs} +88 -27
- package/dist/{chunk-KXO3JOXF.mjs → chunk-QKVR32KC.mjs} +1 -1
- package/dist/{chunk-VLYLQSDD.mjs → chunk-V7VCT62L.mjs} +18 -10
- package/dist/deposit.d.mts +5 -1
- package/dist/deposit.d.ts +5 -1
- package/dist/deposit.js +233 -179
- package/dist/deposit.mjs +176 -131
- package/dist/index.d.mts +55 -10
- package/dist/index.d.ts +55 -10
- package/dist/index.js +212 -137
- package/dist/index.mjs +48 -40
- package/dist/withdraw.d.mts +31 -2
- package/dist/withdraw.d.ts +31 -2
- package/dist/withdraw.js +94 -26
- package/dist/withdraw.mjs +4 -2
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -2,10 +2,10 @@ import * as _tanstack_react_query from '@tanstack/react-query';
|
|
|
2
2
|
import { QueryClient } from '@tanstack/react-query';
|
|
3
3
|
export { QueryClient, QueryClientProvider, useQueryClient } from '@tanstack/react-query';
|
|
4
4
|
import * as _agg_build_sdk from '@agg-build/sdk';
|
|
5
|
-
import { CandleBuilder, AggAuthStartBody, AggAuthStartResult, AggClientSessionInput, AggClient, RampQuote, RampQuoteRequest, RampWidgetSession, RampSessionRequest, QuoteManagedResponse, QuoteManagedParams, ExecuteManagedResponse, ExecuteManagedParams, GetPositionsParams, WsOrderSubmitted, WsBalanceUpdate, RedeemResponse, RedeemRequest, WsRedeemEvent, AggWebSocket, WsOrderEvent, WsWithdrawalLifecycleEvent, WsCandleInterval, WsTrade, AggregatedOrderbookResponse, AggLinkAccountBody, AggLinkAccountResult, AggLinkAccountConfirmResult, Category, UserActivityQuery, UserActivityItem, PaginatedResponse, CandleInterval, OrderbookState, OrderbookQuoteResponse, OrderListQuery, TradeExecutorOrder, SmartRouteSide, ExecutionMode, SmartRouteResponse, MidpointRow, BatchMidpointsResponse, AppClientConfigResponse } from '@agg-build/sdk';
|
|
5
|
+
import { CandleBuilder, AggAuthStartBody, AggAuthStartResult, AggClientSessionInput, AggClient, RampQuote, RampQuoteRequest, RampWidgetSession, RampSessionRequest, QuoteManagedResponse, QuoteManagedParams, ExecuteManagedResponse, ExecuteManagedParams, GetPositionsParams, WsOrderSubmitted, WsBalanceUpdate, RedeemResponse, RedeemRequest, WsRedeemEvent, AggWebSocket, WsOrderEvent, WsWithdrawalLifecycleEvent, WsCandleInterval, WsTrade, AggregatedOrderbookResponse, AggLinkAccountBody, AggLinkAccountResult, AggLinkAccountConfirmResult, Category, UserActivityQuery, UserActivityItem, PaginatedResponse, CandleInterval, OrderbookState, OrderbookQuoteResponse, OrderListQuery, TradeExecutorOrder, SmartRouteSide, ExecutionMode, SmartRouteResponse, RecurrenceFilter, MidpointRow, BatchMidpointsResponse, AppClientConfigResponse } from '@agg-build/sdk';
|
|
6
6
|
export { TurnstileChallengeError } from '@agg-build/sdk';
|
|
7
7
|
import React, { ReactNode } from 'react';
|
|
8
|
-
export { UseManagedBalancesOptions, UseWithdrawEstimateParams, UseWithdrawFlowOptions, UseWithdrawFlowResult, UseWithdrawManagedOptions, UseWithdrawalLifecycleResult, WithdrawFeeEstimate, WithdrawalLifecycleState, useManagedBalances, useWithdrawEstimate, useWithdrawFlow, useWithdrawManaged, useWithdrawalLifecycle } from './withdraw.js';
|
|
8
|
+
export { UseManagedBalancesOptions, UseWithdrawEstimateParams, UseWithdrawFlowOptions, UseWithdrawFlowResult, UseWithdrawManagedOptions, UseWithdrawPreviewParams, UseWithdrawalLifecycleResult, WithdrawFeeEstimate, WithdrawalLifecycleState, useManagedBalances, useWithdrawEstimate, useWithdrawFlow, useWithdrawManaged, useWithdrawPreview, useWithdrawalLifecycle } from './withdraw.js';
|
|
9
9
|
export { U as UseDepositAddressesOptions, g as getDepositAddress, u as useDepositAddresses } from './use-deposit-addresses-B9ICS-3U.js';
|
|
10
10
|
export { U as UseSyncBalancesOptions, u as useSyncBalances } from './use-sync-balances-CeD8qZWP.js';
|
|
11
11
|
|
|
@@ -69,8 +69,14 @@ declare enum OrderStatus {
|
|
|
69
69
|
pending_bridge = "pending_bridge",
|
|
70
70
|
submitting = "submitting",
|
|
71
71
|
submitted = "submitted",
|
|
72
|
+
open = "open",
|
|
73
|
+
partially_filled_open = "partially_filled_open",
|
|
74
|
+
cancel_pending = "cancel_pending",
|
|
72
75
|
filled = "filled",
|
|
73
|
-
partial_fill = "partial_fill"
|
|
76
|
+
partial_fill = "partial_fill",
|
|
77
|
+
failed = "failed",
|
|
78
|
+
expired = "expired",
|
|
79
|
+
cancelled = "cancelled"
|
|
74
80
|
}
|
|
75
81
|
|
|
76
82
|
/**
|
|
@@ -106,11 +112,15 @@ type UnifiedBalanceResponse = {
|
|
|
106
112
|
cash: {
|
|
107
113
|
tokenSymbol: string;
|
|
108
114
|
totalRaw: string;
|
|
115
|
+
availableRaw?: string | undefined;
|
|
116
|
+
reservedRaw?: string | undefined;
|
|
109
117
|
decimals: number;
|
|
110
118
|
chains: {
|
|
111
119
|
chainId: number;
|
|
112
120
|
tokenAddress: string;
|
|
113
121
|
balanceRaw: string;
|
|
122
|
+
heldRaw?: string | undefined;
|
|
123
|
+
availableRaw?: string | undefined;
|
|
114
124
|
decimals: number;
|
|
115
125
|
lastSyncedAt: string;
|
|
116
126
|
}[];
|
|
@@ -257,6 +267,10 @@ type VenueMarket = {
|
|
|
257
267
|
endDate?: string | null | undefined;
|
|
258
268
|
creationDate?: string | null | undefined;
|
|
259
269
|
resolutionDate?: string | null | undefined;
|
|
270
|
+
/** Sports market classification for type-aware sorting (moneyline, spread, total, etc.). */
|
|
271
|
+
sportsMarketType?: string | null | undefined;
|
|
272
|
+
/** Sort rank within a sports section (0=moneyline, 1=spread, 2=total, 3+=other). */
|
|
273
|
+
sectionRank?: number | null | undefined;
|
|
260
274
|
matchedVenueMarkets?: {
|
|
261
275
|
id: string;
|
|
262
276
|
venue: Venue;
|
|
@@ -299,6 +313,8 @@ type VenueEvent = {
|
|
|
299
313
|
displayName: string | null;
|
|
300
314
|
parentId: string | null;
|
|
301
315
|
eventCount: number;
|
|
316
|
+
volume24hr: number;
|
|
317
|
+
volume: number;
|
|
302
318
|
};
|
|
303
319
|
}[];
|
|
304
320
|
status?: MarketStatus | undefined;
|
|
@@ -316,10 +332,12 @@ type VenueEvent = {
|
|
|
316
332
|
/**
|
|
317
333
|
* ISO-8601 duration denormalized from Series.recurrence. `null` means
|
|
318
334
|
* the event has no recurring schedule (one-off). Use this value with
|
|
319
|
-
* the `?recurrence=` filter on /venue-events
|
|
320
|
-
* values
|
|
335
|
+
* the `?recurrence=` filter on /venue-events using public recurrence
|
|
336
|
+
* enum values.
|
|
321
337
|
*/
|
|
322
338
|
recurrence?: string | null | undefined;
|
|
339
|
+
/** Type-aware structure classification used to sort markets under this event. */
|
|
340
|
+
structureType?: "candidate" | "sport" | "axis" | "dates" | null | undefined;
|
|
323
341
|
};
|
|
324
342
|
type Orderbook = {
|
|
325
343
|
bids: {
|
|
@@ -417,6 +435,8 @@ interface AggUiLabels {
|
|
|
417
435
|
errorPrefix: string;
|
|
418
436
|
tabsAria: string;
|
|
419
437
|
hiddenTabsAria: string;
|
|
438
|
+
scrollTabsLeft: string;
|
|
439
|
+
scrollTabsRight: string;
|
|
420
440
|
selectAria: string;
|
|
421
441
|
lineChartAria: string;
|
|
422
442
|
candlestickChartAria: string;
|
|
@@ -570,6 +590,7 @@ interface AggUiLabels {
|
|
|
570
590
|
networkReserveTooltipLineTwo: string;
|
|
571
591
|
youReceive: string;
|
|
572
592
|
confirm: string;
|
|
593
|
+
calculatingFees: string;
|
|
573
594
|
successTitle: string;
|
|
574
595
|
successDescription: (tokenSymbol: string) => string;
|
|
575
596
|
successTitleCompleted: string;
|
|
@@ -1025,6 +1046,9 @@ interface AggUiLabels {
|
|
|
1025
1046
|
buyingOutcome: (label: string) => string;
|
|
1026
1047
|
sellingOutcome: (label: string) => string;
|
|
1027
1048
|
findingBestRoute: string;
|
|
1049
|
+
findingBestOdds: string;
|
|
1050
|
+
updatingRoute: string;
|
|
1051
|
+
refreshingQuotes: string;
|
|
1028
1052
|
checkingBalance: string;
|
|
1029
1053
|
submittingOrderProgress: string;
|
|
1030
1054
|
orderSubmittedProgress: (orderId: string) => string;
|
|
@@ -1305,6 +1329,11 @@ type AggUiFeatureFlagsConfigInput = Partial<AggUiFeatureFlagsConfig>;
|
|
|
1305
1329
|
interface AggUiMarketConfig {
|
|
1306
1330
|
/** Arbitrage threshold for the UI */
|
|
1307
1331
|
arbitrageThreshold: number;
|
|
1332
|
+
/**
|
|
1333
|
+
* Maximum venue market IDs sent in each REST `/midpoints` request.
|
|
1334
|
+
* Lower this when proxy/CDN URL limits are stricter than AGG's backend cap.
|
|
1335
|
+
*/
|
|
1336
|
+
maxMidpointIdsPerRequest: number;
|
|
1308
1337
|
}
|
|
1309
1338
|
type AggUiMarketConfigInput = Partial<AggUiMarketConfig>;
|
|
1310
1339
|
interface AggUiChartConfig {
|
|
@@ -3343,6 +3372,9 @@ declare function mergeBestPricesPreferringLive(rest: ReadonlyMap<string, {
|
|
|
3343
3372
|
*/
|
|
3344
3373
|
declare function useLiveTrades(canonicalMarketId: string | null): WsTrade[];
|
|
3345
3374
|
|
|
3375
|
+
interface UseMidpointsOptions {
|
|
3376
|
+
maxMidpointIdsPerRequest?: number;
|
|
3377
|
+
}
|
|
3346
3378
|
interface UseMidpointsResult {
|
|
3347
3379
|
/** Map of outcomeId → price. Empty while loading. */
|
|
3348
3380
|
prices: Map<string, number>;
|
|
@@ -3403,7 +3435,7 @@ interface UseMidpointsResult {
|
|
|
3403
3435
|
* sides because MVMO links same-side counterparts regardless of label
|
|
3404
3436
|
* inversion. No label heuristics; no `1 - midpoint` flips.
|
|
3405
3437
|
*/
|
|
3406
|
-
declare function useMidpoints(venueMarkets: VenueMarket[] | null | undefined): UseMidpointsResult;
|
|
3438
|
+
declare function useMidpoints(venueMarkets: VenueMarket[] | null | undefined, options?: UseMidpointsOptions): UseMidpointsResult;
|
|
3407
3439
|
|
|
3408
3440
|
interface UseTradableVenuesResult {
|
|
3409
3441
|
/**
|
|
@@ -4040,12 +4072,21 @@ interface UseSmartRouteOptions {
|
|
|
4040
4072
|
/** Cache freshness and polling interval in milliseconds. Defaults to SMART_ROUTE_STALE_TIME_MS. */
|
|
4041
4073
|
staleTimeMs?: number;
|
|
4042
4074
|
}
|
|
4075
|
+
/**
|
|
4076
|
+
* Why the smart route query is currently loading.
|
|
4077
|
+
* - `"finding-best-odds"` — first fetch, no prior data in cache
|
|
4078
|
+
* - `"updating-route"` — query key changed (e.g. amount changed), placeholder data shown
|
|
4079
|
+
* - `"refreshing-quotes"` — background poll/revalidation with existing data
|
|
4080
|
+
*/
|
|
4081
|
+
type SmartRouteLoadingReason = "finding-best-odds" | "updating-route" | "refreshing-quotes";
|
|
4043
4082
|
interface UseSmartRouteResult {
|
|
4044
4083
|
data: SmartRouteResponse | null;
|
|
4045
4084
|
isLoading: boolean;
|
|
4046
4085
|
isFetching: boolean;
|
|
4047
4086
|
error: Error | null;
|
|
4048
4087
|
refetch: () => Promise<unknown>;
|
|
4088
|
+
/** Null when not loading. See {@link SmartRouteLoadingReason}. */
|
|
4089
|
+
loadingReason: SmartRouteLoadingReason | null;
|
|
4049
4090
|
}
|
|
4050
4091
|
/**
|
|
4051
4092
|
* Compute optimal order routing across venues via the MILP solver.
|
|
@@ -4666,8 +4707,8 @@ interface UseVenueEventsOptions {
|
|
|
4666
4707
|
sortBy?: string;
|
|
4667
4708
|
/** Sort direction: "asc" or "desc". */
|
|
4668
4709
|
sortDir?: string;
|
|
4669
|
-
/** Recurrence filter
|
|
4670
|
-
recurrence?:
|
|
4710
|
+
/** Recurrence filter. Uses public ISO-8601 cadence enum values, or "null" for one-off events. */
|
|
4711
|
+
recurrence?: RecurrenceFilter | RecurrenceFilter[];
|
|
4671
4712
|
/** If provided, enable the query. */
|
|
4672
4713
|
enabled?: boolean;
|
|
4673
4714
|
/** Page size when using cursor pagination. Default 20. */
|
|
@@ -5160,6 +5201,7 @@ declare function useVenueMarkets(options?: UseVenueMarketsOptions): {
|
|
|
5160
5201
|
interface UseVenueMarketMidpointsOptions {
|
|
5161
5202
|
venueMarketIds: string[];
|
|
5162
5203
|
enabled?: boolean;
|
|
5204
|
+
maxMidpointIdsPerRequest?: number;
|
|
5163
5205
|
}
|
|
5164
5206
|
declare function useVenueMarketMidpoints(options: UseVenueMarketMidpointsOptions): {
|
|
5165
5207
|
midpointRows: (MidpointRow & {
|
|
@@ -5389,7 +5431,10 @@ declare const computePriceGaps: ({ markets, midpointsByVenueMarketId, }: Compute
|
|
|
5389
5431
|
* outcome — semantically correct for both Yes and No sides because MVMO
|
|
5390
5432
|
* links same-side counterparts regardless of label inversion.
|
|
5391
5433
|
*/
|
|
5392
|
-
|
|
5434
|
+
interface UseViewportMidpointsOptions {
|
|
5435
|
+
maxMidpointIdsPerRequest?: number;
|
|
5436
|
+
}
|
|
5437
|
+
declare function useViewportMidpoints(visibleMarkets: VenueMarket[], options?: UseViewportMidpointsOptions): {
|
|
5393
5438
|
prices: Map<string, number>;
|
|
5394
5439
|
/**
|
|
5395
5440
|
* Map of outcomeId → venue name that provided the price in `prices`.
|
|
@@ -5442,4 +5487,4 @@ declare function useAppConfig(): UseAppConfigResult;
|
|
|
5442
5487
|
*/
|
|
5443
5488
|
declare function useCachedAppConfig(): UseAppConfigResult;
|
|
5444
5489
|
|
|
5445
|
-
export { AUTH_CHOOSER_OPEN_EVENT, type AggAuthContextValue, type AggAuthSignInOptions, type AggBalanceContextValue, AggBalanceProvider, AggProvider, type AggProviderProps, AggProvider as AggSdkProvider, type AggProviderProps as AggSdkProviderProps, type AggUiConfig, type AggUiConfigInput, type AggUiLabels, type AggUiLabelsInput, AggUiProvider, CHART_TIME_RANGES, CONFIRMED_MATCH_STATUSES, type ChartTimeRange, type ClosedPositionTotals, type ComputePriceGapsOptions, DEFAULT_AGG_ROOT_CLASS_NAME, type DagStepProgress, type EventListStateContextValue, EventListStateProvider, type EventListStateSnapshot, type EventTradingContextValue, type EventTradingState, type ExecutionProgressPhase, type ExecutionTerminalOrderEvent, type GeoBlockState, type GetOrdersQuery, type GetPositionsQuery, type InvalidateUserActivityOptions, type InvalidateUserMoneyStateOptions, type LiveBestPrices, type LiveCandle, MAX_PRICE_GAP_PCT, MIN_PRICE_GAP_PCT, type MarketChartCandle, type MarketChartData, type MarketChartVenueData, type MarketOrderbookData, type MarketOrderbookIntegrity, MarketStatus, type MarketTradingState, MatchStatus, MatchType, type OrderEligibility, type OrderEligibilityReason, type OrderListItem, type OrderbookResult, type PositionGroup, type PriceGapValue, type RedeemEvent, type RedeemLegLifecycle, type RedeemLifecycleState, RedeemRejectedError, type RollingChartWindow, type ScaledCandlePoint, type SdkUiConfig, type SdkUiConfigInput, type SdkUiProviderProps, type ThemeMode, TradeSide, type TradingAction, type TradingState, type TradingStateBase, type TradingStateKind, type UseAggAuthOptions, type UseAggAuthReturn, type UseAppConfigResult, type UseArbFeedResult, type UseCategoriesOptions, type UseCategoryChildrenOptions, type UseEnrichedVenueEventOptions, type UseExecuteManagedOptions, type UseExecutionOrdersOptions, type UseExecutionPositionsOptions, type UseExecutionProgressOptions, type UseExecutionProgressResult, type UseExternalIdOptions, type UseExternalIdReturn, type UseLinkAccountReturn, type UseLiveCandleOverlayOptions, type UseLiveCandleOverlayResult, type UseLiveCandlesOptions, type UseLiveCandlesResult, type UseLiveMarketResult, type UseMarketArbResult, type UseMarketChartOptions, type UseMarketChartResult, type UseMarketOrderbookOptions, type UseMarketOrderbookResult, type UseMarketOrderbookVenueOutcome, type UseMarketSearchOptions, type UseMidpointsResult, type UseOrderBookOptions, type UseOrderbookQuoteOptions, type UseOrderbookQuoteResult, type UseOrdersOptions, type UsePositionsOptions, type UseQuoteManagedOptions, type UseRedeemLifecycleInput, type UseRollingChartWindowOptions, type UseSearchOptions, type UseSmartRouteOptions, type UseSmartRouteResult, type UseTradableVenuesResult, type UseUserActivityOptions, type UseUserHoldingsOptions, type UseVenueEventOptions, type UseVenueEventsOptions, type UseVenueMarketMidpointsOptions, type UseVenueMarketsOptions, type UseVisibleIdsOptions, type UseVisibleIdsResult, type UserActivityInvalidationStrategy, Venue, type VenueAvailabilityState, type VenueEvent, type VenueEventWithMarkets, type VenueMarket, type VenueMarketOutcome, type WalletActionSendTokenParams, type WalletActions, computeClosedPositionTotals, computePriceGaps, defaultAggUiConfig, defaultAggUiConfig as defaultSdkUiConfig, executionKeys, findLivePriceById, getBuilder, getOrCreateBuilder, getVenueAvailabilityState, getVisibleVenueIdsByConfig, getVisibleVenuesByConfig, getWalletAddressFromUserProfile, invalidateBalanceQueries, invalidatePositionQueries, invalidateUserActivityQueries, invalidateUserClaimState, invalidateUserMoneyState, isVenueDisabledByConfig, mergeBestPricesPreferringLive, normalizeVenueId, optimizedImageUrl, parseEmail, parseEmailStrict, rangeToSeconds, requestAggAuthChooserOpen, resolveAggUiLabels, resolveDefaultMarket as resolveDefaultTradingMarket, resolveEventTradingState, resolveMarketTradingState, resolveMarketWinningOutcome, resolveOrderEligibility, resolveRollingWindow, resolveTradingStateKind, sortVenues, timeRangeToInterval, tradingReducer, useAggAuth, useAggAuthContext, useAggAuthState, useAggBalance, useAggBalanceContext, useAggBalanceState, useAggClient, useAggLabels, useAggUiConfig, useAggWebSocket, useAppConfig, useArbFeed, useCachedAppConfig, useCategories, useCategoryChildren, useDebouncedValue, useEnrichedVenueEvent, useEventListState, useEventOrderbookData, useEventTradingContext, useExecuteManaged, useExecutionOrders, useExecutionPositions, useExecutionProgress, useExternalId, useGeoBlock, useLabels, useLinkAccount, useLiveBestPrices, useLiveCandleOverlay, useLiveCandles, useLiveMarket, useLiveMarketStores, useLiveOutcomePrices, useLiveTrades, useMarketArb, useMarketChart, useMarketOrderbook, useMarketSearch, useMidpoints, useOnBalanceUpdate, useOnOrderEvent, useOnOrderSubmitted, useOnRedeemEvent, useOnWithdrawalLifecycle, useOptionalAggClient, useOrderBook, useOrderbookQuote, useOrders, usePositions, useQuoteManaged, useRampQuotes, useRampSession, useRedeem, useRedeemEligibleCount, useRedeemLifecycle, useRedeemLifecycles, useRollingChartWindow, useSdkLabels, useSdkUiConfig, useSearch, useSmartRoute, useTradableVenues, useUserActivity, useUserHoldings, useVenueEvent, useVenueEvents, useVenueMarketMidpoints, useVenueMarkets, useViewportMidpoints, useVisibleIds, userActivityQueryKeys };
|
|
5490
|
+
export { AUTH_CHOOSER_OPEN_EVENT, type AggAuthContextValue, type AggAuthSignInOptions, type AggBalanceContextValue, AggBalanceProvider, AggProvider, type AggProviderProps, AggProvider as AggSdkProvider, type AggProviderProps as AggSdkProviderProps, type AggUiConfig, type AggUiConfigInput, type AggUiLabels, type AggUiLabelsInput, AggUiProvider, CHART_TIME_RANGES, CONFIRMED_MATCH_STATUSES, type ChartTimeRange, type ClosedPositionTotals, type ComputePriceGapsOptions, DEFAULT_AGG_ROOT_CLASS_NAME, type DagStepProgress, type EventListStateContextValue, EventListStateProvider, type EventListStateSnapshot, type EventTradingContextValue, type EventTradingState, type ExecutionProgressPhase, type ExecutionTerminalOrderEvent, type GeoBlockState, type GetOrdersQuery, type GetPositionsQuery, type InvalidateUserActivityOptions, type InvalidateUserMoneyStateOptions, type LiveBestPrices, type LiveCandle, MAX_PRICE_GAP_PCT, MIN_PRICE_GAP_PCT, type MarketChartCandle, type MarketChartData, type MarketChartVenueData, type MarketOrderbookData, type MarketOrderbookIntegrity, MarketStatus, type MarketTradingState, MatchStatus, MatchType, type OrderEligibility, type OrderEligibilityReason, type OrderListItem, type OrderbookResult, type PositionGroup, type PriceGapValue, type RedeemEvent, type RedeemLegLifecycle, type RedeemLifecycleState, RedeemRejectedError, type RollingChartWindow, type ScaledCandlePoint, type SdkUiConfig, type SdkUiConfigInput, type SdkUiProviderProps, type SmartRouteLoadingReason, type ThemeMode, TradeSide, type TradingAction, type TradingState, type TradingStateBase, type TradingStateKind, type UseAggAuthOptions, type UseAggAuthReturn, type UseAppConfigResult, type UseArbFeedResult, type UseCategoriesOptions, type UseCategoryChildrenOptions, type UseEnrichedVenueEventOptions, type UseExecuteManagedOptions, type UseExecutionOrdersOptions, type UseExecutionPositionsOptions, type UseExecutionProgressOptions, type UseExecutionProgressResult, type UseExternalIdOptions, type UseExternalIdReturn, type UseLinkAccountReturn, type UseLiveCandleOverlayOptions, type UseLiveCandleOverlayResult, type UseLiveCandlesOptions, type UseLiveCandlesResult, type UseLiveMarketResult, type UseMarketArbResult, type UseMarketChartOptions, type UseMarketChartResult, type UseMarketOrderbookOptions, type UseMarketOrderbookResult, type UseMarketOrderbookVenueOutcome, type UseMarketSearchOptions, type UseMidpointsOptions, type UseMidpointsResult, type UseOrderBookOptions, type UseOrderbookQuoteOptions, type UseOrderbookQuoteResult, type UseOrdersOptions, type UsePositionsOptions, type UseQuoteManagedOptions, type UseRedeemLifecycleInput, type UseRollingChartWindowOptions, type UseSearchOptions, type UseSmartRouteOptions, type UseSmartRouteResult, type UseTradableVenuesResult, type UseUserActivityOptions, type UseUserHoldingsOptions, type UseVenueEventOptions, type UseVenueEventsOptions, type UseVenueMarketMidpointsOptions, type UseVenueMarketsOptions, type UseViewportMidpointsOptions, type UseVisibleIdsOptions, type UseVisibleIdsResult, type UserActivityInvalidationStrategy, Venue, type VenueAvailabilityState, type VenueEvent, type VenueEventWithMarkets, type VenueMarket, type VenueMarketOutcome, type WalletActionSendTokenParams, type WalletActions, computeClosedPositionTotals, computePriceGaps, defaultAggUiConfig, defaultAggUiConfig as defaultSdkUiConfig, executionKeys, findLivePriceById, getBuilder, getOrCreateBuilder, getVenueAvailabilityState, getVisibleVenueIdsByConfig, getVisibleVenuesByConfig, getWalletAddressFromUserProfile, invalidateBalanceQueries, invalidatePositionQueries, invalidateUserActivityQueries, invalidateUserClaimState, invalidateUserMoneyState, isVenueDisabledByConfig, mergeBestPricesPreferringLive, normalizeVenueId, optimizedImageUrl, parseEmail, parseEmailStrict, rangeToSeconds, requestAggAuthChooserOpen, resolveAggUiLabels, resolveDefaultMarket as resolveDefaultTradingMarket, resolveEventTradingState, resolveMarketTradingState, resolveMarketWinningOutcome, resolveOrderEligibility, resolveRollingWindow, resolveTradingStateKind, sortVenues, timeRangeToInterval, tradingReducer, useAggAuth, useAggAuthContext, useAggAuthState, useAggBalance, useAggBalanceContext, useAggBalanceState, useAggClient, useAggLabels, useAggUiConfig, useAggWebSocket, useAppConfig, useArbFeed, useCachedAppConfig, useCategories, useCategoryChildren, useDebouncedValue, useEnrichedVenueEvent, useEventListState, useEventOrderbookData, useEventTradingContext, useExecuteManaged, useExecutionOrders, useExecutionPositions, useExecutionProgress, useExternalId, useGeoBlock, useLabels, useLinkAccount, useLiveBestPrices, useLiveCandleOverlay, useLiveCandles, useLiveMarket, useLiveMarketStores, useLiveOutcomePrices, useLiveTrades, useMarketArb, useMarketChart, useMarketOrderbook, useMarketSearch, useMidpoints, useOnBalanceUpdate, useOnOrderEvent, useOnOrderSubmitted, useOnRedeemEvent, useOnWithdrawalLifecycle, useOptionalAggClient, useOrderBook, useOrderbookQuote, useOrders, usePositions, useQuoteManaged, useRampQuotes, useRampSession, useRedeem, useRedeemEligibleCount, useRedeemLifecycle, useRedeemLifecycles, useRollingChartWindow, useSdkLabels, useSdkUiConfig, useSearch, useSmartRoute, useTradableVenues, useUserActivity, useUserHoldings, useVenueEvent, useVenueEvents, useVenueMarketMidpoints, useVenueMarkets, useViewportMidpoints, useVisibleIds, userActivityQueryKeys };
|