@structbuild/sdk 0.3.10-staging.5 → 0.3.10-staging.6

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.
@@ -1674,9 +1674,13 @@ export interface components {
1674
1674
  redemption_volume_usd: number;
1675
1675
  /** Format: int64 */
1676
1676
  merge_count: number;
1677
+ /** Format: double */
1678
+ merge_volume_usd: number;
1677
1679
  /** Format: int64 */
1678
1680
  split_count: number;
1679
1681
  /** Format: double */
1682
+ split_volume_usd: number;
1683
+ /** Format: double */
1680
1684
  fees_usd: number;
1681
1685
  /** Format: double */
1682
1686
  shares_volume: number;
@@ -1688,6 +1692,18 @@ export interface components {
1688
1692
  yes_count: number;
1689
1693
  /** Format: int64 */
1690
1694
  no_count: number;
1695
+ /** Format: int64 */
1696
+ buy_dist_under_10: number;
1697
+ /** Format: int64 */
1698
+ buy_dist_10_100: number;
1699
+ /** Format: int64 */
1700
+ buy_dist_100_1k: number;
1701
+ /** Format: int64 */
1702
+ buy_dist_1k_10k: number;
1703
+ /** Format: int64 */
1704
+ buy_dist_10k_50k: number;
1705
+ /** Format: int64 */
1706
+ buy_dist_50k_plus: number;
1691
1707
  /**
1692
1708
  * Format: int64
1693
1709
  * @description Estimated total number of tags.
@@ -3027,9 +3043,13 @@ export interface components {
3027
3043
  rv: number;
3028
3044
  /** Format: int64 */
3029
3045
  mc: number;
3046
+ /** Format: double */
3047
+ mv: number;
3030
3048
  /** Format: int64 */
3031
3049
  sp: number;
3032
3050
  /** Format: double */
3051
+ spv: number;
3052
+ /** Format: double */
3033
3053
  f: number;
3034
3054
  /** Format: double */
3035
3055
  sh: number;
@@ -3041,6 +3061,21 @@ export interface components {
3041
3061
  yc: number;
3042
3062
  /** Format: int64 */
3043
3063
  nc: number;
3064
+ /**
3065
+ * Format: int64
3066
+ * @description Buy distribution — count of buy trades falling in each USD bucket.
3067
+ */
3068
+ bd_u10: number;
3069
+ /** Format: int64 */
3070
+ bd_100: number;
3071
+ /** Format: int64 */
3072
+ bd_1k: number;
3073
+ /** Format: int64 */
3074
+ bd_10k: number;
3075
+ /** Format: int64 */
3076
+ bd_50k: number;
3077
+ /** Format: int64 */
3078
+ bd_50p: number;
3044
3079
  };
3045
3080
  /** @description Token outcome (position) */
3046
3081
  TokenOutcome: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@structbuild/sdk",
3
- "version": "0.3.10-staging.5",
3
+ "version": "0.3.10-staging.6",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",