@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.
- package/dist/database/api/.generated/drizzle/schema.d.ts +1 -1
- 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 +89 -33
- 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/jobs/reward-breakdowns.d.ts +1 -1
- package/dist/src/jobs/reward-breakdowns.js +1 -3
- 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/tsconfig.package.tsbuildinfo +1 -1
- package/package.json +1 -1
@@ -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:
|
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').
|
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').
|
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(),
|