@merkl/api 0.19.37 → 0.19.39
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/database/api/.generated/drizzle/schema.d.ts +124 -5
- package/dist/database/api/.generated/drizzle/schema.js +9 -2
- package/dist/database/api/.generated/drizzle/schema.ts +9 -2
- package/dist/database/api/.generated/edge.js +17 -3
- package/dist/database/api/.generated/index-browser.js +14 -0
- package/dist/database/api/.generated/index.d.ts +388 -40
- package/dist/database/api/.generated/index.js +17 -3
- package/dist/database/api/.generated/package.json +1 -1
- package/dist/database/api/.generated/schema.prisma +8 -1
- package/dist/database/api/.generated/wasm.js +14 -0
- package/dist/src/eden/index.d.ts +25 -0
- package/dist/src/engine/opportunityMetadata/implementations/Compound.d.ts +1 -2
- package/dist/src/engine/opportunityMetadata/implementations/Compound.js +1 -4
- package/dist/src/engine/opportunityMetadata/implementations/Morpho.d.ts +7 -1
- package/dist/src/engine/opportunityMetadata/implementations/Morpho.js +5 -2
- package/dist/src/index.d.ts +5 -0
- package/dist/src/jobs/pendings.js +4 -1
- package/dist/src/jobs/reward-breakdowns.js +3 -0
- package/dist/src/modules/v4/apr/apr.model.d.ts +1 -1
- package/dist/src/modules/v4/computedValue/computedValue.controller.d.ts +2 -0
- package/dist/src/modules/v4/computedValue/computedValue.repository.d.ts +2 -0
- package/dist/src/modules/v4/computedValue/computedValue.repository.js +2 -0
- package/dist/src/modules/v4/computedValue/computedValue.service.d.ts +3 -0
- package/dist/src/modules/v4/computedValue/computedValue.service.js +3 -0
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +3 -0
- package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +17 -0
- package/dist/src/modules/v4/opportunity/opportunity.repository.js +2 -0
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +9 -0
- package/dist/src/modules/v4/reward/reward.model.d.ts +2 -2
- package/dist/src/modules/v4/reward/reward.repository.d.ts +6 -2
- package/dist/src/modules/v4/reward/reward.repository.js +1 -0
- package/dist/src/modules/v4/reward/reward.service.d.ts +10 -2
- package/dist/src/modules/v4/reward/reward.service.js +4 -1
- package/dist/src/modules/v4/router.d.ts +5 -0
- package/dist/src/modules/v4/tvl/tvl.model.d.ts +1 -1
- package/dist/tsconfig.package.tsbuildinfo +1 -1
- package/package.json +1 -1
@@ -158,6 +158,8 @@ exports.Prisma.CampaignComputedValueScalarFieldEnum = {
|
|
158
158
|
|
159
159
|
exports.Prisma.UserComputedValueScalarFieldEnum = {
|
160
160
|
id: 'id',
|
161
|
+
stringId: 'stringId',
|
162
|
+
uuid: 'uuid',
|
161
163
|
campaignId: 'campaignId',
|
162
164
|
address: 'address',
|
163
165
|
reason: 'reason',
|
@@ -227,6 +229,7 @@ exports.Prisma.AprRecordScalarFieldEnum = {
|
|
227
229
|
|
228
230
|
exports.Prisma.AprBreakdownScalarFieldEnum = {
|
229
231
|
id: 'id',
|
232
|
+
uuid: 'uuid',
|
230
233
|
identifier: 'identifier',
|
231
234
|
type: 'type',
|
232
235
|
value: 'value',
|
@@ -242,6 +245,7 @@ exports.Prisma.TVLRecordScalarFieldEnum = {
|
|
242
245
|
|
243
246
|
exports.Prisma.TVLBreakdownScalarFieldEnum = {
|
244
247
|
id: 'id',
|
248
|
+
uuid: 'uuid',
|
245
249
|
identifier: 'identifier',
|
246
250
|
type: 'type',
|
247
251
|
value: 'value',
|
@@ -257,6 +261,7 @@ exports.Prisma.DailyRewardsRecordScalarFieldEnum = {
|
|
257
261
|
|
258
262
|
exports.Prisma.DailyRewardsBreakdownScalarFieldEnum = {
|
259
263
|
id: 'id',
|
264
|
+
uuid: 'uuid',
|
260
265
|
value: 'value',
|
261
266
|
campaignId: 'campaignId',
|
262
267
|
dailyRewardsRecordId: 'dailyRewardsRecordId'
|
@@ -287,6 +292,8 @@ exports.Prisma.RewardScalarFieldEnum = {
|
|
287
292
|
|
288
293
|
exports.Prisma.RewardBreakdownScalarFieldEnum = {
|
289
294
|
id: 'id',
|
295
|
+
stringId: 'stringId',
|
296
|
+
uuid: 'uuid',
|
290
297
|
protocolId: 'protocolId',
|
291
298
|
reason: 'reason',
|
292
299
|
amount: 'amount',
|
@@ -392,6 +399,8 @@ exports.Prisma.CampaignComputedValueOrderByRelevanceFieldEnum = {
|
|
392
399
|
};
|
393
400
|
|
394
401
|
exports.Prisma.UserComputedValueOrderByRelevanceFieldEnum = {
|
402
|
+
stringId: 'stringId',
|
403
|
+
uuid: 'uuid',
|
395
404
|
campaignId: 'campaignId',
|
396
405
|
address: 'address',
|
397
406
|
reason: 'reason'
|
@@ -441,6 +450,7 @@ exports.Prisma.AprRecordOrderByRelevanceFieldEnum = {
|
|
441
450
|
};
|
442
451
|
|
443
452
|
exports.Prisma.AprBreakdownOrderByRelevanceFieldEnum = {
|
453
|
+
uuid: 'uuid',
|
444
454
|
identifier: 'identifier',
|
445
455
|
aprRecordId: 'aprRecordId'
|
446
456
|
};
|
@@ -451,6 +461,7 @@ exports.Prisma.TVLRecordOrderByRelevanceFieldEnum = {
|
|
451
461
|
};
|
452
462
|
|
453
463
|
exports.Prisma.TVLBreakdownOrderByRelevanceFieldEnum = {
|
464
|
+
uuid: 'uuid',
|
454
465
|
identifier: 'identifier',
|
455
466
|
tvlRecordId: 'tvlRecordId'
|
456
467
|
};
|
@@ -461,6 +472,7 @@ exports.Prisma.DailyRewardsRecordOrderByRelevanceFieldEnum = {
|
|
461
472
|
};
|
462
473
|
|
463
474
|
exports.Prisma.DailyRewardsBreakdownOrderByRelevanceFieldEnum = {
|
475
|
+
uuid: 'uuid',
|
464
476
|
campaignId: 'campaignId',
|
465
477
|
dailyRewardsRecordId: 'dailyRewardsRecordId'
|
466
478
|
};
|
@@ -489,6 +501,8 @@ exports.Prisma.RewardOrderByRelevanceFieldEnum = {
|
|
489
501
|
};
|
490
502
|
|
491
503
|
exports.Prisma.RewardBreakdownOrderByRelevanceFieldEnum = {
|
504
|
+
stringId: 'stringId',
|
505
|
+
uuid: 'uuid',
|
492
506
|
protocolId: 'protocolId',
|
493
507
|
reason: 'reason',
|
494
508
|
amount: 'amount',
|