@merkl/api 1.5.26 → 1.5.27
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/src/eden/index.d.ts +133 -1
- package/dist/src/index.d.ts +150 -1
- package/dist/src/modules/v4/campaign/campaign.controller.d.ts +10 -0
- package/dist/src/modules/v4/campaign/campaign.model.d.ts +2 -0
- package/dist/src/modules/v4/campaign/campaign.repository.d.ts +12 -0
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +2 -0
- package/dist/src/modules/v4/campaign/campaign.service.js.map +1 -1
- package/dist/src/modules/v4/campaign/campaign.test.controller.d.ts +8 -0
- package/dist/src/modules/v4/campaignStatus/campaignStatus.controller.d.ts +97 -0
- package/dist/src/modules/v4/campaignStatus/campaignStatus.controller.js.map +1 -1
- package/dist/src/modules/v4/campaignStatus/campaignStatus.model.d.ts +3 -0
- package/dist/src/modules/v4/campaignStatus/campaignStatus.model.js.map +1 -1
- package/dist/src/modules/v4/campaignStatus/campaignStatus.repository.d.ts +49 -1
- package/dist/src/modules/v4/campaignStatus/campaignStatus.repository.js.map +1 -1
- package/dist/src/modules/v4/campaignStatus/campaignStatus.service.d.ts +46 -0
- package/dist/src/modules/v4/campaignStatus/campaignStatus.service.js.map +1 -1
- package/dist/src/modules/v4/campaignToProcess/campaignToProcess.controller.d.ts +3 -1
- package/dist/src/modules/v4/campaignToProcess/campaignToProcess.controller.js.map +1 -1
- package/dist/src/modules/v4/campaignToProcess/campaignToProcess.repository.d.ts +4 -0
- package/dist/src/modules/v4/campaignToProcess/campaignToProcess.repository.js.map +1 -1
- package/dist/src/modules/v4/campaignToProcess/campaignToProcess.service.d.ts +4 -0
- package/dist/src/modules/v4/config/config.controller.d.ts +2 -0
- package/dist/src/modules/v4/config/config.service.d.ts +2 -0
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +12 -0
- package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +4 -0
- package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +14 -0
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +8 -0
- package/dist/src/modules/v4/payload/payload.controller.d.ts +6 -0
- package/dist/src/modules/v4/payload/payload.service.d.ts +8 -0
- package/dist/src/modules/v4/reward/reward.repository.d.ts +4 -0
- package/dist/src/modules/v4/reward/reward.service.d.ts +26 -0
- package/dist/src/modules/v4/router.d.ts +150 -1
- package/dist/src/modules/v4/uniswap/uniswap.controller.d.ts +4 -0
- package/dist/src/modules/v4/uniswap/uniswap.service.d.ts +2 -0
- package/dist/src/modules/v4/user/user.controller.d.ts +8 -0
- package/dist/src/modules/v4/user/user.model.d.ts +2 -0
- package/dist/src/scripts/importOpportunities.js.map +1 -1
- package/package.json +1 -1
|
@@ -63,12 +63,14 @@ export declare abstract class RewardService {
|
|
|
63
63
|
pending: string;
|
|
64
64
|
campaignStatus: {
|
|
65
65
|
status: import("@package/databases").RunStatus;
|
|
66
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
66
67
|
error: string;
|
|
67
68
|
details: string | number | boolean | import("@prisma/client/runtime/client").JsonArray | import("@prisma/client/runtime/client").JsonObject;
|
|
68
69
|
delay: number;
|
|
69
70
|
computedUntil: number;
|
|
70
71
|
createdAt: number;
|
|
71
72
|
processingStarted: number;
|
|
73
|
+
preComputeProcessingStarted: number;
|
|
72
74
|
} | undefined;
|
|
73
75
|
campaignId: string;
|
|
74
76
|
subCampaignId: string | undefined;
|
|
@@ -186,12 +188,14 @@ export declare abstract class RewardService {
|
|
|
186
188
|
pending: string;
|
|
187
189
|
campaignStatus: {
|
|
188
190
|
status: import("@package/databases").RunStatus;
|
|
191
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
189
192
|
error: string;
|
|
190
193
|
details: string | number | boolean | import("@prisma/client/runtime/client").JsonArray | import("@prisma/client/runtime/client").JsonObject;
|
|
191
194
|
delay: number;
|
|
192
195
|
computedUntil: number;
|
|
193
196
|
createdAt: number;
|
|
194
197
|
processingStarted: number;
|
|
198
|
+
preComputeProcessingStarted: number;
|
|
195
199
|
} | undefined;
|
|
196
200
|
campaignId: string;
|
|
197
201
|
subCampaignId: string | undefined;
|
|
@@ -285,6 +289,8 @@ export declare abstract class RewardService {
|
|
|
285
289
|
computedUntil: bigint;
|
|
286
290
|
processingStarted: bigint;
|
|
287
291
|
status: import("@package/databases").RunStatus;
|
|
292
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
293
|
+
preComputeProcessingStarted: bigint;
|
|
288
294
|
error: string;
|
|
289
295
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
290
296
|
}[];
|
|
@@ -394,6 +400,8 @@ export declare abstract class RewardService {
|
|
|
394
400
|
computedUntil: bigint;
|
|
395
401
|
processingStarted: bigint;
|
|
396
402
|
status: import("@package/databases").RunStatus;
|
|
403
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
404
|
+
preComputeProcessingStarted: bigint;
|
|
397
405
|
error: string;
|
|
398
406
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
399
407
|
}[];
|
|
@@ -595,12 +603,14 @@ export declare abstract class RewardService {
|
|
|
595
603
|
pending: string;
|
|
596
604
|
campaignStatus: {
|
|
597
605
|
status: import("@package/databases").RunStatus;
|
|
606
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
598
607
|
error: string;
|
|
599
608
|
details: string | number | boolean | import("@prisma/client/runtime/client").JsonArray | import("@prisma/client/runtime/client").JsonObject;
|
|
600
609
|
delay: number;
|
|
601
610
|
computedUntil: number;
|
|
602
611
|
createdAt: number;
|
|
603
612
|
processingStarted: number;
|
|
613
|
+
preComputeProcessingStarted: number;
|
|
604
614
|
} | undefined;
|
|
605
615
|
campaignId: string;
|
|
606
616
|
subCampaignId: string | undefined;
|
|
@@ -718,12 +728,14 @@ export declare abstract class RewardService {
|
|
|
718
728
|
pending: string;
|
|
719
729
|
campaignStatus: {
|
|
720
730
|
status: import("@package/databases").RunStatus;
|
|
731
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
721
732
|
error: string;
|
|
722
733
|
details: string | number | boolean | import("@prisma/client/runtime/client").JsonArray | import("@prisma/client/runtime/client").JsonObject;
|
|
723
734
|
delay: number;
|
|
724
735
|
computedUntil: number;
|
|
725
736
|
createdAt: number;
|
|
726
737
|
processingStarted: number;
|
|
738
|
+
preComputeProcessingStarted: number;
|
|
727
739
|
} | undefined;
|
|
728
740
|
campaignId: string;
|
|
729
741
|
subCampaignId: string | undefined;
|
|
@@ -969,6 +981,8 @@ export declare abstract class RewardService {
|
|
|
969
981
|
computedUntil: number;
|
|
970
982
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
971
983
|
error: string;
|
|
984
|
+
preComputeProcessingStarted: number;
|
|
985
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
972
986
|
processingStarted: number;
|
|
973
987
|
status: import("@package/databases").RunStatus;
|
|
974
988
|
} & {
|
|
@@ -1132,12 +1146,14 @@ export declare abstract class RewardService {
|
|
|
1132
1146
|
pending: string;
|
|
1133
1147
|
campaignStatus: {
|
|
1134
1148
|
status: import("@package/databases").RunStatus;
|
|
1149
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
1135
1150
|
error: string;
|
|
1136
1151
|
details: string | number | boolean | import("@prisma/client/runtime/client").JsonArray | import("@prisma/client/runtime/client").JsonObject;
|
|
1137
1152
|
delay: number;
|
|
1138
1153
|
computedUntil: number;
|
|
1139
1154
|
createdAt: number;
|
|
1140
1155
|
processingStarted: number;
|
|
1156
|
+
preComputeProcessingStarted: number;
|
|
1141
1157
|
} | undefined;
|
|
1142
1158
|
campaignId: string;
|
|
1143
1159
|
subCampaignId: string | undefined;
|
|
@@ -1255,12 +1271,14 @@ export declare abstract class RewardService {
|
|
|
1255
1271
|
pending: string;
|
|
1256
1272
|
campaignStatus: {
|
|
1257
1273
|
status: import("@package/databases").RunStatus;
|
|
1274
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
1258
1275
|
error: string;
|
|
1259
1276
|
details: string | number | boolean | import("@prisma/client/runtime/client").JsonArray | import("@prisma/client/runtime/client").JsonObject;
|
|
1260
1277
|
delay: number;
|
|
1261
1278
|
computedUntil: number;
|
|
1262
1279
|
createdAt: number;
|
|
1263
1280
|
processingStarted: number;
|
|
1281
|
+
preComputeProcessingStarted: number;
|
|
1264
1282
|
} | undefined;
|
|
1265
1283
|
campaignId: string;
|
|
1266
1284
|
subCampaignId: string | undefined;
|
|
@@ -1355,12 +1373,14 @@ export declare abstract class RewardService {
|
|
|
1355
1373
|
pending: string;
|
|
1356
1374
|
campaignStatus: {
|
|
1357
1375
|
status: import("@package/databases").RunStatus;
|
|
1376
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
1358
1377
|
error: string;
|
|
1359
1378
|
details: string | number | boolean | import("@prisma/client/runtime/client").JsonArray | import("@prisma/client/runtime/client").JsonObject;
|
|
1360
1379
|
delay: number;
|
|
1361
1380
|
computedUntil: number;
|
|
1362
1381
|
createdAt: number;
|
|
1363
1382
|
processingStarted: number;
|
|
1383
|
+
preComputeProcessingStarted: number;
|
|
1364
1384
|
} | undefined;
|
|
1365
1385
|
campaignId: string;
|
|
1366
1386
|
subCampaignId: string | undefined;
|
|
@@ -1376,6 +1396,8 @@ export declare abstract class RewardService {
|
|
|
1376
1396
|
computedUntil: bigint;
|
|
1377
1397
|
processingStarted: bigint;
|
|
1378
1398
|
status: import("@package/databases").RunStatus;
|
|
1399
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
1400
|
+
preComputeProcessingStarted: bigint;
|
|
1379
1401
|
error: string;
|
|
1380
1402
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
1381
1403
|
}[];
|
|
@@ -1485,6 +1507,8 @@ export declare abstract class RewardService {
|
|
|
1485
1507
|
computedUntil: bigint;
|
|
1486
1508
|
processingStarted: bigint;
|
|
1487
1509
|
status: import("@package/databases").RunStatus;
|
|
1510
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
1511
|
+
preComputeProcessingStarted: bigint;
|
|
1488
1512
|
error: string;
|
|
1489
1513
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
1490
1514
|
}[];
|
|
@@ -1668,12 +1692,14 @@ export declare abstract class RewardService {
|
|
|
1668
1692
|
pending: string;
|
|
1669
1693
|
campaignStatus: {
|
|
1670
1694
|
status: import("@package/databases").RunStatus;
|
|
1695
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
1671
1696
|
error: string;
|
|
1672
1697
|
details: string | number | boolean | import("@prisma/client/runtime/client").JsonArray | import("@prisma/client/runtime/client").JsonObject;
|
|
1673
1698
|
delay: number;
|
|
1674
1699
|
computedUntil: number;
|
|
1675
1700
|
createdAt: number;
|
|
1676
1701
|
processingStarted: number;
|
|
1702
|
+
preComputeProcessingStarted: number;
|
|
1677
1703
|
} | undefined;
|
|
1678
1704
|
campaignId: string;
|
|
1679
1705
|
subCampaignId: string | undefined;
|
|
@@ -1141,6 +1141,8 @@ export declare const v4: Elysia<"/v4", {
|
|
|
1141
1141
|
computedUntil: string | number;
|
|
1142
1142
|
processingStarted: string | number;
|
|
1143
1143
|
status: string;
|
|
1144
|
+
preComputeProcessingStarted: string | number;
|
|
1145
|
+
preComputeStatus: string;
|
|
1144
1146
|
delay?: number | undefined;
|
|
1145
1147
|
error?: string | undefined;
|
|
1146
1148
|
details?: any;
|
|
@@ -1201,6 +1203,8 @@ export declare const v4: Elysia<"/v4", {
|
|
|
1201
1203
|
computedUntil: string | number;
|
|
1202
1204
|
processingStarted: string | number;
|
|
1203
1205
|
status: string;
|
|
1206
|
+
preComputeProcessingStarted: string | number;
|
|
1207
|
+
preComputeStatus: string;
|
|
1204
1208
|
delay?: number | undefined;
|
|
1205
1209
|
error?: string | undefined;
|
|
1206
1210
|
details?: any;
|
|
@@ -1938,6 +1942,8 @@ export declare const v4: Elysia<"/v4", {
|
|
|
1938
1942
|
}[];
|
|
1939
1943
|
CampaignStatus: {
|
|
1940
1944
|
computedUntil: bigint;
|
|
1945
|
+
preComputeProcessingStarted: bigint;
|
|
1946
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
1941
1947
|
processingStarted: bigint;
|
|
1942
1948
|
status: import("@package/databases").RunStatus;
|
|
1943
1949
|
}[];
|
|
@@ -2142,6 +2148,8 @@ export declare const v4: Elysia<"/v4", {
|
|
|
2142
2148
|
computedUntil: string | number;
|
|
2143
2149
|
processingStarted: string | number;
|
|
2144
2150
|
status: string;
|
|
2151
|
+
preComputeProcessingStarted: string | number;
|
|
2152
|
+
preComputeStatus: string;
|
|
2145
2153
|
delay?: number | undefined;
|
|
2146
2154
|
error?: string | undefined;
|
|
2147
2155
|
details?: any;
|
|
@@ -2202,6 +2210,8 @@ export declare const v4: Elysia<"/v4", {
|
|
|
2202
2210
|
computedUntil: string | number;
|
|
2203
2211
|
processingStarted: string | number;
|
|
2204
2212
|
status: string;
|
|
2213
|
+
preComputeProcessingStarted: string | number;
|
|
2214
|
+
preComputeStatus: string;
|
|
2205
2215
|
delay?: number | undefined;
|
|
2206
2216
|
error?: string | undefined;
|
|
2207
2217
|
details?: any;
|
|
@@ -2999,6 +3009,89 @@ export declare const v4: Elysia<"/v4", {
|
|
|
2999
3009
|
};
|
|
3000
3010
|
};
|
|
3001
3011
|
};
|
|
3012
|
+
} & {
|
|
3013
|
+
engine: {
|
|
3014
|
+
precompute: {
|
|
3015
|
+
lock: {
|
|
3016
|
+
":campaignId": {
|
|
3017
|
+
put: {
|
|
3018
|
+
body: unknown;
|
|
3019
|
+
params: {
|
|
3020
|
+
campaignId: string;
|
|
3021
|
+
};
|
|
3022
|
+
query: unknown;
|
|
3023
|
+
headers: {
|
|
3024
|
+
authorization: string;
|
|
3025
|
+
};
|
|
3026
|
+
response: {
|
|
3027
|
+
200: {
|
|
3028
|
+
campaignId: string;
|
|
3029
|
+
computedUntil: bigint;
|
|
3030
|
+
processingStarted: bigint;
|
|
3031
|
+
status: import("@package/databases").RunStatus;
|
|
3032
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
3033
|
+
preComputeProcessingStarted: bigint;
|
|
3034
|
+
error: string;
|
|
3035
|
+
details: import("@prisma/client/runtime/client").JsonValue;
|
|
3036
|
+
};
|
|
3037
|
+
422: {
|
|
3038
|
+
type: "validation";
|
|
3039
|
+
on: string;
|
|
3040
|
+
summary?: string | undefined;
|
|
3041
|
+
message?: string | undefined;
|
|
3042
|
+
found?: unknown;
|
|
3043
|
+
property?: string | undefined;
|
|
3044
|
+
expected?: string | undefined;
|
|
3045
|
+
};
|
|
3046
|
+
};
|
|
3047
|
+
};
|
|
3048
|
+
};
|
|
3049
|
+
};
|
|
3050
|
+
};
|
|
3051
|
+
};
|
|
3052
|
+
} & {
|
|
3053
|
+
engine: {
|
|
3054
|
+
precompute: {
|
|
3055
|
+
unlock: {
|
|
3056
|
+
":campaignId": {
|
|
3057
|
+
":status": {
|
|
3058
|
+
put: {
|
|
3059
|
+
body: unknown;
|
|
3060
|
+
params: {
|
|
3061
|
+
campaignId: string;
|
|
3062
|
+
status: "failed" | "success";
|
|
3063
|
+
};
|
|
3064
|
+
query: unknown;
|
|
3065
|
+
headers: {
|
|
3066
|
+
authorization: string;
|
|
3067
|
+
};
|
|
3068
|
+
response: {
|
|
3069
|
+
200: {
|
|
3070
|
+
campaignId: string;
|
|
3071
|
+
computedUntil: bigint;
|
|
3072
|
+
processingStarted: bigint;
|
|
3073
|
+
status: import("@package/databases").RunStatus;
|
|
3074
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
3075
|
+
preComputeProcessingStarted: bigint;
|
|
3076
|
+
error: string;
|
|
3077
|
+
details: import("@prisma/client/runtime/client").JsonValue;
|
|
3078
|
+
};
|
|
3079
|
+
422: {
|
|
3080
|
+
type: "validation";
|
|
3081
|
+
on: string;
|
|
3082
|
+
summary?: string | undefined;
|
|
3083
|
+
message?: string | undefined;
|
|
3084
|
+
found?: unknown;
|
|
3085
|
+
property?: string | undefined;
|
|
3086
|
+
expected?: string | undefined;
|
|
3087
|
+
};
|
|
3088
|
+
};
|
|
3089
|
+
};
|
|
3090
|
+
};
|
|
3091
|
+
};
|
|
3092
|
+
};
|
|
3093
|
+
};
|
|
3094
|
+
};
|
|
3002
3095
|
} & {
|
|
3003
3096
|
get: {
|
|
3004
3097
|
body: unknown;
|
|
@@ -3011,12 +3104,14 @@ export declare const v4: Elysia<"/v4", {
|
|
|
3011
3104
|
response: {
|
|
3012
3105
|
200: {
|
|
3013
3106
|
status: import("@package/databases").RunStatus;
|
|
3107
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
3014
3108
|
error: string;
|
|
3015
3109
|
details: string | number | boolean | import("@prisma/client/runtime/client").JsonArray | import("@prisma/client/runtime/client").JsonObject;
|
|
3016
3110
|
delay: number;
|
|
3017
3111
|
computedUntil: number;
|
|
3018
3112
|
createdAt: number;
|
|
3019
3113
|
processingStarted: number;
|
|
3114
|
+
preComputeProcessingStarted: number;
|
|
3020
3115
|
}[];
|
|
3021
3116
|
422: {
|
|
3022
3117
|
type: "validation";
|
|
@@ -3044,6 +3139,8 @@ export declare const v4: Elysia<"/v4", {
|
|
|
3044
3139
|
computedUntil: bigint;
|
|
3045
3140
|
processingStarted: bigint;
|
|
3046
3141
|
status: import("@package/databases").RunStatus;
|
|
3142
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
3143
|
+
preComputeProcessingStarted: bigint;
|
|
3047
3144
|
error: string;
|
|
3048
3145
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
3049
3146
|
}[] | {
|
|
@@ -3051,6 +3148,8 @@ export declare const v4: Elysia<"/v4", {
|
|
|
3051
3148
|
computedUntil: bigint;
|
|
3052
3149
|
processingStarted: bigint;
|
|
3053
3150
|
status: import("@package/databases").RunStatus;
|
|
3151
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
3152
|
+
preComputeProcessingStarted: bigint;
|
|
3054
3153
|
error: string;
|
|
3055
3154
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
3056
3155
|
};
|
|
@@ -3081,18 +3180,22 @@ export declare const v4: Elysia<"/v4", {
|
|
|
3081
3180
|
200: {
|
|
3082
3181
|
status: {
|
|
3083
3182
|
status: import("@package/databases").RunStatus;
|
|
3183
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
3084
3184
|
error: string;
|
|
3085
3185
|
details: string | number | boolean | import("@prisma/client/runtime/client").JsonArray | import("@prisma/client/runtime/client").JsonObject;
|
|
3086
3186
|
delay: number;
|
|
3087
3187
|
computedUntil: number;
|
|
3088
3188
|
createdAt: number;
|
|
3089
3189
|
processingStarted: number;
|
|
3190
|
+
preComputeProcessingStarted: number;
|
|
3090
3191
|
};
|
|
3091
3192
|
CampaignStatus: {
|
|
3092
3193
|
campaignId: string;
|
|
3093
3194
|
computedUntil: bigint;
|
|
3094
3195
|
processingStarted: bigint;
|
|
3095
3196
|
status: import("@package/databases").RunStatus;
|
|
3197
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
3198
|
+
preComputeProcessingStarted: bigint;
|
|
3096
3199
|
error: string;
|
|
3097
3200
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
3098
3201
|
}[];
|
|
@@ -3150,18 +3253,22 @@ export declare const v4: Elysia<"/v4", {
|
|
|
3150
3253
|
delayed: {
|
|
3151
3254
|
status: {
|
|
3152
3255
|
status: import("@package/databases").RunStatus;
|
|
3256
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
3153
3257
|
error: string;
|
|
3154
3258
|
details: string | number | boolean | import("@prisma/client/runtime/client").JsonArray | import("@prisma/client/runtime/client").JsonObject;
|
|
3155
3259
|
delay: number;
|
|
3156
3260
|
computedUntil: number;
|
|
3157
3261
|
createdAt: number;
|
|
3158
3262
|
processingStarted: number;
|
|
3263
|
+
preComputeProcessingStarted: number;
|
|
3159
3264
|
};
|
|
3160
3265
|
CampaignStatus: {
|
|
3161
3266
|
campaignId: string;
|
|
3162
3267
|
computedUntil: bigint;
|
|
3163
3268
|
processingStarted: bigint;
|
|
3164
3269
|
status: import("@package/databases").RunStatus;
|
|
3270
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
3271
|
+
preComputeProcessingStarted: bigint;
|
|
3165
3272
|
error: string;
|
|
3166
3273
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
3167
3274
|
}[];
|
|
@@ -3305,6 +3412,8 @@ export declare const v4: Elysia<"/v4", {
|
|
|
3305
3412
|
computedUntil: bigint;
|
|
3306
3413
|
processingStarted: bigint;
|
|
3307
3414
|
status: import("@package/databases").RunStatus;
|
|
3415
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
3416
|
+
preComputeProcessingStarted: bigint;
|
|
3308
3417
|
error: string;
|
|
3309
3418
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
3310
3419
|
}[];
|
|
@@ -4111,6 +4220,8 @@ export declare const v4: Elysia<"/v4", {
|
|
|
4111
4220
|
computedUntil: bigint;
|
|
4112
4221
|
processingStarted: bigint;
|
|
4113
4222
|
status: import("@package/databases").RunStatus;
|
|
4223
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
4224
|
+
preComputeProcessingStarted: bigint;
|
|
4114
4225
|
error: string;
|
|
4115
4226
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
4116
4227
|
}[];
|
|
@@ -4359,6 +4470,8 @@ export declare const v4: Elysia<"/v4", {
|
|
|
4359
4470
|
computedUntil: bigint;
|
|
4360
4471
|
processingStarted: bigint;
|
|
4361
4472
|
status: import("@package/databases").RunStatus;
|
|
4473
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
4474
|
+
preComputeProcessingStarted: bigint;
|
|
4362
4475
|
error: string;
|
|
4363
4476
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
4364
4477
|
}[];
|
|
@@ -4606,6 +4719,8 @@ export declare const v4: Elysia<"/v4", {
|
|
|
4606
4719
|
computedUntil: bigint;
|
|
4607
4720
|
processingStarted: bigint;
|
|
4608
4721
|
status: import("@package/databases").RunStatus;
|
|
4722
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
4723
|
+
preComputeProcessingStarted: bigint;
|
|
4609
4724
|
error: string;
|
|
4610
4725
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
4611
4726
|
}[];
|
|
@@ -4781,6 +4896,8 @@ export declare const v4: Elysia<"/v4", {
|
|
|
4781
4896
|
}[];
|
|
4782
4897
|
CampaignStatus: {
|
|
4783
4898
|
computedUntil: bigint;
|
|
4899
|
+
preComputeProcessingStarted: bigint;
|
|
4900
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
4784
4901
|
processingStarted: bigint;
|
|
4785
4902
|
status: import("@package/databases").RunStatus;
|
|
4786
4903
|
}[];
|
|
@@ -4836,7 +4953,7 @@ export declare const v4: Elysia<"/v4", {
|
|
|
4836
4953
|
};
|
|
4837
4954
|
} & {
|
|
4838
4955
|
workflow: {
|
|
4839
|
-
|
|
4956
|
+
precompute: {
|
|
4840
4957
|
":chainId": {
|
|
4841
4958
|
get: {
|
|
4842
4959
|
body: unknown;
|
|
@@ -6739,6 +6856,8 @@ export declare const v4: Elysia<"/v4", {
|
|
|
6739
6856
|
computedUntil: bigint;
|
|
6740
6857
|
processingStarted: bigint;
|
|
6741
6858
|
status: import("@package/databases").RunStatus;
|
|
6859
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
6860
|
+
preComputeProcessingStarted: bigint;
|
|
6742
6861
|
error: string;
|
|
6743
6862
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
6744
6863
|
}[];
|
|
@@ -8442,6 +8561,8 @@ export declare const v4: Elysia<"/v4", {
|
|
|
8442
8561
|
computedUntil: string | number;
|
|
8443
8562
|
processingStarted: string | number;
|
|
8444
8563
|
status: string;
|
|
8564
|
+
preComputeProcessingStarted: string | number;
|
|
8565
|
+
preComputeStatus: string;
|
|
8445
8566
|
delay?: number | undefined;
|
|
8446
8567
|
error?: string | undefined;
|
|
8447
8568
|
details?: any;
|
|
@@ -8871,6 +8992,8 @@ export declare const v4: Elysia<"/v4", {
|
|
|
8871
8992
|
computedUntil: string | number;
|
|
8872
8993
|
processingStarted: string | number;
|
|
8873
8994
|
status: string;
|
|
8995
|
+
preComputeProcessingStarted: string | number;
|
|
8996
|
+
preComputeStatus: string;
|
|
8874
8997
|
delay?: number | undefined;
|
|
8875
8998
|
error?: string | undefined;
|
|
8876
8999
|
details?: any;
|
|
@@ -9157,6 +9280,8 @@ export declare const v4: Elysia<"/v4", {
|
|
|
9157
9280
|
computedUntil: string | number;
|
|
9158
9281
|
processingStarted: string | number;
|
|
9159
9282
|
status: string;
|
|
9283
|
+
preComputeProcessingStarted: string | number;
|
|
9284
|
+
preComputeStatus: string;
|
|
9160
9285
|
delay?: number | undefined;
|
|
9161
9286
|
error?: string | undefined;
|
|
9162
9287
|
details?: any;
|
|
@@ -9611,6 +9736,8 @@ export declare const v4: Elysia<"/v4", {
|
|
|
9611
9736
|
computedUntil: string | number;
|
|
9612
9737
|
processingStarted: string | number;
|
|
9613
9738
|
status: string;
|
|
9739
|
+
preComputeProcessingStarted: string | number;
|
|
9740
|
+
preComputeStatus: string;
|
|
9614
9741
|
delay?: number | undefined;
|
|
9615
9742
|
error?: string | undefined;
|
|
9616
9743
|
details?: any;
|
|
@@ -10246,6 +10373,8 @@ export declare const v4: Elysia<"/v4", {
|
|
|
10246
10373
|
computedUntil: bigint;
|
|
10247
10374
|
processingStarted: bigint;
|
|
10248
10375
|
status: import("@package/databases").RunStatus;
|
|
10376
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
10377
|
+
preComputeProcessingStarted: bigint;
|
|
10249
10378
|
error: string;
|
|
10250
10379
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
10251
10380
|
}[];
|
|
@@ -10604,6 +10733,8 @@ export declare const v4: Elysia<"/v4", {
|
|
|
10604
10733
|
computedUntil: bigint;
|
|
10605
10734
|
processingStarted: bigint;
|
|
10606
10735
|
status: import("@package/databases").RunStatus;
|
|
10736
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
10737
|
+
preComputeProcessingStarted: bigint;
|
|
10607
10738
|
error: string;
|
|
10608
10739
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
10609
10740
|
}[];
|
|
@@ -10924,6 +11055,8 @@ export declare const v4: Elysia<"/v4", {
|
|
|
10924
11055
|
computedUntil: bigint;
|
|
10925
11056
|
processingStarted: bigint;
|
|
10926
11057
|
status: import("@package/databases").RunStatus;
|
|
11058
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
11059
|
+
preComputeProcessingStarted: bigint;
|
|
10927
11060
|
error: string;
|
|
10928
11061
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
10929
11062
|
}[];
|
|
@@ -11196,6 +11329,8 @@ export declare const v4: Elysia<"/v4", {
|
|
|
11196
11329
|
computedUntil: bigint;
|
|
11197
11330
|
processingStarted: bigint;
|
|
11198
11331
|
status: import("@package/databases").RunStatus;
|
|
11332
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
11333
|
+
preComputeProcessingStarted: bigint;
|
|
11199
11334
|
error: string;
|
|
11200
11335
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
11201
11336
|
}[];
|
|
@@ -11464,6 +11599,8 @@ export declare const v4: Elysia<"/v4", {
|
|
|
11464
11599
|
computedUntil: bigint;
|
|
11465
11600
|
processingStarted: bigint;
|
|
11466
11601
|
status: import("@package/databases").RunStatus;
|
|
11602
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
11603
|
+
preComputeProcessingStarted: bigint;
|
|
11467
11604
|
error: string;
|
|
11468
11605
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
11469
11606
|
}[];
|
|
@@ -35772,6 +35909,8 @@ export declare const v4: Elysia<"/v4", {
|
|
|
35772
35909
|
computedUntil: number;
|
|
35773
35910
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
35774
35911
|
error: string;
|
|
35912
|
+
preComputeProcessingStarted: number;
|
|
35913
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
35775
35914
|
processingStarted: number;
|
|
35776
35915
|
status: import("@package/databases").RunStatus;
|
|
35777
35916
|
} & {
|
|
@@ -36101,6 +36240,8 @@ export declare const v4: Elysia<"/v4", {
|
|
|
36101
36240
|
computedUntil: number;
|
|
36102
36241
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
36103
36242
|
error: string;
|
|
36243
|
+
preComputeProcessingStarted: number;
|
|
36244
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
36104
36245
|
processingStarted: number;
|
|
36105
36246
|
status: import("@package/databases").RunStatus;
|
|
36106
36247
|
} & {
|
|
@@ -37198,6 +37339,8 @@ export declare const v4: Elysia<"/v4", {
|
|
|
37198
37339
|
computedUntil: string | number;
|
|
37199
37340
|
processingStarted: string | number;
|
|
37200
37341
|
status: string;
|
|
37342
|
+
preComputeProcessingStarted: string | number;
|
|
37343
|
+
preComputeStatus: string;
|
|
37201
37344
|
delay?: number | undefined;
|
|
37202
37345
|
error?: string | undefined;
|
|
37203
37346
|
details?: any;
|
|
@@ -37369,12 +37512,14 @@ export declare const v4: Elysia<"/v4", {
|
|
|
37369
37512
|
pending: string;
|
|
37370
37513
|
campaignStatus: {
|
|
37371
37514
|
status: import("@package/databases").RunStatus;
|
|
37515
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
37372
37516
|
error: string;
|
|
37373
37517
|
details: string | number | boolean | import("@prisma/client/runtime/client").JsonArray | import("@prisma/client/runtime/client").JsonObject;
|
|
37374
37518
|
delay: number;
|
|
37375
37519
|
computedUntil: number;
|
|
37376
37520
|
createdAt: number;
|
|
37377
37521
|
processingStarted: number;
|
|
37522
|
+
preComputeProcessingStarted: number;
|
|
37378
37523
|
} | undefined;
|
|
37379
37524
|
campaignId: string;
|
|
37380
37525
|
subCampaignId: string | undefined;
|
|
@@ -37492,12 +37637,14 @@ export declare const v4: Elysia<"/v4", {
|
|
|
37492
37637
|
pending: string;
|
|
37493
37638
|
campaignStatus: {
|
|
37494
37639
|
status: import("@package/databases").RunStatus;
|
|
37640
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
37495
37641
|
error: string;
|
|
37496
37642
|
details: string | number | boolean | import("@prisma/client/runtime/client").JsonArray | import("@prisma/client/runtime/client").JsonObject;
|
|
37497
37643
|
delay: number;
|
|
37498
37644
|
computedUntil: number;
|
|
37499
37645
|
createdAt: number;
|
|
37500
37646
|
processingStarted: number;
|
|
37647
|
+
preComputeProcessingStarted: number;
|
|
37501
37648
|
} | undefined;
|
|
37502
37649
|
campaignId: string;
|
|
37503
37650
|
subCampaignId: string | undefined;
|
|
@@ -37743,6 +37890,8 @@ export declare const v4: Elysia<"/v4", {
|
|
|
37743
37890
|
computedUntil: number;
|
|
37744
37891
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
37745
37892
|
error: string;
|
|
37893
|
+
preComputeProcessingStarted: number;
|
|
37894
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
37746
37895
|
processingStarted: number;
|
|
37747
37896
|
status: import("@package/databases").RunStatus;
|
|
37748
37897
|
} & {
|
|
@@ -213,6 +213,8 @@ export declare const UniswapController: Elysia<"uniswap", {
|
|
|
213
213
|
computedUntil: number;
|
|
214
214
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
215
215
|
error: string;
|
|
216
|
+
preComputeProcessingStarted: number;
|
|
217
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
216
218
|
processingStarted: number;
|
|
217
219
|
status: import("@package/databases").RunStatus;
|
|
218
220
|
} & {
|
|
@@ -542,6 +544,8 @@ export declare const UniswapController: Elysia<"uniswap", {
|
|
|
542
544
|
computedUntil: number;
|
|
543
545
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
544
546
|
error: string;
|
|
547
|
+
preComputeProcessingStarted: number;
|
|
548
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
545
549
|
processingStarted: number;
|
|
546
550
|
status: import("@package/databases").RunStatus;
|
|
547
551
|
} & {
|
|
@@ -185,6 +185,8 @@ export declare abstract class UniswapService {
|
|
|
185
185
|
computedUntil: number;
|
|
186
186
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
187
187
|
error: string;
|
|
188
|
+
preComputeProcessingStarted: number;
|
|
189
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
188
190
|
processingStarted: number;
|
|
189
191
|
status: import("@package/databases").RunStatus;
|
|
190
192
|
} & {
|