@structbuild/sdk 0.5.4 → 0.5.5
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.
|
@@ -2015,6 +2015,12 @@ export interface components {
|
|
|
2015
2015
|
};
|
|
2016
2016
|
/** @description Cumulative stats for a single builder. */
|
|
2017
2017
|
BuilderLatestRow: {
|
|
2018
|
+
/**
|
|
2019
|
+
* Format: int64
|
|
2020
|
+
* @description Global rank for leaderboard responses. `null` on single-builder
|
|
2021
|
+
* responses where no leaderboard ordering is requested.
|
|
2022
|
+
*/
|
|
2023
|
+
rank?: number | null;
|
|
2018
2024
|
builder_code: string;
|
|
2019
2025
|
/** Format: int64 */
|
|
2020
2026
|
block: number;
|
|
@@ -5331,6 +5337,8 @@ export interface operations {
|
|
|
5331
5337
|
sort_desc?: boolean;
|
|
5332
5338
|
/** @description Window to rank over. Default: lifetime. */
|
|
5333
5339
|
timeframe?: components["schemas"]["BuilderTimeframe"];
|
|
5340
|
+
/** @description When true, only return builders with registered display metadata. Ranks remain global across all builders. */
|
|
5341
|
+
named_only?: boolean;
|
|
5334
5342
|
/** @description Max rows to return (default 50, max 500). */
|
|
5335
5343
|
limit?: number;
|
|
5336
5344
|
/** @description Number of rows to skip. Default 0. Takes precedence over `pagination_key`. */
|