@r2wa-org/eden 0.0.111 → 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 +1372 -0
- package/dist/asset-price/user/router.d.ts +13 -1
- package/dist/auth/better-auth.d.ts +7 -1
- package/dist/auth/permissions.d.ts +6 -1
- package/dist/auth/roles.d.ts +15 -0
- package/dist/db/schemas.d.ts +1 -0
- package/dist/index.d.ts +1372 -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/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/trade-market/user/router.d.ts +13 -1
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -2695,6 +2695,7 @@ export declare const auth: import("better-auth").Auth<{
|
|
|
2695
2695
|
readonly 'market_data:kline'?: ("list" | "read")[] | undefined;
|
|
2696
2696
|
readonly 'market_data:admin'?: ("list" | "read" | "run")[] | undefined;
|
|
2697
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;
|
|
2698
2699
|
readonly 'news:category'?: ("create" | "delete" | "list" | "read" | "update")[] | undefined;
|
|
2699
2700
|
readonly 'news:news'?: ("create" | "delete" | "list" | "read" | "update")[] | undefined;
|
|
2700
2701
|
readonly 'notification:notification'?: ("list" | "read" | "update")[] | undefined;
|
|
@@ -2794,7 +2795,7 @@ export declare const auth: import("better-auth").Auth<{
|
|
|
2794
2795
|
};
|
|
2795
2796
|
options: NoInfer<{
|
|
2796
2797
|
ac: {
|
|
2797
|
-
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" | "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, {
|
|
2798
2799
|
readonly user: readonly ["create", "list", "set-role", "ban", "impersonate", "impersonate-admins", "delete", "set-password", "get", "update"];
|
|
2799
2800
|
readonly session: readonly ["list", "revoke", "delete"];
|
|
2800
2801
|
readonly 'asset_convert_product:product': readonly ['create', 'read', 'update', 'list'];
|
|
@@ -2819,6 +2820,7 @@ export declare const auth: import("better-auth").Auth<{
|
|
|
2819
2820
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
2820
2821
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
2821
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'];
|
|
2822
2824
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
2823
2825
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
2824
2826
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -2873,6 +2875,7 @@ export declare const auth: import("better-auth").Auth<{
|
|
|
2873
2875
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
2874
2876
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
2875
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'];
|
|
2876
2879
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
2877
2880
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
2878
2881
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -2927,6 +2930,7 @@ export declare const auth: import("better-auth").Auth<{
|
|
|
2927
2930
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
2928
2931
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
2929
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'];
|
|
2930
2934
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
2931
2935
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
2932
2936
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -2980,6 +2984,7 @@ export declare const auth: import("better-auth").Auth<{
|
|
|
2980
2984
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
2981
2985
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
2982
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'];
|
|
2983
2988
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
2984
2989
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
2985
2990
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -3034,6 +3039,7 @@ export declare const auth: import("better-auth").Auth<{
|
|
|
3034
3039
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
3035
3040
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
3036
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'];
|
|
3037
3043
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
3038
3044
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
3039
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" | "live_stream_video:video" | "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'];
|
|
@@ -24,6 +24,7 @@ export declare const ac: {
|
|
|
24
24
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
25
25
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
26
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'];
|
|
27
28
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
28
29
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
29
30
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -78,6 +79,7 @@ export declare const ac: {
|
|
|
78
79
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
79
80
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
80
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'];
|
|
81
83
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
82
84
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
83
85
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -132,6 +134,7 @@ export declare const ac: {
|
|
|
132
134
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
133
135
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
134
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'];
|
|
135
138
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
136
139
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
137
140
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -185,6 +188,7 @@ export declare const ac: {
|
|
|
185
188
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
186
189
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
187
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'];
|
|
188
192
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
189
193
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
190
194
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -239,6 +243,7 @@ export declare const ac: {
|
|
|
239
243
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
240
244
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
241
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'];
|
|
242
247
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
243
248
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
244
249
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
package/dist/auth/roles.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ export declare const authAdmin: {
|
|
|
25
25
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
26
26
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
27
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'];
|
|
28
29
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
29
30
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
30
31
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -79,6 +80,7 @@ export declare const authAdmin: {
|
|
|
79
80
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
80
81
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
81
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'];
|
|
82
84
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
83
85
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
84
86
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -132,6 +134,7 @@ export declare const authAdmin: {
|
|
|
132
134
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
133
135
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
134
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'];
|
|
135
138
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
136
139
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
137
140
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -188,6 +191,7 @@ export declare const authUser: {
|
|
|
188
191
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
189
192
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
190
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'];
|
|
191
195
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
192
196
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
193
197
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -242,6 +246,7 @@ export declare const authUser: {
|
|
|
242
246
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
243
247
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
244
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'];
|
|
245
250
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
246
251
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
247
252
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -295,6 +300,7 @@ export declare const authUser: {
|
|
|
295
300
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
296
301
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
297
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'];
|
|
298
304
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
299
305
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
300
306
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -356,6 +362,7 @@ export declare const superAdmin: {
|
|
|
356
362
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
357
363
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
358
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'];
|
|
359
366
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
360
367
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
361
368
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -410,6 +417,7 @@ export declare const superAdmin: {
|
|
|
410
417
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
411
418
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
412
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'];
|
|
413
421
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
414
422
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
415
423
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -463,6 +471,7 @@ export declare const superAdmin: {
|
|
|
463
471
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
464
472
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
465
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'];
|
|
466
475
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
467
476
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
468
477
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -524,6 +533,7 @@ export declare const user: {
|
|
|
524
533
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
525
534
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
526
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'];
|
|
527
537
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
528
538
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
529
539
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -578,6 +588,7 @@ export declare const user: {
|
|
|
578
588
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
579
589
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
580
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'];
|
|
581
592
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
582
593
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
583
594
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -631,6 +642,7 @@ export declare const user: {
|
|
|
631
642
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
632
643
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
633
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'];
|
|
634
646
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
635
647
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
636
648
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -692,6 +704,7 @@ export declare const admin: {
|
|
|
692
704
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
693
705
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
694
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'];
|
|
695
708
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
696
709
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
697
710
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -746,6 +759,7 @@ export declare const admin: {
|
|
|
746
759
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
747
760
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
748
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'];
|
|
749
763
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
750
764
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
751
765
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
|
@@ -799,6 +813,7 @@ export declare const admin: {
|
|
|
799
813
|
readonly 'market_data:kline': readonly ['read', 'list'];
|
|
800
814
|
readonly 'market_data:admin': readonly ['read', 'list', 'run'];
|
|
801
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'];
|
|
802
817
|
readonly 'news:category': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
803
818
|
readonly 'news:news': readonly ['create', 'read', 'update', 'delete', 'list'];
|
|
804
819
|
readonly 'notification:notification': readonly ['read', 'update', 'list'];
|
package/dist/db/schemas.d.ts
CHANGED