@merkl/api 0.19.38 → 0.19.40
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
@@ -519,6 +519,23 @@ export declare const UserComputedValue: import("drizzle-orm/pg-core").PgTableWit
|
|
519
519
|
identity: undefined;
|
520
520
|
generated: undefined;
|
521
521
|
}, {}, {}>;
|
522
|
+
uuid: import("drizzle-orm/pg-core").PgColumn<{
|
523
|
+
name: "uuid";
|
524
|
+
tableName: "UserComputedValue";
|
525
|
+
dataType: "string";
|
526
|
+
columnType: "PgText";
|
527
|
+
data: string;
|
528
|
+
driverParam: string;
|
529
|
+
notNull: true;
|
530
|
+
hasDefault: true;
|
531
|
+
isPrimaryKey: false;
|
532
|
+
isAutoincrement: false;
|
533
|
+
hasRuntimeDefault: false;
|
534
|
+
enumValues: [string, ...string[]];
|
535
|
+
baseColumn: never;
|
536
|
+
identity: undefined;
|
537
|
+
generated: undefined;
|
538
|
+
}, {}, {}>;
|
522
539
|
campaignId: import("drizzle-orm/pg-core").PgColumn<{
|
523
540
|
name: "campaignId";
|
524
541
|
tableName: "UserComputedValue";
|
@@ -2224,6 +2241,23 @@ export declare const RewardBreakdown: import("drizzle-orm/pg-core").PgTableWithC
|
|
2224
2241
|
identity: undefined;
|
2225
2242
|
generated: undefined;
|
2226
2243
|
}, {}, {}>;
|
2244
|
+
uuid: import("drizzle-orm/pg-core").PgColumn<{
|
2245
|
+
name: "uuid";
|
2246
|
+
tableName: "RewardBreakdown";
|
2247
|
+
dataType: "string";
|
2248
|
+
columnType: "PgText";
|
2249
|
+
data: string;
|
2250
|
+
driverParam: string;
|
2251
|
+
notNull: true;
|
2252
|
+
hasDefault: true;
|
2253
|
+
isPrimaryKey: false;
|
2254
|
+
isAutoincrement: false;
|
2255
|
+
hasRuntimeDefault: false;
|
2256
|
+
enumValues: [string, ...string[]];
|
2257
|
+
baseColumn: never;
|
2258
|
+
identity: undefined;
|
2259
|
+
generated: undefined;
|
2260
|
+
}, {}, {}>;
|
2227
2261
|
protocolId: import("drizzle-orm/pg-core").PgColumn<{
|
2228
2262
|
name: "protocolId";
|
2229
2263
|
tableName: "RewardBreakdown";
|
@@ -99,6 +99,7 @@ export const CampaignComputedValue = pgTable('CampaignComputedValue', {
|
|
99
99
|
export const UserComputedValue = pgTable('UserComputedValue', {
|
100
100
|
id: serial('id').notNull().primaryKey(),
|
101
101
|
stringId: text('stringId').notNull(),
|
102
|
+
uuid: text('uuid').notNull().default(sql `gen_random_uuid()`),
|
102
103
|
campaignId: text('campaignId').notNull(),
|
103
104
|
address: text('address').notNull(),
|
104
105
|
reason: text('reason').notNull(),
|
@@ -364,6 +365,7 @@ export const Reward = pgTable('Reward', {
|
|
364
365
|
export const RewardBreakdown = pgTable('RewardBreakdown', {
|
365
366
|
id: serial('id').notNull().primaryKey(),
|
366
367
|
stringId: text('stringId').notNull(),
|
368
|
+
uuid: text('uuid').notNull().default(sql `gen_random_uuid()`),
|
367
369
|
protocolId: text('protocolId'),
|
368
370
|
reason: text('reason').notNull(),
|
369
371
|
amount: text('amount').notNull(),
|
@@ -114,6 +114,7 @@ export const CampaignComputedValue = pgTable('CampaignComputedValue', {
|
|
114
114
|
export const UserComputedValue = pgTable('UserComputedValue', {
|
115
115
|
id: serial('id').notNull().primaryKey(),
|
116
116
|
stringId: text('stringId').notNull(),
|
117
|
+
uuid: text('uuid').notNull().default(sql`gen_random_uuid()`),
|
117
118
|
campaignId: text('campaignId').notNull(),
|
118
119
|
address: text('address').notNull(),
|
119
120
|
reason: text('reason').notNull(),
|
@@ -394,6 +395,7 @@ export const Reward = pgTable('Reward', {
|
|
394
395
|
export const RewardBreakdown = pgTable('RewardBreakdown', {
|
395
396
|
id: serial('id').notNull().primaryKey(),
|
396
397
|
stringId: text('stringId').notNull(),
|
398
|
+
uuid: text('uuid').notNull().default(sql`gen_random_uuid()`),
|
397
399
|
protocolId: text('protocolId'),
|
398
400
|
reason: text('reason').notNull(),
|
399
401
|
amount: text('amount').notNull(),
|