@r2wa-org/eden 0.0.111 → 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.
- package/dist/admin/index.d.ts +1633 -3
- package/dist/auth/better-auth.d.ts +13 -1
- package/dist/auth/permissions.d.ts +11 -1
- package/dist/auth/roles.d.ts +30 -0
- package/dist/content-video/internal/service.d.ts +2 -2
- package/dist/db/schemas.d.ts +2 -0
- package/dist/deposit/user/router.d.ts +13 -1
- package/dist/file-storage/admin/dto.schemas.d.ts +4 -0
- package/dist/file-storage/admin/router.d.ts +2 -2
- package/dist/file-storage/admin/service.d.ts +2 -2
- package/dist/file-storage/db.schemas.d.ts +4 -4
- package/dist/file-storage/internal/service.d.ts +1 -1
- package/dist/file-storage/s3.client.d.ts +12 -0
- package/dist/file-storage/schema.d.ts +3 -3
- package/dist/file-storage/share/dto.schemas.d.ts +1 -0
- package/dist/file-storage/share/router.d.ts +1 -1
- package/dist/file-storage/user/dto.schemas.d.ts +6 -4
- package/dist/file-storage/user/router.d.ts +3 -3
- package/dist/file-storage/user/service.d.ts +2 -2
- package/dist/index.d.ts +1853 -7
- package/dist/ledger/admin/router.d.ts +13 -1
- package/dist/live-stream-video/internal/service.d.ts +2 -2
- package/dist/meeting-check-in/admin/attendee-reward.dto.schemas.d.ts +269 -0
- package/dist/meeting-check-in/admin/attendee-reward.service.d.ts +470 -0
- package/dist/meeting-check-in/admin/import.dto.schemas.d.ts +660 -0
- package/dist/meeting-check-in/admin/import.router.d.ts +711 -0
- package/dist/meeting-check-in/admin/import.service.d.ts +101 -0
- package/dist/meeting-check-in/admin/referral-reward.dto.schemas.d.ts +269 -0
- package/dist/meeting-check-in/admin/referral-reward.service.d.ts +470 -0
- package/dist/meeting-check-in/admin/reward-response.schemas.d.ts +19 -0
- package/dist/meeting-check-in/admin/router.d.ts +4300 -0
- package/dist/meeting-check-in/constants.d.ts +4 -0
- package/dist/meeting-check-in/errors/index.d.ts +28 -0
- package/dist/meeting-check-in/errors/locales/zh.d.ts +27 -0
- package/dist/meeting-check-in/import.db.schemas.d.ts +1132 -0
- package/dist/meeting-check-in/import.schema.d.ts +589 -0
- package/dist/meeting-check-in/index.d.ts +18 -0
- package/dist/meeting-check-in/internal/check-in.service.d.ts +33 -0
- package/dist/meeting-check-in/internal/import.service.d.ts +22 -0
- package/dist/meeting-check-in/internal/reward-config.service.d.ts +127 -0
- package/dist/meeting-check-in/internal/reward.service.d.ts +72 -0
- package/dist/meeting-check-in/permissions.d.ts +5 -0
- package/dist/meeting-check-in/reward.db.schemas.d.ts +1656 -0
- package/dist/meeting-check-in/schema.d.ts +884 -0
- package/dist/meeting-check-in/user/check-in.dto.schemas.d.ts +337 -0
- package/dist/meeting-check-in/user/check-in.service.d.ts +31 -0
- package/dist/meeting-check-in/user/reward.dto.schemas.d.ts +136 -0
- package/dist/meeting-check-in/user/reward.service.d.ts +62 -0
- package/dist/meeting-check-in/user/router.d.ts +1596 -0
- package/dist/meeting-check-in/worker.d.ts +1 -0
- package/dist/news/admin/router.d.ts +1 -1
- package/dist/news/admin/service.d.ts +1 -1
- package/dist/news/user/service.d.ts +2 -2
- package/dist/server-test/index.d.ts +1 -13
- package/dist/team/milestone-reward/admin/reward.router.d.ts +1 -13
- package/dist/trade-market/admin/router.d.ts +1 -13
- package/dist/user-kyc/admin/router.d.ts +13 -1
- package/package.json +1 -1
|
@@ -390,7 +390,7 @@ export declare const fileStorageRouter: Elysia<"/file_storage", {
|
|
|
390
390
|
offset?: number | undefined;
|
|
391
391
|
pageSize?: number | undefined;
|
|
392
392
|
pageIndex?: number | undefined;
|
|
393
|
-
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;
|
|
393
|
+
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;
|
|
394
394
|
businessId?: string | undefined;
|
|
395
395
|
status?: "active" | "archived" | "pending_deletion" | "uploading" | null | undefined;
|
|
396
396
|
accessControl?: "private" | "public" | "restricted" | null | undefined;
|
|
@@ -413,7 +413,7 @@ export declare const fileStorageRouter: Elysia<"/file_storage", {
|
|
|
413
413
|
s3Key: string;
|
|
414
414
|
s3Region: string;
|
|
415
415
|
s3ETag: string | null;
|
|
416
|
-
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";
|
|
416
|
+
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";
|
|
417
417
|
businessId: string | null;
|
|
418
418
|
businessMetadata: string | null;
|
|
419
419
|
ownerId: string;
|
|
@@ -478,7 +478,7 @@ export declare const fileStorageRouter: Elysia<"/file_storage", {
|
|
|
478
478
|
s3Key: string;
|
|
479
479
|
s3Region: string;
|
|
480
480
|
s3ETag: string | null;
|
|
481
|
-
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";
|
|
481
|
+
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";
|
|
482
482
|
businessId: string | null;
|
|
483
483
|
businessMetadata: string | null;
|
|
484
484
|
ownerId: string;
|
|
@@ -7,7 +7,7 @@ export declare abstract class UserFileStorageService extends BaseFileStorageServ
|
|
|
7
7
|
archivedAt: Date | null;
|
|
8
8
|
businessId: string | null;
|
|
9
9
|
businessMetadata: string | null;
|
|
10
|
-
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";
|
|
10
|
+
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";
|
|
11
11
|
createdAt: Date;
|
|
12
12
|
deletedAt: Date | null;
|
|
13
13
|
downloadCount: number | null;
|
|
@@ -47,7 +47,7 @@ export declare abstract class UserFileStorageService extends BaseFileStorageServ
|
|
|
47
47
|
archivedAt: Date | null;
|
|
48
48
|
businessId: string | null;
|
|
49
49
|
businessMetadata: string | null;
|
|
50
|
-
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";
|
|
50
|
+
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";
|
|
51
51
|
createdAt: Date;
|
|
52
52
|
deletedAt: Date | null;
|
|
53
53
|
downloadCount: number | null;
|