@r2wa-org/eden 0.0.99 → 0.0.101

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 (34) hide show
  1. package/dist/admin/index.d.ts +706 -12
  2. package/dist/asset-convert-product/admin/router.d.ts +1 -13
  3. package/dist/auth/better-auth.d.ts +13 -1
  4. package/dist/auth/permissions.d.ts +11 -1
  5. package/dist/auth/roles.d.ts +30 -0
  6. package/dist/bank-account/admin/router.d.ts +1 -13
  7. package/dist/check-in/admin/reward.dto.schemas.d.ts +179 -0
  8. package/dist/check-in/admin/reward.router.d.ts +1091 -0
  9. package/dist/check-in/admin/reward.service.d.ts +430 -0
  10. package/dist/check-in/admin/router.d.ts +644 -0
  11. package/dist/check-in/errors/index.d.ts +10 -0
  12. package/dist/check-in/errors/locales/zh.d.ts +10 -0
  13. package/dist/check-in/index.d.ts +5 -0
  14. package/dist/check-in/internal/reward-config.service.d.ts +97 -0
  15. package/dist/check-in/permissions.d.ts +2 -0
  16. package/dist/check-in/reward.db.schemas.d.ts +896 -0
  17. package/dist/check-in/reward.schema.d.ts +477 -0
  18. package/dist/content-video/admin/dto.schemas.d.ts +14 -14
  19. package/dist/content-video/admin/router.d.ts +12 -12
  20. package/dist/content-video/admin/service.d.ts +1 -0
  21. package/dist/db/schemas.d.ts +1 -0
  22. package/dist/index.d.ts +722 -12
  23. package/dist/lock-activity/admin/dto.schemas.d.ts +16 -0
  24. package/dist/lock-activity/admin/router.d.ts +69 -1
  25. package/dist/lock-activity/admin/service.d.ts +134 -8
  26. package/dist/lock-activity/db.schemas.d.ts +34 -0
  27. package/dist/lock-activity/internal/service.d.ts +41 -0
  28. package/dist/lock-activity/schema.d.ts +18 -0
  29. package/dist/lock-activity/shared.dto.schemas.d.ts +7 -0
  30. package/dist/lock-activity/user/dto.schemas.d.ts +24 -0
  31. package/dist/lock-activity/user/router.d.ts +16 -0
  32. package/dist/lock-activity/user/service.d.ts +39 -3
  33. package/dist/news/admin/router.d.ts +13 -1
  34. package/package.json +1 -1
@@ -4046,6 +4046,644 @@ export declare const adminRouter: Elysia<"/admin", {
4046
4046
  } & {
4047
4047
  admin: {
4048
4048
  checkIns: {};
4049
+ } & {
4050
+ checkIns: {
4051
+ "reward-plans": {};
4052
+ } & {
4053
+ "reward-plans": {
4054
+ get: {
4055
+ body: {};
4056
+ params: {};
4057
+ query: {};
4058
+ headers: {};
4059
+ response: {
4060
+ 200: {
4061
+ checkInType: "app" | "meeting";
4062
+ createdAt: Date;
4063
+ createdBy: string;
4064
+ creator: {
4065
+ id: string;
4066
+ name: string;
4067
+ email: string;
4068
+ } | null;
4069
+ dailyPayoutAccountType: {
4070
+ id: string;
4071
+ key: string;
4072
+ name: string;
4073
+ isActive: boolean;
4074
+ };
4075
+ dailyPayoutAccountTypeId: string;
4076
+ dailyRewardAmount: string;
4077
+ dailyRewardCategory: string;
4078
+ id: string;
4079
+ isEnabled: boolean;
4080
+ name: string;
4081
+ rewardAsset: {
4082
+ id: string;
4083
+ code: string;
4084
+ name: string;
4085
+ symbol: string | null;
4086
+ precision: number;
4087
+ isActive: boolean;
4088
+ };
4089
+ rewardAssetId: string;
4090
+ rules: {
4091
+ createdAt: Date;
4092
+ createdBy: string;
4093
+ creator: {
4094
+ id: string;
4095
+ name: string;
4096
+ email: string;
4097
+ } | null;
4098
+ id: string;
4099
+ isEnabled: boolean;
4100
+ payoutAccountType: {
4101
+ id: string;
4102
+ key: string;
4103
+ name: string;
4104
+ isActive: boolean;
4105
+ };
4106
+ payoutAccountTypeId: string;
4107
+ planId: string;
4108
+ rewardAmount: string;
4109
+ rewardCategory: string;
4110
+ ruleType: "consecutive" | "cumulative";
4111
+ sortOrder: number;
4112
+ thresholdDays: number;
4113
+ updatedAt: Date;
4114
+ updatedBy: string | null;
4115
+ updater: {
4116
+ id: string;
4117
+ name: string;
4118
+ email: string;
4119
+ } | null;
4120
+ }[];
4121
+ sortOrder: number;
4122
+ updatedAt: Date;
4123
+ updatedBy: string | null;
4124
+ updater: {
4125
+ id: string;
4126
+ name: string;
4127
+ email: string;
4128
+ } | null;
4129
+ };
4130
+ 401: "Unauthorized";
4131
+ 403: "Forbidden: Admins only";
4132
+ 422: {
4133
+ type: 'validation';
4134
+ on: string;
4135
+ summary?: string;
4136
+ message?: string;
4137
+ found?: unknown;
4138
+ property?: string;
4139
+ expected?: string;
4140
+ };
4141
+ };
4142
+ };
4143
+ };
4144
+ } & {
4145
+ "reward-plans": {
4146
+ post: {
4147
+ body: {
4148
+ checkInType?: "app" | "meeting" | undefined;
4149
+ dailyPayoutAccountTypeId: string;
4150
+ dailyRewardAmount: string;
4151
+ dailyRewardCategory?: string | undefined;
4152
+ isEnabled?: boolean | undefined;
4153
+ name: string;
4154
+ rewardAssetId: string;
4155
+ rules?: {
4156
+ isEnabled?: boolean | undefined;
4157
+ payoutAccountTypeId: string;
4158
+ rewardAmount: string;
4159
+ rewardCategory?: string | undefined;
4160
+ ruleType: "consecutive" | "cumulative";
4161
+ sortOrder?: number | undefined;
4162
+ thresholdDays: number;
4163
+ }[] | undefined;
4164
+ sortOrder?: number | undefined;
4165
+ };
4166
+ params: {};
4167
+ query: {};
4168
+ headers: {};
4169
+ response: {
4170
+ 200: {
4171
+ checkInType: "app" | "meeting";
4172
+ createdAt: Date;
4173
+ createdBy: string;
4174
+ creator: {
4175
+ id: string;
4176
+ name: string;
4177
+ email: string;
4178
+ } | null;
4179
+ dailyPayoutAccountType: {
4180
+ id: string;
4181
+ key: string;
4182
+ name: string;
4183
+ isActive: boolean;
4184
+ };
4185
+ dailyPayoutAccountTypeId: string;
4186
+ dailyRewardAmount: string;
4187
+ dailyRewardCategory: string;
4188
+ id: string;
4189
+ isEnabled: boolean;
4190
+ name: string;
4191
+ rewardAsset: {
4192
+ id: string;
4193
+ code: string;
4194
+ name: string;
4195
+ symbol: string | null;
4196
+ precision: number;
4197
+ isActive: boolean;
4198
+ };
4199
+ rewardAssetId: string;
4200
+ rules: {
4201
+ createdAt: Date;
4202
+ createdBy: string;
4203
+ creator: {
4204
+ id: string;
4205
+ name: string;
4206
+ email: string;
4207
+ } | null;
4208
+ id: string;
4209
+ isEnabled: boolean;
4210
+ payoutAccountType: {
4211
+ id: string;
4212
+ key: string;
4213
+ name: string;
4214
+ isActive: boolean;
4215
+ };
4216
+ payoutAccountTypeId: string;
4217
+ planId: string;
4218
+ rewardAmount: string;
4219
+ rewardCategory: string;
4220
+ ruleType: "consecutive" | "cumulative";
4221
+ sortOrder: number;
4222
+ thresholdDays: number;
4223
+ updatedAt: Date;
4224
+ updatedBy: string | null;
4225
+ updater: {
4226
+ id: string;
4227
+ name: string;
4228
+ email: string;
4229
+ } | null;
4230
+ }[];
4231
+ sortOrder: number;
4232
+ updatedAt: Date;
4233
+ updatedBy: string | null;
4234
+ updater: {
4235
+ id: string;
4236
+ name: string;
4237
+ email: string;
4238
+ } | null;
4239
+ };
4240
+ 401: "Unauthorized";
4241
+ 403: "Forbidden: Admins only";
4242
+ 422: {
4243
+ type: 'validation';
4244
+ on: string;
4245
+ summary?: string;
4246
+ message?: string;
4247
+ found?: unknown;
4248
+ property?: string;
4249
+ expected?: string;
4250
+ };
4251
+ };
4252
+ };
4253
+ };
4254
+ } & {
4255
+ "reward-plans": {
4256
+ patch: {
4257
+ body: {
4258
+ name?: string | undefined;
4259
+ rewardAssetId?: string | undefined;
4260
+ dailyRewardAmount?: string | undefined;
4261
+ dailyRewardCategory?: string | undefined;
4262
+ dailyPayoutAccountTypeId?: string | undefined;
4263
+ checkInType?: "app" | "meeting" | undefined;
4264
+ isEnabled?: boolean | undefined;
4265
+ sortOrder?: number | undefined;
4266
+ };
4267
+ params: {};
4268
+ query: {};
4269
+ headers: {};
4270
+ response: {
4271
+ 200: {
4272
+ checkInType: "app" | "meeting";
4273
+ createdAt: Date;
4274
+ createdBy: string;
4275
+ creator: {
4276
+ id: string;
4277
+ name: string;
4278
+ email: string;
4279
+ } | null;
4280
+ dailyPayoutAccountType: {
4281
+ id: string;
4282
+ key: string;
4283
+ name: string;
4284
+ isActive: boolean;
4285
+ };
4286
+ dailyPayoutAccountTypeId: string;
4287
+ dailyRewardAmount: string;
4288
+ dailyRewardCategory: string;
4289
+ id: string;
4290
+ isEnabled: boolean;
4291
+ name: string;
4292
+ rewardAsset: {
4293
+ id: string;
4294
+ code: string;
4295
+ name: string;
4296
+ symbol: string | null;
4297
+ precision: number;
4298
+ isActive: boolean;
4299
+ };
4300
+ rewardAssetId: string;
4301
+ rules: {
4302
+ createdAt: Date;
4303
+ createdBy: string;
4304
+ creator: {
4305
+ id: string;
4306
+ name: string;
4307
+ email: string;
4308
+ } | null;
4309
+ id: string;
4310
+ isEnabled: boolean;
4311
+ payoutAccountType: {
4312
+ id: string;
4313
+ key: string;
4314
+ name: string;
4315
+ isActive: boolean;
4316
+ };
4317
+ payoutAccountTypeId: string;
4318
+ planId: string;
4319
+ rewardAmount: string;
4320
+ rewardCategory: string;
4321
+ ruleType: "consecutive" | "cumulative";
4322
+ sortOrder: number;
4323
+ thresholdDays: number;
4324
+ updatedAt: Date;
4325
+ updatedBy: string | null;
4326
+ updater: {
4327
+ id: string;
4328
+ name: string;
4329
+ email: string;
4330
+ } | null;
4331
+ }[];
4332
+ sortOrder: number;
4333
+ updatedAt: Date;
4334
+ updatedBy: string | null;
4335
+ updater: {
4336
+ id: string;
4337
+ name: string;
4338
+ email: string;
4339
+ } | null;
4340
+ };
4341
+ 401: "Unauthorized";
4342
+ 403: "Forbidden: Admins only";
4343
+ 422: {
4344
+ type: 'validation';
4345
+ on: string;
4346
+ summary?: string;
4347
+ message?: string;
4348
+ found?: unknown;
4349
+ property?: string;
4350
+ expected?: string;
4351
+ };
4352
+ };
4353
+ };
4354
+ };
4355
+ } & {
4356
+ "reward-plans": {
4357
+ delete: {
4358
+ body: {};
4359
+ params: {};
4360
+ query: {};
4361
+ headers: {};
4362
+ response: {
4363
+ 200: {
4364
+ success: boolean;
4365
+ };
4366
+ 401: "Unauthorized";
4367
+ 403: "Forbidden: Admins only";
4368
+ 422: {
4369
+ type: 'validation';
4370
+ on: string;
4371
+ summary?: string;
4372
+ message?: string;
4373
+ found?: unknown;
4374
+ property?: string;
4375
+ expected?: string;
4376
+ };
4377
+ };
4378
+ };
4379
+ };
4380
+ } & {
4381
+ "reward-plans": {
4382
+ rules: {
4383
+ post: {
4384
+ body: {
4385
+ isEnabled?: boolean | undefined;
4386
+ payoutAccountTypeId: string;
4387
+ rewardAmount: string;
4388
+ rewardCategory?: string | undefined;
4389
+ ruleType: "consecutive" | "cumulative";
4390
+ sortOrder?: number | undefined;
4391
+ thresholdDays: number;
4392
+ };
4393
+ params: {};
4394
+ query: {};
4395
+ headers: {};
4396
+ response: {
4397
+ 200: {
4398
+ checkInType: "app" | "meeting";
4399
+ createdAt: Date;
4400
+ createdBy: string;
4401
+ creator: {
4402
+ id: string;
4403
+ name: string;
4404
+ email: string;
4405
+ } | null;
4406
+ dailyPayoutAccountType: {
4407
+ id: string;
4408
+ key: string;
4409
+ name: string;
4410
+ isActive: boolean;
4411
+ };
4412
+ dailyPayoutAccountTypeId: string;
4413
+ dailyRewardAmount: string;
4414
+ dailyRewardCategory: string;
4415
+ id: string;
4416
+ isEnabled: boolean;
4417
+ name: string;
4418
+ rewardAsset: {
4419
+ id: string;
4420
+ code: string;
4421
+ name: string;
4422
+ symbol: string | null;
4423
+ precision: number;
4424
+ isActive: boolean;
4425
+ };
4426
+ rewardAssetId: string;
4427
+ rules: {
4428
+ createdAt: Date;
4429
+ createdBy: string;
4430
+ creator: {
4431
+ id: string;
4432
+ name: string;
4433
+ email: string;
4434
+ } | null;
4435
+ id: string;
4436
+ isEnabled: boolean;
4437
+ payoutAccountType: {
4438
+ id: string;
4439
+ key: string;
4440
+ name: string;
4441
+ isActive: boolean;
4442
+ };
4443
+ payoutAccountTypeId: string;
4444
+ planId: string;
4445
+ rewardAmount: string;
4446
+ rewardCategory: string;
4447
+ ruleType: "consecutive" | "cumulative";
4448
+ sortOrder: number;
4449
+ thresholdDays: number;
4450
+ updatedAt: Date;
4451
+ updatedBy: string | null;
4452
+ updater: {
4453
+ id: string;
4454
+ name: string;
4455
+ email: string;
4456
+ } | null;
4457
+ }[];
4458
+ sortOrder: number;
4459
+ updatedAt: Date;
4460
+ updatedBy: string | null;
4461
+ updater: {
4462
+ id: string;
4463
+ name: string;
4464
+ email: string;
4465
+ } | null;
4466
+ };
4467
+ 401: "Unauthorized";
4468
+ 403: "Forbidden: Admins only";
4469
+ 422: {
4470
+ type: 'validation';
4471
+ on: string;
4472
+ summary?: string;
4473
+ message?: string;
4474
+ found?: unknown;
4475
+ property?: string;
4476
+ expected?: string;
4477
+ };
4478
+ };
4479
+ };
4480
+ };
4481
+ };
4482
+ } & {
4483
+ "reward-plans": {
4484
+ rules: {
4485
+ ":ruleId": {
4486
+ patch: {
4487
+ body: {
4488
+ isEnabled?: boolean | undefined;
4489
+ payoutAccountTypeId?: string | undefined;
4490
+ rewardAmount?: string | undefined;
4491
+ rewardCategory?: string | undefined;
4492
+ ruleType?: "consecutive" | "cumulative" | undefined;
4493
+ sortOrder?: number | undefined;
4494
+ thresholdDays?: number | undefined;
4495
+ };
4496
+ params: {
4497
+ ruleId: string;
4498
+ };
4499
+ query: {};
4500
+ headers: {};
4501
+ response: {
4502
+ 200: {
4503
+ checkInType: "app" | "meeting";
4504
+ createdAt: Date;
4505
+ createdBy: string;
4506
+ creator: {
4507
+ id: string;
4508
+ name: string;
4509
+ email: string;
4510
+ } | null;
4511
+ dailyPayoutAccountType: {
4512
+ id: string;
4513
+ key: string;
4514
+ name: string;
4515
+ isActive: boolean;
4516
+ };
4517
+ dailyPayoutAccountTypeId: string;
4518
+ dailyRewardAmount: string;
4519
+ dailyRewardCategory: string;
4520
+ id: string;
4521
+ isEnabled: boolean;
4522
+ name: string;
4523
+ rewardAsset: {
4524
+ id: string;
4525
+ code: string;
4526
+ name: string;
4527
+ symbol: string | null;
4528
+ precision: number;
4529
+ isActive: boolean;
4530
+ };
4531
+ rewardAssetId: string;
4532
+ rules: {
4533
+ createdAt: Date;
4534
+ createdBy: string;
4535
+ creator: {
4536
+ id: string;
4537
+ name: string;
4538
+ email: string;
4539
+ } | null;
4540
+ id: string;
4541
+ isEnabled: boolean;
4542
+ payoutAccountType: {
4543
+ id: string;
4544
+ key: string;
4545
+ name: string;
4546
+ isActive: boolean;
4547
+ };
4548
+ payoutAccountTypeId: string;
4549
+ planId: string;
4550
+ rewardAmount: string;
4551
+ rewardCategory: string;
4552
+ ruleType: "consecutive" | "cumulative";
4553
+ sortOrder: number;
4554
+ thresholdDays: number;
4555
+ updatedAt: Date;
4556
+ updatedBy: string | null;
4557
+ updater: {
4558
+ id: string;
4559
+ name: string;
4560
+ email: string;
4561
+ } | null;
4562
+ }[];
4563
+ sortOrder: number;
4564
+ updatedAt: Date;
4565
+ updatedBy: string | null;
4566
+ updater: {
4567
+ id: string;
4568
+ name: string;
4569
+ email: string;
4570
+ } | null;
4571
+ };
4572
+ 401: "Unauthorized";
4573
+ 403: "Forbidden: Admins only";
4574
+ 422: {
4575
+ type: 'validation';
4576
+ on: string;
4577
+ summary?: string;
4578
+ message?: string;
4579
+ found?: unknown;
4580
+ property?: string;
4581
+ expected?: string;
4582
+ };
4583
+ };
4584
+ };
4585
+ };
4586
+ };
4587
+ };
4588
+ } & {
4589
+ "reward-plans": {
4590
+ rules: {
4591
+ ":ruleId": {
4592
+ delete: {
4593
+ body: {};
4594
+ params: {
4595
+ ruleId: string;
4596
+ };
4597
+ query: {};
4598
+ headers: {};
4599
+ response: {
4600
+ 200: {
4601
+ checkInType: "app" | "meeting";
4602
+ createdAt: Date;
4603
+ createdBy: string;
4604
+ creator: {
4605
+ id: string;
4606
+ name: string;
4607
+ email: string;
4608
+ } | null;
4609
+ dailyPayoutAccountType: {
4610
+ id: string;
4611
+ key: string;
4612
+ name: string;
4613
+ isActive: boolean;
4614
+ };
4615
+ dailyPayoutAccountTypeId: string;
4616
+ dailyRewardAmount: string;
4617
+ dailyRewardCategory: string;
4618
+ id: string;
4619
+ isEnabled: boolean;
4620
+ name: string;
4621
+ rewardAsset: {
4622
+ id: string;
4623
+ code: string;
4624
+ name: string;
4625
+ symbol: string | null;
4626
+ precision: number;
4627
+ isActive: boolean;
4628
+ };
4629
+ rewardAssetId: string;
4630
+ rules: {
4631
+ createdAt: Date;
4632
+ createdBy: string;
4633
+ creator: {
4634
+ id: string;
4635
+ name: string;
4636
+ email: string;
4637
+ } | null;
4638
+ id: string;
4639
+ isEnabled: boolean;
4640
+ payoutAccountType: {
4641
+ id: string;
4642
+ key: string;
4643
+ name: string;
4644
+ isActive: boolean;
4645
+ };
4646
+ payoutAccountTypeId: string;
4647
+ planId: string;
4648
+ rewardAmount: string;
4649
+ rewardCategory: string;
4650
+ ruleType: "consecutive" | "cumulative";
4651
+ sortOrder: number;
4652
+ thresholdDays: number;
4653
+ updatedAt: Date;
4654
+ updatedBy: string | null;
4655
+ updater: {
4656
+ id: string;
4657
+ name: string;
4658
+ email: string;
4659
+ } | null;
4660
+ }[];
4661
+ sortOrder: number;
4662
+ updatedAt: Date;
4663
+ updatedBy: string | null;
4664
+ updater: {
4665
+ id: string;
4666
+ name: string;
4667
+ email: string;
4668
+ } | null;
4669
+ };
4670
+ 401: "Unauthorized";
4671
+ 403: "Forbidden: Admins only";
4672
+ 422: {
4673
+ type: 'validation';
4674
+ on: string;
4675
+ summary?: string;
4676
+ message?: string;
4677
+ found?: unknown;
4678
+ property?: string;
4679
+ expected?: string;
4680
+ };
4681
+ };
4682
+ };
4683
+ };
4684
+ };
4685
+ };
4686
+ };
4049
4687
  } & {
4050
4688
  checkIns: {
4051
4689
  get: {
@@ -7550,15 +8188,15 @@ export declare const adminRouter: Elysia<"/admin", {
7550
8188
  content_videos: {
7551
8189
  post: {
7552
8190
  body: {
7553
- title: string;
7554
- description?: string | null | undefined;
7555
- videoFileId: string;
7556
8191
  coverFileId?: string | undefined;
7557
- status?: "archived" | "draft" | "published" | undefined;
8192
+ description?: string | null | undefined;
8193
+ durationSeconds?: number | null | undefined;
7558
8194
  isEnabled?: boolean | undefined;
8195
+ publishedAt?: string | Date | null | undefined;
7559
8196
  sortOrder?: number | undefined;
7560
- durationSeconds?: number | null | undefined;
7561
- publishedAt?: Date | null | undefined;
8197
+ status?: "archived" | "draft" | "published" | undefined;
8198
+ title: string;
8199
+ videoFileId: string;
7562
8200
  };
7563
8201
  params: {};
7564
8202
  query: {};
@@ -7741,15 +8379,15 @@ export declare const adminRouter: Elysia<"/admin", {
7741
8379
  ":id": {
7742
8380
  patch: {
7743
8381
  body: {
7744
- title?: string | undefined;
7745
- description?: string | null | undefined;
7746
- videoFileId?: string | undefined;
7747
8382
  coverFileId?: string | undefined;
7748
- status?: "archived" | "draft" | "published" | undefined;
8383
+ description?: string | null | undefined;
8384
+ durationSeconds?: number | null | undefined;
7749
8385
  isEnabled?: boolean | undefined;
8386
+ publishedAt?: string | Date | null | undefined;
7750
8387
  sortOrder?: number | undefined;
7751
- durationSeconds?: number | null | undefined;
7752
- publishedAt?: Date | null | undefined;
8388
+ status?: "archived" | "draft" | "published" | undefined;
8389
+ title?: string | undefined;
8390
+ videoFileId?: string | undefined;
7753
8391
  };
7754
8392
  params: {
7755
8393
  id: string;
@@ -9839,6 +10477,14 @@ export declare const adminRouter: Elysia<"/admin", {
9839
10477
  headers: {};
9840
10478
  response: {
9841
10479
  200: {
10480
+ coverImageFile?: {
10481
+ id: string;
10482
+ fileName: string | null;
10483
+ mimeType: string | null;
10484
+ fileSize: number | null;
10485
+ publicUrl: string | null;
10486
+ } | undefined;
10487
+ coverImageFileId: string | null;
9842
10488
  coverImageUrl: string;
9843
10489
  createdAt: Date;
9844
10490
  description: string | null;
@@ -9907,6 +10553,14 @@ export declare const adminRouter: Elysia<"/admin", {
9907
10553
  headers: {};
9908
10554
  response: {
9909
10555
  200: {
10556
+ coverImageFile?: {
10557
+ id: string;
10558
+ fileName: string | null;
10559
+ mimeType: string | null;
10560
+ fileSize: number | null;
10561
+ publicUrl: string | null;
10562
+ } | undefined;
10563
+ coverImageFileId: string | null;
9910
10564
  coverImageUrl: string;
9911
10565
  createdAt: Date;
9912
10566
  description: string | null;
@@ -9965,6 +10619,14 @@ export declare const adminRouter: Elysia<"/admin", {
9965
10619
  headers: {};
9966
10620
  response: {
9967
10621
  200: {
10622
+ coverImageFile?: {
10623
+ id: string;
10624
+ fileName: string | null;
10625
+ mimeType: string | null;
10626
+ fileSize: number | null;
10627
+ publicUrl: string | null;
10628
+ } | undefined;
10629
+ coverImageFileId: string | null;
9968
10630
  coverImageUrl: string;
9969
10631
  createdAt: Date;
9970
10632
  description: string | null;
@@ -10029,6 +10691,14 @@ export declare const adminRouter: Elysia<"/admin", {
10029
10691
  response: {
10030
10692
  200: {
10031
10693
  data: {
10694
+ coverImageFile?: {
10695
+ id: string;
10696
+ fileName: string | null;
10697
+ mimeType: string | null;
10698
+ fileSize: number | null;
10699
+ publicUrl: string | null;
10700
+ } | undefined;
10701
+ coverImageFileId: string | null;
10032
10702
  coverImageUrl: string;
10033
10703
  createdAt: Date;
10034
10704
  description: string | null;
@@ -10095,6 +10765,14 @@ export declare const adminRouter: Elysia<"/admin", {
10095
10765
  headers: {};
10096
10766
  response: {
10097
10767
  200: {
10768
+ coverImageFile?: {
10769
+ id: string;
10770
+ fileName: string | null;
10771
+ mimeType: string | null;
10772
+ fileSize: number | null;
10773
+ publicUrl: string | null;
10774
+ } | undefined;
10775
+ coverImageFileId: string | null;
10098
10776
  coverImageUrl: string;
10099
10777
  createdAt: Date;
10100
10778
  description: string | null;
@@ -10155,6 +10833,14 @@ export declare const adminRouter: Elysia<"/admin", {
10155
10833
  headers: {};
10156
10834
  response: {
10157
10835
  200: {
10836
+ coverImageFile?: {
10837
+ id: string;
10838
+ fileName: string | null;
10839
+ mimeType: string | null;
10840
+ fileSize: number | null;
10841
+ publicUrl: string | null;
10842
+ } | undefined;
10843
+ coverImageFileId: string | null;
10158
10844
  coverImageUrl: string;
10159
10845
  createdAt: Date;
10160
10846
  description: string | null;
@@ -10215,6 +10901,14 @@ export declare const adminRouter: Elysia<"/admin", {
10215
10901
  headers: {};
10216
10902
  response: {
10217
10903
  200: {
10904
+ coverImageFile?: {
10905
+ id: string;
10906
+ fileName: string | null;
10907
+ mimeType: string | null;
10908
+ fileSize: number | null;
10909
+ publicUrl: string | null;
10910
+ } | undefined;
10911
+ coverImageFileId: string | null;
10218
10912
  coverImageUrl: string;
10219
10913
  createdAt: Date;
10220
10914
  description: string | null;