@structbuild/sdk 0.4.2-staging.3 → 0.4.2-staging.4

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.
@@ -5191,6 +5191,8 @@ export interface operations {
5191
5191
  query?: {
5192
5192
  /** @description Metric to sort by. Default: volume. */
5193
5193
  sort?: components["schemas"]["BuilderSortBy"];
5194
+ /** @description Sort direction (default: true = highest first). */
5195
+ sort_desc?: boolean;
5194
5196
  /** @description Window to rank over. Default: lifetime. */
5195
5197
  timeframe?: components["schemas"]["BuilderTimeframe"];
5196
5198
  /** @description Max rows to return (default 50, max 500). */
@@ -5365,6 +5367,8 @@ export interface operations {
5365
5367
  query?: {
5366
5368
  /** @description Metric to sort by. Default: volume. */
5367
5369
  sort?: components["schemas"]["BuilderSortBy"];
5370
+ /** @description Sort direction (default: true = highest first). */
5371
+ sort_desc?: boolean;
5368
5372
  /** @description Window: lifetime, 1d, 24h, 7d, 30d, 1mo. Default: lifetime. */
5369
5373
  timeframe?: components["schemas"]["BuilderTimeframe"];
5370
5374
  /** @description Max rows to return (default 50, max 500). */
@@ -5396,6 +5400,8 @@ export interface operations {
5396
5400
  query?: {
5397
5401
  /** @description Metric to sort by. Default: volume. */
5398
5402
  sort?: components["schemas"]["BuilderSortBy"];
5403
+ /** @description Sort direction (default: true = highest first). */
5404
+ sort_desc?: boolean;
5399
5405
  /** @description Window: lifetime, 1d, 24h, 7d, 30d, 1mo. Default: lifetime. */
5400
5406
  timeframe?: components["schemas"]["BuilderTimeframe"];
5401
5407
  /** @description Max rows to return (default 50, max 500). */
@@ -5667,6 +5673,8 @@ export interface operations {
5667
5673
  query?: {
5668
5674
  /** @description Metric to sort by. Default: volume. */
5669
5675
  sort?: components["schemas"]["BuilderSortBy"];
5676
+ /** @description Sort direction (default: true = highest first). */
5677
+ sort_desc?: boolean;
5670
5678
  /** @description Window: lifetime, 1d, 24h, 7d, 30d, 1mo. Default: lifetime. */
5671
5679
  timeframe?: components["schemas"]["BuilderTimeframe"];
5672
5680
  /** @description Max rows to return (default 50, max 500). */
@@ -5703,6 +5711,8 @@ export interface operations {
5703
5711
  timeframe?: components["schemas"]["BuilderTimeframe"];
5704
5712
  /** @description Ranking key: volume (default), txns, fees, builder_fees */
5705
5713
  sort_by?: components["schemas"]["TopTradersSortBy"];
5714
+ /** @description Sort direction (default: true = highest first). */
5715
+ sort_desc?: boolean;
5706
5716
  /** @description Number of traders to return (default 10, max 250) */
5707
5717
  limit?: number;
5708
5718
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@structbuild/sdk",
3
- "version": "0.4.2-staging.3",
3
+ "version": "0.4.2-staging.4",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",