@merkl/api 0.19.27 → 0.19.29
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 +5 -5
- package/dist/database/api/.generated/drizzle/schema.js +1 -1
- package/dist/database/api/.generated/drizzle/schema.ts +1 -1
- package/dist/database/api/.generated/edge.js +3 -3
- package/dist/database/api/.generated/index.d.ts +35 -26
- package/dist/database/api/.generated/index.js +3 -3
- package/dist/database/api/.generated/package.json +1 -1
- package/dist/database/api/.generated/schema.prisma +1 -1
- package/dist/src/eden/index.d.ts +35 -10
- package/dist/src/engine/opportunityMetadata/implementations/JsonAirdrop.d.ts +2 -2
- package/dist/src/index.d.ts +7 -2
- package/dist/src/modules/v4/campaign/campaign.controller.d.ts +1 -1
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +6 -1
- package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +1 -0
- package/dist/src/modules/v4/opportunity/opportunity.model.js +1 -0
- package/dist/src/modules/v4/opportunity/opportunity.repository.js +2 -1
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +3 -3
- package/dist/src/modules/v4/protocol/protocol.model.d.ts +1 -1
- package/dist/src/modules/v4/protocol/protocol.model.js +0 -1
- package/dist/src/modules/v4/protocol/protocol.service.js +21 -0
- package/dist/src/modules/v4/reward/reward.repository.d.ts +2 -2
- package/dist/src/modules/v4/reward/reward.service.d.ts +2 -2
- package/dist/src/modules/v4/router.d.ts +7 -2
- package/dist/tsconfig.package.tsbuildinfo +1 -1
- package/package.json +1 -1
@@ -2125,12 +2125,12 @@ export declare const RewardBreakdown: import("drizzle-orm/pg-core").PgTableWithC
|
|
2125
2125
|
id: import("drizzle-orm/pg-core").PgColumn<{
|
2126
2126
|
name: "id";
|
2127
2127
|
tableName: "RewardBreakdown";
|
2128
|
-
dataType: "
|
2129
|
-
columnType: "
|
2130
|
-
data:
|
2131
|
-
driverParam:
|
2128
|
+
dataType: "bigint";
|
2129
|
+
columnType: "PgBigInt64";
|
2130
|
+
data: bigint;
|
2131
|
+
driverParam: string;
|
2132
2132
|
notNull: true;
|
2133
|
-
hasDefault:
|
2133
|
+
hasDefault: false;
|
2134
2134
|
isPrimaryKey: true;
|
2135
2135
|
isAutoincrement: false;
|
2136
2136
|
hasRuntimeDefault: false;
|
@@ -358,7 +358,7 @@ export const Reward = pgTable('Reward', {
|
|
358
358
|
.on(Reward.root, Reward.recipient, Reward.rewardTokenId)
|
359
359
|
}));
|
360
360
|
export const RewardBreakdown = pgTable('RewardBreakdown', {
|
361
|
-
id:
|
361
|
+
id: bigint('id', { mode: 'bigint' }).notNull().primaryKey(),
|
362
362
|
protocolId: text('protocolId'),
|
363
363
|
reason: text('reason').notNull(),
|
364
364
|
amount: text('amount').notNull(),
|
@@ -388,7 +388,7 @@ export const Reward = pgTable('Reward', {
|
|
388
388
|
}));
|
389
389
|
|
390
390
|
export const RewardBreakdown = pgTable('RewardBreakdown', {
|
391
|
-
id:
|
391
|
+
id: bigint('id', { mode: 'bigint' }).notNull().primaryKey(),
|
392
392
|
protocolId: text('protocolId'),
|
393
393
|
reason: text('reason').notNull(),
|
394
394
|
amount: text('amount').notNull(),
|