@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,518 @@
1
+ import type { LockActivityCreateInputType, LockActivityListQueryType, LockActivityUpdateInputType } from './dto.schemas';
2
+ export declare abstract class AdminLockActivityService {
3
+ private static getActivityDetail;
4
+ private static assertCoreUpdateAllowed;
5
+ static createActivity(input: LockActivityCreateInputType): Promise<Omit<{
6
+ coverImageFile: {
7
+ fileName: string | null;
8
+ fileSize: number | null;
9
+ id: string;
10
+ mimeType: string | null;
11
+ publicUrl: string | null;
12
+ thumbnailUrl: string | null;
13
+ } | null;
14
+ coverImageFileId: string | null;
15
+ coverImageUrl: string;
16
+ createdAt: Date;
17
+ description: string | null;
18
+ endAt: Date;
19
+ id: string;
20
+ isVisibleOnFrontend: boolean;
21
+ receiveAccountType: {
22
+ allowDeposit: boolean;
23
+ allowInternalReceiveTransfer: boolean;
24
+ allowInternalTransfer: boolean;
25
+ allowTransaction: boolean;
26
+ allowTransfer: boolean;
27
+ allowWithdraw: boolean;
28
+ createdAt: Date;
29
+ description: string | null;
30
+ expiryDays: number | null;
31
+ hasExpiry: boolean;
32
+ id: string;
33
+ internalTransferRatio: string;
34
+ isActive: boolean;
35
+ key: string;
36
+ maxInternalTransferAmount: string;
37
+ maxTransferAmount: string;
38
+ maxWithdrawAmount: string;
39
+ minInternalTransferAmount: string;
40
+ minTransferAmount: string;
41
+ minWithdrawAmount: string;
42
+ name: string;
43
+ sortOrder: number;
44
+ updatedAt: Date;
45
+ };
46
+ receiveAccountTypeId: string;
47
+ rewardAsset: {
48
+ category: "CRYPTO" | "FIAT" | "POINT" | "RWA";
49
+ code: string;
50
+ createdAt: Date;
51
+ iconUrl: string;
52
+ id: string;
53
+ isActive: boolean;
54
+ name: string;
55
+ precision: number;
56
+ symbol: string | null;
57
+ typeId: string | null;
58
+ updatedAt: Date;
59
+ };
60
+ rewardAssetId: string;
61
+ rewardCnyEquivalent: string;
62
+ sortOrder: number;
63
+ startAt: Date;
64
+ status: "active" | "cancelled" | "draft" | "ended";
65
+ title: string;
66
+ updatedAt: Date;
67
+ }, "coverImageFile"> & {
68
+ coverImageUrl: string;
69
+ coverImageFile: {
70
+ id: string;
71
+ fileName: string | null;
72
+ mimeType: string | null;
73
+ fileSize: number | null;
74
+ publicUrl: string | null;
75
+ } | undefined;
76
+ }>;
77
+ static updateActivity(activityId: string, input: LockActivityUpdateInputType): Promise<Omit<{
78
+ coverImageFile: {
79
+ fileName: string | null;
80
+ fileSize: number | null;
81
+ id: string;
82
+ mimeType: string | null;
83
+ publicUrl: string | null;
84
+ thumbnailUrl: string | null;
85
+ } | null;
86
+ coverImageFileId: string | null;
87
+ coverImageUrl: string;
88
+ createdAt: Date;
89
+ description: string | null;
90
+ endAt: Date;
91
+ id: string;
92
+ isVisibleOnFrontend: boolean;
93
+ receiveAccountType: {
94
+ allowDeposit: boolean;
95
+ allowInternalReceiveTransfer: boolean;
96
+ allowInternalTransfer: boolean;
97
+ allowTransaction: boolean;
98
+ allowTransfer: boolean;
99
+ allowWithdraw: boolean;
100
+ createdAt: Date;
101
+ description: string | null;
102
+ expiryDays: number | null;
103
+ hasExpiry: boolean;
104
+ id: string;
105
+ internalTransferRatio: string;
106
+ isActive: boolean;
107
+ key: string;
108
+ maxInternalTransferAmount: string;
109
+ maxTransferAmount: string;
110
+ maxWithdrawAmount: string;
111
+ minInternalTransferAmount: string;
112
+ minTransferAmount: string;
113
+ minWithdrawAmount: string;
114
+ name: string;
115
+ sortOrder: number;
116
+ updatedAt: Date;
117
+ };
118
+ receiveAccountTypeId: string;
119
+ rewardAsset: {
120
+ category: "CRYPTO" | "FIAT" | "POINT" | "RWA";
121
+ code: string;
122
+ createdAt: Date;
123
+ iconUrl: string;
124
+ id: string;
125
+ isActive: boolean;
126
+ name: string;
127
+ precision: number;
128
+ symbol: string | null;
129
+ typeId: string | null;
130
+ updatedAt: Date;
131
+ };
132
+ rewardAssetId: string;
133
+ rewardCnyEquivalent: string;
134
+ sortOrder: number;
135
+ startAt: Date;
136
+ status: "active" | "cancelled" | "draft" | "ended";
137
+ title: string;
138
+ updatedAt: Date;
139
+ }, "coverImageFile"> & {
140
+ coverImageUrl: string;
141
+ coverImageFile: {
142
+ id: string;
143
+ fileName: string | null;
144
+ mimeType: string | null;
145
+ fileSize: number | null;
146
+ publicUrl: string | null;
147
+ } | undefined;
148
+ }>;
149
+ static activateActivity(activityId: string): Promise<Omit<{
150
+ coverImageFile: {
151
+ fileName: string | null;
152
+ fileSize: number | null;
153
+ id: string;
154
+ mimeType: string | null;
155
+ publicUrl: string | null;
156
+ thumbnailUrl: string | null;
157
+ } | null;
158
+ coverImageFileId: string | null;
159
+ coverImageUrl: string;
160
+ createdAt: Date;
161
+ description: string | null;
162
+ endAt: Date;
163
+ id: string;
164
+ isVisibleOnFrontend: boolean;
165
+ receiveAccountType: {
166
+ allowDeposit: boolean;
167
+ allowInternalReceiveTransfer: boolean;
168
+ allowInternalTransfer: boolean;
169
+ allowTransaction: boolean;
170
+ allowTransfer: boolean;
171
+ allowWithdraw: boolean;
172
+ createdAt: Date;
173
+ description: string | null;
174
+ expiryDays: number | null;
175
+ hasExpiry: boolean;
176
+ id: string;
177
+ internalTransferRatio: string;
178
+ isActive: boolean;
179
+ key: string;
180
+ maxInternalTransferAmount: string;
181
+ maxTransferAmount: string;
182
+ maxWithdrawAmount: string;
183
+ minInternalTransferAmount: string;
184
+ minTransferAmount: string;
185
+ minWithdrawAmount: string;
186
+ name: string;
187
+ sortOrder: number;
188
+ updatedAt: Date;
189
+ };
190
+ receiveAccountTypeId: string;
191
+ rewardAsset: {
192
+ category: "CRYPTO" | "FIAT" | "POINT" | "RWA";
193
+ code: string;
194
+ createdAt: Date;
195
+ iconUrl: string;
196
+ id: string;
197
+ isActive: boolean;
198
+ name: string;
199
+ precision: number;
200
+ symbol: string | null;
201
+ typeId: string | null;
202
+ updatedAt: Date;
203
+ };
204
+ rewardAssetId: string;
205
+ rewardCnyEquivalent: string;
206
+ sortOrder: number;
207
+ startAt: Date;
208
+ status: "active" | "cancelled" | "draft" | "ended";
209
+ title: string;
210
+ updatedAt: Date;
211
+ }, "coverImageFile"> & {
212
+ coverImageUrl: string;
213
+ coverImageFile: {
214
+ id: string;
215
+ fileName: string | null;
216
+ mimeType: string | null;
217
+ fileSize: number | null;
218
+ publicUrl: string | null;
219
+ } | undefined;
220
+ }>;
221
+ static endActivity(activityId: string): Promise<Omit<{
222
+ coverImageFile: {
223
+ fileName: string | null;
224
+ fileSize: number | null;
225
+ id: string;
226
+ mimeType: string | null;
227
+ publicUrl: string | null;
228
+ thumbnailUrl: string | null;
229
+ } | null;
230
+ coverImageFileId: string | null;
231
+ coverImageUrl: string;
232
+ createdAt: Date;
233
+ description: string | null;
234
+ endAt: Date;
235
+ id: string;
236
+ isVisibleOnFrontend: boolean;
237
+ receiveAccountType: {
238
+ allowDeposit: boolean;
239
+ allowInternalReceiveTransfer: boolean;
240
+ allowInternalTransfer: boolean;
241
+ allowTransaction: boolean;
242
+ allowTransfer: boolean;
243
+ allowWithdraw: boolean;
244
+ createdAt: Date;
245
+ description: string | null;
246
+ expiryDays: number | null;
247
+ hasExpiry: boolean;
248
+ id: string;
249
+ internalTransferRatio: string;
250
+ isActive: boolean;
251
+ key: string;
252
+ maxInternalTransferAmount: string;
253
+ maxTransferAmount: string;
254
+ maxWithdrawAmount: string;
255
+ minInternalTransferAmount: string;
256
+ minTransferAmount: string;
257
+ minWithdrawAmount: string;
258
+ name: string;
259
+ sortOrder: number;
260
+ updatedAt: Date;
261
+ };
262
+ receiveAccountTypeId: string;
263
+ rewardAsset: {
264
+ category: "CRYPTO" | "FIAT" | "POINT" | "RWA";
265
+ code: string;
266
+ createdAt: Date;
267
+ iconUrl: string;
268
+ id: string;
269
+ isActive: boolean;
270
+ name: string;
271
+ precision: number;
272
+ symbol: string | null;
273
+ typeId: string | null;
274
+ updatedAt: Date;
275
+ };
276
+ rewardAssetId: string;
277
+ rewardCnyEquivalent: string;
278
+ sortOrder: number;
279
+ startAt: Date;
280
+ status: "active" | "cancelled" | "draft" | "ended";
281
+ title: string;
282
+ updatedAt: Date;
283
+ }, "coverImageFile"> & {
284
+ coverImageUrl: string;
285
+ coverImageFile: {
286
+ id: string;
287
+ fileName: string | null;
288
+ mimeType: string | null;
289
+ fileSize: number | null;
290
+ publicUrl: string | null;
291
+ } | undefined;
292
+ }>;
293
+ static cancelActivity(activityId: string): Promise<Omit<{
294
+ coverImageFile: {
295
+ fileName: string | null;
296
+ fileSize: number | null;
297
+ id: string;
298
+ mimeType: string | null;
299
+ publicUrl: string | null;
300
+ thumbnailUrl: string | null;
301
+ } | null;
302
+ coverImageFileId: string | null;
303
+ coverImageUrl: string;
304
+ createdAt: Date;
305
+ description: string | null;
306
+ endAt: Date;
307
+ id: string;
308
+ isVisibleOnFrontend: boolean;
309
+ receiveAccountType: {
310
+ allowDeposit: boolean;
311
+ allowInternalReceiveTransfer: boolean;
312
+ allowInternalTransfer: boolean;
313
+ allowTransaction: boolean;
314
+ allowTransfer: boolean;
315
+ allowWithdraw: boolean;
316
+ createdAt: Date;
317
+ description: string | null;
318
+ expiryDays: number | null;
319
+ hasExpiry: boolean;
320
+ id: string;
321
+ internalTransferRatio: string;
322
+ isActive: boolean;
323
+ key: string;
324
+ maxInternalTransferAmount: string;
325
+ maxTransferAmount: string;
326
+ maxWithdrawAmount: string;
327
+ minInternalTransferAmount: string;
328
+ minTransferAmount: string;
329
+ minWithdrawAmount: string;
330
+ name: string;
331
+ sortOrder: number;
332
+ updatedAt: Date;
333
+ };
334
+ receiveAccountTypeId: string;
335
+ rewardAsset: {
336
+ category: "CRYPTO" | "FIAT" | "POINT" | "RWA";
337
+ code: string;
338
+ createdAt: Date;
339
+ iconUrl: string;
340
+ id: string;
341
+ isActive: boolean;
342
+ name: string;
343
+ precision: number;
344
+ symbol: string | null;
345
+ typeId: string | null;
346
+ updatedAt: Date;
347
+ };
348
+ rewardAssetId: string;
349
+ rewardCnyEquivalent: string;
350
+ sortOrder: number;
351
+ startAt: Date;
352
+ status: "active" | "cancelled" | "draft" | "ended";
353
+ title: string;
354
+ updatedAt: Date;
355
+ }, "coverImageFile"> & {
356
+ coverImageUrl: string;
357
+ coverImageFile: {
358
+ id: string;
359
+ fileName: string | null;
360
+ mimeType: string | null;
361
+ fileSize: number | null;
362
+ publicUrl: string | null;
363
+ } | undefined;
364
+ }>;
365
+ static getActivity(activityId: string): Promise<Omit<{
366
+ coverImageFile: {
367
+ fileName: string | null;
368
+ fileSize: number | null;
369
+ id: string;
370
+ mimeType: string | null;
371
+ publicUrl: string | null;
372
+ thumbnailUrl: string | null;
373
+ } | null;
374
+ coverImageFileId: string | null;
375
+ coverImageUrl: string;
376
+ createdAt: Date;
377
+ description: string | null;
378
+ endAt: Date;
379
+ id: string;
380
+ isVisibleOnFrontend: boolean;
381
+ receiveAccountType: {
382
+ allowDeposit: boolean;
383
+ allowInternalReceiveTransfer: boolean;
384
+ allowInternalTransfer: boolean;
385
+ allowTransaction: boolean;
386
+ allowTransfer: boolean;
387
+ allowWithdraw: boolean;
388
+ createdAt: Date;
389
+ description: string | null;
390
+ expiryDays: number | null;
391
+ hasExpiry: boolean;
392
+ id: string;
393
+ internalTransferRatio: string;
394
+ isActive: boolean;
395
+ key: string;
396
+ maxInternalTransferAmount: string;
397
+ maxTransferAmount: string;
398
+ maxWithdrawAmount: string;
399
+ minInternalTransferAmount: string;
400
+ minTransferAmount: string;
401
+ minWithdrawAmount: string;
402
+ name: string;
403
+ sortOrder: number;
404
+ updatedAt: Date;
405
+ };
406
+ receiveAccountTypeId: string;
407
+ rewardAsset: {
408
+ category: "CRYPTO" | "FIAT" | "POINT" | "RWA";
409
+ code: string;
410
+ createdAt: Date;
411
+ iconUrl: string;
412
+ id: string;
413
+ isActive: boolean;
414
+ name: string;
415
+ precision: number;
416
+ symbol: string | null;
417
+ typeId: string | null;
418
+ updatedAt: Date;
419
+ };
420
+ rewardAssetId: string;
421
+ rewardCnyEquivalent: string;
422
+ sortOrder: number;
423
+ startAt: Date;
424
+ status: "active" | "cancelled" | "draft" | "ended";
425
+ title: string;
426
+ updatedAt: Date;
427
+ }, "coverImageFile"> & {
428
+ coverImageUrl: string;
429
+ coverImageFile: {
430
+ id: string;
431
+ fileName: string | null;
432
+ mimeType: string | null;
433
+ fileSize: number | null;
434
+ publicUrl: string | null;
435
+ } | undefined;
436
+ }>;
437
+ static listActivities(filters: LockActivityListQueryType): Promise<{
438
+ data: (Omit<{
439
+ coverImageFile: {
440
+ fileName: string | null;
441
+ fileSize: number | null;
442
+ id: string;
443
+ mimeType: string | null;
444
+ publicUrl: string | null;
445
+ thumbnailUrl: string | null;
446
+ } | null;
447
+ coverImageFileId: string | null;
448
+ coverImageUrl: string;
449
+ createdAt: Date;
450
+ description: string | null;
451
+ endAt: Date;
452
+ id: string;
453
+ isVisibleOnFrontend: boolean;
454
+ receiveAccountType: {
455
+ allowDeposit: boolean;
456
+ allowInternalReceiveTransfer: boolean;
457
+ allowInternalTransfer: boolean;
458
+ allowTransaction: boolean;
459
+ allowTransfer: boolean;
460
+ allowWithdraw: boolean;
461
+ createdAt: Date;
462
+ description: string | null;
463
+ expiryDays: number | null;
464
+ hasExpiry: boolean;
465
+ id: string;
466
+ internalTransferRatio: string;
467
+ isActive: boolean;
468
+ key: string;
469
+ maxInternalTransferAmount: string;
470
+ maxTransferAmount: string;
471
+ maxWithdrawAmount: string;
472
+ minInternalTransferAmount: string;
473
+ minTransferAmount: string;
474
+ minWithdrawAmount: string;
475
+ name: string;
476
+ sortOrder: number;
477
+ updatedAt: Date;
478
+ };
479
+ receiveAccountTypeId: string;
480
+ rewardAsset: {
481
+ category: "CRYPTO" | "FIAT" | "POINT" | "RWA";
482
+ code: string;
483
+ createdAt: Date;
484
+ iconUrl: string;
485
+ id: string;
486
+ isActive: boolean;
487
+ name: string;
488
+ precision: number;
489
+ symbol: string | null;
490
+ typeId: string | null;
491
+ updatedAt: Date;
492
+ };
493
+ rewardAssetId: string;
494
+ rewardCnyEquivalent: string;
495
+ sortOrder: number;
496
+ startAt: Date;
497
+ status: "active" | "cancelled" | "draft" | "ended";
498
+ title: string;
499
+ updatedAt: Date;
500
+ }, "coverImageFile"> & {
501
+ coverImageUrl: string;
502
+ coverImageFile: {
503
+ id: string;
504
+ fileName: string | null;
505
+ mimeType: string | null;
506
+ fileSize: number | null;
507
+ publicUrl: string | null;
508
+ } | undefined;
509
+ })[];
510
+ pagination: {
511
+ pageSize: number;
512
+ pageIndex: number;
513
+ total: number;
514
+ totalPages: number;
515
+ hasNextPage: boolean;
516
+ };
517
+ }>;
518
+ }
@@ -0,0 +1,2 @@
1
+ /** 提交参与后,延迟多久自动发放锁仓奖励 */
2
+ export declare const LOCK_ACTIVITY_REWARD_DELAY_MS: number;
@@ -0,0 +1,6 @@
1
+ import type { CronTaskDefinition } from '../cron';
2
+ /**
3
+ * 锁仓活动奖励自动发放任务
4
+ * 提交满 24 小时后,扫描 submitted 参与记录并按 CNY 等价换算入账锁仓账户。
5
+ */
6
+ export declare const lockActivityCronTasks: CronTaskDefinition[];