@r2wa-org/eden 0.0.110 → 0.0.112
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 +1783 -3
- package/dist/asset/admin/router.d.ts +1 -13
- package/dist/asset-price/user/router.d.ts +13 -1
- 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/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 +22 -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 +1873 -7
- package/dist/live-stream-video/admin/dto.schemas.d.ts +128 -0
- package/dist/live-stream-video/admin/router.d.ts +861 -0
- package/dist/live-stream-video/admin/service.d.ts +211 -0
- package/dist/live-stream-video/db.schemas.d.ts +486 -0
- package/dist/live-stream-video/errors/index.d.ts +17 -0
- package/dist/live-stream-video/errors/locales/zh.d.ts +16 -0
- package/dist/live-stream-video/index.d.ts +8 -0
- package/dist/live-stream-video/internal/service.d.ts +108 -0
- package/dist/live-stream-video/permissions.d.ts +4 -0
- package/dist/live-stream-video/schema.d.ts +257 -0
- package/dist/live-stream-video/user/dto.schemas.d.ts +52 -0
- package/dist/live-stream-video/user/router.d.ts +482 -0
- package/dist/live-stream-video/user/service.d.ts +36 -0
- 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/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 +4054 -0
- package/dist/meeting-check-in/errors/index.d.ts +22 -0
- package/dist/meeting-check-in/errors/locales/zh.d.ts +21 -0
- package/dist/meeting-check-in/internal/reward-config.service.d.ts +127 -0
- package/dist/meeting-check-in/permissions.d.ts +4 -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/news/admin/router.d.ts +1 -1
- package/dist/news/admin/service.d.ts +1 -1
- package/dist/news/user/router.d.ts +1 -13
- package/dist/news/user/service.d.ts +2 -2
- package/dist/trade-market/user/router.d.ts +13 -1
- package/dist/transfer/user/router.d.ts +1 -13
- package/package.json +1 -1
|
@@ -35,19 +35,7 @@ export declare const assetAdminRouter: Elysia<"/assets", {
|
|
|
35
35
|
headers: import("elysia").HTTPHeaders;
|
|
36
36
|
status?: number | keyof import("elysia").StatusMap;
|
|
37
37
|
redirect?: string;
|
|
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
|
-
}>;
|
|
38
|
+
cookie?: Record<string, import("elysia/cookies").ElysiaCookie>;
|
|
51
39
|
};
|
|
52
40
|
path: string;
|
|
53
41
|
route: string;
|
|
@@ -35,7 +35,19 @@ export declare const assetPriceRouter: Elysia<"/asset_prices", {
|
|
|
35
35
|
headers: import("elysia").HTTPHeaders;
|
|
36
36
|
status?: number | keyof import("elysia").StatusMap;
|
|
37
37
|
redirect?: string;
|
|
38
|
-
cookie?: Record<string,
|
|
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;
|
|
@@ -2690,10 +2690,12 @@ export declare const auth: import("better-auth").Auth<{
|
|
|
2690
2690
|
readonly 'ledger-account:type'?: ("create" | "list" | "read" | "update")[] | undefined;
|
|
2691
2691
|
readonly 'ledger-account:account'?: ("list" | "read" | "update")[] | undefined;
|
|
2692
2692
|
readonly 'ledger:entry'?: ("adjust" | "list" | "read" | "view_all")[] | undefined;
|
|
2693
|
+
readonly 'live_stream_video:video'?: ("create" | "delete" | "list" | "read" | "update")[] | undefined;
|
|
2693
2694
|
readonly 'market_data:ticker'?: ("latest" | "read")[] | undefined;
|
|
2694
2695
|
readonly 'market_data:kline'?: ("list" | "read")[] | undefined;
|
|
2695
2696
|
readonly 'market_data:admin'?: ("list" | "read" | "run")[] | undefined;
|
|
2696
2697
|
readonly 'market_pricing:strategy'?: ("create" | "delete" | "list" | "read" | "run" | "update")[] | undefined;
|
|
2698
|
+
readonly 'meeting_check_in:reward_config'?: ("create" | "delete" | "list" | "read" | "update")[] | undefined;
|
|
2697
2699
|
readonly 'news:category'?: ("create" | "delete" | "list" | "read" | "update")[] | undefined;
|
|
2698
2700
|
readonly 'news:news'?: ("create" | "delete" | "list" | "read" | "update")[] | undefined;
|
|
2699
2701
|
readonly 'notification:notification'?: ("list" | "read" | "update")[] | undefined;
|
|
@@ -2793,7 +2795,7 @@ export declare const auth: import("better-auth").Auth<{
|
|
|
2793
2795
|
};
|
|
2794
2796
|
options: NoInfer<{
|
|
2795
2797
|
ac: {
|
|
2796
|
-
newRole<K extends "admin:user-profile" | "asset-type:type" | "asset:item" | "asset_convert_product:order" | "asset_convert_product:product" | "asset_price:admin" | "asset_price:price" | "checkIn:admin" | "checkIn:checkIn" | "checkIn:rewardPlan" | "checkIn:rewardRule" | "content_video:video" | "deposit:order" | "deposit:review" | "kyc:admin" | "kyc:method" | "ledger-account:account" | "ledger-account:type" | "ledger:entry" | "ledger_account:import" | "market_data:admin" | "market_data:kline" | "market_data:ticker" | "market_pricing:strategy" | "news:category" | "news:news" | "notification:admin" | "notification:notification" | "receipt_method:item" | "referral:depth-config" | "referral:relation" | "session" | "shipping_address:item" | "team:member" | "team:milestoneReward" | "team:milestoneRewardPlan" | "team:milestoneRewardRule" | "trade_market:market" | "trade_market:order" | "transfer:order" | "user" | "user:profile" | "user:referral" | "wallet:container" | "wallet:type" | "welfare_cycle:payout" | "welfare_cycle:plan" | "welfare_cycle:subscription" | "withdraw:manage" | "withdraw:review">(statements: import("better-auth/plugins").Subset<K, {
|
|
2798
|
+
newRole<K extends "admin:user-profile" | "asset-type:type" | "asset:item" | "asset_convert_product:order" | "asset_convert_product:product" | "asset_price:admin" | "asset_price:price" | "checkIn:admin" | "checkIn:checkIn" | "checkIn:rewardPlan" | "checkIn:rewardRule" | "content_video:video" | "deposit:order" | "deposit:review" | "kyc:admin" | "kyc:method" | "ledger-account:account" | "ledger-account:type" | "ledger:entry" | "ledger_account:import" | "live_stream_video:video" | "market_data:admin" | "market_data:kline" | "market_data:ticker" | "market_pricing:strategy" | "meeting_check_in:reward_config" | "news:category" | "news:news" | "notification:admin" | "notification:notification" | "receipt_method:item" | "referral:depth-config" | "referral:relation" | "session" | "shipping_address:item" | "team:member" | "team:milestoneReward" | "team:milestoneRewardPlan" | "team:milestoneRewardRule" | "trade_market:market" | "trade_market:order" | "transfer:order" | "user" | "user:profile" | "user:referral" | "wallet:container" | "wallet:type" | "welfare_cycle:payout" | "welfare_cycle:plan" | "welfare_cycle:subscription" | "withdraw:manage" | "withdraw:review">(statements: import("better-auth/plugins").Subset<K, {
|
|
2797
2799
|
readonly user: readonly ["create", "list", "set-role", "ban", "impersonate", "impersonate-admins", "delete", "set-password", "get", "update"];
|
|
2798
2800
|
readonly session: readonly ["list", "revoke", "delete"];
|
|
2799
2801
|
readonly 'asset_convert_product:product': readonly ['create', 'read', 'update', 'list'];
|
|
@@ -2813,10 +2815,12 @@ export declare const auth: import("better-auth").Auth<{
|
|
|
2813
2815
|
readonly 'ledger-account:type': readonly ['create', 'read', 'update', 'list'];
|
|
2814
2816
|
readonly 'ledger-account:account': readonly ['read', 'update', 'list'];
|
|
2815
2817
|
readonly 'ledger:entry': readonly ['read', 'list', 'view_all', 'adjust'];
|
|
2818
|
+
readonly 'live_stream_video:video': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
2816
2819
|
readonly 'market_data:ticker': readonly ['read', 'latest'];
|
|
2817
2820
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
2818
2821
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
2819
2822
|
readonly 'market_pricing:strategy': readonly ['create', 'read', 'update', 'delete', 'list', 'run'];
|
|
2823
|
+
readonly 'meeting_check_in:reward_config': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
2820
2824
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
2821
2825
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
2822
2826
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -2866,10 +2870,12 @@ export declare const auth: import("better-auth").Auth<{
|
|
|
2866
2870
|
readonly 'ledger-account:type': readonly ['create', 'read', 'update', 'list'];
|
|
2867
2871
|
readonly 'ledger-account:account': readonly ['read', 'update', 'list'];
|
|
2868
2872
|
readonly 'ledger:entry': readonly ['read', 'list', 'view_all', 'adjust'];
|
|
2873
|
+
readonly 'live_stream_video:video': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
2869
2874
|
readonly 'market_data:ticker': readonly ['read', 'latest'];
|
|
2870
2875
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
2871
2876
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
2872
2877
|
readonly 'market_pricing:strategy': readonly ['create', 'read', 'update', 'delete', 'list', 'run'];
|
|
2878
|
+
readonly 'meeting_check_in:reward_config': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
2873
2879
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
2874
2880
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
2875
2881
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -2919,10 +2925,12 @@ export declare const auth: import("better-auth").Auth<{
|
|
|
2919
2925
|
readonly 'ledger-account:type': readonly ['create', 'read', 'update', 'list'];
|
|
2920
2926
|
readonly 'ledger-account:account': readonly ['read', 'update', 'list'];
|
|
2921
2927
|
readonly 'ledger:entry': readonly ['read', 'list', 'view_all', 'adjust'];
|
|
2928
|
+
readonly 'live_stream_video:video': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
2922
2929
|
readonly 'market_data:ticker': readonly ['read', 'latest'];
|
|
2923
2930
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
2924
2931
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
2925
2932
|
readonly 'market_pricing:strategy': readonly ['create', 'read', 'update', 'delete', 'list', 'run'];
|
|
2933
|
+
readonly 'meeting_check_in:reward_config': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
2926
2934
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
2927
2935
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
2928
2936
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -2971,10 +2979,12 @@ export declare const auth: import("better-auth").Auth<{
|
|
|
2971
2979
|
readonly 'ledger-account:type': readonly ['create', 'read', 'update', 'list'];
|
|
2972
2980
|
readonly 'ledger-account:account': readonly ['read', 'update', 'list'];
|
|
2973
2981
|
readonly 'ledger:entry': readonly ['read', 'list', 'view_all', 'adjust'];
|
|
2982
|
+
readonly 'live_stream_video:video': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
2974
2983
|
readonly 'market_data:ticker': readonly ['read', 'latest'];
|
|
2975
2984
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
2976
2985
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
2977
2986
|
readonly 'market_pricing:strategy': readonly ['create', 'read', 'update', 'delete', 'list', 'run'];
|
|
2987
|
+
readonly 'meeting_check_in:reward_config': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
2978
2988
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
2979
2989
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
2980
2990
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -3024,10 +3034,12 @@ export declare const auth: import("better-auth").Auth<{
|
|
|
3024
3034
|
readonly 'ledger-account:type': readonly ['create', 'read', 'update', 'list'];
|
|
3025
3035
|
readonly 'ledger-account:account': readonly ['read', 'update', 'list'];
|
|
3026
3036
|
readonly 'ledger:entry': readonly ['read', 'list', 'view_all', 'adjust'];
|
|
3037
|
+
readonly 'live_stream_video:video': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
3027
3038
|
readonly 'market_data:ticker': readonly ['read', 'latest'];
|
|
3028
3039
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
3029
3040
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
3030
3041
|
readonly 'market_pricing:strategy': readonly ['create', 'read', 'update', 'delete', 'list', 'run'];
|
|
3042
|
+
readonly 'meeting_check_in:reward_config': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
3031
3043
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
3032
3044
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
3033
3045
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const ac: {
|
|
2
|
-
newRole<K extends "admin:user-profile" | "asset-type:type" | "asset:item" | "asset_convert_product:order" | "asset_convert_product:product" | "asset_price:admin" | "asset_price:price" | "checkIn:admin" | "checkIn:checkIn" | "checkIn:rewardPlan" | "checkIn:rewardRule" | "content_video:video" | "deposit:order" | "deposit:review" | "kyc:admin" | "kyc:method" | "ledger-account:account" | "ledger-account:type" | "ledger:entry" | "ledger_account:import" | "market_data:admin" | "market_data:kline" | "market_data:ticker" | "market_pricing:strategy" | "news:category" | "news:news" | "notification:admin" | "notification:notification" | "receipt_method:item" | "referral:depth-config" | "referral:relation" | "session" | "shipping_address:item" | "team:member" | "team:milestoneReward" | "team:milestoneRewardPlan" | "team:milestoneRewardRule" | "trade_market:market" | "trade_market:order" | "transfer:order" | "user" | "user:profile" | "user:referral" | "wallet:container" | "wallet:type" | "welfare_cycle:payout" | "welfare_cycle:plan" | "welfare_cycle:subscription" | "withdraw:manage" | "withdraw:review">(statements: import("better-auth/plugins").Subset<K, {
|
|
2
|
+
newRole<K extends "admin:user-profile" | "asset-type:type" | "asset:item" | "asset_convert_product:order" | "asset_convert_product:product" | "asset_price:admin" | "asset_price:price" | "checkIn:admin" | "checkIn:checkIn" | "checkIn:rewardPlan" | "checkIn:rewardRule" | "content_video:video" | "deposit:order" | "deposit:review" | "kyc:admin" | "kyc:method" | "ledger-account:account" | "ledger-account:type" | "ledger:entry" | "ledger_account:import" | "live_stream_video:video" | "market_data:admin" | "market_data:kline" | "market_data:ticker" | "market_pricing:strategy" | "meeting_check_in:reward_config" | "news:category" | "news:news" | "notification:admin" | "notification:notification" | "receipt_method:item" | "referral:depth-config" | "referral:relation" | "session" | "shipping_address:item" | "team:member" | "team:milestoneReward" | "team:milestoneRewardPlan" | "team:milestoneRewardRule" | "trade_market:market" | "trade_market:order" | "transfer:order" | "user" | "user:profile" | "user:referral" | "wallet:container" | "wallet:type" | "welfare_cycle:payout" | "welfare_cycle:plan" | "welfare_cycle:subscription" | "withdraw:manage" | "withdraw:review">(statements: import("better-auth/plugins").Subset<K, {
|
|
3
3
|
readonly user: readonly ["create", "list", "set-role", "ban", "impersonate", "impersonate-admins", "delete", "set-password", "get", "update"];
|
|
4
4
|
readonly session: readonly ["list", "revoke", "delete"];
|
|
5
5
|
readonly 'asset_convert_product:product': readonly ['create', 'read', 'update', 'list'];
|
|
@@ -19,10 +19,12 @@ export declare const ac: {
|
|
|
19
19
|
readonly 'ledger-account:type': readonly ['create', 'read', 'update', 'list'];
|
|
20
20
|
readonly 'ledger-account:account': readonly ['read', 'update', 'list'];
|
|
21
21
|
readonly 'ledger:entry': readonly ['read', 'list', 'view_all', 'adjust'];
|
|
22
|
+
readonly 'live_stream_video:video': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
22
23
|
readonly 'market_data:ticker': readonly ['read', 'latest'];
|
|
23
24
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
24
25
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
25
26
|
readonly 'market_pricing:strategy': readonly ['create', 'read', 'update', 'delete', 'list', 'run'];
|
|
27
|
+
readonly 'meeting_check_in:reward_config': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
26
28
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
27
29
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
28
30
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -72,10 +74,12 @@ export declare const ac: {
|
|
|
72
74
|
readonly 'ledger-account:type': readonly ['create', 'read', 'update', 'list'];
|
|
73
75
|
readonly 'ledger-account:account': readonly ['read', 'update', 'list'];
|
|
74
76
|
readonly 'ledger:entry': readonly ['read', 'list', 'view_all', 'adjust'];
|
|
77
|
+
readonly 'live_stream_video:video': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
75
78
|
readonly 'market_data:ticker': readonly ['read', 'latest'];
|
|
76
79
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
77
80
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
78
81
|
readonly 'market_pricing:strategy': readonly ['create', 'read', 'update', 'delete', 'list', 'run'];
|
|
82
|
+
readonly 'meeting_check_in:reward_config': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
79
83
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
80
84
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
81
85
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -125,10 +129,12 @@ export declare const ac: {
|
|
|
125
129
|
readonly 'ledger-account:type': readonly ['create', 'read', 'update', 'list'];
|
|
126
130
|
readonly 'ledger-account:account': readonly ['read', 'update', 'list'];
|
|
127
131
|
readonly 'ledger:entry': readonly ['read', 'list', 'view_all', 'adjust'];
|
|
132
|
+
readonly 'live_stream_video:video': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
128
133
|
readonly 'market_data:ticker': readonly ['read', 'latest'];
|
|
129
134
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
130
135
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
131
136
|
readonly 'market_pricing:strategy': readonly ['create', 'read', 'update', 'delete', 'list', 'run'];
|
|
137
|
+
readonly 'meeting_check_in:reward_config': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
132
138
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
133
139
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
134
140
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -177,10 +183,12 @@ export declare const ac: {
|
|
|
177
183
|
readonly 'ledger-account:type': readonly ['create', 'read', 'update', 'list'];
|
|
178
184
|
readonly 'ledger-account:account': readonly ['read', 'update', 'list'];
|
|
179
185
|
readonly 'ledger:entry': readonly ['read', 'list', 'view_all', 'adjust'];
|
|
186
|
+
readonly 'live_stream_video:video': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
180
187
|
readonly 'market_data:ticker': readonly ['read', 'latest'];
|
|
181
188
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
182
189
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
183
190
|
readonly 'market_pricing:strategy': readonly ['create', 'read', 'update', 'delete', 'list', 'run'];
|
|
191
|
+
readonly 'meeting_check_in:reward_config': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
184
192
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
185
193
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
186
194
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -230,10 +238,12 @@ export declare const ac: {
|
|
|
230
238
|
readonly 'ledger-account:type': readonly ['create', 'read', 'update', 'list'];
|
|
231
239
|
readonly 'ledger-account:account': readonly ['read', 'update', 'list'];
|
|
232
240
|
readonly 'ledger:entry': readonly ['read', 'list', 'view_all', 'adjust'];
|
|
241
|
+
readonly 'live_stream_video:video': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
233
242
|
readonly 'market_data:ticker': readonly ['read', 'latest'];
|
|
234
243
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
235
244
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
236
245
|
readonly 'market_pricing:strategy': readonly ['create', 'read', 'update', 'delete', 'list', 'run'];
|
|
246
|
+
readonly 'meeting_check_in:reward_config': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
237
247
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
238
248
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
239
249
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
package/dist/auth/roles.d.ts
CHANGED
|
@@ -20,10 +20,12 @@ export declare const authAdmin: {
|
|
|
20
20
|
readonly 'ledger-account:type': readonly ['create', 'read', 'update', 'list'];
|
|
21
21
|
readonly 'ledger-account:account': readonly ['read', 'update', 'list'];
|
|
22
22
|
readonly 'ledger:entry': readonly ['read', 'list', 'view_all', 'adjust'];
|
|
23
|
+
readonly 'live_stream_video:video': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
23
24
|
readonly 'market_data:ticker': readonly ['read', 'latest'];
|
|
24
25
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
25
26
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
26
27
|
readonly 'market_pricing:strategy': readonly ['create', 'read', 'update', 'delete', 'list', 'run'];
|
|
28
|
+
readonly 'meeting_check_in:reward_config': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
27
29
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
28
30
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
29
31
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -73,10 +75,12 @@ export declare const authAdmin: {
|
|
|
73
75
|
readonly 'ledger-account:type': readonly ['create', 'read', 'update', 'list'];
|
|
74
76
|
readonly 'ledger-account:account': readonly ['read', 'update', 'list'];
|
|
75
77
|
readonly 'ledger:entry': readonly ['read', 'list', 'view_all', 'adjust'];
|
|
78
|
+
readonly 'live_stream_video:video': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
76
79
|
readonly 'market_data:ticker': readonly ['read', 'latest'];
|
|
77
80
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
78
81
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
79
82
|
readonly 'market_pricing:strategy': readonly ['create', 'read', 'update', 'delete', 'list', 'run'];
|
|
83
|
+
readonly 'meeting_check_in:reward_config': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
80
84
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
81
85
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
82
86
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -125,10 +129,12 @@ export declare const authAdmin: {
|
|
|
125
129
|
readonly 'ledger-account:type': readonly ['create', 'read', 'update', 'list'];
|
|
126
130
|
readonly 'ledger-account:account': readonly ['read', 'update', 'list'];
|
|
127
131
|
readonly 'ledger:entry': readonly ['read', 'list', 'view_all', 'adjust'];
|
|
132
|
+
readonly 'live_stream_video:video': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
128
133
|
readonly 'market_data:ticker': readonly ['read', 'latest'];
|
|
129
134
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
130
135
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
131
136
|
readonly 'market_pricing:strategy': readonly ['create', 'read', 'update', 'delete', 'list', 'run'];
|
|
137
|
+
readonly 'meeting_check_in:reward_config': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
132
138
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
133
139
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
134
140
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -180,10 +186,12 @@ export declare const authUser: {
|
|
|
180
186
|
readonly 'ledger-account:type': readonly ['create', 'read', 'update', 'list'];
|
|
181
187
|
readonly 'ledger-account:account': readonly ['read', 'update', 'list'];
|
|
182
188
|
readonly 'ledger:entry': readonly ['read', 'list', 'view_all', 'adjust'];
|
|
189
|
+
readonly 'live_stream_video:video': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
183
190
|
readonly 'market_data:ticker': readonly ['read', 'latest'];
|
|
184
191
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
185
192
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
186
193
|
readonly 'market_pricing:strategy': readonly ['create', 'read', 'update', 'delete', 'list', 'run'];
|
|
194
|
+
readonly 'meeting_check_in:reward_config': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
187
195
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
188
196
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
189
197
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -233,10 +241,12 @@ export declare const authUser: {
|
|
|
233
241
|
readonly 'ledger-account:type': readonly ['create', 'read', 'update', 'list'];
|
|
234
242
|
readonly 'ledger-account:account': readonly ['read', 'update', 'list'];
|
|
235
243
|
readonly 'ledger:entry': readonly ['read', 'list', 'view_all', 'adjust'];
|
|
244
|
+
readonly 'live_stream_video:video': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
236
245
|
readonly 'market_data:ticker': readonly ['read', 'latest'];
|
|
237
246
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
238
247
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
239
248
|
readonly 'market_pricing:strategy': readonly ['create', 'read', 'update', 'delete', 'list', 'run'];
|
|
249
|
+
readonly 'meeting_check_in:reward_config': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
240
250
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
241
251
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
242
252
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -285,10 +295,12 @@ export declare const authUser: {
|
|
|
285
295
|
readonly 'ledger-account:type': readonly ['create', 'read', 'update', 'list'];
|
|
286
296
|
readonly 'ledger-account:account': readonly ['read', 'update', 'list'];
|
|
287
297
|
readonly 'ledger:entry': readonly ['read', 'list', 'view_all', 'adjust'];
|
|
298
|
+
readonly 'live_stream_video:video': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
288
299
|
readonly 'market_data:ticker': readonly ['read', 'latest'];
|
|
289
300
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
290
301
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
291
302
|
readonly 'market_pricing:strategy': readonly ['create', 'read', 'update', 'delete', 'list', 'run'];
|
|
303
|
+
readonly 'meeting_check_in:reward_config': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
292
304
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
293
305
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
294
306
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -345,10 +357,12 @@ export declare const superAdmin: {
|
|
|
345
357
|
readonly 'ledger-account:type': readonly ['create', 'read', 'update', 'list'];
|
|
346
358
|
readonly 'ledger-account:account': readonly ['read', 'update', 'list'];
|
|
347
359
|
readonly 'ledger:entry': readonly ['read', 'list', 'view_all', 'adjust'];
|
|
360
|
+
readonly 'live_stream_video:video': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
348
361
|
readonly 'market_data:ticker': readonly ['read', 'latest'];
|
|
349
362
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
350
363
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
351
364
|
readonly 'market_pricing:strategy': readonly ['create', 'read', 'update', 'delete', 'list', 'run'];
|
|
365
|
+
readonly 'meeting_check_in:reward_config': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
352
366
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
353
367
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
354
368
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -398,10 +412,12 @@ export declare const superAdmin: {
|
|
|
398
412
|
readonly 'ledger-account:type': readonly ['create', 'read', 'update', 'list'];
|
|
399
413
|
readonly 'ledger-account:account': readonly ['read', 'update', 'list'];
|
|
400
414
|
readonly 'ledger:entry': readonly ['read', 'list', 'view_all', 'adjust'];
|
|
415
|
+
readonly 'live_stream_video:video': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
401
416
|
readonly 'market_data:ticker': readonly ['read', 'latest'];
|
|
402
417
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
403
418
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
404
419
|
readonly 'market_pricing:strategy': readonly ['create', 'read', 'update', 'delete', 'list', 'run'];
|
|
420
|
+
readonly 'meeting_check_in:reward_config': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
405
421
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
406
422
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
407
423
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -450,10 +466,12 @@ export declare const superAdmin: {
|
|
|
450
466
|
readonly 'ledger-account:type': readonly ['create', 'read', 'update', 'list'];
|
|
451
467
|
readonly 'ledger-account:account': readonly ['read', 'update', 'list'];
|
|
452
468
|
readonly 'ledger:entry': readonly ['read', 'list', 'view_all', 'adjust'];
|
|
469
|
+
readonly 'live_stream_video:video': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
453
470
|
readonly 'market_data:ticker': readonly ['read', 'latest'];
|
|
454
471
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
455
472
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
456
473
|
readonly 'market_pricing:strategy': readonly ['create', 'read', 'update', 'delete', 'list', 'run'];
|
|
474
|
+
readonly 'meeting_check_in:reward_config': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
457
475
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
458
476
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
459
477
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -510,10 +528,12 @@ export declare const user: {
|
|
|
510
528
|
readonly 'ledger-account:type': readonly ['create', 'read', 'update', 'list'];
|
|
511
529
|
readonly 'ledger-account:account': readonly ['read', 'update', 'list'];
|
|
512
530
|
readonly 'ledger:entry': readonly ['read', 'list', 'view_all', 'adjust'];
|
|
531
|
+
readonly 'live_stream_video:video': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
513
532
|
readonly 'market_data:ticker': readonly ['read', 'latest'];
|
|
514
533
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
515
534
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
516
535
|
readonly 'market_pricing:strategy': readonly ['create', 'read', 'update', 'delete', 'list', 'run'];
|
|
536
|
+
readonly 'meeting_check_in:reward_config': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
517
537
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
518
538
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
519
539
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -563,10 +583,12 @@ export declare const user: {
|
|
|
563
583
|
readonly 'ledger-account:type': readonly ['create', 'read', 'update', 'list'];
|
|
564
584
|
readonly 'ledger-account:account': readonly ['read', 'update', 'list'];
|
|
565
585
|
readonly 'ledger:entry': readonly ['read', 'list', 'view_all', 'adjust'];
|
|
586
|
+
readonly 'live_stream_video:video': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
566
587
|
readonly 'market_data:ticker': readonly ['read', 'latest'];
|
|
567
588
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
568
589
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
569
590
|
readonly 'market_pricing:strategy': readonly ['create', 'read', 'update', 'delete', 'list', 'run'];
|
|
591
|
+
readonly 'meeting_check_in:reward_config': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
570
592
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
571
593
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
572
594
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -615,10 +637,12 @@ export declare const user: {
|
|
|
615
637
|
readonly 'ledger-account:type': readonly ['create', 'read', 'update', 'list'];
|
|
616
638
|
readonly 'ledger-account:account': readonly ['read', 'update', 'list'];
|
|
617
639
|
readonly 'ledger:entry': readonly ['read', 'list', 'view_all', 'adjust'];
|
|
640
|
+
readonly 'live_stream_video:video': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
618
641
|
readonly 'market_data:ticker': readonly ['read', 'latest'];
|
|
619
642
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
620
643
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
621
644
|
readonly 'market_pricing:strategy': readonly ['create', 'read', 'update', 'delete', 'list', 'run'];
|
|
645
|
+
readonly 'meeting_check_in:reward_config': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
622
646
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
623
647
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
624
648
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -675,10 +699,12 @@ export declare const admin: {
|
|
|
675
699
|
readonly 'ledger-account:type': readonly ['create', 'read', 'update', 'list'];
|
|
676
700
|
readonly 'ledger-account:account': readonly ['read', 'update', 'list'];
|
|
677
701
|
readonly 'ledger:entry': readonly ['read', 'list', 'view_all', 'adjust'];
|
|
702
|
+
readonly 'live_stream_video:video': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
678
703
|
readonly 'market_data:ticker': readonly ['read', 'latest'];
|
|
679
704
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
680
705
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
681
706
|
readonly 'market_pricing:strategy': readonly ['create', 'read', 'update', 'delete', 'list', 'run'];
|
|
707
|
+
readonly 'meeting_check_in:reward_config': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
682
708
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
683
709
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
684
710
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -728,10 +754,12 @@ export declare const admin: {
|
|
|
728
754
|
readonly 'ledger-account:type': readonly ['create', 'read', 'update', 'list'];
|
|
729
755
|
readonly 'ledger-account:account': readonly ['read', 'update', 'list'];
|
|
730
756
|
readonly 'ledger:entry': readonly ['read', 'list', 'view_all', 'adjust'];
|
|
757
|
+
readonly 'live_stream_video:video': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
731
758
|
readonly 'market_data:ticker': readonly ['read', 'latest'];
|
|
732
759
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
733
760
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
734
761
|
readonly 'market_pricing:strategy': readonly ['create', 'read', 'update', 'delete', 'list', 'run'];
|
|
762
|
+
readonly 'meeting_check_in:reward_config': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
735
763
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
736
764
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
737
765
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -780,10 +808,12 @@ export declare const admin: {
|
|
|
780
808
|
readonly 'ledger-account:type': readonly ['create', 'read', 'update', 'list'];
|
|
781
809
|
readonly 'ledger-account:account': readonly ['read', 'update', 'list'];
|
|
782
810
|
readonly 'ledger:entry': readonly ['read', 'list', 'view_all', 'adjust'];
|
|
811
|
+
readonly 'live_stream_video:video': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
783
812
|
readonly 'market_data:ticker': readonly ['read', 'latest'];
|
|
784
813
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
785
814
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
786
815
|
readonly 'market_pricing:strategy': readonly ['create', 'read', 'update', 'delete', 'list', 'run'];
|
|
816
|
+
readonly 'meeting_check_in:reward_config': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
787
817
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
788
818
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
789
819
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -10,7 +10,7 @@ export declare abstract class InternalContentVideoService {
|
|
|
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" | "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" | "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 InternalContentVideoService {
|
|
|
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" | "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" | "news_attachment" | "notification_attachment" | "other" | "transaction_receipt";
|
|
49
49
|
createdAt: Date;
|
|
50
50
|
deletedAt: Date | null;
|
|
51
51
|
downloadCount: number | null;
|
package/dist/db/schemas.d.ts
CHANGED
|
@@ -37,3 +37,5 @@ export * from '../welfare-cycle/schema';
|
|
|
37
37
|
export * from '../lock-activity/schema';
|
|
38
38
|
export * from '../lock-activity/participation.schema';
|
|
39
39
|
export * from '../content-video/schema';
|
|
40
|
+
export * from '../live-stream-video/schema';
|
|
41
|
+
export * from '../meeting-check-in/schema';
|
|
@@ -9,6 +9,7 @@ export declare const listAdminFilesFilterSchema: import("@sinclair/typebox").TOb
|
|
|
9
9
|
financial_report: "financial_report";
|
|
10
10
|
kyc_document: "kyc_document";
|
|
11
11
|
ledger_account_import: "ledger_account_import";
|
|
12
|
+
live_stream_video: "live_stream_video";
|
|
12
13
|
news_attachment: "news_attachment";
|
|
13
14
|
notification_attachment: "notification_attachment";
|
|
14
15
|
other: "other";
|
|
@@ -44,6 +45,7 @@ export declare const listAdminFilesQuerySchema: import("@sinclair/typebox").TObj
|
|
|
44
45
|
financial_report: "financial_report";
|
|
45
46
|
kyc_document: "kyc_document";
|
|
46
47
|
ledger_account_import: "ledger_account_import";
|
|
48
|
+
live_stream_video: "live_stream_video";
|
|
47
49
|
news_attachment: "news_attachment";
|
|
48
50
|
notification_attachment: "notification_attachment";
|
|
49
51
|
other: "other";
|
|
@@ -83,6 +85,7 @@ export declare const fileStorageWithRelationsSchema: import("@sinclair/typebox")
|
|
|
83
85
|
financial_report: "financial_report";
|
|
84
86
|
kyc_document: "kyc_document";
|
|
85
87
|
ledger_account_import: "ledger_account_import";
|
|
88
|
+
live_stream_video: "live_stream_video";
|
|
86
89
|
news_attachment: "news_attachment";
|
|
87
90
|
notification_attachment: "notification_attachment";
|
|
88
91
|
other: "other";
|
|
@@ -149,6 +152,7 @@ export declare const listAdminFilesResponseSchema: import("@sinclair/typebox").T
|
|
|
149
152
|
financial_report: "financial_report";
|
|
150
153
|
kyc_document: "kyc_document";
|
|
151
154
|
ledger_account_import: "ledger_account_import";
|
|
155
|
+
live_stream_video: "live_stream_video";
|
|
152
156
|
news_attachment: "news_attachment";
|
|
153
157
|
notification_attachment: "notification_attachment";
|
|
154
158
|
other: "other";
|
|
@@ -417,7 +417,7 @@ export declare const fileStorageAdminRouter: Elysia<"/file_storage", {
|
|
|
417
417
|
offset?: number | undefined;
|
|
418
418
|
pageSize?: number | undefined;
|
|
419
419
|
pageIndex?: number | undefined;
|
|
420
|
-
businessType?: "app_video" | "avatar" | "bank_verification" | "contract" | "cover_image" | "export_report" | "financial_report" | "kyc_document" | "ledger_account_import" | "news_attachment" | "notification_attachment" | "other" | "transaction_receipt" | undefined;
|
|
420
|
+
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;
|
|
421
421
|
businessId?: string | undefined;
|
|
422
422
|
status?: "active" | "archived" | "pending_deletion" | "uploading" | null | undefined;
|
|
423
423
|
accessControl?: "private" | "public" | "restricted" | null | undefined;
|
|
@@ -431,7 +431,7 @@ export declare const fileStorageAdminRouter: Elysia<"/file_storage", {
|
|
|
431
431
|
archivedAt: Date | null;
|
|
432
432
|
businessId: string | null;
|
|
433
433
|
businessMetadata: string | null;
|
|
434
|
-
businessType: "app_video" | "avatar" | "bank_verification" | "contract" | "cover_image" | "export_report" | "financial_report" | "kyc_document" | "ledger_account_import" | "news_attachment" | "notification_attachment" | "other" | "transaction_receipt";
|
|
434
|
+
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";
|
|
435
435
|
createdAt: Date;
|
|
436
436
|
deletedAt: Date | null;
|
|
437
437
|
downloadCount: number | null;
|
|
@@ -15,7 +15,7 @@ export declare abstract class AdminFileStorageService extends BaseFileStorageSer
|
|
|
15
15
|
s3Key: string;
|
|
16
16
|
s3Region: string;
|
|
17
17
|
s3ETag: string | null;
|
|
18
|
-
businessType: "app_video" | "avatar" | "bank_verification" | "contract" | "cover_image" | "export_report" | "financial_report" | "kyc_document" | "ledger_account_import" | "news_attachment" | "notification_attachment" | "other" | "transaction_receipt";
|
|
18
|
+
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";
|
|
19
19
|
businessId: string | null;
|
|
20
20
|
businessMetadata: string | null;
|
|
21
21
|
ownerId: string;
|
|
@@ -39,7 +39,7 @@ export declare abstract class AdminFileStorageService extends BaseFileStorageSer
|
|
|
39
39
|
archivedAt: Date | null;
|
|
40
40
|
businessId: string | null;
|
|
41
41
|
businessMetadata: string | null;
|
|
42
|
-
businessType: "app_video" | "avatar" | "bank_verification" | "contract" | "cover_image" | "export_report" | "financial_report" | "kyc_document" | "ledger_account_import" | "news_attachment" | "notification_attachment" | "other" | "transaction_receipt";
|
|
42
|
+
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";
|
|
43
43
|
createdAt: Date;
|
|
44
44
|
deletedAt: Date | null;
|
|
45
45
|
downloadCount: number | null;
|
|
@@ -225,14 +225,14 @@ export declare const fileStorageSelectSchema: import("drizzle-typebox").BuildSch
|
|
|
225
225
|
tableName: "file_storage";
|
|
226
226
|
dataType: "string";
|
|
227
227
|
columnType: "PgEnumColumn";
|
|
228
|
-
data: "app_video" | "avatar" | "bank_verification" | "contract" | "cover_image" | "export_report" | "financial_report" | "kyc_document" | "ledger_account_import" | "news_attachment" | "notification_attachment" | "other" | "transaction_receipt";
|
|
228
|
+
data: "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";
|
|
229
229
|
driverParam: string;
|
|
230
230
|
notNull: true;
|
|
231
231
|
hasDefault: false;
|
|
232
232
|
isPrimaryKey: false;
|
|
233
233
|
isAutoincrement: false;
|
|
234
234
|
hasRuntimeDefault: false;
|
|
235
|
-
enumValues: ["kyc_document", "contract", "financial_report", "ledger_account_import", "avatar", "cover_image", "notification_attachment", "transaction_receipt", "export_report", "bank_verification", "news_attachment", "app_video", "other"];
|
|
235
|
+
enumValues: ["kyc_document", "contract", "financial_report", "ledger_account_import", "avatar", "cover_image", "notification_attachment", "transaction_receipt", "export_report", "bank_verification", "news_attachment", "app_video", "live_stream_video", "other"];
|
|
236
236
|
baseColumn: never;
|
|
237
237
|
identity: undefined;
|
|
238
238
|
generated: undefined;
|
|
@@ -738,14 +738,14 @@ export declare const fileStorageInsertSchema: import("drizzle-typebox").BuildSch
|
|
|
738
738
|
tableName: "file_storage";
|
|
739
739
|
dataType: "string";
|
|
740
740
|
columnType: "PgEnumColumn";
|
|
741
|
-
data: "app_video" | "avatar" | "bank_verification" | "contract" | "cover_image" | "export_report" | "financial_report" | "kyc_document" | "ledger_account_import" | "news_attachment" | "notification_attachment" | "other" | "transaction_receipt";
|
|
741
|
+
data: "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";
|
|
742
742
|
driverParam: string;
|
|
743
743
|
notNull: true;
|
|
744
744
|
hasDefault: false;
|
|
745
745
|
isPrimaryKey: false;
|
|
746
746
|
isAutoincrement: false;
|
|
747
747
|
hasRuntimeDefault: false;
|
|
748
|
-
enumValues: ["kyc_document", "contract", "financial_report", "ledger_account_import", "avatar", "cover_image", "notification_attachment", "transaction_receipt", "export_report", "bank_verification", "news_attachment", "app_video", "other"];
|
|
748
|
+
enumValues: ["kyc_document", "contract", "financial_report", "ledger_account_import", "avatar", "cover_image", "notification_attachment", "transaction_receipt", "export_report", "bank_verification", "news_attachment", "app_video", "live_stream_video", "other"];
|
|
749
749
|
baseColumn: never;
|
|
750
750
|
identity: undefined;
|
|
751
751
|
generated: undefined;
|
|
@@ -33,7 +33,7 @@ export declare abstract class InternalFileStorageService extends BaseFileStorage
|
|
|
33
33
|
s3Key: string;
|
|
34
34
|
s3Region: string;
|
|
35
35
|
s3ETag: string | null;
|
|
36
|
-
businessType: "app_video" | "avatar" | "bank_verification" | "contract" | "cover_image" | "export_report" | "financial_report" | "kyc_document" | "ledger_account_import" | "news_attachment" | "notification_attachment" | "other" | "transaction_receipt";
|
|
36
|
+
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";
|
|
37
37
|
businessId: string | null;
|
|
38
38
|
businessMetadata: string | null;
|
|
39
39
|
ownerId: string;
|