@longdotxyz/shared 0.0.120 → 0.0.121
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/graphql/generated.d.ts +13 -13
- package/package.json +1 -1
|
@@ -2777,8 +2777,13 @@ export type KalshiCandlesticksResponse = {
|
|
|
2777
2777
|
__typename?: 'KalshiCandlesticksResponse';
|
|
2778
2778
|
markets?: Maybe<Array<Maybe<KalshiMarketCandlesticks>>>;
|
|
2779
2779
|
};
|
|
2780
|
-
export type
|
|
2781
|
-
__typename?: '
|
|
2780
|
+
export type KalshiMarketCandlesticks = {
|
|
2781
|
+
__typename?: 'KalshiMarketCandlesticks';
|
|
2782
|
+
candlesticks?: Maybe<Array<Maybe<KalshiCandlestick>>>;
|
|
2783
|
+
market_ticker?: Maybe<Scalars['String']['output']>;
|
|
2784
|
+
};
|
|
2785
|
+
export type KalshiMarketDetail = {
|
|
2786
|
+
__typename?: 'KalshiMarketDetail';
|
|
2782
2787
|
can_close_early?: Maybe<Scalars['Boolean']['output']>;
|
|
2783
2788
|
close_time?: Maybe<Scalars['String']['output']>;
|
|
2784
2789
|
created_time?: Maybe<Scalars['String']['output']>;
|
|
@@ -2812,13 +2817,8 @@ export type KalshiMarket = {
|
|
|
2812
2817
|
yes_bid?: Maybe<Scalars['Int']['output']>;
|
|
2813
2818
|
yes_bid_dollars?: Maybe<Scalars['String']['output']>;
|
|
2814
2819
|
};
|
|
2815
|
-
export type
|
|
2816
|
-
__typename?: '
|
|
2817
|
-
candlesticks?: Maybe<Array<Maybe<KalshiCandlestick>>>;
|
|
2818
|
-
market_ticker?: Maybe<Scalars['String']['output']>;
|
|
2819
|
-
};
|
|
2820
|
-
export type KalshiMarketDetail = {
|
|
2821
|
-
__typename?: 'KalshiMarketDetail';
|
|
2820
|
+
export type KalshiMarketItem = {
|
|
2821
|
+
__typename?: 'KalshiMarketItem';
|
|
2822
2822
|
can_close_early?: Maybe<Scalars['Boolean']['output']>;
|
|
2823
2823
|
close_time?: Maybe<Scalars['String']['output']>;
|
|
2824
2824
|
created_time?: Maybe<Scalars['String']['output']>;
|
|
@@ -2856,10 +2856,10 @@ export type KalshiMarketResponse = {
|
|
|
2856
2856
|
__typename?: 'KalshiMarketResponse';
|
|
2857
2857
|
market?: Maybe<KalshiMarketDetail>;
|
|
2858
2858
|
};
|
|
2859
|
-
export type
|
|
2860
|
-
__typename?: '
|
|
2859
|
+
export type KalshiMarketsListResponse = {
|
|
2860
|
+
__typename?: 'KalshiMarketsListResponse';
|
|
2861
2861
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
2862
|
-
markets?: Maybe<Array<Maybe<
|
|
2862
|
+
markets?: Maybe<Array<Maybe<KalshiMarketItem>>>;
|
|
2863
2863
|
};
|
|
2864
2864
|
export type LaunchpadData = {
|
|
2865
2865
|
__typename?: 'LaunchpadData';
|
|
@@ -3235,7 +3235,7 @@ export type Query = {
|
|
|
3235
3235
|
getBars?: Maybe<BarsResponse>;
|
|
3236
3236
|
kalshi_market?: Maybe<KalshiMarketResponse>;
|
|
3237
3237
|
kalshi_marketCandlesticks?: Maybe<KalshiCandlesticksResponse>;
|
|
3238
|
-
kalshi_markets?: Maybe<
|
|
3238
|
+
kalshi_markets?: Maybe<KalshiMarketsListResponse>;
|
|
3239
3239
|
raw_events: Array<Raw_Events>;
|
|
3240
3240
|
raw_events_by_pk?: Maybe<Raw_Events>;
|
|
3241
3241
|
};
|