@aitlabs/namkwong 0.0.103 → 0.0.105

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 (66) hide show
  1. package/dist/admin/index.d.ts +1046 -29
  2. package/dist/admin-user/admin/router.d.ts +13 -1
  3. package/dist/app-version/admin/router.d.ts +1 -13
  4. package/dist/asset/schema.d.ts +2 -0
  5. package/dist/asset-convert-product/admin/dto.schemas.d.ts +24 -0
  6. package/dist/asset-convert-product/admin/router.d.ts +25 -13
  7. package/dist/asset-convert-product/admin/service.d.ts +12 -12
  8. package/dist/binary-option/admin/dto.schemas.d.ts +3099 -0
  9. package/dist/binary-option/admin/router.d.ts +1400 -0
  10. package/dist/binary-option/admin/service.d.ts +524 -0
  11. package/dist/binary-option/cron.d.ts +6 -0
  12. package/dist/binary-option/db.schemas.d.ts +3158 -0
  13. package/dist/binary-option/errors/index.d.ts +38 -0
  14. package/dist/binary-option/errors/locales/zh.d.ts +37 -0
  15. package/dist/binary-option/index.d.ts +7 -0
  16. package/dist/binary-option/internal/service.d.ts +271 -0
  17. package/dist/binary-option/schema.d.ts +1666 -0
  18. package/dist/binary-option/user/dto.schemas.d.ts +1182 -0
  19. package/dist/binary-option/user/router.d.ts +808 -0
  20. package/dist/binary-option/user/service.d.ts +232 -0
  21. package/dist/db/schemas.d.ts +2 -0
  22. package/dist/dynamic-env/admin.router.d.ts +1 -13
  23. package/dist/index.d.ts +1759 -254
  24. package/dist/ledger/admin/dto.schemas.d.ts +24 -0
  25. package/dist/ledger/admin/router.d.ts +4 -4
  26. package/dist/ledger/db.schemas.d.ts +8 -8
  27. package/dist/ledger/schema.d.ts +6 -6
  28. package/dist/ledger/user/dto.schemas.d.ts +8 -8
  29. package/dist/ledger/user/router.d.ts +2 -2
  30. package/dist/ledger/user/service.d.ts +2 -2
  31. package/dist/lock-activity/admin/participation.dto.schemas.d.ts +3 -3
  32. package/dist/lock-activity/admin/participation.service.d.ts +4 -4
  33. package/dist/lock-activity/admin/reward.service.d.ts +1 -1
  34. package/dist/lock-activity/admin/router.d.ts +6 -6
  35. package/dist/market-data/internal/service.d.ts +1 -1
  36. package/dist/market-symbol/admin/dto.schemas.d.ts +104 -0
  37. package/dist/market-symbol/admin/router.d.ts +528 -0
  38. package/dist/market-symbol/admin/service.d.ts +34 -0
  39. package/dist/market-symbol/db.schemas.d.ts +346 -0
  40. package/dist/market-symbol/internal/service.d.ts +25 -0
  41. package/dist/market-symbol/schema.d.ts +196 -0
  42. package/dist/referral/admin/dto.schemas.d.ts +4 -2
  43. package/dist/referral/admin/router.d.ts +2 -1
  44. package/dist/referral/db.schemas.d.ts +210 -0
  45. package/dist/referral/index.d.ts +3 -1
  46. package/dist/referral/internal/service.d.ts +7 -2
  47. package/dist/referral/schema.d.ts +116 -0
  48. package/dist/referral/share/dto.schemas.d.ts +34 -0
  49. package/dist/referral/share/router.d.ts +527 -0
  50. package/dist/referral/share/service.d.ts +23 -0
  51. package/dist/referral/user/dto.schemas.d.ts +2 -1
  52. package/dist/referral/user/router.d.ts +2 -1
  53. package/dist/referral/user/service.d.ts +3 -2
  54. package/dist/team/admin/dto.schemas.d.ts +0 -85
  55. package/dist/team/admin/router.d.ts +0 -3
  56. package/dist/team/user/dto.schemas.d.ts +0 -1
  57. package/dist/team/user/router.d.ts +0 -1
  58. package/dist/user/admin/dto.schemas.d.ts +0 -34
  59. package/dist/user/admin/router.d.ts +0 -3
  60. package/dist/user/admin/service.d.ts +0 -3
  61. package/dist/user/db.schemas.d.ts +0 -34
  62. package/dist/user/internal/service.d.ts +0 -1
  63. package/dist/user/schema.d.ts +0 -17
  64. package/dist/user/user/router.d.ts +0 -3
  65. package/dist/user/user/service.d.ts +0 -3
  66. package/package.json +1 -1
@@ -35,7 +35,19 @@ export declare const adminUserAdminRouter: Elysia<"/admin_users", {
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;
@@ -35,19 +35,7 @@ export declare const appVersionAdminRouter: Elysia<"/app_versions", {
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;
@@ -206,4 +206,6 @@ export declare const assetRelations: import("drizzle-orm").Relations<"asset", {
206
206
  accounts: import("drizzle-orm").Many<"ledger_account">;
207
207
  basePrices: import("drizzle-orm").Many<"asset_price">;
208
208
  quotePrices: import("drizzle-orm").Many<"asset_price">;
209
+ baseMarketSymbols: import("drizzle-orm").Many<"market_symbol">;
210
+ quoteMarketSymbols: import("drizzle-orm").Many<"market_symbol">;
209
211
  }>;
@@ -110,6 +110,10 @@ export declare const assetConvertOrderAdminResponseSchema: import("@sinclair/typ
110
110
  bizType: import("@sinclair/typebox").TEnum<{
111
111
  asset_convert_order_pay_debit: "asset_convert_order_pay_debit";
112
112
  asset_convert_order_target_credit: "asset_convert_order_target_credit";
113
+ binary_option_payout_credit: "binary_option_payout_credit";
114
+ binary_option_stake_deduct: "binary_option_stake_deduct";
115
+ binary_option_stake_freeze: "binary_option_stake_freeze";
116
+ binary_option_stake_unfreeze: "binary_option_stake_unfreeze";
113
117
  deposit_credit: "deposit_credit";
114
118
  internal_transfer_in: "internal_transfer_in";
115
119
  internal_transfer_out: "internal_transfer_out";
@@ -134,6 +138,8 @@ export declare const assetConvertOrderAdminResponseSchema: import("@sinclair/typ
134
138
  referenceId: import("@sinclair/typebox").TString;
135
139
  referenceType: import("@sinclair/typebox").TEnum<{
136
140
  asset_convert_order: "asset_convert_order";
141
+ binary_option_order: "binary_option_order";
142
+ binary_option_settlement: "binary_option_settlement";
137
143
  deposit_order: "deposit_order";
138
144
  internal_transfer_order: "internal_transfer_order";
139
145
  lock_activity_participation: "lock_activity_participation";
@@ -153,6 +159,10 @@ export declare const assetConvertOrderAdminResponseSchema: import("@sinclair/typ
153
159
  bizType: import("@sinclair/typebox").TEnum<{
154
160
  asset_convert_order_pay_debit: "asset_convert_order_pay_debit";
155
161
  asset_convert_order_target_credit: "asset_convert_order_target_credit";
162
+ binary_option_payout_credit: "binary_option_payout_credit";
163
+ binary_option_stake_deduct: "binary_option_stake_deduct";
164
+ binary_option_stake_freeze: "binary_option_stake_freeze";
165
+ binary_option_stake_unfreeze: "binary_option_stake_unfreeze";
156
166
  deposit_credit: "deposit_credit";
157
167
  internal_transfer_in: "internal_transfer_in";
158
168
  internal_transfer_out: "internal_transfer_out";
@@ -177,6 +187,8 @@ export declare const assetConvertOrderAdminResponseSchema: import("@sinclair/typ
177
187
  referenceId: import("@sinclair/typebox").TString;
178
188
  referenceType: import("@sinclair/typebox").TEnum<{
179
189
  asset_convert_order: "asset_convert_order";
190
+ binary_option_order: "binary_option_order";
191
+ binary_option_settlement: "binary_option_settlement";
180
192
  deposit_order: "deposit_order";
181
193
  internal_transfer_order: "internal_transfer_order";
182
194
  lock_activity_participation: "lock_activity_participation";
@@ -558,6 +570,10 @@ export declare const assetConvertOrderListResponseSchema: import("@sinclair/type
558
570
  bizType: import("@sinclair/typebox").TEnum<{
559
571
  asset_convert_order_pay_debit: "asset_convert_order_pay_debit";
560
572
  asset_convert_order_target_credit: "asset_convert_order_target_credit";
573
+ binary_option_payout_credit: "binary_option_payout_credit";
574
+ binary_option_stake_deduct: "binary_option_stake_deduct";
575
+ binary_option_stake_freeze: "binary_option_stake_freeze";
576
+ binary_option_stake_unfreeze: "binary_option_stake_unfreeze";
561
577
  deposit_credit: "deposit_credit";
562
578
  internal_transfer_in: "internal_transfer_in";
563
579
  internal_transfer_out: "internal_transfer_out";
@@ -582,6 +598,8 @@ export declare const assetConvertOrderListResponseSchema: import("@sinclair/type
582
598
  referenceId: import("@sinclair/typebox").TString;
583
599
  referenceType: import("@sinclair/typebox").TEnum<{
584
600
  asset_convert_order: "asset_convert_order";
601
+ binary_option_order: "binary_option_order";
602
+ binary_option_settlement: "binary_option_settlement";
585
603
  deposit_order: "deposit_order";
586
604
  internal_transfer_order: "internal_transfer_order";
587
605
  lock_activity_participation: "lock_activity_participation";
@@ -601,6 +619,10 @@ export declare const assetConvertOrderListResponseSchema: import("@sinclair/type
601
619
  bizType: import("@sinclair/typebox").TEnum<{
602
620
  asset_convert_order_pay_debit: "asset_convert_order_pay_debit";
603
621
  asset_convert_order_target_credit: "asset_convert_order_target_credit";
622
+ binary_option_payout_credit: "binary_option_payout_credit";
623
+ binary_option_stake_deduct: "binary_option_stake_deduct";
624
+ binary_option_stake_freeze: "binary_option_stake_freeze";
625
+ binary_option_stake_unfreeze: "binary_option_stake_unfreeze";
604
626
  deposit_credit: "deposit_credit";
605
627
  internal_transfer_in: "internal_transfer_in";
606
628
  internal_transfer_out: "internal_transfer_out";
@@ -625,6 +647,8 @@ export declare const assetConvertOrderListResponseSchema: import("@sinclair/type
625
647
  referenceId: import("@sinclair/typebox").TString;
626
648
  referenceType: import("@sinclair/typebox").TEnum<{
627
649
  asset_convert_order: "asset_convert_order";
650
+ binary_option_order: "binary_option_order";
651
+ binary_option_settlement: "binary_option_settlement";
628
652
  deposit_order: "deposit_order";
629
653
  internal_transfer_order: "internal_transfer_order";
630
654
  lock_activity_participation: "lock_activity_participation";
@@ -35,7 +35,19 @@ export declare const assetConvertProductAdminRouter: Elysia<"/asset_convert_prod
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;
@@ -986,19 +998,19 @@ export declare const assetConvertProductAdminRouter: Elysia<"/asset_convert_prod
986
998
  createdAt: Date;
987
999
  creditLedgerEntry?: {
988
1000
  id: string;
989
- bizType: "asset_convert_order_pay_debit" | "asset_convert_order_target_credit" | "deposit_credit" | "internal_transfer_in" | "internal_transfer_out" | "lock_activity_reward_payout" | "manual_decrease" | "manual_increase" | "trade_market_buy_base_transfer" | "trade_market_buy_quote_transfer" | "trade_market_sell_base_transfer" | "trade_market_sell_quote_transfer" | "transfer_in" | "transfer_out" | "welfare_cycle_daily_yield_payout" | "welfare_cycle_maturity_principal_return" | "welfare_cycle_maturity_yield_payout" | "welfare_cycle_subscribe_transfer" | "withdraw_debit" | "withdraw_freeze" | "withdraw_release";
1001
+ bizType: "asset_convert_order_pay_debit" | "asset_convert_order_target_credit" | "binary_option_payout_credit" | "binary_option_stake_deduct" | "binary_option_stake_freeze" | "binary_option_stake_unfreeze" | "deposit_credit" | "internal_transfer_in" | "internal_transfer_out" | "lock_activity_reward_payout" | "manual_decrease" | "manual_increase" | "trade_market_buy_base_transfer" | "trade_market_buy_quote_transfer" | "trade_market_sell_base_transfer" | "trade_market_sell_quote_transfer" | "transfer_in" | "transfer_out" | "welfare_cycle_daily_yield_payout" | "welfare_cycle_maturity_principal_return" | "welfare_cycle_maturity_yield_payout" | "welfare_cycle_subscribe_transfer" | "withdraw_debit" | "withdraw_freeze" | "withdraw_release";
990
1002
  amount: string;
991
1003
  referenceId: string;
992
- referenceType: "asset_convert_order" | "deposit_order" | "internal_transfer_order" | "lock_activity_participation" | "manual_adjustment" | "trade_market_order" | "transfer_order" | "welfare_cycle_daily_payout" | "welfare_cycle_maturity_settlement" | "welfare_cycle_subscription" | "withdraw_order";
1004
+ referenceType: "asset_convert_order" | "binary_option_order" | "binary_option_settlement" | "deposit_order" | "internal_transfer_order" | "lock_activity_participation" | "manual_adjustment" | "trade_market_order" | "transfer_order" | "welfare_cycle_daily_payout" | "welfare_cycle_maturity_settlement" | "welfare_cycle_subscription" | "withdraw_order";
993
1005
  createdAt: Date;
994
1006
  } | undefined;
995
1007
  creditLedgerEntryId: string | null;
996
1008
  debitLedgerEntry?: {
997
1009
  id: string;
998
- bizType: "asset_convert_order_pay_debit" | "asset_convert_order_target_credit" | "deposit_credit" | "internal_transfer_in" | "internal_transfer_out" | "lock_activity_reward_payout" | "manual_decrease" | "manual_increase" | "trade_market_buy_base_transfer" | "trade_market_buy_quote_transfer" | "trade_market_sell_base_transfer" | "trade_market_sell_quote_transfer" | "transfer_in" | "transfer_out" | "welfare_cycle_daily_yield_payout" | "welfare_cycle_maturity_principal_return" | "welfare_cycle_maturity_yield_payout" | "welfare_cycle_subscribe_transfer" | "withdraw_debit" | "withdraw_freeze" | "withdraw_release";
1010
+ bizType: "asset_convert_order_pay_debit" | "asset_convert_order_target_credit" | "binary_option_payout_credit" | "binary_option_stake_deduct" | "binary_option_stake_freeze" | "binary_option_stake_unfreeze" | "deposit_credit" | "internal_transfer_in" | "internal_transfer_out" | "lock_activity_reward_payout" | "manual_decrease" | "manual_increase" | "trade_market_buy_base_transfer" | "trade_market_buy_quote_transfer" | "trade_market_sell_base_transfer" | "trade_market_sell_quote_transfer" | "transfer_in" | "transfer_out" | "welfare_cycle_daily_yield_payout" | "welfare_cycle_maturity_principal_return" | "welfare_cycle_maturity_yield_payout" | "welfare_cycle_subscribe_transfer" | "withdraw_debit" | "withdraw_freeze" | "withdraw_release";
999
1011
  amount: string;
1000
1012
  referenceId: string;
1001
- referenceType: "asset_convert_order" | "deposit_order" | "internal_transfer_order" | "lock_activity_participation" | "manual_adjustment" | "trade_market_order" | "transfer_order" | "welfare_cycle_daily_payout" | "welfare_cycle_maturity_settlement" | "welfare_cycle_subscription" | "withdraw_order";
1013
+ referenceType: "asset_convert_order" | "binary_option_order" | "binary_option_settlement" | "deposit_order" | "internal_transfer_order" | "lock_activity_participation" | "manual_adjustment" | "trade_market_order" | "transfer_order" | "welfare_cycle_daily_payout" | "welfare_cycle_maturity_settlement" | "welfare_cycle_subscription" | "withdraw_order";
1002
1014
  createdAt: Date;
1003
1015
  } | undefined;
1004
1016
  debitLedgerEntryId: string | null;
@@ -1157,19 +1169,19 @@ export declare const assetConvertProductAdminRouter: Elysia<"/asset_convert_prod
1157
1169
  createdAt: Date;
1158
1170
  creditLedgerEntry?: {
1159
1171
  id: string;
1160
- bizType: "asset_convert_order_pay_debit" | "asset_convert_order_target_credit" | "deposit_credit" | "internal_transfer_in" | "internal_transfer_out" | "lock_activity_reward_payout" | "manual_decrease" | "manual_increase" | "trade_market_buy_base_transfer" | "trade_market_buy_quote_transfer" | "trade_market_sell_base_transfer" | "trade_market_sell_quote_transfer" | "transfer_in" | "transfer_out" | "welfare_cycle_daily_yield_payout" | "welfare_cycle_maturity_principal_return" | "welfare_cycle_maturity_yield_payout" | "welfare_cycle_subscribe_transfer" | "withdraw_debit" | "withdraw_freeze" | "withdraw_release";
1172
+ bizType: "asset_convert_order_pay_debit" | "asset_convert_order_target_credit" | "binary_option_payout_credit" | "binary_option_stake_deduct" | "binary_option_stake_freeze" | "binary_option_stake_unfreeze" | "deposit_credit" | "internal_transfer_in" | "internal_transfer_out" | "lock_activity_reward_payout" | "manual_decrease" | "manual_increase" | "trade_market_buy_base_transfer" | "trade_market_buy_quote_transfer" | "trade_market_sell_base_transfer" | "trade_market_sell_quote_transfer" | "transfer_in" | "transfer_out" | "welfare_cycle_daily_yield_payout" | "welfare_cycle_maturity_principal_return" | "welfare_cycle_maturity_yield_payout" | "welfare_cycle_subscribe_transfer" | "withdraw_debit" | "withdraw_freeze" | "withdraw_release";
1161
1173
  amount: string;
1162
1174
  referenceId: string;
1163
- referenceType: "asset_convert_order" | "deposit_order" | "internal_transfer_order" | "lock_activity_participation" | "manual_adjustment" | "trade_market_order" | "transfer_order" | "welfare_cycle_daily_payout" | "welfare_cycle_maturity_settlement" | "welfare_cycle_subscription" | "withdraw_order";
1175
+ referenceType: "asset_convert_order" | "binary_option_order" | "binary_option_settlement" | "deposit_order" | "internal_transfer_order" | "lock_activity_participation" | "manual_adjustment" | "trade_market_order" | "transfer_order" | "welfare_cycle_daily_payout" | "welfare_cycle_maturity_settlement" | "welfare_cycle_subscription" | "withdraw_order";
1164
1176
  createdAt: Date;
1165
1177
  } | undefined;
1166
1178
  creditLedgerEntryId: string | null;
1167
1179
  debitLedgerEntry?: {
1168
1180
  id: string;
1169
- bizType: "asset_convert_order_pay_debit" | "asset_convert_order_target_credit" | "deposit_credit" | "internal_transfer_in" | "internal_transfer_out" | "lock_activity_reward_payout" | "manual_decrease" | "manual_increase" | "trade_market_buy_base_transfer" | "trade_market_buy_quote_transfer" | "trade_market_sell_base_transfer" | "trade_market_sell_quote_transfer" | "transfer_in" | "transfer_out" | "welfare_cycle_daily_yield_payout" | "welfare_cycle_maturity_principal_return" | "welfare_cycle_maturity_yield_payout" | "welfare_cycle_subscribe_transfer" | "withdraw_debit" | "withdraw_freeze" | "withdraw_release";
1181
+ bizType: "asset_convert_order_pay_debit" | "asset_convert_order_target_credit" | "binary_option_payout_credit" | "binary_option_stake_deduct" | "binary_option_stake_freeze" | "binary_option_stake_unfreeze" | "deposit_credit" | "internal_transfer_in" | "internal_transfer_out" | "lock_activity_reward_payout" | "manual_decrease" | "manual_increase" | "trade_market_buy_base_transfer" | "trade_market_buy_quote_transfer" | "trade_market_sell_base_transfer" | "trade_market_sell_quote_transfer" | "transfer_in" | "transfer_out" | "welfare_cycle_daily_yield_payout" | "welfare_cycle_maturity_principal_return" | "welfare_cycle_maturity_yield_payout" | "welfare_cycle_subscribe_transfer" | "withdraw_debit" | "withdraw_freeze" | "withdraw_release";
1170
1182
  amount: string;
1171
1183
  referenceId: string;
1172
- referenceType: "asset_convert_order" | "deposit_order" | "internal_transfer_order" | "lock_activity_participation" | "manual_adjustment" | "trade_market_order" | "transfer_order" | "welfare_cycle_daily_payout" | "welfare_cycle_maturity_settlement" | "welfare_cycle_subscription" | "withdraw_order";
1184
+ referenceType: "asset_convert_order" | "binary_option_order" | "binary_option_settlement" | "deposit_order" | "internal_transfer_order" | "lock_activity_participation" | "manual_adjustment" | "trade_market_order" | "transfer_order" | "welfare_cycle_daily_payout" | "welfare_cycle_maturity_settlement" | "welfare_cycle_subscription" | "withdraw_order";
1173
1185
  createdAt: Date;
1174
1186
  } | undefined;
1175
1187
  debitLedgerEntryId: string | null;
@@ -1322,19 +1334,19 @@ export declare const assetConvertProductAdminRouter: Elysia<"/asset_convert_prod
1322
1334
  createdAt: Date;
1323
1335
  creditLedgerEntry?: {
1324
1336
  id: string;
1325
- bizType: "asset_convert_order_pay_debit" | "asset_convert_order_target_credit" | "deposit_credit" | "internal_transfer_in" | "internal_transfer_out" | "lock_activity_reward_payout" | "manual_decrease" | "manual_increase" | "trade_market_buy_base_transfer" | "trade_market_buy_quote_transfer" | "trade_market_sell_base_transfer" | "trade_market_sell_quote_transfer" | "transfer_in" | "transfer_out" | "welfare_cycle_daily_yield_payout" | "welfare_cycle_maturity_principal_return" | "welfare_cycle_maturity_yield_payout" | "welfare_cycle_subscribe_transfer" | "withdraw_debit" | "withdraw_freeze" | "withdraw_release";
1337
+ bizType: "asset_convert_order_pay_debit" | "asset_convert_order_target_credit" | "binary_option_payout_credit" | "binary_option_stake_deduct" | "binary_option_stake_freeze" | "binary_option_stake_unfreeze" | "deposit_credit" | "internal_transfer_in" | "internal_transfer_out" | "lock_activity_reward_payout" | "manual_decrease" | "manual_increase" | "trade_market_buy_base_transfer" | "trade_market_buy_quote_transfer" | "trade_market_sell_base_transfer" | "trade_market_sell_quote_transfer" | "transfer_in" | "transfer_out" | "welfare_cycle_daily_yield_payout" | "welfare_cycle_maturity_principal_return" | "welfare_cycle_maturity_yield_payout" | "welfare_cycle_subscribe_transfer" | "withdraw_debit" | "withdraw_freeze" | "withdraw_release";
1326
1338
  amount: string;
1327
1339
  referenceId: string;
1328
- referenceType: "asset_convert_order" | "deposit_order" | "internal_transfer_order" | "lock_activity_participation" | "manual_adjustment" | "trade_market_order" | "transfer_order" | "welfare_cycle_daily_payout" | "welfare_cycle_maturity_settlement" | "welfare_cycle_subscription" | "withdraw_order";
1340
+ referenceType: "asset_convert_order" | "binary_option_order" | "binary_option_settlement" | "deposit_order" | "internal_transfer_order" | "lock_activity_participation" | "manual_adjustment" | "trade_market_order" | "transfer_order" | "welfare_cycle_daily_payout" | "welfare_cycle_maturity_settlement" | "welfare_cycle_subscription" | "withdraw_order";
1329
1341
  createdAt: Date;
1330
1342
  } | undefined;
1331
1343
  creditLedgerEntryId: string | null;
1332
1344
  debitLedgerEntry?: {
1333
1345
  id: string;
1334
- bizType: "asset_convert_order_pay_debit" | "asset_convert_order_target_credit" | "deposit_credit" | "internal_transfer_in" | "internal_transfer_out" | "lock_activity_reward_payout" | "manual_decrease" | "manual_increase" | "trade_market_buy_base_transfer" | "trade_market_buy_quote_transfer" | "trade_market_sell_base_transfer" | "trade_market_sell_quote_transfer" | "transfer_in" | "transfer_out" | "welfare_cycle_daily_yield_payout" | "welfare_cycle_maturity_principal_return" | "welfare_cycle_maturity_yield_payout" | "welfare_cycle_subscribe_transfer" | "withdraw_debit" | "withdraw_freeze" | "withdraw_release";
1346
+ bizType: "asset_convert_order_pay_debit" | "asset_convert_order_target_credit" | "binary_option_payout_credit" | "binary_option_stake_deduct" | "binary_option_stake_freeze" | "binary_option_stake_unfreeze" | "deposit_credit" | "internal_transfer_in" | "internal_transfer_out" | "lock_activity_reward_payout" | "manual_decrease" | "manual_increase" | "trade_market_buy_base_transfer" | "trade_market_buy_quote_transfer" | "trade_market_sell_base_transfer" | "trade_market_sell_quote_transfer" | "transfer_in" | "transfer_out" | "welfare_cycle_daily_yield_payout" | "welfare_cycle_maturity_principal_return" | "welfare_cycle_maturity_yield_payout" | "welfare_cycle_subscribe_transfer" | "withdraw_debit" | "withdraw_freeze" | "withdraw_release";
1335
1347
  amount: string;
1336
1348
  referenceId: string;
1337
- referenceType: "asset_convert_order" | "deposit_order" | "internal_transfer_order" | "lock_activity_participation" | "manual_adjustment" | "trade_market_order" | "transfer_order" | "welfare_cycle_daily_payout" | "welfare_cycle_maturity_settlement" | "welfare_cycle_subscription" | "withdraw_order";
1349
+ referenceType: "asset_convert_order" | "binary_option_order" | "binary_option_settlement" | "deposit_order" | "internal_transfer_order" | "lock_activity_participation" | "manual_adjustment" | "trade_market_order" | "transfer_order" | "welfare_cycle_daily_payout" | "welfare_cycle_maturity_settlement" | "welfare_cycle_subscription" | "withdraw_order";
1338
1350
  createdAt: Date;
1339
1351
  } | undefined;
1340
1352
  debitLedgerEntryId: string | null;
@@ -400,19 +400,19 @@ export declare abstract class AdminAssetConvertProductService {
400
400
  createdAt: Date;
401
401
  creditLedgerEntry?: {
402
402
  id: string;
403
- bizType: "asset_convert_order_pay_debit" | "asset_convert_order_target_credit" | "deposit_credit" | "internal_transfer_in" | "internal_transfer_out" | "lock_activity_reward_payout" | "manual_decrease" | "manual_increase" | "trade_market_buy_base_transfer" | "trade_market_buy_quote_transfer" | "trade_market_sell_base_transfer" | "trade_market_sell_quote_transfer" | "transfer_in" | "transfer_out" | "welfare_cycle_daily_yield_payout" | "welfare_cycle_maturity_principal_return" | "welfare_cycle_maturity_yield_payout" | "welfare_cycle_subscribe_transfer" | "withdraw_debit" | "withdraw_freeze" | "withdraw_release";
403
+ bizType: "asset_convert_order_pay_debit" | "asset_convert_order_target_credit" | "binary_option_payout_credit" | "binary_option_stake_deduct" | "binary_option_stake_freeze" | "binary_option_stake_unfreeze" | "deposit_credit" | "internal_transfer_in" | "internal_transfer_out" | "lock_activity_reward_payout" | "manual_decrease" | "manual_increase" | "trade_market_buy_base_transfer" | "trade_market_buy_quote_transfer" | "trade_market_sell_base_transfer" | "trade_market_sell_quote_transfer" | "transfer_in" | "transfer_out" | "welfare_cycle_daily_yield_payout" | "welfare_cycle_maturity_principal_return" | "welfare_cycle_maturity_yield_payout" | "welfare_cycle_subscribe_transfer" | "withdraw_debit" | "withdraw_freeze" | "withdraw_release";
404
404
  amount: string;
405
405
  referenceId: string;
406
- referenceType: "asset_convert_order" | "deposit_order" | "internal_transfer_order" | "lock_activity_participation" | "manual_adjustment" | "trade_market_order" | "transfer_order" | "welfare_cycle_daily_payout" | "welfare_cycle_maturity_settlement" | "welfare_cycle_subscription" | "withdraw_order";
406
+ referenceType: "asset_convert_order" | "binary_option_order" | "binary_option_settlement" | "deposit_order" | "internal_transfer_order" | "lock_activity_participation" | "manual_adjustment" | "trade_market_order" | "transfer_order" | "welfare_cycle_daily_payout" | "welfare_cycle_maturity_settlement" | "welfare_cycle_subscription" | "withdraw_order";
407
407
  createdAt: Date;
408
408
  } | undefined;
409
409
  creditLedgerEntryId: string | null;
410
410
  debitLedgerEntry?: {
411
411
  id: string;
412
- bizType: "asset_convert_order_pay_debit" | "asset_convert_order_target_credit" | "deposit_credit" | "internal_transfer_in" | "internal_transfer_out" | "lock_activity_reward_payout" | "manual_decrease" | "manual_increase" | "trade_market_buy_base_transfer" | "trade_market_buy_quote_transfer" | "trade_market_sell_base_transfer" | "trade_market_sell_quote_transfer" | "transfer_in" | "transfer_out" | "welfare_cycle_daily_yield_payout" | "welfare_cycle_maturity_principal_return" | "welfare_cycle_maturity_yield_payout" | "welfare_cycle_subscribe_transfer" | "withdraw_debit" | "withdraw_freeze" | "withdraw_release";
412
+ bizType: "asset_convert_order_pay_debit" | "asset_convert_order_target_credit" | "binary_option_payout_credit" | "binary_option_stake_deduct" | "binary_option_stake_freeze" | "binary_option_stake_unfreeze" | "deposit_credit" | "internal_transfer_in" | "internal_transfer_out" | "lock_activity_reward_payout" | "manual_decrease" | "manual_increase" | "trade_market_buy_base_transfer" | "trade_market_buy_quote_transfer" | "trade_market_sell_base_transfer" | "trade_market_sell_quote_transfer" | "transfer_in" | "transfer_out" | "welfare_cycle_daily_yield_payout" | "welfare_cycle_maturity_principal_return" | "welfare_cycle_maturity_yield_payout" | "welfare_cycle_subscribe_transfer" | "withdraw_debit" | "withdraw_freeze" | "withdraw_release";
413
413
  amount: string;
414
414
  referenceId: string;
415
- referenceType: "asset_convert_order" | "deposit_order" | "internal_transfer_order" | "lock_activity_participation" | "manual_adjustment" | "trade_market_order" | "transfer_order" | "welfare_cycle_daily_payout" | "welfare_cycle_maturity_settlement" | "welfare_cycle_subscription" | "withdraw_order";
415
+ referenceType: "asset_convert_order" | "binary_option_order" | "binary_option_settlement" | "deposit_order" | "internal_transfer_order" | "lock_activity_participation" | "manual_adjustment" | "trade_market_order" | "transfer_order" | "welfare_cycle_daily_payout" | "welfare_cycle_maturity_settlement" | "welfare_cycle_subscription" | "withdraw_order";
416
416
  createdAt: Date;
417
417
  } | undefined;
418
418
  debitLedgerEntryId: string | null;
@@ -536,19 +536,19 @@ export declare abstract class AdminAssetConvertProductService {
536
536
  createdAt: Date;
537
537
  creditLedgerEntry?: {
538
538
  id: string;
539
- bizType: "asset_convert_order_pay_debit" | "asset_convert_order_target_credit" | "deposit_credit" | "internal_transfer_in" | "internal_transfer_out" | "lock_activity_reward_payout" | "manual_decrease" | "manual_increase" | "trade_market_buy_base_transfer" | "trade_market_buy_quote_transfer" | "trade_market_sell_base_transfer" | "trade_market_sell_quote_transfer" | "transfer_in" | "transfer_out" | "welfare_cycle_daily_yield_payout" | "welfare_cycle_maturity_principal_return" | "welfare_cycle_maturity_yield_payout" | "welfare_cycle_subscribe_transfer" | "withdraw_debit" | "withdraw_freeze" | "withdraw_release";
539
+ bizType: "asset_convert_order_pay_debit" | "asset_convert_order_target_credit" | "binary_option_payout_credit" | "binary_option_stake_deduct" | "binary_option_stake_freeze" | "binary_option_stake_unfreeze" | "deposit_credit" | "internal_transfer_in" | "internal_transfer_out" | "lock_activity_reward_payout" | "manual_decrease" | "manual_increase" | "trade_market_buy_base_transfer" | "trade_market_buy_quote_transfer" | "trade_market_sell_base_transfer" | "trade_market_sell_quote_transfer" | "transfer_in" | "transfer_out" | "welfare_cycle_daily_yield_payout" | "welfare_cycle_maturity_principal_return" | "welfare_cycle_maturity_yield_payout" | "welfare_cycle_subscribe_transfer" | "withdraw_debit" | "withdraw_freeze" | "withdraw_release";
540
540
  amount: string;
541
541
  referenceId: string;
542
- referenceType: "asset_convert_order" | "deposit_order" | "internal_transfer_order" | "lock_activity_participation" | "manual_adjustment" | "trade_market_order" | "transfer_order" | "welfare_cycle_daily_payout" | "welfare_cycle_maturity_settlement" | "welfare_cycle_subscription" | "withdraw_order";
542
+ referenceType: "asset_convert_order" | "binary_option_order" | "binary_option_settlement" | "deposit_order" | "internal_transfer_order" | "lock_activity_participation" | "manual_adjustment" | "trade_market_order" | "transfer_order" | "welfare_cycle_daily_payout" | "welfare_cycle_maturity_settlement" | "welfare_cycle_subscription" | "withdraw_order";
543
543
  createdAt: Date;
544
544
  } | undefined;
545
545
  creditLedgerEntryId: string | null;
546
546
  debitLedgerEntry?: {
547
547
  id: string;
548
- bizType: "asset_convert_order_pay_debit" | "asset_convert_order_target_credit" | "deposit_credit" | "internal_transfer_in" | "internal_transfer_out" | "lock_activity_reward_payout" | "manual_decrease" | "manual_increase" | "trade_market_buy_base_transfer" | "trade_market_buy_quote_transfer" | "trade_market_sell_base_transfer" | "trade_market_sell_quote_transfer" | "transfer_in" | "transfer_out" | "welfare_cycle_daily_yield_payout" | "welfare_cycle_maturity_principal_return" | "welfare_cycle_maturity_yield_payout" | "welfare_cycle_subscribe_transfer" | "withdraw_debit" | "withdraw_freeze" | "withdraw_release";
548
+ bizType: "asset_convert_order_pay_debit" | "asset_convert_order_target_credit" | "binary_option_payout_credit" | "binary_option_stake_deduct" | "binary_option_stake_freeze" | "binary_option_stake_unfreeze" | "deposit_credit" | "internal_transfer_in" | "internal_transfer_out" | "lock_activity_reward_payout" | "manual_decrease" | "manual_increase" | "trade_market_buy_base_transfer" | "trade_market_buy_quote_transfer" | "trade_market_sell_base_transfer" | "trade_market_sell_quote_transfer" | "transfer_in" | "transfer_out" | "welfare_cycle_daily_yield_payout" | "welfare_cycle_maturity_principal_return" | "welfare_cycle_maturity_yield_payout" | "welfare_cycle_subscribe_transfer" | "withdraw_debit" | "withdraw_freeze" | "withdraw_release";
549
549
  amount: string;
550
550
  referenceId: string;
551
- referenceType: "asset_convert_order" | "deposit_order" | "internal_transfer_order" | "lock_activity_participation" | "manual_adjustment" | "trade_market_order" | "transfer_order" | "welfare_cycle_daily_payout" | "welfare_cycle_maturity_settlement" | "welfare_cycle_subscription" | "withdraw_order";
551
+ referenceType: "asset_convert_order" | "binary_option_order" | "binary_option_settlement" | "deposit_order" | "internal_transfer_order" | "lock_activity_participation" | "manual_adjustment" | "trade_market_order" | "transfer_order" | "welfare_cycle_daily_payout" | "welfare_cycle_maturity_settlement" | "welfare_cycle_subscription" | "withdraw_order";
552
552
  createdAt: Date;
553
553
  } | undefined;
554
554
  debitLedgerEntryId: string | null;
@@ -673,19 +673,19 @@ export declare abstract class AdminAssetConvertProductService {
673
673
  createdAt: Date;
674
674
  creditLedgerEntry?: {
675
675
  id: string;
676
- bizType: "asset_convert_order_pay_debit" | "asset_convert_order_target_credit" | "deposit_credit" | "internal_transfer_in" | "internal_transfer_out" | "lock_activity_reward_payout" | "manual_decrease" | "manual_increase" | "trade_market_buy_base_transfer" | "trade_market_buy_quote_transfer" | "trade_market_sell_base_transfer" | "trade_market_sell_quote_transfer" | "transfer_in" | "transfer_out" | "welfare_cycle_daily_yield_payout" | "welfare_cycle_maturity_principal_return" | "welfare_cycle_maturity_yield_payout" | "welfare_cycle_subscribe_transfer" | "withdraw_debit" | "withdraw_freeze" | "withdraw_release";
676
+ bizType: "asset_convert_order_pay_debit" | "asset_convert_order_target_credit" | "binary_option_payout_credit" | "binary_option_stake_deduct" | "binary_option_stake_freeze" | "binary_option_stake_unfreeze" | "deposit_credit" | "internal_transfer_in" | "internal_transfer_out" | "lock_activity_reward_payout" | "manual_decrease" | "manual_increase" | "trade_market_buy_base_transfer" | "trade_market_buy_quote_transfer" | "trade_market_sell_base_transfer" | "trade_market_sell_quote_transfer" | "transfer_in" | "transfer_out" | "welfare_cycle_daily_yield_payout" | "welfare_cycle_maturity_principal_return" | "welfare_cycle_maturity_yield_payout" | "welfare_cycle_subscribe_transfer" | "withdraw_debit" | "withdraw_freeze" | "withdraw_release";
677
677
  amount: string;
678
678
  referenceId: string;
679
- referenceType: "asset_convert_order" | "deposit_order" | "internal_transfer_order" | "lock_activity_participation" | "manual_adjustment" | "trade_market_order" | "transfer_order" | "welfare_cycle_daily_payout" | "welfare_cycle_maturity_settlement" | "welfare_cycle_subscription" | "withdraw_order";
679
+ referenceType: "asset_convert_order" | "binary_option_order" | "binary_option_settlement" | "deposit_order" | "internal_transfer_order" | "lock_activity_participation" | "manual_adjustment" | "trade_market_order" | "transfer_order" | "welfare_cycle_daily_payout" | "welfare_cycle_maturity_settlement" | "welfare_cycle_subscription" | "withdraw_order";
680
680
  createdAt: Date;
681
681
  } | undefined;
682
682
  creditLedgerEntryId: string | null;
683
683
  debitLedgerEntry?: {
684
684
  id: string;
685
- bizType: "asset_convert_order_pay_debit" | "asset_convert_order_target_credit" | "deposit_credit" | "internal_transfer_in" | "internal_transfer_out" | "lock_activity_reward_payout" | "manual_decrease" | "manual_increase" | "trade_market_buy_base_transfer" | "trade_market_buy_quote_transfer" | "trade_market_sell_base_transfer" | "trade_market_sell_quote_transfer" | "transfer_in" | "transfer_out" | "welfare_cycle_daily_yield_payout" | "welfare_cycle_maturity_principal_return" | "welfare_cycle_maturity_yield_payout" | "welfare_cycle_subscribe_transfer" | "withdraw_debit" | "withdraw_freeze" | "withdraw_release";
685
+ bizType: "asset_convert_order_pay_debit" | "asset_convert_order_target_credit" | "binary_option_payout_credit" | "binary_option_stake_deduct" | "binary_option_stake_freeze" | "binary_option_stake_unfreeze" | "deposit_credit" | "internal_transfer_in" | "internal_transfer_out" | "lock_activity_reward_payout" | "manual_decrease" | "manual_increase" | "trade_market_buy_base_transfer" | "trade_market_buy_quote_transfer" | "trade_market_sell_base_transfer" | "trade_market_sell_quote_transfer" | "transfer_in" | "transfer_out" | "welfare_cycle_daily_yield_payout" | "welfare_cycle_maturity_principal_return" | "welfare_cycle_maturity_yield_payout" | "welfare_cycle_subscribe_transfer" | "withdraw_debit" | "withdraw_freeze" | "withdraw_release";
686
686
  amount: string;
687
687
  referenceId: string;
688
- referenceType: "asset_convert_order" | "deposit_order" | "internal_transfer_order" | "lock_activity_participation" | "manual_adjustment" | "trade_market_order" | "transfer_order" | "welfare_cycle_daily_payout" | "welfare_cycle_maturity_settlement" | "welfare_cycle_subscription" | "withdraw_order";
688
+ referenceType: "asset_convert_order" | "binary_option_order" | "binary_option_settlement" | "deposit_order" | "internal_transfer_order" | "lock_activity_participation" | "manual_adjustment" | "trade_market_order" | "transfer_order" | "welfare_cycle_daily_payout" | "welfare_cycle_maturity_settlement" | "welfare_cycle_subscription" | "withdraw_order";
689
689
  createdAt: Date;
690
690
  } | undefined;
691
691
  debitLedgerEntryId: string | null;