@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/eden/index.d.ts
CHANGED
|
@@ -1691,6 +1691,8 @@ declare const eden: {
|
|
|
1691
1691
|
computedUntil: bigint;
|
|
1692
1692
|
processingStarted: bigint;
|
|
1693
1693
|
status: import("@package/databases").RunStatus;
|
|
1694
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
1695
|
+
preComputeProcessingStarted: bigint;
|
|
1694
1696
|
error: string;
|
|
1695
1697
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
1696
1698
|
}[] | {
|
|
@@ -1698,6 +1700,8 @@ declare const eden: {
|
|
|
1698
1700
|
computedUntil: bigint;
|
|
1699
1701
|
processingStarted: bigint;
|
|
1700
1702
|
status: import("@package/databases").RunStatus;
|
|
1703
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
1704
|
+
preComputeProcessingStarted: bigint;
|
|
1701
1705
|
error: string;
|
|
1702
1706
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
1703
1707
|
};
|
|
@@ -1722,12 +1726,14 @@ declare const eden: {
|
|
|
1722
1726
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
|
1723
1727
|
200: {
|
|
1724
1728
|
status: import("@package/databases").RunStatus;
|
|
1729
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
1725
1730
|
error: string;
|
|
1726
1731
|
details: string | number | boolean | import("@prisma/client/runtime/client").JsonArray | import("@prisma/client/runtime/client").JsonObject;
|
|
1727
1732
|
delay: number;
|
|
1728
1733
|
computedUntil: number;
|
|
1729
1734
|
createdAt: number;
|
|
1730
1735
|
processingStarted: number;
|
|
1736
|
+
preComputeProcessingStarted: number;
|
|
1731
1737
|
}[];
|
|
1732
1738
|
422: {
|
|
1733
1739
|
type: "validation";
|
|
@@ -1752,18 +1758,22 @@ declare const eden: {
|
|
|
1752
1758
|
200: {
|
|
1753
1759
|
status: {
|
|
1754
1760
|
status: import("@package/databases").RunStatus;
|
|
1761
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
1755
1762
|
error: string;
|
|
1756
1763
|
details: string | number | boolean | import("@prisma/client/runtime/client").JsonArray | import("@prisma/client/runtime/client").JsonObject;
|
|
1757
1764
|
delay: number;
|
|
1758
1765
|
computedUntil: number;
|
|
1759
1766
|
createdAt: number;
|
|
1760
1767
|
processingStarted: number;
|
|
1768
|
+
preComputeProcessingStarted: number;
|
|
1761
1769
|
};
|
|
1762
1770
|
CampaignStatus: {
|
|
1763
1771
|
campaignId: string;
|
|
1764
1772
|
computedUntil: bigint;
|
|
1765
1773
|
processingStarted: bigint;
|
|
1766
1774
|
status: import("@package/databases").RunStatus;
|
|
1775
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
1776
|
+
preComputeProcessingStarted: bigint;
|
|
1767
1777
|
error: string;
|
|
1768
1778
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
1769
1779
|
}[];
|
|
@@ -1816,18 +1826,22 @@ declare const eden: {
|
|
|
1816
1826
|
delayed: {
|
|
1817
1827
|
status: {
|
|
1818
1828
|
status: import("@package/databases").RunStatus;
|
|
1829
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
1819
1830
|
error: string;
|
|
1820
1831
|
details: string | number | boolean | import("@prisma/client/runtime/client").JsonArray | import("@prisma/client/runtime/client").JsonObject;
|
|
1821
1832
|
delay: number;
|
|
1822
1833
|
computedUntil: number;
|
|
1823
1834
|
createdAt: number;
|
|
1824
1835
|
processingStarted: number;
|
|
1836
|
+
preComputeProcessingStarted: number;
|
|
1825
1837
|
};
|
|
1826
1838
|
CampaignStatus: {
|
|
1827
1839
|
campaignId: string;
|
|
1828
1840
|
computedUntil: bigint;
|
|
1829
1841
|
processingStarted: bigint;
|
|
1830
1842
|
status: import("@package/databases").RunStatus;
|
|
1843
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
1844
|
+
preComputeProcessingStarted: bigint;
|
|
1831
1845
|
error: string;
|
|
1832
1846
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
1833
1847
|
}[];
|
|
@@ -1942,6 +1956,72 @@ declare const eden: {
|
|
|
1942
1956
|
};
|
|
1943
1957
|
}>>;
|
|
1944
1958
|
};
|
|
1959
|
+
precompute: {
|
|
1960
|
+
lock: ((params: {
|
|
1961
|
+
campaignId: string | number;
|
|
1962
|
+
}) => {
|
|
1963
|
+
put: (body: unknown, options: {
|
|
1964
|
+
fetch?: RequestInit | undefined;
|
|
1965
|
+
headers: {
|
|
1966
|
+
authorization: string;
|
|
1967
|
+
};
|
|
1968
|
+
query?: Record<string, unknown> | undefined;
|
|
1969
|
+
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
|
1970
|
+
200: {
|
|
1971
|
+
campaignId: string;
|
|
1972
|
+
computedUntil: bigint;
|
|
1973
|
+
processingStarted: bigint;
|
|
1974
|
+
status: import("@package/databases").RunStatus;
|
|
1975
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
1976
|
+
preComputeProcessingStarted: bigint;
|
|
1977
|
+
error: string;
|
|
1978
|
+
details: import("@prisma/client/runtime/client").JsonValue;
|
|
1979
|
+
};
|
|
1980
|
+
422: {
|
|
1981
|
+
type: "validation";
|
|
1982
|
+
on: string;
|
|
1983
|
+
summary?: string | undefined;
|
|
1984
|
+
message?: string | undefined;
|
|
1985
|
+
found?: unknown;
|
|
1986
|
+
property?: string | undefined;
|
|
1987
|
+
expected?: string | undefined;
|
|
1988
|
+
};
|
|
1989
|
+
}>>;
|
|
1990
|
+
}) & {};
|
|
1991
|
+
unlock: ((params: {
|
|
1992
|
+
campaignId: string | number;
|
|
1993
|
+
}) => {} & ((params: {
|
|
1994
|
+
status: string | number;
|
|
1995
|
+
}) => {
|
|
1996
|
+
put: (body: unknown, options: {
|
|
1997
|
+
fetch?: RequestInit | undefined;
|
|
1998
|
+
headers: {
|
|
1999
|
+
authorization: string;
|
|
2000
|
+
};
|
|
2001
|
+
query?: Record<string, unknown> | undefined;
|
|
2002
|
+
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
|
2003
|
+
200: {
|
|
2004
|
+
campaignId: string;
|
|
2005
|
+
computedUntil: bigint;
|
|
2006
|
+
processingStarted: bigint;
|
|
2007
|
+
status: import("@package/databases").RunStatus;
|
|
2008
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
2009
|
+
preComputeProcessingStarted: bigint;
|
|
2010
|
+
error: string;
|
|
2011
|
+
details: import("@prisma/client/runtime/client").JsonValue;
|
|
2012
|
+
};
|
|
2013
|
+
422: {
|
|
2014
|
+
type: "validation";
|
|
2015
|
+
on: string;
|
|
2016
|
+
summary?: string | undefined;
|
|
2017
|
+
message?: string | undefined;
|
|
2018
|
+
found?: unknown;
|
|
2019
|
+
property?: string | undefined;
|
|
2020
|
+
expected?: string | undefined;
|
|
2021
|
+
};
|
|
2022
|
+
}>>;
|
|
2023
|
+
})) & {};
|
|
2024
|
+
};
|
|
1945
2025
|
};
|
|
1946
2026
|
error: ((params: {
|
|
1947
2027
|
campaignId: string | number;
|
|
@@ -2060,6 +2140,8 @@ declare const eden: {
|
|
|
2060
2140
|
computedUntil: string | number;
|
|
2061
2141
|
processingStarted: string | number;
|
|
2062
2142
|
status: string;
|
|
2143
|
+
preComputeProcessingStarted: string | number;
|
|
2144
|
+
preComputeStatus: string;
|
|
2063
2145
|
delay?: number | undefined;
|
|
2064
2146
|
error?: string | undefined;
|
|
2065
2147
|
details?: any;
|
|
@@ -2120,6 +2202,8 @@ declare const eden: {
|
|
|
2120
2202
|
computedUntil: string | number;
|
|
2121
2203
|
processingStarted: string | number;
|
|
2122
2204
|
status: string;
|
|
2205
|
+
preComputeProcessingStarted: string | number;
|
|
2206
|
+
preComputeStatus: string;
|
|
2123
2207
|
delay?: number | undefined;
|
|
2124
2208
|
error?: string | undefined;
|
|
2125
2209
|
details?: any;
|
|
@@ -2925,6 +3009,8 @@ declare const eden: {
|
|
|
2925
3009
|
computedUntil: string | number;
|
|
2926
3010
|
processingStarted: string | number;
|
|
2927
3011
|
status: string;
|
|
3012
|
+
preComputeProcessingStarted: string | number;
|
|
3013
|
+
preComputeStatus: string;
|
|
2928
3014
|
delay?: number | undefined;
|
|
2929
3015
|
error?: string | undefined;
|
|
2930
3016
|
details?: any;
|
|
@@ -2985,6 +3071,8 @@ declare const eden: {
|
|
|
2985
3071
|
computedUntil: string | number;
|
|
2986
3072
|
processingStarted: string | number;
|
|
2987
3073
|
status: string;
|
|
3074
|
+
preComputeProcessingStarted: string | number;
|
|
3075
|
+
preComputeStatus: string;
|
|
2988
3076
|
delay?: number | undefined;
|
|
2989
3077
|
error?: string | undefined;
|
|
2990
3078
|
details?: any;
|
|
@@ -3102,6 +3190,8 @@ declare const eden: {
|
|
|
3102
3190
|
}[];
|
|
3103
3191
|
CampaignStatus: {
|
|
3104
3192
|
computedUntil: bigint;
|
|
3193
|
+
preComputeProcessingStarted: bigint;
|
|
3194
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
3105
3195
|
processingStarted: bigint;
|
|
3106
3196
|
status: import("@package/databases").RunStatus;
|
|
3107
3197
|
}[];
|
|
@@ -3527,6 +3617,8 @@ declare const eden: {
|
|
|
3527
3617
|
computedUntil: bigint;
|
|
3528
3618
|
processingStarted: bigint;
|
|
3529
3619
|
status: import("@package/databases").RunStatus;
|
|
3620
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
3621
|
+
preComputeProcessingStarted: bigint;
|
|
3530
3622
|
error: string;
|
|
3531
3623
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
3532
3624
|
}[];
|
|
@@ -3768,6 +3860,8 @@ declare const eden: {
|
|
|
3768
3860
|
computedUntil: bigint;
|
|
3769
3861
|
processingStarted: bigint;
|
|
3770
3862
|
status: import("@package/databases").RunStatus;
|
|
3863
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
3864
|
+
preComputeProcessingStarted: bigint;
|
|
3771
3865
|
error: string;
|
|
3772
3866
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
3773
3867
|
}[];
|
|
@@ -4008,6 +4102,8 @@ declare const eden: {
|
|
|
4008
4102
|
computedUntil: bigint;
|
|
4009
4103
|
processingStarted: bigint;
|
|
4010
4104
|
status: import("@package/databases").RunStatus;
|
|
4105
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
4106
|
+
preComputeProcessingStarted: bigint;
|
|
4011
4107
|
error: string;
|
|
4012
4108
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
4013
4109
|
}[];
|
|
@@ -4248,6 +4344,8 @@ declare const eden: {
|
|
|
4248
4344
|
computedUntil: bigint;
|
|
4249
4345
|
processingStarted: bigint;
|
|
4250
4346
|
status: import("@package/databases").RunStatus;
|
|
4347
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
4348
|
+
preComputeProcessingStarted: bigint;
|
|
4251
4349
|
error: string;
|
|
4252
4350
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
4253
4351
|
}[];
|
|
@@ -5306,6 +5404,8 @@ declare const eden: {
|
|
|
5306
5404
|
}[];
|
|
5307
5405
|
CampaignStatus: {
|
|
5308
5406
|
computedUntil: bigint;
|
|
5407
|
+
preComputeProcessingStarted: bigint;
|
|
5408
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
5309
5409
|
processingStarted: bigint;
|
|
5310
5410
|
status: import("@package/databases").RunStatus;
|
|
5311
5411
|
}[];
|
|
@@ -5459,7 +5559,7 @@ declare const eden: {
|
|
|
5459
5559
|
};
|
|
5460
5560
|
}>>;
|
|
5461
5561
|
}) & {
|
|
5462
|
-
|
|
5562
|
+
precompute: ((params: {
|
|
5463
5563
|
chainId: string | number;
|
|
5464
5564
|
}) => {
|
|
5465
5565
|
get: (options?: {
|
|
@@ -6925,6 +7025,8 @@ declare const eden: {
|
|
|
6925
7025
|
computedUntil: bigint;
|
|
6926
7026
|
processingStarted: bigint;
|
|
6927
7027
|
status: import("@package/databases").RunStatus;
|
|
7028
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
7029
|
+
preComputeProcessingStarted: bigint;
|
|
6928
7030
|
error: string;
|
|
6929
7031
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
6930
7032
|
}[];
|
|
@@ -8345,6 +8447,8 @@ declare const eden: {
|
|
|
8345
8447
|
computedUntil: string | number;
|
|
8346
8448
|
processingStarted: string | number;
|
|
8347
8449
|
status: string;
|
|
8450
|
+
preComputeProcessingStarted: string | number;
|
|
8451
|
+
preComputeStatus: string;
|
|
8348
8452
|
delay?: number | undefined;
|
|
8349
8453
|
error?: string | undefined;
|
|
8350
8454
|
details?: any;
|
|
@@ -8606,6 +8710,8 @@ declare const eden: {
|
|
|
8606
8710
|
computedUntil: bigint;
|
|
8607
8711
|
processingStarted: bigint;
|
|
8608
8712
|
status: import("@package/databases").RunStatus;
|
|
8713
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
8714
|
+
preComputeProcessingStarted: bigint;
|
|
8609
8715
|
error: string;
|
|
8610
8716
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
8611
8717
|
}[];
|
|
@@ -8898,6 +9004,8 @@ declare const eden: {
|
|
|
8898
9004
|
computedUntil: string | number;
|
|
8899
9005
|
processingStarted: string | number;
|
|
8900
9006
|
status: string;
|
|
9007
|
+
preComputeProcessingStarted: string | number;
|
|
9008
|
+
preComputeStatus: string;
|
|
8901
9009
|
delay?: number | undefined;
|
|
8902
9010
|
error?: string | undefined;
|
|
8903
9011
|
details?: any;
|
|
@@ -9213,6 +9321,8 @@ declare const eden: {
|
|
|
9213
9321
|
computedUntil: bigint;
|
|
9214
9322
|
processingStarted: bigint;
|
|
9215
9323
|
status: import("@package/databases").RunStatus;
|
|
9324
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
9325
|
+
preComputeProcessingStarted: bigint;
|
|
9216
9326
|
error: string;
|
|
9217
9327
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
9218
9328
|
}[];
|
|
@@ -9637,6 +9747,8 @@ declare const eden: {
|
|
|
9637
9747
|
computedUntil: string | number;
|
|
9638
9748
|
processingStarted: string | number;
|
|
9639
9749
|
status: string;
|
|
9750
|
+
preComputeProcessingStarted: string | number;
|
|
9751
|
+
preComputeStatus: string;
|
|
9640
9752
|
delay?: number | undefined;
|
|
9641
9753
|
error?: string | undefined;
|
|
9642
9754
|
details?: any;
|
|
@@ -10213,6 +10325,8 @@ declare const eden: {
|
|
|
10213
10325
|
computedUntil: string | number;
|
|
10214
10326
|
processingStarted: string | number;
|
|
10215
10327
|
status: string;
|
|
10328
|
+
preComputeProcessingStarted: string | number;
|
|
10329
|
+
preComputeStatus: string;
|
|
10216
10330
|
delay?: number | undefined;
|
|
10217
10331
|
error?: string | undefined;
|
|
10218
10332
|
details?: any;
|
|
@@ -10574,6 +10688,8 @@ declare const eden: {
|
|
|
10574
10688
|
computedUntil: bigint;
|
|
10575
10689
|
processingStarted: bigint;
|
|
10576
10690
|
status: import("@package/databases").RunStatus;
|
|
10691
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
10692
|
+
preComputeProcessingStarted: bigint;
|
|
10577
10693
|
error: string;
|
|
10578
10694
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
10579
10695
|
}[];
|
|
@@ -10863,6 +10979,8 @@ declare const eden: {
|
|
|
10863
10979
|
computedUntil: bigint;
|
|
10864
10980
|
processingStarted: bigint;
|
|
10865
10981
|
status: import("@package/databases").RunStatus;
|
|
10982
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
10983
|
+
preComputeProcessingStarted: bigint;
|
|
10866
10984
|
error: string;
|
|
10867
10985
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
10868
10986
|
}[];
|
|
@@ -11131,6 +11249,8 @@ declare const eden: {
|
|
|
11131
11249
|
computedUntil: bigint;
|
|
11132
11250
|
processingStarted: bigint;
|
|
11133
11251
|
status: import("@package/databases").RunStatus;
|
|
11252
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
11253
|
+
preComputeProcessingStarted: bigint;
|
|
11134
11254
|
error: string;
|
|
11135
11255
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
11136
11256
|
}[];
|
|
@@ -36109,6 +36229,8 @@ declare const eden: {
|
|
|
36109
36229
|
computedUntil: number;
|
|
36110
36230
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
36111
36231
|
error: string;
|
|
36232
|
+
preComputeProcessingStarted: number;
|
|
36233
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
36112
36234
|
processingStarted: number;
|
|
36113
36235
|
status: import("@package/databases").RunStatus;
|
|
36114
36236
|
} & {
|
|
@@ -36433,6 +36555,8 @@ declare const eden: {
|
|
|
36433
36555
|
computedUntil: number;
|
|
36434
36556
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
36435
36557
|
error: string;
|
|
36558
|
+
preComputeProcessingStarted: number;
|
|
36559
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
36436
36560
|
processingStarted: number;
|
|
36437
36561
|
status: import("@package/databases").RunStatus;
|
|
36438
36562
|
} & {
|
|
@@ -36666,6 +36790,8 @@ declare const eden: {
|
|
|
36666
36790
|
computedUntil: string | number;
|
|
36667
36791
|
processingStarted: string | number;
|
|
36668
36792
|
status: string;
|
|
36793
|
+
preComputeProcessingStarted: string | number;
|
|
36794
|
+
preComputeStatus: string;
|
|
36669
36795
|
delay?: number | undefined;
|
|
36670
36796
|
error?: string | undefined;
|
|
36671
36797
|
details?: any;
|
|
@@ -36737,12 +36863,14 @@ declare const eden: {
|
|
|
36737
36863
|
pending: string;
|
|
36738
36864
|
campaignStatus: {
|
|
36739
36865
|
status: import("@package/databases").RunStatus;
|
|
36866
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
36740
36867
|
error: string;
|
|
36741
36868
|
details: string | number | boolean | import("@prisma/client/runtime/client").JsonArray | import("@prisma/client/runtime/client").JsonObject;
|
|
36742
36869
|
delay: number;
|
|
36743
36870
|
computedUntil: number;
|
|
36744
36871
|
createdAt: number;
|
|
36745
36872
|
processingStarted: number;
|
|
36873
|
+
preComputeProcessingStarted: number;
|
|
36746
36874
|
} | undefined;
|
|
36747
36875
|
campaignId: string;
|
|
36748
36876
|
subCampaignId: string | undefined;
|
|
@@ -36860,12 +36988,14 @@ declare const eden: {
|
|
|
36860
36988
|
pending: string;
|
|
36861
36989
|
campaignStatus: {
|
|
36862
36990
|
status: import("@package/databases").RunStatus;
|
|
36991
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
36863
36992
|
error: string;
|
|
36864
36993
|
details: string | number | boolean | import("@prisma/client/runtime/client").JsonArray | import("@prisma/client/runtime/client").JsonObject;
|
|
36865
36994
|
delay: number;
|
|
36866
36995
|
computedUntil: number;
|
|
36867
36996
|
createdAt: number;
|
|
36868
36997
|
processingStarted: number;
|
|
36998
|
+
preComputeProcessingStarted: number;
|
|
36869
36999
|
} | undefined;
|
|
36870
37000
|
campaignId: string;
|
|
36871
37001
|
subCampaignId: string | undefined;
|
|
@@ -37111,6 +37241,8 @@ declare const eden: {
|
|
|
37111
37241
|
computedUntil: number;
|
|
37112
37242
|
details: import("@prisma/client/runtime/client").JsonValue;
|
|
37113
37243
|
error: string;
|
|
37244
|
+
preComputeProcessingStarted: number;
|
|
37245
|
+
preComputeStatus: import("@package/databases").RunStatus;
|
|
37114
37246
|
processingStarted: number;
|
|
37115
37247
|
status: import("@package/databases").RunStatus;
|
|
37116
37248
|
} & {
|