@merkl/api 0.19.37 → 0.19.38
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 +90 -5
- package/dist/database/api/.generated/drizzle/schema.js +7 -2
- package/dist/database/api/.generated/drizzle/schema.ts +7 -2
- package/dist/database/api/.generated/edge.js +13 -3
- package/dist/database/api/.generated/index-browser.js +10 -0
- package/dist/database/api/.generated/index.d.ts +296 -40
- package/dist/database/api/.generated/index.js +13 -3
- package/dist/database/api/.generated/package.json +1 -1
- package/dist/database/api/.generated/schema.prisma +6 -1
- package/dist/database/api/.generated/wasm.js +10 -0
- package/dist/src/eden/index.d.ts +20 -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 +4 -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 +1 -0
- package/dist/src/modules/v4/computedValue/computedValue.repository.d.ts +1 -0
- package/dist/src/modules/v4/computedValue/computedValue.repository.js +2 -0
- package/dist/src/modules/v4/computedValue/computedValue.service.d.ts +2 -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 +4 -2
- package/dist/src/modules/v4/reward/reward.repository.js +1 -0
- package/dist/src/modules/v4/reward/reward.service.d.ts +8 -2
- package/dist/src/modules/v4/reward/reward.service.js +4 -1
- package/dist/src/modules/v4/router.d.ts +4 -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,7 @@ exports.Prisma.CampaignComputedValueScalarFieldEnum = {
|
|
158
158
|
|
159
159
|
exports.Prisma.UserComputedValueScalarFieldEnum = {
|
160
160
|
id: 'id',
|
161
|
+
stringId: 'stringId',
|
161
162
|
campaignId: 'campaignId',
|
162
163
|
address: 'address',
|
163
164
|
reason: 'reason',
|
@@ -227,6 +228,7 @@ exports.Prisma.AprRecordScalarFieldEnum = {
|
|
227
228
|
|
228
229
|
exports.Prisma.AprBreakdownScalarFieldEnum = {
|
229
230
|
id: 'id',
|
231
|
+
uuid: 'uuid',
|
230
232
|
identifier: 'identifier',
|
231
233
|
type: 'type',
|
232
234
|
value: 'value',
|
@@ -242,6 +244,7 @@ exports.Prisma.TVLRecordScalarFieldEnum = {
|
|
242
244
|
|
243
245
|
exports.Prisma.TVLBreakdownScalarFieldEnum = {
|
244
246
|
id: 'id',
|
247
|
+
uuid: 'uuid',
|
245
248
|
identifier: 'identifier',
|
246
249
|
type: 'type',
|
247
250
|
value: 'value',
|
@@ -257,6 +260,7 @@ exports.Prisma.DailyRewardsRecordScalarFieldEnum = {
|
|
257
260
|
|
258
261
|
exports.Prisma.DailyRewardsBreakdownScalarFieldEnum = {
|
259
262
|
id: 'id',
|
263
|
+
uuid: 'uuid',
|
260
264
|
value: 'value',
|
261
265
|
campaignId: 'campaignId',
|
262
266
|
dailyRewardsRecordId: 'dailyRewardsRecordId'
|
@@ -287,6 +291,7 @@ exports.Prisma.RewardScalarFieldEnum = {
|
|
287
291
|
|
288
292
|
exports.Prisma.RewardBreakdownScalarFieldEnum = {
|
289
293
|
id: 'id',
|
294
|
+
stringId: 'stringId',
|
290
295
|
protocolId: 'protocolId',
|
291
296
|
reason: 'reason',
|
292
297
|
amount: 'amount',
|
@@ -392,6 +397,7 @@ exports.Prisma.CampaignComputedValueOrderByRelevanceFieldEnum = {
|
|
392
397
|
};
|
393
398
|
|
394
399
|
exports.Prisma.UserComputedValueOrderByRelevanceFieldEnum = {
|
400
|
+
stringId: 'stringId',
|
395
401
|
campaignId: 'campaignId',
|
396
402
|
address: 'address',
|
397
403
|
reason: 'reason'
|
@@ -441,6 +447,7 @@ exports.Prisma.AprRecordOrderByRelevanceFieldEnum = {
|
|
441
447
|
};
|
442
448
|
|
443
449
|
exports.Prisma.AprBreakdownOrderByRelevanceFieldEnum = {
|
450
|
+
uuid: 'uuid',
|
444
451
|
identifier: 'identifier',
|
445
452
|
aprRecordId: 'aprRecordId'
|
446
453
|
};
|
@@ -451,6 +458,7 @@ exports.Prisma.TVLRecordOrderByRelevanceFieldEnum = {
|
|
451
458
|
};
|
452
459
|
|
453
460
|
exports.Prisma.TVLBreakdownOrderByRelevanceFieldEnum = {
|
461
|
+
uuid: 'uuid',
|
454
462
|
identifier: 'identifier',
|
455
463
|
tvlRecordId: 'tvlRecordId'
|
456
464
|
};
|
@@ -461,6 +469,7 @@ exports.Prisma.DailyRewardsRecordOrderByRelevanceFieldEnum = {
|
|
461
469
|
};
|
462
470
|
|
463
471
|
exports.Prisma.DailyRewardsBreakdownOrderByRelevanceFieldEnum = {
|
472
|
+
uuid: 'uuid',
|
464
473
|
campaignId: 'campaignId',
|
465
474
|
dailyRewardsRecordId: 'dailyRewardsRecordId'
|
466
475
|
};
|
@@ -489,6 +498,7 @@ exports.Prisma.RewardOrderByRelevanceFieldEnum = {
|
|
489
498
|
};
|
490
499
|
|
491
500
|
exports.Prisma.RewardBreakdownOrderByRelevanceFieldEnum = {
|
501
|
+
stringId: 'stringId',
|
492
502
|
protocolId: 'protocolId',
|
493
503
|
reason: 'reason',
|
494
504
|
amount: 'amount',
|