@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
package/dist/src/index.d.ts
CHANGED
|
@@ -1148,6 +1148,8 @@ declare const app: Elysia<"", {
|
|
|
1148
1148
|
computedUntil: string | number;
|
|
1149
1149
|
processingStarted: string | number;
|
|
1150
1150
|
status: string;
|
|
1151
|
+
preComputeProcessingStarted: string | number;
|
|
1152
|
+
preComputeStatus: string;
|
|
1151
1153
|
delay?: number | undefined;
|
|
1152
1154
|
error?: string | undefined;
|
|
1153
1155
|
details?: any;
|
|
@@ -1208,6 +1210,8 @@ declare const app: Elysia<"", {
|
|
|
1208
1210
|
computedUntil: string | number;
|
|
1209
1211
|
processingStarted: string | number;
|
|
1210
1212
|
status: string;
|
|
1213
|
+
preComputeProcessingStarted: string | number;
|
|
1214
|
+
preComputeStatus: string;
|
|
1211
1215
|
delay?: number | undefined;
|
|
1212
1216
|
error?: string | undefined;
|
|
1213
1217
|
details?: any;
|
|
@@ -1945,6 +1949,8 @@ declare const app: Elysia<"", {
|
|
|
1945
1949
|
}[];
|
|
1946
1950
|
CampaignStatus: {
|
|
1947
1951
|
computedUntil: bigint;
|
|
1952
|
+
preComputeProcessingStarted: bigint;
|
|
1953
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
1948
1954
|
processingStarted: bigint;
|
|
1949
1955
|
status: import("@package/databases").RunStatus;
|
|
1950
1956
|
}[];
|
|
@@ -2149,6 +2155,8 @@ declare const app: Elysia<"", {
|
|
|
2149
2155
|
computedUntil: string | number;
|
|
2150
2156
|
processingStarted: string | number;
|
|
2151
2157
|
status: string;
|
|
2158
|
+
preComputeProcessingStarted: string | number;
|
|
2159
|
+
preComputeStatus: string;
|
|
2152
2160
|
delay?: number | undefined;
|
|
2153
2161
|
error?: string | undefined;
|
|
2154
2162
|
details?: any;
|
|
@@ -2209,6 +2217,8 @@ declare const app: Elysia<"", {
|
|
|
2209
2217
|
computedUntil: string | number;
|
|
2210
2218
|
processingStarted: string | number;
|
|
2211
2219
|
status: string;
|
|
2220
|
+
preComputeProcessingStarted: string | number;
|
|
2221
|
+
preComputeStatus: string;
|
|
2212
2222
|
delay?: number | undefined;
|
|
2213
2223
|
error?: string | undefined;
|
|
2214
2224
|
details?: any;
|
|
@@ -3006,6 +3016,89 @@ declare const app: Elysia<"", {
|
|
|
3006
3016
|
};
|
|
3007
3017
|
};
|
|
3008
3018
|
};
|
|
3019
|
+
} & {
|
|
3020
|
+
engine: {
|
|
3021
|
+
precompute: {
|
|
3022
|
+
lock: {
|
|
3023
|
+
":campaignId": {
|
|
3024
|
+
put: {
|
|
3025
|
+
body: unknown;
|
|
3026
|
+
params: {
|
|
3027
|
+
campaignId: string;
|
|
3028
|
+
};
|
|
3029
|
+
query: unknown;
|
|
3030
|
+
headers: {
|
|
3031
|
+
authorization: string;
|
|
3032
|
+
};
|
|
3033
|
+
response: {
|
|
3034
|
+
200: {
|
|
3035
|
+
campaignId: string;
|
|
3036
|
+
computedUntil: bigint;
|
|
3037
|
+
processingStarted: bigint;
|
|
3038
|
+
status: import("@package/databases").RunStatus;
|
|
3039
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
3040
|
+
preComputeProcessingStarted: bigint;
|
|
3041
|
+
error: string;
|
|
3042
|
+
details: import("@prisma/client/runtime/client").JsonValue;
|
|
3043
|
+
};
|
|
3044
|
+
422: {
|
|
3045
|
+
type: "validation";
|
|
3046
|
+
on: string;
|
|
3047
|
+
summary?: string | undefined;
|
|
3048
|
+
message?: string | undefined;
|
|
3049
|
+
found?: unknown;
|
|
3050
|
+
property?: string | undefined;
|
|
3051
|
+
expected?: string | undefined;
|
|
3052
|
+
};
|
|
3053
|
+
};
|
|
3054
|
+
};
|
|
3055
|
+
};
|
|
3056
|
+
};
|
|
3057
|
+
};
|
|
3058
|
+
};
|
|
3059
|
+
} & {
|
|
3060
|
+
engine: {
|
|
3061
|
+
precompute: {
|
|
3062
|
+
unlock: {
|
|
3063
|
+
":campaignId": {
|
|
3064
|
+
":status": {
|
|
3065
|
+
put: {
|
|
3066
|
+
body: unknown;
|
|
3067
|
+
params: {
|
|
3068
|
+
campaignId: string;
|
|
3069
|
+
status: "failed" | "success";
|
|
3070
|
+
};
|
|
3071
|
+
query: unknown;
|
|
3072
|
+
headers: {
|
|
3073
|
+
authorization: string;
|
|
3074
|
+
};
|
|
3075
|
+
response: {
|
|
3076
|
+
200: {
|
|
3077
|
+
campaignId: string;
|
|
3078
|
+
computedUntil: bigint;
|
|
3079
|
+
processingStarted: bigint;
|
|
3080
|
+
status: import("@package/databases").RunStatus;
|
|
3081
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
3082
|
+
preComputeProcessingStarted: bigint;
|
|
3083
|
+
error: string;
|
|
3084
|
+
details: import("@prisma/client/runtime/client").JsonValue;
|
|
3085
|
+
};
|
|
3086
|
+
422: {
|
|
3087
|
+
type: "validation";
|
|
3088
|
+
on: string;
|
|
3089
|
+
summary?: string | undefined;
|
|
3090
|
+
message?: string | undefined;
|
|
3091
|
+
found?: unknown;
|
|
3092
|
+
property?: string | undefined;
|
|
3093
|
+
expected?: string | undefined;
|
|
3094
|
+
};
|
|
3095
|
+
};
|
|
3096
|
+
};
|
|
3097
|
+
};
|
|
3098
|
+
};
|
|
3099
|
+
};
|
|
3100
|
+
};
|
|
3101
|
+
};
|
|
3009
3102
|
} & {
|
|
3010
3103
|
get: {
|
|
3011
3104
|
body: unknown;
|
|
@@ -3018,12 +3111,14 @@ declare const app: Elysia<"", {
|
|
|
3018
3111
|
response: {
|
|
3019
3112
|
200: {
|
|
3020
3113
|
status: import("@package/databases").RunStatus;
|
|
3114
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
3021
3115
|
error: string;
|
|
3022
3116
|
details: string | number | boolean | import("@prisma/client/runtime/client").JsonArray | import("@prisma/client/runtime/client").JsonObject;
|
|
3023
3117
|
delay: number;
|
|
3024
3118
|
computedUntil: number;
|
|
3025
3119
|
createdAt: number;
|
|
3026
3120
|
processingStarted: number;
|
|
3121
|
+
preComputeProcessingStarted: number;
|
|
3027
3122
|
}[];
|
|
3028
3123
|
422: {
|
|
3029
3124
|
type: "validation";
|
|
@@ -3051,6 +3146,8 @@ declare const app: Elysia<"", {
|
|
|
3051
3146
|
computedUntil: bigint;
|
|
3052
3147
|
processingStarted: bigint;
|
|
3053
3148
|
status: import("@package/databases").RunStatus;
|
|
3149
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
3150
|
+
preComputeProcessingStarted: bigint;
|
|
3054
3151
|
error: string;
|
|
3055
3152
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
3056
3153
|
}[] | {
|
|
@@ -3058,6 +3155,8 @@ declare const app: Elysia<"", {
|
|
|
3058
3155
|
computedUntil: bigint;
|
|
3059
3156
|
processingStarted: bigint;
|
|
3060
3157
|
status: import("@package/databases").RunStatus;
|
|
3158
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
3159
|
+
preComputeProcessingStarted: bigint;
|
|
3061
3160
|
error: string;
|
|
3062
3161
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
3063
3162
|
};
|
|
@@ -3088,18 +3187,22 @@ declare const app: Elysia<"", {
|
|
|
3088
3187
|
200: {
|
|
3089
3188
|
status: {
|
|
3090
3189
|
status: import("@package/databases").RunStatus;
|
|
3190
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
3091
3191
|
error: string;
|
|
3092
3192
|
details: string | number | boolean | import("@prisma/client/runtime/client").JsonArray | import("@prisma/client/runtime/client").JsonObject;
|
|
3093
3193
|
delay: number;
|
|
3094
3194
|
computedUntil: number;
|
|
3095
3195
|
createdAt: number;
|
|
3096
3196
|
processingStarted: number;
|
|
3197
|
+
preComputeProcessingStarted: number;
|
|
3097
3198
|
};
|
|
3098
3199
|
CampaignStatus: {
|
|
3099
3200
|
campaignId: string;
|
|
3100
3201
|
computedUntil: bigint;
|
|
3101
3202
|
processingStarted: bigint;
|
|
3102
3203
|
status: import("@package/databases").RunStatus;
|
|
3204
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
3205
|
+
preComputeProcessingStarted: bigint;
|
|
3103
3206
|
error: string;
|
|
3104
3207
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
3105
3208
|
}[];
|
|
@@ -3157,18 +3260,22 @@ declare const app: Elysia<"", {
|
|
|
3157
3260
|
delayed: {
|
|
3158
3261
|
status: {
|
|
3159
3262
|
status: import("@package/databases").RunStatus;
|
|
3263
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
3160
3264
|
error: string;
|
|
3161
3265
|
details: string | number | boolean | import("@prisma/client/runtime/client").JsonArray | import("@prisma/client/runtime/client").JsonObject;
|
|
3162
3266
|
delay: number;
|
|
3163
3267
|
computedUntil: number;
|
|
3164
3268
|
createdAt: number;
|
|
3165
3269
|
processingStarted: number;
|
|
3270
|
+
preComputeProcessingStarted: number;
|
|
3166
3271
|
};
|
|
3167
3272
|
CampaignStatus: {
|
|
3168
3273
|
campaignId: string;
|
|
3169
3274
|
computedUntil: bigint;
|
|
3170
3275
|
processingStarted: bigint;
|
|
3171
3276
|
status: import("@package/databases").RunStatus;
|
|
3277
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
3278
|
+
preComputeProcessingStarted: bigint;
|
|
3172
3279
|
error: string;
|
|
3173
3280
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
3174
3281
|
}[];
|
|
@@ -3312,6 +3419,8 @@ declare const app: Elysia<"", {
|
|
|
3312
3419
|
computedUntil: bigint;
|
|
3313
3420
|
processingStarted: bigint;
|
|
3314
3421
|
status: import("@package/databases").RunStatus;
|
|
3422
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
3423
|
+
preComputeProcessingStarted: bigint;
|
|
3315
3424
|
error: string;
|
|
3316
3425
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
3317
3426
|
}[];
|
|
@@ -4118,6 +4227,8 @@ declare const app: Elysia<"", {
|
|
|
4118
4227
|
computedUntil: bigint;
|
|
4119
4228
|
processingStarted: bigint;
|
|
4120
4229
|
status: import("@package/databases").RunStatus;
|
|
4230
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
4231
|
+
preComputeProcessingStarted: bigint;
|
|
4121
4232
|
error: string;
|
|
4122
4233
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
4123
4234
|
}[];
|
|
@@ -4366,6 +4477,8 @@ declare const app: Elysia<"", {
|
|
|
4366
4477
|
computedUntil: bigint;
|
|
4367
4478
|
processingStarted: bigint;
|
|
4368
4479
|
status: import("@package/databases").RunStatus;
|
|
4480
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
4481
|
+
preComputeProcessingStarted: bigint;
|
|
4369
4482
|
error: string;
|
|
4370
4483
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
4371
4484
|
}[];
|
|
@@ -4613,6 +4726,8 @@ declare const app: Elysia<"", {
|
|
|
4613
4726
|
computedUntil: bigint;
|
|
4614
4727
|
processingStarted: bigint;
|
|
4615
4728
|
status: import("@package/databases").RunStatus;
|
|
4729
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
4730
|
+
preComputeProcessingStarted: bigint;
|
|
4616
4731
|
error: string;
|
|
4617
4732
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
4618
4733
|
}[];
|
|
@@ -4788,6 +4903,8 @@ declare const app: Elysia<"", {
|
|
|
4788
4903
|
}[];
|
|
4789
4904
|
CampaignStatus: {
|
|
4790
4905
|
computedUntil: bigint;
|
|
4906
|
+
preComputeProcessingStarted: bigint;
|
|
4907
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
4791
4908
|
processingStarted: bigint;
|
|
4792
4909
|
status: import("@package/databases").RunStatus;
|
|
4793
4910
|
}[];
|
|
@@ -4843,7 +4960,7 @@ declare const app: Elysia<"", {
|
|
|
4843
4960
|
};
|
|
4844
4961
|
} & {
|
|
4845
4962
|
workflow: {
|
|
4846
|
-
|
|
4963
|
+
precompute: {
|
|
4847
4964
|
":chainId": {
|
|
4848
4965
|
get: {
|
|
4849
4966
|
body: unknown;
|
|
@@ -6746,6 +6863,8 @@ declare const app: Elysia<"", {
|
|
|
6746
6863
|
computedUntil: bigint;
|
|
6747
6864
|
processingStarted: bigint;
|
|
6748
6865
|
status: import("@package/databases").RunStatus;
|
|
6866
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
6867
|
+
preComputeProcessingStarted: bigint;
|
|
6749
6868
|
error: string;
|
|
6750
6869
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
6751
6870
|
}[];
|
|
@@ -8449,6 +8568,8 @@ declare const app: Elysia<"", {
|
|
|
8449
8568
|
computedUntil: string | number;
|
|
8450
8569
|
processingStarted: string | number;
|
|
8451
8570
|
status: string;
|
|
8571
|
+
preComputeProcessingStarted: string | number;
|
|
8572
|
+
preComputeStatus: string;
|
|
8452
8573
|
delay?: number | undefined;
|
|
8453
8574
|
error?: string | undefined;
|
|
8454
8575
|
details?: any;
|
|
@@ -8878,6 +8999,8 @@ declare const app: Elysia<"", {
|
|
|
8878
8999
|
computedUntil: string | number;
|
|
8879
9000
|
processingStarted: string | number;
|
|
8880
9001
|
status: string;
|
|
9002
|
+
preComputeProcessingStarted: string | number;
|
|
9003
|
+
preComputeStatus: string;
|
|
8881
9004
|
delay?: number | undefined;
|
|
8882
9005
|
error?: string | undefined;
|
|
8883
9006
|
details?: any;
|
|
@@ -9164,6 +9287,8 @@ declare const app: Elysia<"", {
|
|
|
9164
9287
|
computedUntil: string | number;
|
|
9165
9288
|
processingStarted: string | number;
|
|
9166
9289
|
status: string;
|
|
9290
|
+
preComputeProcessingStarted: string | number;
|
|
9291
|
+
preComputeStatus: string;
|
|
9167
9292
|
delay?: number | undefined;
|
|
9168
9293
|
error?: string | undefined;
|
|
9169
9294
|
details?: any;
|
|
@@ -9618,6 +9743,8 @@ declare const app: Elysia<"", {
|
|
|
9618
9743
|
computedUntil: string | number;
|
|
9619
9744
|
processingStarted: string | number;
|
|
9620
9745
|
status: string;
|
|
9746
|
+
preComputeProcessingStarted: string | number;
|
|
9747
|
+
preComputeStatus: string;
|
|
9621
9748
|
delay?: number | undefined;
|
|
9622
9749
|
error?: string | undefined;
|
|
9623
9750
|
details?: any;
|
|
@@ -10253,6 +10380,8 @@ declare const app: Elysia<"", {
|
|
|
10253
10380
|
computedUntil: bigint;
|
|
10254
10381
|
processingStarted: bigint;
|
|
10255
10382
|
status: import("@package/databases").RunStatus;
|
|
10383
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
10384
|
+
preComputeProcessingStarted: bigint;
|
|
10256
10385
|
error: string;
|
|
10257
10386
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
10258
10387
|
}[];
|
|
@@ -10611,6 +10740,8 @@ declare const app: Elysia<"", {
|
|
|
10611
10740
|
computedUntil: bigint;
|
|
10612
10741
|
processingStarted: bigint;
|
|
10613
10742
|
status: import("@package/databases").RunStatus;
|
|
10743
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
10744
|
+
preComputeProcessingStarted: bigint;
|
|
10614
10745
|
error: string;
|
|
10615
10746
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
10616
10747
|
}[];
|
|
@@ -10931,6 +11062,8 @@ declare const app: Elysia<"", {
|
|
|
10931
11062
|
computedUntil: bigint;
|
|
10932
11063
|
processingStarted: bigint;
|
|
10933
11064
|
status: import("@package/databases").RunStatus;
|
|
11065
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
11066
|
+
preComputeProcessingStarted: bigint;
|
|
10934
11067
|
error: string;
|
|
10935
11068
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
10936
11069
|
}[];
|
|
@@ -11203,6 +11336,8 @@ declare const app: Elysia<"", {
|
|
|
11203
11336
|
computedUntil: bigint;
|
|
11204
11337
|
processingStarted: bigint;
|
|
11205
11338
|
status: import("@package/databases").RunStatus;
|
|
11339
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
11340
|
+
preComputeProcessingStarted: bigint;
|
|
11206
11341
|
error: string;
|
|
11207
11342
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
11208
11343
|
}[];
|
|
@@ -11471,6 +11606,8 @@ declare const app: Elysia<"", {
|
|
|
11471
11606
|
computedUntil: bigint;
|
|
11472
11607
|
processingStarted: bigint;
|
|
11473
11608
|
status: import("@package/databases").RunStatus;
|
|
11609
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
11610
|
+
preComputeProcessingStarted: bigint;
|
|
11474
11611
|
error: string;
|
|
11475
11612
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
11476
11613
|
}[];
|
|
@@ -35779,6 +35916,8 @@ declare const app: Elysia<"", {
|
|
|
35779
35916
|
computedUntil: number;
|
|
35780
35917
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
35781
35918
|
error: string;
|
|
35919
|
+
preComputeProcessingStarted: number;
|
|
35920
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
35782
35921
|
processingStarted: number;
|
|
35783
35922
|
status: import("@package/databases").RunStatus;
|
|
35784
35923
|
} & {
|
|
@@ -36108,6 +36247,8 @@ declare const app: Elysia<"", {
|
|
|
36108
36247
|
computedUntil: number;
|
|
36109
36248
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
36110
36249
|
error: string;
|
|
36250
|
+
preComputeProcessingStarted: number;
|
|
36251
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
36111
36252
|
processingStarted: number;
|
|
36112
36253
|
status: import("@package/databases").RunStatus;
|
|
36113
36254
|
} & {
|
|
@@ -37205,6 +37346,8 @@ declare const app: Elysia<"", {
|
|
|
37205
37346
|
computedUntil: string | number;
|
|
37206
37347
|
processingStarted: string | number;
|
|
37207
37348
|
status: string;
|
|
37349
|
+
preComputeProcessingStarted: string | number;
|
|
37350
|
+
preComputeStatus: string;
|
|
37208
37351
|
delay?: number | undefined;
|
|
37209
37352
|
error?: string | undefined;
|
|
37210
37353
|
details?: any;
|
|
@@ -37376,12 +37519,14 @@ declare const app: Elysia<"", {
|
|
|
37376
37519
|
pending: string;
|
|
37377
37520
|
campaignStatus: {
|
|
37378
37521
|
status: import("@package/databases").RunStatus;
|
|
37522
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
37379
37523
|
error: string;
|
|
37380
37524
|
details: string | number | boolean | import("@prisma/client/runtime/client").JsonArray | import("@prisma/client/runtime/client").JsonObject;
|
|
37381
37525
|
delay: number;
|
|
37382
37526
|
computedUntil: number;
|
|
37383
37527
|
createdAt: number;
|
|
37384
37528
|
processingStarted: number;
|
|
37529
|
+
preComputeProcessingStarted: number;
|
|
37385
37530
|
} | undefined;
|
|
37386
37531
|
campaignId: string;
|
|
37387
37532
|
subCampaignId: string | undefined;
|
|
@@ -37499,12 +37644,14 @@ declare const app: Elysia<"", {
|
|
|
37499
37644
|
pending: string;
|
|
37500
37645
|
campaignStatus: {
|
|
37501
37646
|
status: import("@package/databases").RunStatus;
|
|
37647
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
37502
37648
|
error: string;
|
|
37503
37649
|
details: string | number | boolean | import("@prisma/client/runtime/client").JsonArray | import("@prisma/client/runtime/client").JsonObject;
|
|
37504
37650
|
delay: number;
|
|
37505
37651
|
computedUntil: number;
|
|
37506
37652
|
createdAt: number;
|
|
37507
37653
|
processingStarted: number;
|
|
37654
|
+
preComputeProcessingStarted: number;
|
|
37508
37655
|
} | undefined;
|
|
37509
37656
|
campaignId: string;
|
|
37510
37657
|
subCampaignId: string | undefined;
|
|
@@ -37750,6 +37897,8 @@ declare const app: Elysia<"", {
|
|
|
37750
37897
|
computedUntil: number;
|
|
37751
37898
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
37752
37899
|
error: string;
|
|
37900
|
+
preComputeProcessingStarted: number;
|
|
37901
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
37753
37902
|
processingStarted: number;
|
|
37754
37903
|
status: import("@package/databases").RunStatus;
|
|
37755
37904
|
} & {
|
|
@@ -198,6 +198,8 @@ export declare const CampaignController: Elysia<"/campaigns", {
|
|
|
198
198
|
computedUntil: string | number;
|
|
199
199
|
processingStarted: string | number;
|
|
200
200
|
status: string;
|
|
201
|
+
preComputeProcessingStarted: string | number;
|
|
202
|
+
preComputeStatus: string;
|
|
201
203
|
delay?: number | undefined;
|
|
202
204
|
error?: string | undefined;
|
|
203
205
|
details?: any;
|
|
@@ -258,6 +260,8 @@ export declare const CampaignController: Elysia<"/campaigns", {
|
|
|
258
260
|
computedUntil: string | number;
|
|
259
261
|
processingStarted: string | number;
|
|
260
262
|
status: string;
|
|
263
|
+
preComputeProcessingStarted: string | number;
|
|
264
|
+
preComputeStatus: string;
|
|
261
265
|
delay?: number | undefined;
|
|
262
266
|
error?: string | undefined;
|
|
263
267
|
details?: any;
|
|
@@ -995,6 +999,8 @@ export declare const CampaignController: Elysia<"/campaigns", {
|
|
|
995
999
|
}[];
|
|
996
1000
|
CampaignStatus: {
|
|
997
1001
|
computedUntil: bigint;
|
|
1002
|
+
preComputeProcessingStarted: bigint;
|
|
1003
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
998
1004
|
processingStarted: bigint;
|
|
999
1005
|
status: import("@package/databases").RunStatus;
|
|
1000
1006
|
}[];
|
|
@@ -1199,6 +1205,8 @@ export declare const CampaignController: Elysia<"/campaigns", {
|
|
|
1199
1205
|
computedUntil: string | number;
|
|
1200
1206
|
processingStarted: string | number;
|
|
1201
1207
|
status: string;
|
|
1208
|
+
preComputeProcessingStarted: string | number;
|
|
1209
|
+
preComputeStatus: string;
|
|
1202
1210
|
delay?: number | undefined;
|
|
1203
1211
|
error?: string | undefined;
|
|
1204
1212
|
details?: any;
|
|
@@ -1259,6 +1267,8 @@ export declare const CampaignController: Elysia<"/campaigns", {
|
|
|
1259
1267
|
computedUntil: string | number;
|
|
1260
1268
|
processingStarted: string | number;
|
|
1261
1269
|
status: string;
|
|
1270
|
+
preComputeProcessingStarted: string | number;
|
|
1271
|
+
preComputeStatus: string;
|
|
1262
1272
|
delay?: number | undefined;
|
|
1263
1273
|
error?: string | undefined;
|
|
1264
1274
|
details?: any;
|
|
@@ -129,6 +129,8 @@ export declare const CampaignResourceDto: import("@sinclair/typebox").TObject<{
|
|
|
129
129
|
computedUntil: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNumber]>;
|
|
130
130
|
processingStarted: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNumber]>;
|
|
131
131
|
status: import("@sinclair/typebox").TString;
|
|
132
|
+
preComputeProcessingStarted: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNumber]>;
|
|
133
|
+
preComputeStatus: import("@sinclair/typebox").TString;
|
|
132
134
|
delay: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
133
135
|
error: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
134
136
|
details: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TAny>;
|
|
@@ -1360,6 +1360,8 @@ export declare abstract class CampaignRepository {
|
|
|
1360
1360
|
computedUntil: bigint;
|
|
1361
1361
|
processingStarted: bigint;
|
|
1362
1362
|
status: import("@package/databases").RunStatus;
|
|
1363
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
1364
|
+
preComputeProcessingStarted: bigint;
|
|
1363
1365
|
error: string;
|
|
1364
1366
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
1365
1367
|
}[];
|
|
@@ -1465,6 +1467,8 @@ export declare abstract class CampaignRepository {
|
|
|
1465
1467
|
computedUntil: bigint;
|
|
1466
1468
|
processingStarted: bigint;
|
|
1467
1469
|
status: import("@package/databases").RunStatus;
|
|
1470
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
1471
|
+
preComputeProcessingStarted: bigint;
|
|
1468
1472
|
error: string;
|
|
1469
1473
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
1470
1474
|
}[];
|
|
@@ -1570,6 +1574,8 @@ export declare abstract class CampaignRepository {
|
|
|
1570
1574
|
computedUntil: bigint;
|
|
1571
1575
|
processingStarted: bigint;
|
|
1572
1576
|
status: import("@package/databases").RunStatus;
|
|
1577
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
1578
|
+
preComputeProcessingStarted: bigint;
|
|
1573
1579
|
error: string;
|
|
1574
1580
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
1575
1581
|
}[];
|
|
@@ -1675,6 +1681,8 @@ export declare abstract class CampaignRepository {
|
|
|
1675
1681
|
computedUntil: bigint;
|
|
1676
1682
|
processingStarted: bigint;
|
|
1677
1683
|
status: import("@package/databases").RunStatus;
|
|
1684
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
1685
|
+
preComputeProcessingStarted: bigint;
|
|
1678
1686
|
error: string;
|
|
1679
1687
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
1680
1688
|
}[];
|
|
@@ -1784,6 +1792,8 @@ export declare abstract class CampaignRepository {
|
|
|
1784
1792
|
computedUntil: bigint;
|
|
1785
1793
|
processingStarted: bigint;
|
|
1786
1794
|
status: import("@package/databases").RunStatus;
|
|
1795
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
1796
|
+
preComputeProcessingStarted: bigint;
|
|
1787
1797
|
error: string;
|
|
1788
1798
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
1789
1799
|
}[];
|
|
@@ -1889,6 +1899,8 @@ export declare abstract class CampaignRepository {
|
|
|
1889
1899
|
computedUntil: bigint;
|
|
1890
1900
|
processingStarted: bigint;
|
|
1891
1901
|
status: import("@package/databases").RunStatus;
|
|
1902
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
1903
|
+
preComputeProcessingStarted: bigint;
|
|
1892
1904
|
error: string;
|
|
1893
1905
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
1894
1906
|
}[];
|
|
@@ -747,6 +747,8 @@ export declare abstract class CampaignService {
|
|
|
747
747
|
computedUntil: bigint;
|
|
748
748
|
processingStarted: bigint;
|
|
749
749
|
status: RunStatus;
|
|
750
|
+
preComputeStatus: RunStatus;
|
|
751
|
+
preComputeProcessingStarted: bigint;
|
|
750
752
|
error: string;
|
|
751
753
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
752
754
|
}[];
|