@merkl/api 0.19.38 → 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 +34 -0
- package/dist/database/api/.generated/drizzle/schema.js +2 -0
- package/dist/database/api/.generated/drizzle/schema.ts +2 -0
- package/dist/database/api/.generated/edge.js +7 -3
- package/dist/database/api/.generated/index-browser.js +4 -0
- package/dist/database/api/.generated/index.d.ts +150 -58
- package/dist/database/api/.generated/index.js +7 -3
- package/dist/database/api/.generated/package.json +1 -1
- package/dist/database/api/.generated/schema.prisma +2 -0
- package/dist/database/api/.generated/wasm.js +4 -0
- package/dist/src/eden/index.d.ts +5 -0
- package/dist/src/index.d.ts +1 -0
- 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.service.d.ts +1 -0
- package/dist/src/modules/v4/reward/reward.model.d.ts +1 -1
- package/dist/src/modules/v4/reward/reward.repository.d.ts +2 -0
- package/dist/src/modules/v4/reward/reward.service.d.ts +2 -0
- package/dist/src/modules/v4/reward/reward.service.js +1 -1
- package/dist/src/modules/v4/router.d.ts +1 -0
- package/dist/tsconfig.package.tsbuildinfo +1 -1
- package/package.json +1 -1
@@ -159,6 +159,7 @@ exports.Prisma.CampaignComputedValueScalarFieldEnum = {
|
|
159
159
|
exports.Prisma.UserComputedValueScalarFieldEnum = {
|
160
160
|
id: 'id',
|
161
161
|
stringId: 'stringId',
|
162
|
+
uuid: 'uuid',
|
162
163
|
campaignId: 'campaignId',
|
163
164
|
address: 'address',
|
164
165
|
reason: 'reason',
|
@@ -292,6 +293,7 @@ exports.Prisma.RewardScalarFieldEnum = {
|
|
292
293
|
exports.Prisma.RewardBreakdownScalarFieldEnum = {
|
293
294
|
id: 'id',
|
294
295
|
stringId: 'stringId',
|
296
|
+
uuid: 'uuid',
|
295
297
|
protocolId: 'protocolId',
|
296
298
|
reason: 'reason',
|
297
299
|
amount: 'amount',
|
@@ -398,6 +400,7 @@ exports.Prisma.CampaignComputedValueOrderByRelevanceFieldEnum = {
|
|
398
400
|
|
399
401
|
exports.Prisma.UserComputedValueOrderByRelevanceFieldEnum = {
|
400
402
|
stringId: 'stringId',
|
403
|
+
uuid: 'uuid',
|
401
404
|
campaignId: 'campaignId',
|
402
405
|
address: 'address',
|
403
406
|
reason: 'reason'
|
@@ -499,6 +502,7 @@ exports.Prisma.RewardOrderByRelevanceFieldEnum = {
|
|
499
502
|
|
500
503
|
exports.Prisma.RewardBreakdownOrderByRelevanceFieldEnum = {
|
501
504
|
stringId: 'stringId',
|
505
|
+
uuid: 'uuid',
|
502
506
|
protocolId: 'protocolId',
|
503
507
|
reason: 'reason',
|
504
508
|
amount: 'amount',
|