@merkl/api 1.0.51 → 1.0.52

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.
@@ -1010,8 +1010,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
1010
1010
  min: number;
1011
1011
  max: number;
1012
1012
  overThreshold: number;
1013
- binWidth: number;
1014
- bins: any[];
1013
+ data: {
1014
+ count: any;
1015
+ min: number;
1016
+ max: number;
1017
+ }[];
1015
1018
  };
1016
1019
  422: {
1017
1020
  type: "validation";
@@ -1066,8 +1069,12 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
1066
1069
  200: {
1067
1070
  min: number;
1068
1071
  max: number;
1069
- binWidth: number;
1070
- bins: any[];
1072
+ underThreshold: number;
1073
+ data: {
1074
+ count: any;
1075
+ min: number;
1076
+ max: number;
1077
+ }[];
1071
1078
  };
1072
1079
  422: {
1073
1080
  type: "validation";
@@ -11110,8 +11117,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
11110
11117
  min: number;
11111
11118
  max: number;
11112
11119
  overThreshold: number;
11113
- binWidth: number;
11114
- bins: any[];
11120
+ data: {
11121
+ count: any;
11122
+ min: number;
11123
+ max: number;
11124
+ }[];
11115
11125
  };
11116
11126
  422: {
11117
11127
  type: "validation";
@@ -11159,8 +11169,12 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
11159
11169
  200: {
11160
11170
  min: number;
11161
11171
  max: number;
11162
- binWidth: number;
11163
- bins: any[];
11172
+ underThreshold: number;
11173
+ data: {
11174
+ count: any;
11175
+ min: number;
11176
+ max: number;
11177
+ }[];
11164
11178
  };
11165
11179
  422: {
11166
11180
  type: "validation";
@@ -1011,8 +1011,11 @@ declare const app: Elysia<"", {
1011
1011
  min: number;
1012
1012
  max: number;
1013
1013
  overThreshold: number;
1014
- binWidth: number;
1015
- bins: any[];
1014
+ data: {
1015
+ count: any;
1016
+ min: number;
1017
+ max: number;
1018
+ }[];
1016
1019
  };
1017
1020
  422: {
1018
1021
  type: "validation";
@@ -1067,8 +1070,12 @@ declare const app: Elysia<"", {
1067
1070
  200: {
1068
1071
  min: number;
1069
1072
  max: number;
1070
- binWidth: number;
1071
- bins: any[];
1073
+ underThreshold: number;
1074
+ data: {
1075
+ count: any;
1076
+ min: number;
1077
+ max: number;
1078
+ }[];
1072
1079
  };
1073
1080
  422: {
1074
1081
  type: "validation";
@@ -811,8 +811,11 @@ export declare const OpportunityController: Elysia<"/opportunities", {
811
811
  min: number;
812
812
  max: number;
813
813
  overThreshold: number;
814
- binWidth: number;
815
- bins: any[];
814
+ data: {
815
+ count: any;
816
+ min: number;
817
+ max: number;
818
+ }[];
816
819
  };
817
820
  422: {
818
821
  type: "validation";
@@ -867,8 +870,12 @@ export declare const OpportunityController: Elysia<"/opportunities", {
867
870
  200: {
868
871
  min: number;
869
872
  max: number;
870
- binWidth: number;
871
- bins: any[];
873
+ underThreshold: number;
874
+ data: {
875
+ count: any;
876
+ min: number;
877
+ max: number;
878
+ }[];
872
879
  };
873
880
  422: {
874
881
  type: "validation";
@@ -10,14 +10,21 @@ export declare abstract class OpportunityService {
10
10
  min: number;
11
11
  max: number;
12
12
  overThreshold: number;
13
- binWidth: number;
14
- bins: any[];
13
+ data: {
14
+ count: any;
15
+ min: number;
16
+ max: number;
17
+ }[];
15
18
  }>;
16
19
  static getTvlBins(query: GetOpportunitiesQueryModel): Promise<{
17
20
  min: number;
18
21
  max: number;
19
- binWidth: number;
20
- bins: any[];
22
+ underThreshold: number;
23
+ data: {
24
+ count: any;
25
+ min: number;
26
+ max: number;
27
+ }[];
21
28
  }>;
22
29
  static override(id: string, data: OpportunityOverrideModel): Promise<{
23
30
  name: string;
@@ -820,8 +820,11 @@ export declare const v4: Elysia<"/v4", {
820
820
  min: number;
821
821
  max: number;
822
822
  overThreshold: number;
823
- binWidth: number;
824
- bins: any[];
823
+ data: {
824
+ count: any;
825
+ min: number;
826
+ max: number;
827
+ }[];
825
828
  };
826
829
  422: {
827
830
  type: "validation";
@@ -876,8 +879,12 @@ export declare const v4: Elysia<"/v4", {
876
879
  200: {
877
880
  min: number;
878
881
  max: number;
879
- binWidth: number;
880
- bins: any[];
882
+ underThreshold: number;
883
+ data: {
884
+ count: any;
885
+ min: number;
886
+ max: number;
887
+ }[];
881
888
  };
882
889
  422: {
883
890
  type: "validation";