@r2wa-org/eden 0.0.112 → 0.0.113

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 (49) hide show
  1. package/dist/admin/index.d.ts +261 -3
  2. package/dist/asset-price/user/router.d.ts +1 -13
  3. package/dist/auth/better-auth.d.ts +7 -1
  4. package/dist/auth/permissions.d.ts +6 -1
  5. package/dist/auth/roles.d.ts +15 -0
  6. package/dist/content-video/internal/service.d.ts +2 -2
  7. package/dist/db/schemas.d.ts +1 -0
  8. package/dist/deposit/user/router.d.ts +13 -1
  9. package/dist/file-storage/admin/dto.schemas.d.ts +4 -0
  10. package/dist/file-storage/admin/router.d.ts +2 -2
  11. package/dist/file-storage/admin/service.d.ts +2 -2
  12. package/dist/file-storage/db.schemas.d.ts +4 -4
  13. package/dist/file-storage/internal/service.d.ts +1 -1
  14. package/dist/file-storage/s3.client.d.ts +12 -0
  15. package/dist/file-storage/schema.d.ts +3 -3
  16. package/dist/file-storage/share/dto.schemas.d.ts +1 -0
  17. package/dist/file-storage/share/router.d.ts +1 -1
  18. package/dist/file-storage/user/dto.schemas.d.ts +6 -4
  19. package/dist/file-storage/user/router.d.ts +3 -3
  20. package/dist/file-storage/user/service.d.ts +2 -2
  21. package/dist/index.d.ts +481 -7
  22. package/dist/ledger/admin/router.d.ts +13 -1
  23. package/dist/live-stream-video/internal/service.d.ts +2 -2
  24. package/dist/meeting-check-in/admin/import.dto.schemas.d.ts +660 -0
  25. package/dist/meeting-check-in/admin/import.router.d.ts +711 -0
  26. package/dist/meeting-check-in/admin/import.service.d.ts +101 -0
  27. package/dist/meeting-check-in/admin/router.d.ts +259 -13
  28. package/dist/meeting-check-in/constants.d.ts +4 -0
  29. package/dist/meeting-check-in/errors/index.d.ts +6 -0
  30. package/dist/meeting-check-in/errors/locales/zh.d.ts +6 -0
  31. package/dist/meeting-check-in/import.db.schemas.d.ts +1132 -0
  32. package/dist/meeting-check-in/import.schema.d.ts +589 -0
  33. package/dist/meeting-check-in/index.d.ts +18 -0
  34. package/dist/meeting-check-in/internal/check-in.service.d.ts +33 -0
  35. package/dist/meeting-check-in/internal/import.service.d.ts +22 -0
  36. package/dist/meeting-check-in/internal/reward.service.d.ts +72 -0
  37. package/dist/meeting-check-in/permissions.d.ts +1 -0
  38. package/dist/meeting-check-in/user/check-in.dto.schemas.d.ts +337 -0
  39. package/dist/meeting-check-in/user/check-in.service.d.ts +31 -0
  40. package/dist/meeting-check-in/user/reward.dto.schemas.d.ts +136 -0
  41. package/dist/meeting-check-in/user/reward.service.d.ts +62 -0
  42. package/dist/meeting-check-in/user/router.d.ts +1596 -0
  43. package/dist/meeting-check-in/worker.d.ts +1 -0
  44. package/dist/news/admin/router.d.ts +1 -1
  45. package/dist/news/admin/service.d.ts +1 -1
  46. package/dist/news/user/service.d.ts +2 -2
  47. package/dist/trade-market/user/router.d.ts +1 -13
  48. package/dist/user-kyc/admin/router.d.ts +13 -1
  49. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -570,7 +570,7 @@ declare const app: Elysia<"/api", {
570
570
  body: {
571
571
  fileName: string;
572
572
  fileSize: number;
573
- businessType: "app_video" | "avatar" | "bank_verification" | "contract" | "cover_image" | "export_report" | "financial_report" | "kyc_document" | "ledger_account_import" | "live_stream_video" | "news_attachment" | "notification_attachment" | "other" | "transaction_receipt";
573
+ businessType: "app_video" | "avatar" | "bank_verification" | "contract" | "cover_image" | "export_report" | "financial_report" | "kyc_document" | "ledger_account_import" | "live_stream_video" | "meeting_check_in_import" | "news_attachment" | "notification_attachment" | "other" | "transaction_receipt";
574
574
  fileExtension?: string | undefined;
575
575
  mimeType?: string | undefined;
576
576
  businessId?: string | undefined;
@@ -9013,7 +9013,7 @@ declare const app: Elysia<"/api", {
9013
9013
  archivedAt: Date | null;
9014
9014
  businessId: string | null;
9015
9015
  businessMetadata: string | null;
9016
- businessType: "app_video" | "avatar" | "bank_verification" | "contract" | "cover_image" | "export_report" | "financial_report" | "kyc_document" | "ledger_account_import" | "live_stream_video" | "news_attachment" | "notification_attachment" | "other" | "transaction_receipt";
9016
+ businessType: "app_video" | "avatar" | "bank_verification" | "contract" | "cover_image" | "export_report" | "financial_report" | "kyc_document" | "ledger_account_import" | "live_stream_video" | "meeting_check_in_import" | "news_attachment" | "notification_attachment" | "other" | "transaction_receipt";
9017
9017
  createdAt: Date;
9018
9018
  deletedAt: Date | null;
9019
9019
  downloadCount: number | null;
@@ -11402,6 +11402,264 @@ declare const app: Elysia<"/api", {
11402
11402
  };
11403
11403
  };
11404
11404
  };
11405
+ } & {
11406
+ meeting_check_ins: {
11407
+ imports: {};
11408
+ } & {
11409
+ imports: {
11410
+ jobs: {
11411
+ post: {
11412
+ body: {
11413
+ title: string;
11414
+ fileId: string;
11415
+ };
11416
+ params: {};
11417
+ query: {};
11418
+ headers: {};
11419
+ response: {
11420
+ 200: {
11421
+ createdAt: Date;
11422
+ updatedAt: Date;
11423
+ id: string;
11424
+ fileId: string;
11425
+ title: string;
11426
+ status: "failed" | "pending" | "running" | "success";
11427
+ total: number;
11428
+ processed: number;
11429
+ success: number;
11430
+ failed: number;
11431
+ ignored: number;
11432
+ error: string | null;
11433
+ createdBy: string;
11434
+ startedAt: Date | null;
11435
+ finishedAt: Date | null;
11436
+ };
11437
+ 401: "Unauthorized";
11438
+ 403: "Forbidden: Admins only";
11439
+ 422: {
11440
+ type: 'validation';
11441
+ on: string;
11442
+ summary?: string;
11443
+ message?: string;
11444
+ found?: unknown;
11445
+ property?: string;
11446
+ expected?: string;
11447
+ };
11448
+ };
11449
+ };
11450
+ };
11451
+ };
11452
+ } & {
11453
+ imports: {
11454
+ jobs: {
11455
+ get: {
11456
+ body: {};
11457
+ params: {};
11458
+ query: {
11459
+ limit?: number | undefined;
11460
+ offset?: number | undefined;
11461
+ pageSize?: number | undefined;
11462
+ pageIndex?: number | undefined;
11463
+ status?: "failed" | "pending" | "running" | "success" | undefined;
11464
+ title?: string | undefined;
11465
+ };
11466
+ headers: {};
11467
+ response: {
11468
+ 200: {
11469
+ data: {
11470
+ createdAt: Date;
11471
+ updatedAt: Date;
11472
+ id: string;
11473
+ fileId: string;
11474
+ title: string;
11475
+ status: "failed" | "pending" | "running" | "success";
11476
+ total: number;
11477
+ processed: number;
11478
+ success: number;
11479
+ failed: number;
11480
+ ignored: number;
11481
+ error: string | null;
11482
+ createdBy: string;
11483
+ startedAt: Date | null;
11484
+ finishedAt: Date | null;
11485
+ }[];
11486
+ pagination: {
11487
+ pageSize: number;
11488
+ pageIndex: number;
11489
+ total: number;
11490
+ totalPages: number;
11491
+ hasNextPage: boolean;
11492
+ };
11493
+ };
11494
+ 401: "Unauthorized";
11495
+ 403: "Forbidden: Admins only";
11496
+ 422: {
11497
+ type: 'validation';
11498
+ on: string;
11499
+ summary?: string;
11500
+ message?: string;
11501
+ found?: unknown;
11502
+ property?: string;
11503
+ expected?: string;
11504
+ };
11505
+ };
11506
+ };
11507
+ };
11508
+ };
11509
+ } & {
11510
+ imports: {
11511
+ jobs: {
11512
+ ":id": {
11513
+ get: {
11514
+ body: {};
11515
+ params: {
11516
+ id: string;
11517
+ };
11518
+ query: {};
11519
+ headers: {};
11520
+ response: {
11521
+ 200: {
11522
+ createdAt: Date;
11523
+ updatedAt: Date;
11524
+ id: string;
11525
+ fileId: string;
11526
+ title: string;
11527
+ status: "failed" | "pending" | "running" | "success";
11528
+ total: number;
11529
+ processed: number;
11530
+ success: number;
11531
+ failed: number;
11532
+ ignored: number;
11533
+ error: string | null;
11534
+ createdBy: string;
11535
+ startedAt: Date | null;
11536
+ finishedAt: Date | null;
11537
+ };
11538
+ 401: "Unauthorized";
11539
+ 403: "Forbidden: Admins only";
11540
+ 422: {
11541
+ type: 'validation';
11542
+ on: string;
11543
+ summary?: string;
11544
+ message?: string;
11545
+ found?: unknown;
11546
+ property?: string;
11547
+ expected?: string;
11548
+ };
11549
+ };
11550
+ };
11551
+ };
11552
+ };
11553
+ };
11554
+ } & {
11555
+ imports: {
11556
+ jobs: {
11557
+ ":id": {
11558
+ items: {
11559
+ get: {
11560
+ body: {};
11561
+ params: {
11562
+ id: string;
11563
+ };
11564
+ query: {
11565
+ limit?: number | undefined;
11566
+ offset?: number | undefined;
11567
+ pageSize?: number | undefined;
11568
+ pageIndex?: number | undefined;
11569
+ status?: "failed" | "ignored" | "success" | undefined;
11570
+ phoneNumber?: string | undefined;
11571
+ referrerName?: string | undefined;
11572
+ };
11573
+ headers: {};
11574
+ response: {
11575
+ 200: {
11576
+ data: {
11577
+ checkInAt: Date | null;
11578
+ checkInId: string | null;
11579
+ createdAt: Date;
11580
+ csvUserId: string | null;
11581
+ displayName: string | null;
11582
+ email: string | null;
11583
+ error: string | null;
11584
+ id: string;
11585
+ isIdempotent: boolean;
11586
+ jobId: string;
11587
+ phoneNumber: string | null;
11588
+ referrerMatchStatus: "ambiguous" | "empty" | "matched" | "not_found" | null;
11589
+ referrerName: string | null;
11590
+ referrerUser: {
11591
+ id?: string | undefined;
11592
+ name?: string | undefined;
11593
+ username?: string | null | undefined;
11594
+ displayUsername?: string | null | undefined;
11595
+ email?: string | undefined;
11596
+ phoneNumber?: string | null | undefined;
11597
+ };
11598
+ referrerUserId: string | null;
11599
+ rowNumber: number;
11600
+ status: "failed" | "ignored" | "success";
11601
+ updatedAt: Date;
11602
+ user?: {
11603
+ id: string;
11604
+ name: string;
11605
+ username: string | null;
11606
+ displayUsername: string | null;
11607
+ email: string;
11608
+ phoneNumber: string | null;
11609
+ } | undefined;
11610
+ userId: string | null;
11611
+ }[];
11612
+ pagination: {
11613
+ pageSize: number;
11614
+ pageIndex: number;
11615
+ total: number;
11616
+ totalPages: number;
11617
+ hasNextPage: boolean;
11618
+ };
11619
+ };
11620
+ 401: "Unauthorized";
11621
+ 403: "Forbidden: Admins only";
11622
+ 422: {
11623
+ type: 'validation';
11624
+ on: string;
11625
+ summary?: string;
11626
+ message?: string;
11627
+ found?: unknown;
11628
+ property?: string;
11629
+ expected?: string;
11630
+ };
11631
+ };
11632
+ };
11633
+ };
11634
+ };
11635
+ };
11636
+ };
11637
+ } & {
11638
+ imports: {
11639
+ template: {
11640
+ get: {
11641
+ body: {};
11642
+ params: {};
11643
+ query: {};
11644
+ headers: {};
11645
+ response: {
11646
+ 200: ArrayBuffer;
11647
+ 401: "Unauthorized";
11648
+ 403: "Forbidden: Admins only";
11649
+ 422: {
11650
+ type: 'validation';
11651
+ on: string;
11652
+ summary?: string;
11653
+ message?: string;
11654
+ found?: unknown;
11655
+ property?: string;
11656
+ expected?: string;
11657
+ };
11658
+ };
11659
+ };
11660
+ };
11661
+ };
11662
+ };
11405
11663
  };
11406
11664
  } & {
11407
11665
  admin: {
@@ -11811,7 +12069,7 @@ declare const app: Elysia<"/api", {
11811
12069
  offset?: number | undefined;
11812
12070
  pageSize?: number | undefined;
11813
12071
  pageIndex?: number | undefined;
11814
- businessType?: "app_video" | "avatar" | "bank_verification" | "contract" | "cover_image" | "export_report" | "financial_report" | "kyc_document" | "ledger_account_import" | "live_stream_video" | "news_attachment" | "notification_attachment" | "other" | "transaction_receipt" | undefined;
12072
+ businessType?: "app_video" | "avatar" | "bank_verification" | "contract" | "cover_image" | "export_report" | "financial_report" | "kyc_document" | "ledger_account_import" | "live_stream_video" | "meeting_check_in_import" | "news_attachment" | "notification_attachment" | "other" | "transaction_receipt" | undefined;
11815
12073
  businessId?: string | undefined;
11816
12074
  status?: "active" | "archived" | "pending_deletion" | "uploading" | null | undefined;
11817
12075
  accessControl?: "private" | "public" | "restricted" | null | undefined;
@@ -11825,7 +12083,7 @@ declare const app: Elysia<"/api", {
11825
12083
  archivedAt: Date | null;
11826
12084
  businessId: string | null;
11827
12085
  businessMetadata: string | null;
11828
- businessType: "app_video" | "avatar" | "bank_verification" | "contract" | "cover_image" | "export_report" | "financial_report" | "kyc_document" | "ledger_account_import" | "live_stream_video" | "news_attachment" | "notification_attachment" | "other" | "transaction_receipt";
12086
+ businessType: "app_video" | "avatar" | "bank_verification" | "contract" | "cover_image" | "export_report" | "financial_report" | "kyc_document" | "ledger_account_import" | "live_stream_video" | "meeting_check_in_import" | "news_attachment" | "notification_attachment" | "other" | "transaction_receipt";
11829
12087
  createdAt: Date;
11830
12088
  deletedAt: Date | null;
11831
12089
  downloadCount: number | null;
@@ -17273,6 +17531,222 @@ declare const app: Elysia<"/api", {
17273
17531
  };
17274
17532
  };
17275
17533
  };
17534
+ } & {
17535
+ api: {
17536
+ meetingCheckIns: {};
17537
+ } & {
17538
+ meetingCheckIns: {
17539
+ summary: {
17540
+ get: {
17541
+ body: {};
17542
+ params: {};
17543
+ query: {};
17544
+ headers: {};
17545
+ response: {
17546
+ 200: {
17547
+ totalDays: number;
17548
+ currentStreakDays: number;
17549
+ checkedInToday: boolean;
17550
+ };
17551
+ 401: "Unauthorized";
17552
+ 422: {
17553
+ type: 'validation';
17554
+ on: string;
17555
+ summary?: string;
17556
+ message?: string;
17557
+ found?: unknown;
17558
+ property?: string;
17559
+ expected?: string;
17560
+ };
17561
+ };
17562
+ };
17563
+ };
17564
+ };
17565
+ } & {
17566
+ meetingCheckIns: {
17567
+ today: {
17568
+ get: {
17569
+ body: {};
17570
+ params: {};
17571
+ query: {};
17572
+ headers: {};
17573
+ response: {
17574
+ 200: {
17575
+ checkedInToday: boolean;
17576
+ };
17577
+ 401: "Unauthorized";
17578
+ 422: {
17579
+ type: 'validation';
17580
+ on: string;
17581
+ summary?: string;
17582
+ message?: string;
17583
+ found?: unknown;
17584
+ property?: string;
17585
+ expected?: string;
17586
+ };
17587
+ };
17588
+ };
17589
+ };
17590
+ };
17591
+ } & {
17592
+ meetingCheckIns: {
17593
+ get: {
17594
+ body: {};
17595
+ params: {};
17596
+ query: {
17597
+ endDate?: Date | undefined;
17598
+ limit?: number | undefined;
17599
+ offset?: number | undefined;
17600
+ pageIndex?: number | undefined;
17601
+ pageSize?: number | undefined;
17602
+ startDate?: Date | undefined;
17603
+ };
17604
+ headers: {};
17605
+ response: {
17606
+ 200: {
17607
+ data: {
17608
+ createdAt: Date;
17609
+ updatedAt: Date;
17610
+ id: string;
17611
+ userId: string;
17612
+ checkInType: "app" | "meeting";
17613
+ checkInAt: Date;
17614
+ checkInTimezone: string;
17615
+ checkInOffsetMinutes: number | null;
17616
+ checkInLocalDate: string;
17617
+ }[];
17618
+ pagination: {
17619
+ pageSize: number;
17620
+ pageIndex: number;
17621
+ total: number;
17622
+ totalPages: number;
17623
+ hasNextPage: boolean;
17624
+ };
17625
+ };
17626
+ 401: "Unauthorized";
17627
+ 422: {
17628
+ type: 'validation';
17629
+ on: string;
17630
+ summary?: string;
17631
+ message?: string;
17632
+ found?: unknown;
17633
+ property?: string;
17634
+ expected?: string;
17635
+ };
17636
+ };
17637
+ };
17638
+ };
17639
+ } & {
17640
+ meetingCheckIns: {
17641
+ "attendee-reward-plans": {};
17642
+ } & {
17643
+ "attendee-reward-plans": {
17644
+ get: {
17645
+ body: {};
17646
+ params: {};
17647
+ query: {};
17648
+ headers: {};
17649
+ response: {
17650
+ 200: {
17651
+ id: string;
17652
+ name: string;
17653
+ cashAsset: {
17654
+ id: string;
17655
+ code: string;
17656
+ name: string;
17657
+ iconUrl: string;
17658
+ symbol: string | null;
17659
+ precision: number;
17660
+ isActive: boolean;
17661
+ };
17662
+ coinAsset: {
17663
+ id: string;
17664
+ code: string;
17665
+ name: string;
17666
+ iconUrl: string;
17667
+ symbol: string | null;
17668
+ precision: number;
17669
+ isActive: boolean;
17670
+ };
17671
+ tiers: {
17672
+ id: string;
17673
+ consecutiveDay: number;
17674
+ cashAmount: string;
17675
+ coinAmount: string;
17676
+ coinBonusAmount: string;
17677
+ sortOrder: number;
17678
+ }[];
17679
+ } | null;
17680
+ 401: "Unauthorized";
17681
+ 422: {
17682
+ type: 'validation';
17683
+ on: string;
17684
+ summary?: string;
17685
+ message?: string;
17686
+ found?: unknown;
17687
+ property?: string;
17688
+ expected?: string;
17689
+ };
17690
+ };
17691
+ };
17692
+ };
17693
+ };
17694
+ } & {
17695
+ meetingCheckIns: {
17696
+ "referral-reward-plans": {};
17697
+ } & {
17698
+ "referral-reward-plans": {
17699
+ get: {
17700
+ body: {};
17701
+ params: {};
17702
+ query: {};
17703
+ headers: {};
17704
+ response: {
17705
+ 200: {
17706
+ id: string;
17707
+ name: string;
17708
+ cashAsset: {
17709
+ id: string;
17710
+ code: string;
17711
+ name: string;
17712
+ iconUrl: string;
17713
+ symbol: string | null;
17714
+ precision: number;
17715
+ isActive: boolean;
17716
+ };
17717
+ coinAsset: {
17718
+ id: string;
17719
+ code: string;
17720
+ name: string;
17721
+ iconUrl: string;
17722
+ symbol: string | null;
17723
+ precision: number;
17724
+ isActive: boolean;
17725
+ };
17726
+ tiers: {
17727
+ id: string;
17728
+ refereeMinStreakDays: number;
17729
+ refereeMaxStreakDays: number | null;
17730
+ cashAmount: string;
17731
+ coinAmount: string;
17732
+ sortOrder: number;
17733
+ }[];
17734
+ } | null;
17735
+ 401: "Unauthorized";
17736
+ 422: {
17737
+ type: 'validation';
17738
+ on: string;
17739
+ summary?: string;
17740
+ message?: string;
17741
+ found?: unknown;
17742
+ property?: string;
17743
+ expected?: string;
17744
+ };
17745
+ };
17746
+ };
17747
+ };
17748
+ };
17749
+ };
17276
17750
  } & {
17277
17751
  api: {
17278
17752
  ledger_account_transfer: {};
@@ -20155,7 +20629,7 @@ declare const app: Elysia<"/api", {
20155
20629
  offset?: number | undefined;
20156
20630
  pageSize?: number | undefined;
20157
20631
  pageIndex?: number | undefined;
20158
- businessType?: "app_video" | "avatar" | "bank_verification" | "contract" | "cover_image" | "export_report" | "financial_report" | "kyc_document" | "ledger_account_import" | "live_stream_video" | "news_attachment" | "notification_attachment" | "other" | "transaction_receipt" | undefined;
20632
+ businessType?: "app_video" | "avatar" | "bank_verification" | "contract" | "cover_image" | "export_report" | "financial_report" | "kyc_document" | "ledger_account_import" | "live_stream_video" | "meeting_check_in_import" | "news_attachment" | "notification_attachment" | "other" | "transaction_receipt" | undefined;
20159
20633
  businessId?: string | undefined;
20160
20634
  status?: "active" | "archived" | "pending_deletion" | "uploading" | null | undefined;
20161
20635
  accessControl?: "private" | "public" | "restricted" | null | undefined;
@@ -20178,7 +20652,7 @@ declare const app: Elysia<"/api", {
20178
20652
  s3Key: string;
20179
20653
  s3Region: string;
20180
20654
  s3ETag: string | null;
20181
- businessType: "app_video" | "avatar" | "bank_verification" | "contract" | "cover_image" | "export_report" | "financial_report" | "kyc_document" | "ledger_account_import" | "live_stream_video" | "news_attachment" | "notification_attachment" | "other" | "transaction_receipt";
20655
+ businessType: "app_video" | "avatar" | "bank_verification" | "contract" | "cover_image" | "export_report" | "financial_report" | "kyc_document" | "ledger_account_import" | "live_stream_video" | "meeting_check_in_import" | "news_attachment" | "notification_attachment" | "other" | "transaction_receipt";
20182
20656
  businessId: string | null;
20183
20657
  businessMetadata: string | null;
20184
20658
  ownerId: string;
@@ -20243,7 +20717,7 @@ declare const app: Elysia<"/api", {
20243
20717
  s3Key: string;
20244
20718
  s3Region: string;
20245
20719
  s3ETag: string | null;
20246
- businessType: "app_video" | "avatar" | "bank_verification" | "contract" | "cover_image" | "export_report" | "financial_report" | "kyc_document" | "ledger_account_import" | "live_stream_video" | "news_attachment" | "notification_attachment" | "other" | "transaction_receipt";
20720
+ businessType: "app_video" | "avatar" | "bank_verification" | "contract" | "cover_image" | "export_report" | "financial_report" | "kyc_document" | "ledger_account_import" | "live_stream_video" | "meeting_check_in_import" | "news_attachment" | "notification_attachment" | "other" | "transaction_receipt";
20247
20721
  businessId: string | null;
20248
20722
  businessMetadata: string | null;
20249
20723
  ownerId: string;
@@ -35,7 +35,19 @@ export declare const ledgerAdminRouter: Elysia<"/ledger", {
35
35
  headers: import("elysia").HTTPHeaders;
36
36
  status?: number | keyof import("elysia").StatusMap;
37
37
  redirect?: string;
38
- cookie?: Record<string, import("elysia/cookies").ElysiaCookie>;
38
+ cookie?: Record<string, {
39
+ domain?: string | undefined;
40
+ expires?: Date | undefined;
41
+ httpOnly?: boolean | undefined;
42
+ maxAge?: number | undefined;
43
+ path?: string | undefined;
44
+ priority?: 'low' | 'medium' | 'high' | undefined;
45
+ partitioned?: boolean | undefined;
46
+ sameSite?: true | false | 'lax' | 'strict' | 'none' | undefined;
47
+ secure?: boolean | undefined;
48
+ secrets?: string | null | (string | null)[];
49
+ value?: unknown;
50
+ }>;
39
51
  };
40
52
  path: string;
41
53
  route: string;
@@ -10,7 +10,7 @@ export declare abstract class InternalLiveStreamVideoService {
10
10
  archivedAt: Date | null;
11
11
  businessId: string | null;
12
12
  businessMetadata: string | null;
13
- businessType: "app_video" | "avatar" | "bank_verification" | "contract" | "cover_image" | "export_report" | "financial_report" | "kyc_document" | "ledger_account_import" | "live_stream_video" | "news_attachment" | "notification_attachment" | "other" | "transaction_receipt";
13
+ businessType: "app_video" | "avatar" | "bank_verification" | "contract" | "cover_image" | "export_report" | "financial_report" | "kyc_document" | "ledger_account_import" | "live_stream_video" | "meeting_check_in_import" | "news_attachment" | "notification_attachment" | "other" | "transaction_receipt";
14
14
  createdAt: Date;
15
15
  deletedAt: Date | null;
16
16
  downloadCount: number | null;
@@ -45,7 +45,7 @@ export declare abstract class InternalLiveStreamVideoService {
45
45
  archivedAt: Date | null;
46
46
  businessId: string | null;
47
47
  businessMetadata: string | null;
48
- businessType: "app_video" | "avatar" | "bank_verification" | "contract" | "cover_image" | "export_report" | "financial_report" | "kyc_document" | "ledger_account_import" | "live_stream_video" | "news_attachment" | "notification_attachment" | "other" | "transaction_receipt";
48
+ businessType: "app_video" | "avatar" | "bank_verification" | "contract" | "cover_image" | "export_report" | "financial_report" | "kyc_document" | "ledger_account_import" | "live_stream_video" | "meeting_check_in_import" | "news_attachment" | "notification_attachment" | "other" | "transaction_receipt";
49
49
  createdAt: Date;
50
50
  deletedAt: Date | null;
51
51
  downloadCount: number | null;