@structbuild/sdk 0.1.14 → 0.1.15
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/generated/polymarket.d.ts +25 -25
- package/package.json +1 -1
|
@@ -988,9 +988,9 @@ export interface components {
|
|
|
988
988
|
/** @description Holder statistics data point (single time bucket) */
|
|
989
989
|
HolderHistoryCandle: {
|
|
990
990
|
/** Format: int64 */
|
|
991
|
-
|
|
991
|
+
t: number;
|
|
992
992
|
/** Format: int64 */
|
|
993
|
-
|
|
993
|
+
h?: number | null;
|
|
994
994
|
};
|
|
995
995
|
/** @description Market-level PnL data for a holder */
|
|
996
996
|
MarketHolderPnl: {
|
|
@@ -1169,19 +1169,19 @@ export interface components {
|
|
|
1169
1169
|
};
|
|
1170
1170
|
MarketVolumeDataPoint: {
|
|
1171
1171
|
/** Format: int64 */
|
|
1172
|
-
|
|
1172
|
+
t: number;
|
|
1173
1173
|
/** Format: double */
|
|
1174
|
-
|
|
1174
|
+
v: number;
|
|
1175
1175
|
/** Format: double */
|
|
1176
|
-
|
|
1176
|
+
yv: number;
|
|
1177
1177
|
/** Format: double */
|
|
1178
|
-
|
|
1178
|
+
nv: number;
|
|
1179
1179
|
/** Format: int32 */
|
|
1180
|
-
|
|
1180
|
+
tc: number;
|
|
1181
1181
|
/** Format: int32 */
|
|
1182
|
-
|
|
1182
|
+
ytc: number;
|
|
1183
1183
|
/** Format: int32 */
|
|
1184
|
-
|
|
1184
|
+
ntc: number;
|
|
1185
1185
|
};
|
|
1186
1186
|
/** @enum {string} */
|
|
1187
1187
|
MetricsTimeframe: "1m" | "5m" | "30m" | "1h" | "6h" | "24h" | "7d" | "30d";
|
|
@@ -1294,12 +1294,12 @@ export interface components {
|
|
|
1294
1294
|
* Format: int64
|
|
1295
1295
|
* @description Timestamp in epoch seconds (start of bucket window)
|
|
1296
1296
|
*/
|
|
1297
|
-
|
|
1297
|
+
t: number;
|
|
1298
1298
|
/**
|
|
1299
1299
|
* Format: double
|
|
1300
1300
|
* @description Sum of realized PnL in this bucket
|
|
1301
1301
|
*/
|
|
1302
|
-
|
|
1302
|
+
pnl: number;
|
|
1303
1303
|
};
|
|
1304
1304
|
/** @enum {string} */
|
|
1305
1305
|
PnlCandleResolution: "1m" | "1h" | "1d";
|
|
@@ -1550,19 +1550,19 @@ export interface components {
|
|
|
1550
1550
|
};
|
|
1551
1551
|
PositionVolumeDataPoint: {
|
|
1552
1552
|
/** Format: int64 */
|
|
1553
|
-
|
|
1553
|
+
t: number;
|
|
1554
1554
|
/** Format: double */
|
|
1555
|
-
|
|
1555
|
+
v: number;
|
|
1556
1556
|
/** Format: double */
|
|
1557
|
-
|
|
1557
|
+
bv: number;
|
|
1558
1558
|
/** Format: double */
|
|
1559
|
-
|
|
1559
|
+
sv: number;
|
|
1560
1560
|
/** Format: int32 */
|
|
1561
|
-
|
|
1561
|
+
tc: number;
|
|
1562
1562
|
/** Format: int32 */
|
|
1563
|
-
|
|
1563
|
+
btc: number;
|
|
1564
1564
|
/** Format: int32 */
|
|
1565
|
-
|
|
1565
|
+
stc: number;
|
|
1566
1566
|
};
|
|
1567
1567
|
PredictionCandlestickBar: {
|
|
1568
1568
|
/** Format: double */
|
|
@@ -1809,19 +1809,19 @@ export interface components {
|
|
|
1809
1809
|
};
|
|
1810
1810
|
TraderVolumeDataPoint: {
|
|
1811
1811
|
/** Format: int64 */
|
|
1812
|
-
|
|
1812
|
+
t: number;
|
|
1813
1813
|
/** Format: double */
|
|
1814
|
-
|
|
1814
|
+
v: number;
|
|
1815
1815
|
/** Format: double */
|
|
1816
|
-
|
|
1816
|
+
bv: number;
|
|
1817
1817
|
/** Format: double */
|
|
1818
|
-
|
|
1818
|
+
sv: number;
|
|
1819
1819
|
/** Format: int32 */
|
|
1820
|
-
|
|
1820
|
+
tc: number;
|
|
1821
1821
|
/** Format: int32 */
|
|
1822
|
-
|
|
1822
|
+
btc: number;
|
|
1823
1823
|
/** Format: int32 */
|
|
1824
|
-
|
|
1824
|
+
stc: number;
|
|
1825
1825
|
};
|
|
1826
1826
|
};
|
|
1827
1827
|
responses: never;
|