@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.
@@ -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: "number";
2129
- columnType: "PgSerial";
2130
- data: number;
2131
- driverParam: number;
2128
+ dataType: "bigint";
2129
+ columnType: "PgBigInt64";
2130
+ data: bigint;
2131
+ driverParam: string;
2132
2132
  notNull: true;
2133
- hasDefault: true;
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: serial('id').notNull().primaryKey(),
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: serial('id').notNull().primaryKey(),
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(),