@aitlabs/namkwong 0.0.92 → 0.0.103

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.
Files changed (88) hide show
  1. package/dist/admin/index.d.ts +2807 -797
  2. package/dist/app-version/admin/router.d.ts +13 -1
  3. package/dist/asset-convert-product/admin/dto.schemas.d.ts +8 -0
  4. package/dist/asset-convert-product/admin/router.d.ts +12 -12
  5. package/dist/asset-convert-product/admin/service.d.ts +12 -12
  6. package/dist/auth/better-auth.d.ts +19 -1
  7. package/dist/auth/i18n/zh.d.ts +100 -0
  8. package/dist/auth/permissions.d.ts +16 -1
  9. package/dist/auth/roles.d.ts +45 -0
  10. package/dist/check-in/admin/reward.dto.schemas.d.ts +321 -0
  11. package/dist/check-in/admin/reward.router.d.ts +1109 -0
  12. package/dist/check-in/admin/reward.service.d.ts +433 -0
  13. package/dist/check-in/admin/router.d.ts +662 -0
  14. package/dist/check-in/errors/index.d.ts +10 -0
  15. package/dist/check-in/errors/locales/zh.d.ts +10 -0
  16. package/dist/check-in/index.d.ts +5 -0
  17. package/dist/check-in/internal/reward-config.service.d.ts +97 -0
  18. package/dist/check-in/permissions.d.ts +2 -0
  19. package/dist/check-in/reward.db.schemas.d.ts +896 -0
  20. package/dist/check-in/reward.schema.d.ts +477 -0
  21. package/dist/content-video/admin/dto.schemas.d.ts +128 -0
  22. package/dist/content-video/admin/router.d.ts +861 -0
  23. package/dist/content-video/admin/service.d.ts +211 -0
  24. package/dist/content-video/db.schemas.d.ts +486 -0
  25. package/dist/content-video/errors/index.d.ts +17 -0
  26. package/dist/content-video/errors/locales/zh.d.ts +16 -0
  27. package/dist/content-video/index.d.ts +8 -0
  28. package/dist/content-video/internal/service.d.ts +106 -0
  29. package/dist/content-video/permissions.d.ts +4 -0
  30. package/dist/content-video/schema.d.ts +257 -0
  31. package/dist/content-video/user/dto.schemas.d.ts +52 -0
  32. package/dist/content-video/user/router.d.ts +482 -0
  33. package/dist/content-video/user/service.d.ts +36 -0
  34. package/dist/db/schemas.d.ts +4 -0
  35. package/dist/file-storage/admin/dto.schemas.d.ts +4 -0
  36. package/dist/file-storage/admin/router.d.ts +2 -2
  37. package/dist/file-storage/admin/service.d.ts +2 -2
  38. package/dist/file-storage/db.schemas.d.ts +4 -4
  39. package/dist/file-storage/internal/service.d.ts +1 -1
  40. package/dist/file-storage/s3.client.d.ts +22 -0
  41. package/dist/file-storage/schema.d.ts +3 -3
  42. package/dist/file-storage/share/dto.schemas.d.ts +1 -0
  43. package/dist/file-storage/share/router.d.ts +1 -1
  44. package/dist/file-storage/user/dto.schemas.d.ts +6 -4
  45. package/dist/file-storage/user/router.d.ts +3 -3
  46. package/dist/file-storage/user/service.d.ts +2 -2
  47. package/dist/index.d.ts +3131 -805
  48. package/dist/ledger/admin/dto.schemas.d.ts +8 -0
  49. package/dist/ledger/admin/router.d.ts +5 -17
  50. package/dist/ledger/db.schemas.d.ts +8 -8
  51. package/dist/ledger/schema.d.ts +6 -6
  52. package/dist/ledger/user/dto.schemas.d.ts +8 -8
  53. package/dist/ledger/user/router.d.ts +2 -2
  54. package/dist/ledger/user/service.d.ts +2 -2
  55. package/dist/lock-activity/admin/dto.schemas.d.ts +161 -0
  56. package/dist/lock-activity/admin/participation.dto.schemas.d.ts +200 -0
  57. package/dist/lock-activity/admin/participation.service.d.ts +144 -0
  58. package/dist/lock-activity/admin/reward.service.d.ts +48 -0
  59. package/dist/lock-activity/admin/router.d.ts +1399 -0
  60. package/dist/lock-activity/admin/service.d.ts +518 -0
  61. package/dist/lock-activity/constants.d.ts +2 -0
  62. package/dist/lock-activity/cron.d.ts +6 -0
  63. package/dist/lock-activity/db.schemas.d.ts +516 -0
  64. package/dist/lock-activity/errors/index.d.ts +32 -0
  65. package/dist/lock-activity/errors/locales/zh.d.ts +31 -0
  66. package/dist/lock-activity/index.d.ts +7 -0
  67. package/dist/lock-activity/internal/participation.service.d.ts +42 -0
  68. package/dist/lock-activity/internal/reward.service.d.ts +15 -0
  69. package/dist/lock-activity/internal/service.d.ts +66 -0
  70. package/dist/lock-activity/participation.db.schemas.d.ts +448 -0
  71. package/dist/lock-activity/participation.schema.d.ts +239 -0
  72. package/dist/lock-activity/permissions.d.ts +5 -0
  73. package/dist/lock-activity/schema.d.ts +273 -0
  74. package/dist/lock-activity/shared.dto.schemas.d.ts +7 -0
  75. package/dist/lock-activity/user/dto.schemas.d.ts +116 -0
  76. package/dist/lock-activity/user/participation.dto.schemas.d.ts +25 -0
  77. package/dist/lock-activity/user/participation.service.d.ts +24 -0
  78. package/dist/lock-activity/user/router.d.ts +624 -0
  79. package/dist/lock-activity/user/service.d.ts +86 -0
  80. package/dist/market-pricing/admin/router.d.ts +13 -1
  81. package/dist/news/admin/dto.schemas.d.ts +26 -26
  82. package/dist/news/admin/router.d.ts +25 -25
  83. package/dist/news/admin/service.d.ts +4 -1
  84. package/dist/news/user/service.d.ts +2 -2
  85. package/dist/referral/index.d.ts +1 -0
  86. package/dist/referral/user/router.d.ts +29 -1
  87. package/dist/wallet-type/admin/router.d.ts +1 -13
  88. package/package.json +1 -1
@@ -0,0 +1,66 @@
1
+ import type { TransactionTx } from '../../db/transaction';
2
+ export type LockActivityTimeInput = {
3
+ startAt: Date;
4
+ endAt: Date;
5
+ };
6
+ export type LockActivityCoverImageFileRow = {
7
+ id: string;
8
+ fileName: string | null;
9
+ mimeType: string | null;
10
+ fileSize: number | null;
11
+ publicUrl: string | null;
12
+ thumbnailUrl: string | null;
13
+ };
14
+ export declare const lockActivityCoverImageFileWith: {
15
+ readonly coverImageFile: {
16
+ readonly columns: {
17
+ readonly id: true;
18
+ readonly fileName: true;
19
+ readonly mimeType: true;
20
+ readonly fileSize: true;
21
+ readonly publicUrl: true;
22
+ readonly thumbnailUrl: true;
23
+ };
24
+ };
25
+ };
26
+ export declare abstract class InternalLockActivityService {
27
+ static resolveCoverImageUrlFromFile(file: LockActivityCoverImageFileRow | null | undefined, fallbackUrl: string): string;
28
+ static formatCoverImageFile(file: LockActivityCoverImageFileRow | null | undefined): {
29
+ id: string;
30
+ fileName: string | null;
31
+ mimeType: string | null;
32
+ fileSize: number | null;
33
+ publicUrl: string | null;
34
+ } | undefined;
35
+ static formatActivityRow<T extends {
36
+ coverImageUrl: string;
37
+ coverImageFile?: LockActivityCoverImageFileRow | null;
38
+ }>(row: T): Omit<T, "coverImageFile"> & {
39
+ coverImageUrl: string;
40
+ coverImageFile: {
41
+ id: string;
42
+ fileName: string | null;
43
+ mimeType: string | null;
44
+ fileSize: number | null;
45
+ publicUrl: string | null;
46
+ } | undefined;
47
+ };
48
+ static assertTimeRange(input: LockActivityTimeInput): void;
49
+ static assertRewardCnyEquivalent(value: string): string;
50
+ static resolveCoverImageUrlByFileId(tx: TransactionTx, fileId: string): Promise<string>;
51
+ /** 奖励固定发放至锁仓账户(LOCKED) */
52
+ static resolveLockedReceiveAccountTypeId(tx: TransactionTx): Promise<string>;
53
+ static ensureRewardAssetValid(tx: TransactionTx, rewardAssetId: string): Promise<{
54
+ category: "CRYPTO" | "FIAT" | "POINT" | "RWA";
55
+ code: string;
56
+ createdAt: Date;
57
+ iconUrl: string;
58
+ id: string;
59
+ isActive: boolean;
60
+ name: string;
61
+ precision: number;
62
+ symbol: string | null;
63
+ typeId: string | null;
64
+ updatedAt: Date;
65
+ }>;
66
+ }
@@ -0,0 +1,448 @@
1
+ export declare const lockActivityParticipationSelectSchema: import("drizzle-typebox").BuildSchema<"select", {
2
+ createdAt: import("drizzle-orm/pg-core").PgColumn<{
3
+ name: "created_at";
4
+ tableName: "lock_activity_participation";
5
+ dataType: "date";
6
+ columnType: "PgTimestamp";
7
+ data: Date;
8
+ driverParam: string;
9
+ notNull: true;
10
+ hasDefault: true;
11
+ isPrimaryKey: false;
12
+ isAutoincrement: false;
13
+ hasRuntimeDefault: false;
14
+ enumValues: undefined;
15
+ baseColumn: never;
16
+ identity: undefined;
17
+ generated: undefined;
18
+ }, {}, {}>;
19
+ updatedAt: import("drizzle-orm/pg-core").PgColumn<{
20
+ name: "updated_at";
21
+ tableName: "lock_activity_participation";
22
+ dataType: "date";
23
+ columnType: "PgTimestamp";
24
+ data: Date;
25
+ driverParam: string;
26
+ notNull: true;
27
+ hasDefault: true;
28
+ isPrimaryKey: false;
29
+ isAutoincrement: false;
30
+ hasRuntimeDefault: false;
31
+ enumValues: undefined;
32
+ baseColumn: never;
33
+ identity: undefined;
34
+ generated: undefined;
35
+ }, {}, {}>;
36
+ id: import("drizzle-orm/pg-core").PgColumn<{
37
+ name: "id";
38
+ tableName: "lock_activity_participation";
39
+ dataType: "string";
40
+ columnType: "PgUUID";
41
+ data: string;
42
+ driverParam: string;
43
+ notNull: true;
44
+ hasDefault: true;
45
+ isPrimaryKey: true;
46
+ isAutoincrement: false;
47
+ hasRuntimeDefault: false;
48
+ enumValues: undefined;
49
+ baseColumn: never;
50
+ identity: undefined;
51
+ generated: undefined;
52
+ }, {}, {}>;
53
+ activityId: import("drizzle-orm/pg-core").PgColumn<{
54
+ name: "activity_id";
55
+ tableName: "lock_activity_participation";
56
+ dataType: "string";
57
+ columnType: "PgUUID";
58
+ data: string;
59
+ driverParam: string;
60
+ notNull: true;
61
+ hasDefault: false;
62
+ isPrimaryKey: false;
63
+ isAutoincrement: false;
64
+ hasRuntimeDefault: false;
65
+ enumValues: undefined;
66
+ baseColumn: never;
67
+ identity: undefined;
68
+ generated: undefined;
69
+ }, {}, {}>;
70
+ userId: import("drizzle-orm/pg-core").PgColumn<{
71
+ name: "user_id";
72
+ tableName: "lock_activity_participation";
73
+ dataType: "string";
74
+ columnType: "PgText";
75
+ data: string;
76
+ driverParam: string;
77
+ notNull: true;
78
+ hasDefault: false;
79
+ isPrimaryKey: false;
80
+ isAutoincrement: false;
81
+ hasRuntimeDefault: false;
82
+ enumValues: [string, ...string[]];
83
+ baseColumn: never;
84
+ identity: undefined;
85
+ generated: undefined;
86
+ }, {}, {}>;
87
+ inviteCode: import("drizzle-orm/pg-core").PgColumn<{
88
+ name: "invite_code";
89
+ tableName: "lock_activity_participation";
90
+ dataType: "string";
91
+ columnType: "PgText";
92
+ data: string;
93
+ driverParam: string;
94
+ notNull: true;
95
+ hasDefault: false;
96
+ isPrimaryKey: false;
97
+ isAutoincrement: false;
98
+ hasRuntimeDefault: false;
99
+ enumValues: [string, ...string[]];
100
+ baseColumn: never;
101
+ identity: undefined;
102
+ generated: undefined;
103
+ }, {}, {}>;
104
+ inviterUserId: import("drizzle-orm/pg-core").PgColumn<{
105
+ name: "inviter_user_id";
106
+ tableName: "lock_activity_participation";
107
+ dataType: "string";
108
+ columnType: "PgText";
109
+ data: string;
110
+ driverParam: string;
111
+ notNull: false;
112
+ hasDefault: false;
113
+ isPrimaryKey: false;
114
+ isAutoincrement: false;
115
+ hasRuntimeDefault: false;
116
+ enumValues: [string, ...string[]];
117
+ baseColumn: never;
118
+ identity: undefined;
119
+ generated: undefined;
120
+ }, {}, {}>;
121
+ status: import("drizzle-orm/pg-core").PgColumn<{
122
+ name: "status";
123
+ tableName: "lock_activity_participation";
124
+ dataType: "string";
125
+ columnType: "PgEnumColumn";
126
+ data: "rejected" | "reward_issued" | "submitted" | "under_review";
127
+ driverParam: string;
128
+ notNull: true;
129
+ hasDefault: true;
130
+ isPrimaryKey: false;
131
+ isAutoincrement: false;
132
+ hasRuntimeDefault: false;
133
+ enumValues: ["submitted", "under_review", "reward_issued", "rejected"];
134
+ baseColumn: never;
135
+ identity: undefined;
136
+ generated: undefined;
137
+ }, {}, {}>;
138
+ rejectReason: import("drizzle-orm/pg-core").PgColumn<{
139
+ name: "reject_reason";
140
+ tableName: "lock_activity_participation";
141
+ dataType: "string";
142
+ columnType: "PgText";
143
+ data: string;
144
+ driverParam: string;
145
+ notNull: false;
146
+ hasDefault: false;
147
+ isPrimaryKey: false;
148
+ isAutoincrement: false;
149
+ hasRuntimeDefault: false;
150
+ enumValues: [string, ...string[]];
151
+ baseColumn: never;
152
+ identity: undefined;
153
+ generated: undefined;
154
+ }, {}, {}>;
155
+ adminRemark: import("drizzle-orm/pg-core").PgColumn<{
156
+ name: "admin_remark";
157
+ tableName: "lock_activity_participation";
158
+ dataType: "string";
159
+ columnType: "PgText";
160
+ data: string;
161
+ driverParam: string;
162
+ notNull: false;
163
+ hasDefault: false;
164
+ isPrimaryKey: false;
165
+ isAutoincrement: false;
166
+ hasRuntimeDefault: false;
167
+ enumValues: [string, ...string[]];
168
+ baseColumn: never;
169
+ identity: undefined;
170
+ generated: undefined;
171
+ }, {}, {}>;
172
+ submittedAt: import("drizzle-orm/pg-core").PgColumn<{
173
+ name: "submitted_at";
174
+ tableName: "lock_activity_participation";
175
+ dataType: "date";
176
+ columnType: "PgTimestamp";
177
+ data: Date;
178
+ driverParam: string;
179
+ notNull: true;
180
+ hasDefault: true;
181
+ isPrimaryKey: false;
182
+ isAutoincrement: false;
183
+ hasRuntimeDefault: false;
184
+ enumValues: undefined;
185
+ baseColumn: never;
186
+ identity: undefined;
187
+ generated: undefined;
188
+ }, {}, {}>;
189
+ reviewedAt: import("drizzle-orm/pg-core").PgColumn<{
190
+ name: "reviewed_at";
191
+ tableName: "lock_activity_participation";
192
+ dataType: "date";
193
+ columnType: "PgTimestamp";
194
+ data: Date;
195
+ driverParam: string;
196
+ notNull: false;
197
+ hasDefault: false;
198
+ isPrimaryKey: false;
199
+ isAutoincrement: false;
200
+ hasRuntimeDefault: false;
201
+ enumValues: undefined;
202
+ baseColumn: never;
203
+ identity: undefined;
204
+ generated: undefined;
205
+ }, {}, {}>;
206
+ rewardIssuedAt: import("drizzle-orm/pg-core").PgColumn<{
207
+ name: "reward_issued_at";
208
+ tableName: "lock_activity_participation";
209
+ dataType: "date";
210
+ columnType: "PgTimestamp";
211
+ data: Date;
212
+ driverParam: string;
213
+ notNull: false;
214
+ hasDefault: false;
215
+ isPrimaryKey: false;
216
+ isAutoincrement: false;
217
+ hasRuntimeDefault: false;
218
+ enumValues: undefined;
219
+ baseColumn: never;
220
+ identity: undefined;
221
+ generated: undefined;
222
+ }, {}, {}>;
223
+ }, undefined>;
224
+ export type LockActivityParticipationSelectSchemaType = typeof lockActivityParticipationSelectSchema.static;
225
+ export declare const lockActivityParticipationInsertSchema: import("drizzle-typebox").BuildSchema<"insert", {
226
+ createdAt: import("drizzle-orm/pg-core").PgColumn<{
227
+ name: "created_at";
228
+ tableName: "lock_activity_participation";
229
+ dataType: "date";
230
+ columnType: "PgTimestamp";
231
+ data: Date;
232
+ driverParam: string;
233
+ notNull: true;
234
+ hasDefault: true;
235
+ isPrimaryKey: false;
236
+ isAutoincrement: false;
237
+ hasRuntimeDefault: false;
238
+ enumValues: undefined;
239
+ baseColumn: never;
240
+ identity: undefined;
241
+ generated: undefined;
242
+ }, {}, {}>;
243
+ updatedAt: import("drizzle-orm/pg-core").PgColumn<{
244
+ name: "updated_at";
245
+ tableName: "lock_activity_participation";
246
+ dataType: "date";
247
+ columnType: "PgTimestamp";
248
+ data: Date;
249
+ driverParam: string;
250
+ notNull: true;
251
+ hasDefault: true;
252
+ isPrimaryKey: false;
253
+ isAutoincrement: false;
254
+ hasRuntimeDefault: false;
255
+ enumValues: undefined;
256
+ baseColumn: never;
257
+ identity: undefined;
258
+ generated: undefined;
259
+ }, {}, {}>;
260
+ id: import("drizzle-orm/pg-core").PgColumn<{
261
+ name: "id";
262
+ tableName: "lock_activity_participation";
263
+ dataType: "string";
264
+ columnType: "PgUUID";
265
+ data: string;
266
+ driverParam: string;
267
+ notNull: true;
268
+ hasDefault: true;
269
+ isPrimaryKey: true;
270
+ isAutoincrement: false;
271
+ hasRuntimeDefault: false;
272
+ enumValues: undefined;
273
+ baseColumn: never;
274
+ identity: undefined;
275
+ generated: undefined;
276
+ }, {}, {}>;
277
+ activityId: import("drizzle-orm/pg-core").PgColumn<{
278
+ name: "activity_id";
279
+ tableName: "lock_activity_participation";
280
+ dataType: "string";
281
+ columnType: "PgUUID";
282
+ data: string;
283
+ driverParam: string;
284
+ notNull: true;
285
+ hasDefault: false;
286
+ isPrimaryKey: false;
287
+ isAutoincrement: false;
288
+ hasRuntimeDefault: false;
289
+ enumValues: undefined;
290
+ baseColumn: never;
291
+ identity: undefined;
292
+ generated: undefined;
293
+ }, {}, {}>;
294
+ userId: import("drizzle-orm/pg-core").PgColumn<{
295
+ name: "user_id";
296
+ tableName: "lock_activity_participation";
297
+ dataType: "string";
298
+ columnType: "PgText";
299
+ data: string;
300
+ driverParam: string;
301
+ notNull: true;
302
+ hasDefault: false;
303
+ isPrimaryKey: false;
304
+ isAutoincrement: false;
305
+ hasRuntimeDefault: false;
306
+ enumValues: [string, ...string[]];
307
+ baseColumn: never;
308
+ identity: undefined;
309
+ generated: undefined;
310
+ }, {}, {}>;
311
+ inviteCode: import("drizzle-orm/pg-core").PgColumn<{
312
+ name: "invite_code";
313
+ tableName: "lock_activity_participation";
314
+ dataType: "string";
315
+ columnType: "PgText";
316
+ data: string;
317
+ driverParam: string;
318
+ notNull: true;
319
+ hasDefault: false;
320
+ isPrimaryKey: false;
321
+ isAutoincrement: false;
322
+ hasRuntimeDefault: false;
323
+ enumValues: [string, ...string[]];
324
+ baseColumn: never;
325
+ identity: undefined;
326
+ generated: undefined;
327
+ }, {}, {}>;
328
+ inviterUserId: import("drizzle-orm/pg-core").PgColumn<{
329
+ name: "inviter_user_id";
330
+ tableName: "lock_activity_participation";
331
+ dataType: "string";
332
+ columnType: "PgText";
333
+ data: string;
334
+ driverParam: string;
335
+ notNull: false;
336
+ hasDefault: false;
337
+ isPrimaryKey: false;
338
+ isAutoincrement: false;
339
+ hasRuntimeDefault: false;
340
+ enumValues: [string, ...string[]];
341
+ baseColumn: never;
342
+ identity: undefined;
343
+ generated: undefined;
344
+ }, {}, {}>;
345
+ status: import("drizzle-orm/pg-core").PgColumn<{
346
+ name: "status";
347
+ tableName: "lock_activity_participation";
348
+ dataType: "string";
349
+ columnType: "PgEnumColumn";
350
+ data: "rejected" | "reward_issued" | "submitted" | "under_review";
351
+ driverParam: string;
352
+ notNull: true;
353
+ hasDefault: true;
354
+ isPrimaryKey: false;
355
+ isAutoincrement: false;
356
+ hasRuntimeDefault: false;
357
+ enumValues: ["submitted", "under_review", "reward_issued", "rejected"];
358
+ baseColumn: never;
359
+ identity: undefined;
360
+ generated: undefined;
361
+ }, {}, {}>;
362
+ rejectReason: import("drizzle-orm/pg-core").PgColumn<{
363
+ name: "reject_reason";
364
+ tableName: "lock_activity_participation";
365
+ dataType: "string";
366
+ columnType: "PgText";
367
+ data: string;
368
+ driverParam: string;
369
+ notNull: false;
370
+ hasDefault: false;
371
+ isPrimaryKey: false;
372
+ isAutoincrement: false;
373
+ hasRuntimeDefault: false;
374
+ enumValues: [string, ...string[]];
375
+ baseColumn: never;
376
+ identity: undefined;
377
+ generated: undefined;
378
+ }, {}, {}>;
379
+ adminRemark: import("drizzle-orm/pg-core").PgColumn<{
380
+ name: "admin_remark";
381
+ tableName: "lock_activity_participation";
382
+ dataType: "string";
383
+ columnType: "PgText";
384
+ data: string;
385
+ driverParam: string;
386
+ notNull: false;
387
+ hasDefault: false;
388
+ isPrimaryKey: false;
389
+ isAutoincrement: false;
390
+ hasRuntimeDefault: false;
391
+ enumValues: [string, ...string[]];
392
+ baseColumn: never;
393
+ identity: undefined;
394
+ generated: undefined;
395
+ }, {}, {}>;
396
+ submittedAt: import("drizzle-orm/pg-core").PgColumn<{
397
+ name: "submitted_at";
398
+ tableName: "lock_activity_participation";
399
+ dataType: "date";
400
+ columnType: "PgTimestamp";
401
+ data: Date;
402
+ driverParam: string;
403
+ notNull: true;
404
+ hasDefault: true;
405
+ isPrimaryKey: false;
406
+ isAutoincrement: false;
407
+ hasRuntimeDefault: false;
408
+ enumValues: undefined;
409
+ baseColumn: never;
410
+ identity: undefined;
411
+ generated: undefined;
412
+ }, {}, {}>;
413
+ reviewedAt: import("drizzle-orm/pg-core").PgColumn<{
414
+ name: "reviewed_at";
415
+ tableName: "lock_activity_participation";
416
+ dataType: "date";
417
+ columnType: "PgTimestamp";
418
+ data: Date;
419
+ driverParam: string;
420
+ notNull: false;
421
+ hasDefault: false;
422
+ isPrimaryKey: false;
423
+ isAutoincrement: false;
424
+ hasRuntimeDefault: false;
425
+ enumValues: undefined;
426
+ baseColumn: never;
427
+ identity: undefined;
428
+ generated: undefined;
429
+ }, {}, {}>;
430
+ rewardIssuedAt: import("drizzle-orm/pg-core").PgColumn<{
431
+ name: "reward_issued_at";
432
+ tableName: "lock_activity_participation";
433
+ dataType: "date";
434
+ columnType: "PgTimestamp";
435
+ data: Date;
436
+ driverParam: string;
437
+ notNull: false;
438
+ hasDefault: false;
439
+ isPrimaryKey: false;
440
+ isAutoincrement: false;
441
+ hasRuntimeDefault: false;
442
+ enumValues: undefined;
443
+ baseColumn: never;
444
+ identity: undefined;
445
+ generated: undefined;
446
+ }, {}, {}>;
447
+ }, undefined>;
448
+ export type LockActivityParticipationInsertSchemaType = typeof lockActivityParticipationInsertSchema.static;