@merkl/api 0.19.41 → 0.19.43

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.
@@ -2248,7 +2248,7 @@ export declare const RewardBreakdown: import("drizzle-orm/pg-core").PgTableWithC
2248
2248
  columnType: "PgText";
2249
2249
  data: string;
2250
2250
  driverParam: string;
2251
- notNull: true;
2251
+ notNull: false;
2252
2252
  hasDefault: true;
2253
2253
  isPrimaryKey: false;
2254
2254
  isAutoincrement: false;
@@ -365,7 +365,7 @@ export const Reward = pgTable('Reward', {
365
365
  export const RewardBreakdown = pgTable('RewardBreakdown', {
366
366
  id: serial('id').notNull().primaryKey(),
367
367
  stringId: text('stringId').notNull(),
368
- uuid: text('uuid').notNull().default(sql `gen_random_uuid()`),
368
+ uuid: text('uuid').default(sql `gen_random_uuid()`),
369
369
  protocolId: text('protocolId'),
370
370
  reason: text('reason').notNull(),
371
371
  amount: text('amount').notNull(),
@@ -395,7 +395,7 @@ export const Reward = pgTable('Reward', {
395
395
  export const RewardBreakdown = pgTable('RewardBreakdown', {
396
396
  id: serial('id').notNull().primaryKey(),
397
397
  stringId: text('stringId').notNull(),
398
- uuid: text('uuid').notNull().default(sql`gen_random_uuid()`),
398
+ uuid: text('uuid').default(sql`gen_random_uuid()`),
399
399
  protocolId: text('protocolId'),
400
400
  reason: text('reason').notNull(),
401
401
  amount: text('amount').notNull(),