@numen-crypto/contract 0.12.1 → 0.14.0
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/index.cjs +23 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +49 -1
- package/dist/index.d.ts +49 -1
- package/dist/index.js +24 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -237,6 +237,7 @@ declare const WalletOverviewSchema: z.ZodObject<{
|
|
|
237
237
|
usdValue: string;
|
|
238
238
|
isZero: boolean;
|
|
239
239
|
}>, "many">;
|
|
240
|
+
withdrawalFeeRate: z.ZodString;
|
|
240
241
|
}, "strip", z.ZodTypeAny, {
|
|
241
242
|
totalUsd: string;
|
|
242
243
|
assets: {
|
|
@@ -249,6 +250,7 @@ declare const WalletOverviewSchema: z.ZodObject<{
|
|
|
249
250
|
usdValue: string;
|
|
250
251
|
isZero: boolean;
|
|
251
252
|
}[];
|
|
253
|
+
withdrawalFeeRate: string;
|
|
252
254
|
}, {
|
|
253
255
|
totalUsd: string;
|
|
254
256
|
assets: {
|
|
@@ -261,6 +263,7 @@ declare const WalletOverviewSchema: z.ZodObject<{
|
|
|
261
263
|
usdValue: string;
|
|
262
264
|
isZero: boolean;
|
|
263
265
|
}[];
|
|
266
|
+
withdrawalFeeRate: string;
|
|
264
267
|
}>;
|
|
265
268
|
type WalletOverview = z.infer<typeof WalletOverviewSchema>;
|
|
266
269
|
|
|
@@ -1236,6 +1239,7 @@ declare const WithdrawalSchema: z.ZodObject<{
|
|
|
1236
1239
|
id: z.ZodString;
|
|
1237
1240
|
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
1238
1241
|
amount: z.ZodString;
|
|
1242
|
+
fee: z.ZodString;
|
|
1239
1243
|
address: z.ZodString;
|
|
1240
1244
|
status: z.ZodEnum<["AWAITING_CONFIRM", "AWAITING_COOLOFF", "QUEUED", "SENT", "CONFIRMED", "FAILED", "CANCELLED"]>;
|
|
1241
1245
|
createdAt: z.ZodString;
|
|
@@ -1246,6 +1250,7 @@ declare const WithdrawalSchema: z.ZodObject<{
|
|
|
1246
1250
|
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
1247
1251
|
amount: string;
|
|
1248
1252
|
address: string;
|
|
1253
|
+
fee: string;
|
|
1249
1254
|
}, {
|
|
1250
1255
|
status: "FAILED" | "CANCELLED" | "AWAITING_CONFIRM" | "AWAITING_COOLOFF" | "QUEUED" | "SENT" | "CONFIRMED";
|
|
1251
1256
|
id: string;
|
|
@@ -1253,6 +1258,7 @@ declare const WithdrawalSchema: z.ZodObject<{
|
|
|
1253
1258
|
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
1254
1259
|
amount: string;
|
|
1255
1260
|
address: string;
|
|
1261
|
+
fee: string;
|
|
1256
1262
|
}>;
|
|
1257
1263
|
type Withdrawal = z.infer<typeof WithdrawalSchema>;
|
|
1258
1264
|
|
|
@@ -1674,6 +1680,7 @@ declare namespace GetWalletCommand {
|
|
|
1674
1680
|
usdValue: string;
|
|
1675
1681
|
isZero: boolean;
|
|
1676
1682
|
}>, "many">;
|
|
1683
|
+
withdrawalFeeRate: zod.ZodString;
|
|
1677
1684
|
}, "strip", zod.ZodTypeAny, {
|
|
1678
1685
|
totalUsd: string;
|
|
1679
1686
|
assets: {
|
|
@@ -1686,6 +1693,7 @@ declare namespace GetWalletCommand {
|
|
|
1686
1693
|
usdValue: string;
|
|
1687
1694
|
isZero: boolean;
|
|
1688
1695
|
}[];
|
|
1696
|
+
withdrawalFeeRate: string;
|
|
1689
1697
|
}, {
|
|
1690
1698
|
totalUsd: string;
|
|
1691
1699
|
assets: {
|
|
@@ -1698,6 +1706,7 @@ declare namespace GetWalletCommand {
|
|
|
1698
1706
|
usdValue: string;
|
|
1699
1707
|
isZero: boolean;
|
|
1700
1708
|
}[];
|
|
1709
|
+
withdrawalFeeRate: string;
|
|
1701
1710
|
}>;
|
|
1702
1711
|
type Response = WalletOverview;
|
|
1703
1712
|
}
|
|
@@ -2871,6 +2880,7 @@ declare namespace ListWithdrawalsCommand {
|
|
|
2871
2880
|
id: z.ZodString;
|
|
2872
2881
|
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
2873
2882
|
amount: z.ZodString;
|
|
2883
|
+
fee: z.ZodString;
|
|
2874
2884
|
address: z.ZodString;
|
|
2875
2885
|
status: z.ZodEnum<["AWAITING_CONFIRM", "AWAITING_COOLOFF", "QUEUED", "SENT", "CONFIRMED", "FAILED", "CANCELLED"]>;
|
|
2876
2886
|
createdAt: z.ZodString;
|
|
@@ -2881,6 +2891,7 @@ declare namespace ListWithdrawalsCommand {
|
|
|
2881
2891
|
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
2882
2892
|
amount: string;
|
|
2883
2893
|
address: string;
|
|
2894
|
+
fee: string;
|
|
2884
2895
|
}, {
|
|
2885
2896
|
status: "FAILED" | "CANCELLED" | "AWAITING_CONFIRM" | "AWAITING_COOLOFF" | "QUEUED" | "SENT" | "CONFIRMED";
|
|
2886
2897
|
id: string;
|
|
@@ -2888,6 +2899,7 @@ declare namespace ListWithdrawalsCommand {
|
|
|
2888
2899
|
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
2889
2900
|
amount: string;
|
|
2890
2901
|
address: string;
|
|
2902
|
+
fee: string;
|
|
2891
2903
|
}>, "many">;
|
|
2892
2904
|
}, "strip", z.ZodTypeAny, {
|
|
2893
2905
|
items: {
|
|
@@ -2897,6 +2909,7 @@ declare namespace ListWithdrawalsCommand {
|
|
|
2897
2909
|
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
2898
2910
|
amount: string;
|
|
2899
2911
|
address: string;
|
|
2912
|
+
fee: string;
|
|
2900
2913
|
}[];
|
|
2901
2914
|
}, {
|
|
2902
2915
|
items: {
|
|
@@ -2906,6 +2919,7 @@ declare namespace ListWithdrawalsCommand {
|
|
|
2906
2919
|
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
2907
2920
|
amount: string;
|
|
2908
2921
|
address: string;
|
|
2922
|
+
fee: string;
|
|
2909
2923
|
}[];
|
|
2910
2924
|
}>;
|
|
2911
2925
|
type Response = z.infer<typeof ResponseSchema>;
|
|
@@ -3253,6 +3267,37 @@ declare namespace ClaimDailyBonusCommand {
|
|
|
3253
3267
|
type Response = z.infer<typeof ResponseSchema>;
|
|
3254
3268
|
}
|
|
3255
3269
|
|
|
3270
|
+
declare namespace GetTutorialRewardCommand {
|
|
3271
|
+
const endpointDetails: EndpointDetails;
|
|
3272
|
+
const ResponseSchema: z.ZodObject<{
|
|
3273
|
+
rewardNmn: z.ZodString;
|
|
3274
|
+
claimed: z.ZodBoolean;
|
|
3275
|
+
}, "strip", z.ZodTypeAny, {
|
|
3276
|
+
rewardNmn: string;
|
|
3277
|
+
claimed: boolean;
|
|
3278
|
+
}, {
|
|
3279
|
+
rewardNmn: string;
|
|
3280
|
+
claimed: boolean;
|
|
3281
|
+
}>;
|
|
3282
|
+
type Response = z.infer<typeof ResponseSchema>;
|
|
3283
|
+
}
|
|
3284
|
+
declare namespace ClaimTutorialRewardCommand {
|
|
3285
|
+
const endpointDetails: EndpointDetails;
|
|
3286
|
+
const RequestSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
3287
|
+
type Request = z.infer<typeof RequestSchema>;
|
|
3288
|
+
const ResponseSchema: z.ZodObject<{
|
|
3289
|
+
claimed: z.ZodBoolean;
|
|
3290
|
+
rewardNmn: z.ZodString;
|
|
3291
|
+
}, "strip", z.ZodTypeAny, {
|
|
3292
|
+
rewardNmn: string;
|
|
3293
|
+
claimed: boolean;
|
|
3294
|
+
}, {
|
|
3295
|
+
rewardNmn: string;
|
|
3296
|
+
claimed: boolean;
|
|
3297
|
+
}>;
|
|
3298
|
+
type Response = z.infer<typeof ResponseSchema>;
|
|
3299
|
+
}
|
|
3300
|
+
|
|
3256
3301
|
declare namespace GetLeaderboardCommand {
|
|
3257
3302
|
const endpointDetails: EndpointDetails;
|
|
3258
3303
|
const QuerySchema: z.ZodObject<{
|
|
@@ -4432,6 +4477,9 @@ declare const REST_API: {
|
|
|
4432
4477
|
readonly CANCEL: "/withdrawals/:id/cancel";
|
|
4433
4478
|
readonly CONFIRM: "/withdrawals/:id/confirm";
|
|
4434
4479
|
};
|
|
4480
|
+
readonly TUTORIAL: {
|
|
4481
|
+
readonly REWARD: "/tutorial/reward";
|
|
4482
|
+
};
|
|
4435
4483
|
readonly SETTINGS: {
|
|
4436
4484
|
readonly EMAIL_REQUEST: "/settings/email/request";
|
|
4437
4485
|
readonly EMAIL_CONFIRM: "/settings/email/confirm";
|
|
@@ -4471,4 +4519,4 @@ declare const REST_API: {
|
|
|
4471
4519
|
declare const API_PREFIX = "/api";
|
|
4472
4520
|
declare const API_VERSION = "v1";
|
|
4473
4521
|
|
|
4474
|
-
export { API_PREFIX, API_VERSION, ASSET_DECIMALS, ASSET_SYMBOLS, AVATAR_CONTENT_TYPES, type AssetBalance, AssetBalanceSchema, type AssetSymbol, AssetSymbolSchema, AvatarContentTypeSchema, AvatarUploadUrlCommand, BuyPackageCommand, CancelOrderCommand, CancelWithdrawalCommand, CaptchaPolicyCommand, ChangePasswordCommand, type ChartPeriod, ChartPeriodSchema, type ChartPoint, ChartPointSchema, ClaimDailyBonusCommand, ConfirmEmailChangeCommand, ConfirmTotpCommand, ConfirmWithdrawalCommand, CreateTicketCommand, DEPOSITABLE_ASSETS, type DailyBonusClaimResult, DailyBonusClaimResultSchema, type DailyBonusDay, DailyBonusDaySchema, type DailyBonusStatus, DailyBonusStatusSchema, type DepositAddress, DepositAddressCommand, DepositAddressSchema, type DepositEntry, DepositEntrySchema, type DepositStatus, DepositStatusSchema, type DepositableAsset, DepositableAssetSchema, DisableTotpCommand, ERROR_CODE, type EarningsOverview, EarningsOverviewSchema, type EndpointDetails, type ErrorCode, type ErrorResponse, ErrorResponseSchema, FUNDING_ASSET, ForgotPasswordCommand, GetDailyBonusCommand, GetEarningsCommand, GetIncomeCommand, GetLeaderboardCommand, GetOrderBookCommand, GetPackagesCommand, GetPartnersCommand, GetRanksCommand, GetSettingsCommand, GetSlidesCommand, GetTicketCommand, GetTokenChartCommand, GetTokenPriceCommand, GetTransactionsCommand, GetWalletCommand, type HttpMethod, type IncomeOverview, IncomeOverviewSchema, type IncomePeriod, IncomePeriodSchema, type Leaderboard, type LeaderboardEntry, LeaderboardEntrySchema, type LeaderboardPeriod, LeaderboardPeriodSchema, LeaderboardSchema, LinkGoogleCommand, type LinkProvider, LinkProviderSchema, LinkTelegramCommand, type LinkedAccount, LinkedAccountSchema, ListDepositsCommand, ListLinkedAccountsCommand, ListMyOrdersCommand, ListNotificationsCommand, ListTicketsCommand, ListTradesCommand, ListWithdrawalsCommand, LoginCommand, LogoutCommand, MONEY_REGEX, MarkNotificationsReadCommand, MeCommand, MoneyStringSchema, type MonthlyPricePoint, MonthlyPricePointSchema, NMN_PRICE_DECIMALS, type Notification, NotificationSchema, type NotificationType, NotificationTypeSchema, type Order, type OrderBook, type OrderBookLevel, OrderBookLevelSchema, OrderBookSchema, OrderSchema, type OrderSide, OrderSideSchema, type OrderStatus, OrderStatusSchema, type OrderType, OrderTypeSchema, type Package, PackageSchema, type PackageStatus, PackageStatusSchema, type PackagesOverview, PackagesOverviewSchema, PaginatedSchema, type PaginationQuery, PaginationQuerySchema, type PartnerAccrual, PartnerAccrualSchema, type PartnerLevel, PartnerLevelSchema, type PartnersOverview, PartnersOverviewSchema, type Period, PeriodSchema, PlaceOrderCommand, PositiveMoneyStringSchema, type PublicTrade, PublicTradeSchema, REST_API, type RankDef, RankDefSchema, RegisterCommand, ReplyTicketCommand, RequestEmailChangeCommand, RequestPasswordChangeCommand, RequestWithdrawalCommand, ResendVerificationCommand, ResetPasswordCommand, type SessionInfo, SessionInfoSchema, SetupTotpCommand, type Slide, type SlideButtonStyle, SlideButtonStyleSchema, type SlideKind, SlideKindSchema, type SlideLinkTarget, SlideLinkTargetSchema, SlideSchema, type SlidesResponse, SlidesResponseSchema, SwapCommand, type SwapSide, SwapSideSchema, TICKET_CATEGORIES, TOKEN_ASSET, type ThreatLevel, ThreatLevelSchema, type TicketAttachment, type TicketAttachmentInput, TicketAttachmentInputSchema, TicketAttachmentSchema, TicketAttachmentUploadCommand, type TicketAuthorType, TicketAuthorTypeSchema, TicketBodySchema, type TicketCategory, TicketCategorySchema, type TicketDetail, TicketDetailSchema, type TicketMessage, TicketMessageSchema, type TicketStatus, TicketStatusSchema, type TicketSummary, TicketSummarySchema, type TokenPrice, TokenPriceSchema, type TradeLimits, TradeLimitsSchema, type TradeResult, TradeResultSchema, type Transaction, TransactionSchema, type TransactionStatus, TransactionStatusSchema, type TransactionType, TransactionTypeSchema, UnlinkAccountCommand, UpdateProfileCommand, UpdateSettingsCommand, UpgradePackageCommand, type UserProfile, UserProfileSchema, type UserRank, UserRankSchema, type UserSettings, UserSettingsSchema, type UserStatus, UserStatusSchema, UuidSchema, VerifyEmailCommand, type WalletOverview, WalletOverviewSchema, type Withdrawal, WithdrawalSchema, type WithdrawalStatus, WithdrawalStatusSchema, assetDecimals, endpoint };
|
|
4522
|
+
export { API_PREFIX, API_VERSION, ASSET_DECIMALS, ASSET_SYMBOLS, AVATAR_CONTENT_TYPES, type AssetBalance, AssetBalanceSchema, type AssetSymbol, AssetSymbolSchema, AvatarContentTypeSchema, AvatarUploadUrlCommand, BuyPackageCommand, CancelOrderCommand, CancelWithdrawalCommand, CaptchaPolicyCommand, ChangePasswordCommand, type ChartPeriod, ChartPeriodSchema, type ChartPoint, ChartPointSchema, ClaimDailyBonusCommand, ClaimTutorialRewardCommand, ConfirmEmailChangeCommand, ConfirmTotpCommand, ConfirmWithdrawalCommand, CreateTicketCommand, DEPOSITABLE_ASSETS, type DailyBonusClaimResult, DailyBonusClaimResultSchema, type DailyBonusDay, DailyBonusDaySchema, type DailyBonusStatus, DailyBonusStatusSchema, type DepositAddress, DepositAddressCommand, DepositAddressSchema, type DepositEntry, DepositEntrySchema, type DepositStatus, DepositStatusSchema, type DepositableAsset, DepositableAssetSchema, DisableTotpCommand, ERROR_CODE, type EarningsOverview, EarningsOverviewSchema, type EndpointDetails, type ErrorCode, type ErrorResponse, ErrorResponseSchema, FUNDING_ASSET, ForgotPasswordCommand, GetDailyBonusCommand, GetEarningsCommand, GetIncomeCommand, GetLeaderboardCommand, GetOrderBookCommand, GetPackagesCommand, GetPartnersCommand, GetRanksCommand, GetSettingsCommand, GetSlidesCommand, GetTicketCommand, GetTokenChartCommand, GetTokenPriceCommand, GetTransactionsCommand, GetTutorialRewardCommand, GetWalletCommand, type HttpMethod, type IncomeOverview, IncomeOverviewSchema, type IncomePeriod, IncomePeriodSchema, type Leaderboard, type LeaderboardEntry, LeaderboardEntrySchema, type LeaderboardPeriod, LeaderboardPeriodSchema, LeaderboardSchema, LinkGoogleCommand, type LinkProvider, LinkProviderSchema, LinkTelegramCommand, type LinkedAccount, LinkedAccountSchema, ListDepositsCommand, ListLinkedAccountsCommand, ListMyOrdersCommand, ListNotificationsCommand, ListTicketsCommand, ListTradesCommand, ListWithdrawalsCommand, LoginCommand, LogoutCommand, MONEY_REGEX, MarkNotificationsReadCommand, MeCommand, MoneyStringSchema, type MonthlyPricePoint, MonthlyPricePointSchema, NMN_PRICE_DECIMALS, type Notification, NotificationSchema, type NotificationType, NotificationTypeSchema, type Order, type OrderBook, type OrderBookLevel, OrderBookLevelSchema, OrderBookSchema, OrderSchema, type OrderSide, OrderSideSchema, type OrderStatus, OrderStatusSchema, type OrderType, OrderTypeSchema, type Package, PackageSchema, type PackageStatus, PackageStatusSchema, type PackagesOverview, PackagesOverviewSchema, PaginatedSchema, type PaginationQuery, PaginationQuerySchema, type PartnerAccrual, PartnerAccrualSchema, type PartnerLevel, PartnerLevelSchema, type PartnersOverview, PartnersOverviewSchema, type Period, PeriodSchema, PlaceOrderCommand, PositiveMoneyStringSchema, type PublicTrade, PublicTradeSchema, REST_API, type RankDef, RankDefSchema, RegisterCommand, ReplyTicketCommand, RequestEmailChangeCommand, RequestPasswordChangeCommand, RequestWithdrawalCommand, ResendVerificationCommand, ResetPasswordCommand, type SessionInfo, SessionInfoSchema, SetupTotpCommand, type Slide, type SlideButtonStyle, SlideButtonStyleSchema, type SlideKind, SlideKindSchema, type SlideLinkTarget, SlideLinkTargetSchema, SlideSchema, type SlidesResponse, SlidesResponseSchema, SwapCommand, type SwapSide, SwapSideSchema, TICKET_CATEGORIES, TOKEN_ASSET, type ThreatLevel, ThreatLevelSchema, type TicketAttachment, type TicketAttachmentInput, TicketAttachmentInputSchema, TicketAttachmentSchema, TicketAttachmentUploadCommand, type TicketAuthorType, TicketAuthorTypeSchema, TicketBodySchema, type TicketCategory, TicketCategorySchema, type TicketDetail, TicketDetailSchema, type TicketMessage, TicketMessageSchema, type TicketStatus, TicketStatusSchema, type TicketSummary, TicketSummarySchema, type TokenPrice, TokenPriceSchema, type TradeLimits, TradeLimitsSchema, type TradeResult, TradeResultSchema, type Transaction, TransactionSchema, type TransactionStatus, TransactionStatusSchema, type TransactionType, TransactionTypeSchema, UnlinkAccountCommand, UpdateProfileCommand, UpdateSettingsCommand, UpgradePackageCommand, type UserProfile, UserProfileSchema, type UserRank, UserRankSchema, type UserSettings, UserSettingsSchema, type UserStatus, UserStatusSchema, UuidSchema, VerifyEmailCommand, type WalletOverview, WalletOverviewSchema, type Withdrawal, WithdrawalSchema, type WithdrawalStatus, WithdrawalStatusSchema, assetDecimals, endpoint };
|
package/dist/index.d.ts
CHANGED
|
@@ -237,6 +237,7 @@ declare const WalletOverviewSchema: z.ZodObject<{
|
|
|
237
237
|
usdValue: string;
|
|
238
238
|
isZero: boolean;
|
|
239
239
|
}>, "many">;
|
|
240
|
+
withdrawalFeeRate: z.ZodString;
|
|
240
241
|
}, "strip", z.ZodTypeAny, {
|
|
241
242
|
totalUsd: string;
|
|
242
243
|
assets: {
|
|
@@ -249,6 +250,7 @@ declare const WalletOverviewSchema: z.ZodObject<{
|
|
|
249
250
|
usdValue: string;
|
|
250
251
|
isZero: boolean;
|
|
251
252
|
}[];
|
|
253
|
+
withdrawalFeeRate: string;
|
|
252
254
|
}, {
|
|
253
255
|
totalUsd: string;
|
|
254
256
|
assets: {
|
|
@@ -261,6 +263,7 @@ declare const WalletOverviewSchema: z.ZodObject<{
|
|
|
261
263
|
usdValue: string;
|
|
262
264
|
isZero: boolean;
|
|
263
265
|
}[];
|
|
266
|
+
withdrawalFeeRate: string;
|
|
264
267
|
}>;
|
|
265
268
|
type WalletOverview = z.infer<typeof WalletOverviewSchema>;
|
|
266
269
|
|
|
@@ -1236,6 +1239,7 @@ declare const WithdrawalSchema: z.ZodObject<{
|
|
|
1236
1239
|
id: z.ZodString;
|
|
1237
1240
|
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
1238
1241
|
amount: z.ZodString;
|
|
1242
|
+
fee: z.ZodString;
|
|
1239
1243
|
address: z.ZodString;
|
|
1240
1244
|
status: z.ZodEnum<["AWAITING_CONFIRM", "AWAITING_COOLOFF", "QUEUED", "SENT", "CONFIRMED", "FAILED", "CANCELLED"]>;
|
|
1241
1245
|
createdAt: z.ZodString;
|
|
@@ -1246,6 +1250,7 @@ declare const WithdrawalSchema: z.ZodObject<{
|
|
|
1246
1250
|
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
1247
1251
|
amount: string;
|
|
1248
1252
|
address: string;
|
|
1253
|
+
fee: string;
|
|
1249
1254
|
}, {
|
|
1250
1255
|
status: "FAILED" | "CANCELLED" | "AWAITING_CONFIRM" | "AWAITING_COOLOFF" | "QUEUED" | "SENT" | "CONFIRMED";
|
|
1251
1256
|
id: string;
|
|
@@ -1253,6 +1258,7 @@ declare const WithdrawalSchema: z.ZodObject<{
|
|
|
1253
1258
|
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
1254
1259
|
amount: string;
|
|
1255
1260
|
address: string;
|
|
1261
|
+
fee: string;
|
|
1256
1262
|
}>;
|
|
1257
1263
|
type Withdrawal = z.infer<typeof WithdrawalSchema>;
|
|
1258
1264
|
|
|
@@ -1674,6 +1680,7 @@ declare namespace GetWalletCommand {
|
|
|
1674
1680
|
usdValue: string;
|
|
1675
1681
|
isZero: boolean;
|
|
1676
1682
|
}>, "many">;
|
|
1683
|
+
withdrawalFeeRate: zod.ZodString;
|
|
1677
1684
|
}, "strip", zod.ZodTypeAny, {
|
|
1678
1685
|
totalUsd: string;
|
|
1679
1686
|
assets: {
|
|
@@ -1686,6 +1693,7 @@ declare namespace GetWalletCommand {
|
|
|
1686
1693
|
usdValue: string;
|
|
1687
1694
|
isZero: boolean;
|
|
1688
1695
|
}[];
|
|
1696
|
+
withdrawalFeeRate: string;
|
|
1689
1697
|
}, {
|
|
1690
1698
|
totalUsd: string;
|
|
1691
1699
|
assets: {
|
|
@@ -1698,6 +1706,7 @@ declare namespace GetWalletCommand {
|
|
|
1698
1706
|
usdValue: string;
|
|
1699
1707
|
isZero: boolean;
|
|
1700
1708
|
}[];
|
|
1709
|
+
withdrawalFeeRate: string;
|
|
1701
1710
|
}>;
|
|
1702
1711
|
type Response = WalletOverview;
|
|
1703
1712
|
}
|
|
@@ -2871,6 +2880,7 @@ declare namespace ListWithdrawalsCommand {
|
|
|
2871
2880
|
id: z.ZodString;
|
|
2872
2881
|
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
2873
2882
|
amount: z.ZodString;
|
|
2883
|
+
fee: z.ZodString;
|
|
2874
2884
|
address: z.ZodString;
|
|
2875
2885
|
status: z.ZodEnum<["AWAITING_CONFIRM", "AWAITING_COOLOFF", "QUEUED", "SENT", "CONFIRMED", "FAILED", "CANCELLED"]>;
|
|
2876
2886
|
createdAt: z.ZodString;
|
|
@@ -2881,6 +2891,7 @@ declare namespace ListWithdrawalsCommand {
|
|
|
2881
2891
|
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
2882
2892
|
amount: string;
|
|
2883
2893
|
address: string;
|
|
2894
|
+
fee: string;
|
|
2884
2895
|
}, {
|
|
2885
2896
|
status: "FAILED" | "CANCELLED" | "AWAITING_CONFIRM" | "AWAITING_COOLOFF" | "QUEUED" | "SENT" | "CONFIRMED";
|
|
2886
2897
|
id: string;
|
|
@@ -2888,6 +2899,7 @@ declare namespace ListWithdrawalsCommand {
|
|
|
2888
2899
|
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
2889
2900
|
amount: string;
|
|
2890
2901
|
address: string;
|
|
2902
|
+
fee: string;
|
|
2891
2903
|
}>, "many">;
|
|
2892
2904
|
}, "strip", z.ZodTypeAny, {
|
|
2893
2905
|
items: {
|
|
@@ -2897,6 +2909,7 @@ declare namespace ListWithdrawalsCommand {
|
|
|
2897
2909
|
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
2898
2910
|
amount: string;
|
|
2899
2911
|
address: string;
|
|
2912
|
+
fee: string;
|
|
2900
2913
|
}[];
|
|
2901
2914
|
}, {
|
|
2902
2915
|
items: {
|
|
@@ -2906,6 +2919,7 @@ declare namespace ListWithdrawalsCommand {
|
|
|
2906
2919
|
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
2907
2920
|
amount: string;
|
|
2908
2921
|
address: string;
|
|
2922
|
+
fee: string;
|
|
2909
2923
|
}[];
|
|
2910
2924
|
}>;
|
|
2911
2925
|
type Response = z.infer<typeof ResponseSchema>;
|
|
@@ -3253,6 +3267,37 @@ declare namespace ClaimDailyBonusCommand {
|
|
|
3253
3267
|
type Response = z.infer<typeof ResponseSchema>;
|
|
3254
3268
|
}
|
|
3255
3269
|
|
|
3270
|
+
declare namespace GetTutorialRewardCommand {
|
|
3271
|
+
const endpointDetails: EndpointDetails;
|
|
3272
|
+
const ResponseSchema: z.ZodObject<{
|
|
3273
|
+
rewardNmn: z.ZodString;
|
|
3274
|
+
claimed: z.ZodBoolean;
|
|
3275
|
+
}, "strip", z.ZodTypeAny, {
|
|
3276
|
+
rewardNmn: string;
|
|
3277
|
+
claimed: boolean;
|
|
3278
|
+
}, {
|
|
3279
|
+
rewardNmn: string;
|
|
3280
|
+
claimed: boolean;
|
|
3281
|
+
}>;
|
|
3282
|
+
type Response = z.infer<typeof ResponseSchema>;
|
|
3283
|
+
}
|
|
3284
|
+
declare namespace ClaimTutorialRewardCommand {
|
|
3285
|
+
const endpointDetails: EndpointDetails;
|
|
3286
|
+
const RequestSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
3287
|
+
type Request = z.infer<typeof RequestSchema>;
|
|
3288
|
+
const ResponseSchema: z.ZodObject<{
|
|
3289
|
+
claimed: z.ZodBoolean;
|
|
3290
|
+
rewardNmn: z.ZodString;
|
|
3291
|
+
}, "strip", z.ZodTypeAny, {
|
|
3292
|
+
rewardNmn: string;
|
|
3293
|
+
claimed: boolean;
|
|
3294
|
+
}, {
|
|
3295
|
+
rewardNmn: string;
|
|
3296
|
+
claimed: boolean;
|
|
3297
|
+
}>;
|
|
3298
|
+
type Response = z.infer<typeof ResponseSchema>;
|
|
3299
|
+
}
|
|
3300
|
+
|
|
3256
3301
|
declare namespace GetLeaderboardCommand {
|
|
3257
3302
|
const endpointDetails: EndpointDetails;
|
|
3258
3303
|
const QuerySchema: z.ZodObject<{
|
|
@@ -4432,6 +4477,9 @@ declare const REST_API: {
|
|
|
4432
4477
|
readonly CANCEL: "/withdrawals/:id/cancel";
|
|
4433
4478
|
readonly CONFIRM: "/withdrawals/:id/confirm";
|
|
4434
4479
|
};
|
|
4480
|
+
readonly TUTORIAL: {
|
|
4481
|
+
readonly REWARD: "/tutorial/reward";
|
|
4482
|
+
};
|
|
4435
4483
|
readonly SETTINGS: {
|
|
4436
4484
|
readonly EMAIL_REQUEST: "/settings/email/request";
|
|
4437
4485
|
readonly EMAIL_CONFIRM: "/settings/email/confirm";
|
|
@@ -4471,4 +4519,4 @@ declare const REST_API: {
|
|
|
4471
4519
|
declare const API_PREFIX = "/api";
|
|
4472
4520
|
declare const API_VERSION = "v1";
|
|
4473
4521
|
|
|
4474
|
-
export { API_PREFIX, API_VERSION, ASSET_DECIMALS, ASSET_SYMBOLS, AVATAR_CONTENT_TYPES, type AssetBalance, AssetBalanceSchema, type AssetSymbol, AssetSymbolSchema, AvatarContentTypeSchema, AvatarUploadUrlCommand, BuyPackageCommand, CancelOrderCommand, CancelWithdrawalCommand, CaptchaPolicyCommand, ChangePasswordCommand, type ChartPeriod, ChartPeriodSchema, type ChartPoint, ChartPointSchema, ClaimDailyBonusCommand, ConfirmEmailChangeCommand, ConfirmTotpCommand, ConfirmWithdrawalCommand, CreateTicketCommand, DEPOSITABLE_ASSETS, type DailyBonusClaimResult, DailyBonusClaimResultSchema, type DailyBonusDay, DailyBonusDaySchema, type DailyBonusStatus, DailyBonusStatusSchema, type DepositAddress, DepositAddressCommand, DepositAddressSchema, type DepositEntry, DepositEntrySchema, type DepositStatus, DepositStatusSchema, type DepositableAsset, DepositableAssetSchema, DisableTotpCommand, ERROR_CODE, type EarningsOverview, EarningsOverviewSchema, type EndpointDetails, type ErrorCode, type ErrorResponse, ErrorResponseSchema, FUNDING_ASSET, ForgotPasswordCommand, GetDailyBonusCommand, GetEarningsCommand, GetIncomeCommand, GetLeaderboardCommand, GetOrderBookCommand, GetPackagesCommand, GetPartnersCommand, GetRanksCommand, GetSettingsCommand, GetSlidesCommand, GetTicketCommand, GetTokenChartCommand, GetTokenPriceCommand, GetTransactionsCommand, GetWalletCommand, type HttpMethod, type IncomeOverview, IncomeOverviewSchema, type IncomePeriod, IncomePeriodSchema, type Leaderboard, type LeaderboardEntry, LeaderboardEntrySchema, type LeaderboardPeriod, LeaderboardPeriodSchema, LeaderboardSchema, LinkGoogleCommand, type LinkProvider, LinkProviderSchema, LinkTelegramCommand, type LinkedAccount, LinkedAccountSchema, ListDepositsCommand, ListLinkedAccountsCommand, ListMyOrdersCommand, ListNotificationsCommand, ListTicketsCommand, ListTradesCommand, ListWithdrawalsCommand, LoginCommand, LogoutCommand, MONEY_REGEX, MarkNotificationsReadCommand, MeCommand, MoneyStringSchema, type MonthlyPricePoint, MonthlyPricePointSchema, NMN_PRICE_DECIMALS, type Notification, NotificationSchema, type NotificationType, NotificationTypeSchema, type Order, type OrderBook, type OrderBookLevel, OrderBookLevelSchema, OrderBookSchema, OrderSchema, type OrderSide, OrderSideSchema, type OrderStatus, OrderStatusSchema, type OrderType, OrderTypeSchema, type Package, PackageSchema, type PackageStatus, PackageStatusSchema, type PackagesOverview, PackagesOverviewSchema, PaginatedSchema, type PaginationQuery, PaginationQuerySchema, type PartnerAccrual, PartnerAccrualSchema, type PartnerLevel, PartnerLevelSchema, type PartnersOverview, PartnersOverviewSchema, type Period, PeriodSchema, PlaceOrderCommand, PositiveMoneyStringSchema, type PublicTrade, PublicTradeSchema, REST_API, type RankDef, RankDefSchema, RegisterCommand, ReplyTicketCommand, RequestEmailChangeCommand, RequestPasswordChangeCommand, RequestWithdrawalCommand, ResendVerificationCommand, ResetPasswordCommand, type SessionInfo, SessionInfoSchema, SetupTotpCommand, type Slide, type SlideButtonStyle, SlideButtonStyleSchema, type SlideKind, SlideKindSchema, type SlideLinkTarget, SlideLinkTargetSchema, SlideSchema, type SlidesResponse, SlidesResponseSchema, SwapCommand, type SwapSide, SwapSideSchema, TICKET_CATEGORIES, TOKEN_ASSET, type ThreatLevel, ThreatLevelSchema, type TicketAttachment, type TicketAttachmentInput, TicketAttachmentInputSchema, TicketAttachmentSchema, TicketAttachmentUploadCommand, type TicketAuthorType, TicketAuthorTypeSchema, TicketBodySchema, type TicketCategory, TicketCategorySchema, type TicketDetail, TicketDetailSchema, type TicketMessage, TicketMessageSchema, type TicketStatus, TicketStatusSchema, type TicketSummary, TicketSummarySchema, type TokenPrice, TokenPriceSchema, type TradeLimits, TradeLimitsSchema, type TradeResult, TradeResultSchema, type Transaction, TransactionSchema, type TransactionStatus, TransactionStatusSchema, type TransactionType, TransactionTypeSchema, UnlinkAccountCommand, UpdateProfileCommand, UpdateSettingsCommand, UpgradePackageCommand, type UserProfile, UserProfileSchema, type UserRank, UserRankSchema, type UserSettings, UserSettingsSchema, type UserStatus, UserStatusSchema, UuidSchema, VerifyEmailCommand, type WalletOverview, WalletOverviewSchema, type Withdrawal, WithdrawalSchema, type WithdrawalStatus, WithdrawalStatusSchema, assetDecimals, endpoint };
|
|
4522
|
+
export { API_PREFIX, API_VERSION, ASSET_DECIMALS, ASSET_SYMBOLS, AVATAR_CONTENT_TYPES, type AssetBalance, AssetBalanceSchema, type AssetSymbol, AssetSymbolSchema, AvatarContentTypeSchema, AvatarUploadUrlCommand, BuyPackageCommand, CancelOrderCommand, CancelWithdrawalCommand, CaptchaPolicyCommand, ChangePasswordCommand, type ChartPeriod, ChartPeriodSchema, type ChartPoint, ChartPointSchema, ClaimDailyBonusCommand, ClaimTutorialRewardCommand, ConfirmEmailChangeCommand, ConfirmTotpCommand, ConfirmWithdrawalCommand, CreateTicketCommand, DEPOSITABLE_ASSETS, type DailyBonusClaimResult, DailyBonusClaimResultSchema, type DailyBonusDay, DailyBonusDaySchema, type DailyBonusStatus, DailyBonusStatusSchema, type DepositAddress, DepositAddressCommand, DepositAddressSchema, type DepositEntry, DepositEntrySchema, type DepositStatus, DepositStatusSchema, type DepositableAsset, DepositableAssetSchema, DisableTotpCommand, ERROR_CODE, type EarningsOverview, EarningsOverviewSchema, type EndpointDetails, type ErrorCode, type ErrorResponse, ErrorResponseSchema, FUNDING_ASSET, ForgotPasswordCommand, GetDailyBonusCommand, GetEarningsCommand, GetIncomeCommand, GetLeaderboardCommand, GetOrderBookCommand, GetPackagesCommand, GetPartnersCommand, GetRanksCommand, GetSettingsCommand, GetSlidesCommand, GetTicketCommand, GetTokenChartCommand, GetTokenPriceCommand, GetTransactionsCommand, GetTutorialRewardCommand, GetWalletCommand, type HttpMethod, type IncomeOverview, IncomeOverviewSchema, type IncomePeriod, IncomePeriodSchema, type Leaderboard, type LeaderboardEntry, LeaderboardEntrySchema, type LeaderboardPeriod, LeaderboardPeriodSchema, LeaderboardSchema, LinkGoogleCommand, type LinkProvider, LinkProviderSchema, LinkTelegramCommand, type LinkedAccount, LinkedAccountSchema, ListDepositsCommand, ListLinkedAccountsCommand, ListMyOrdersCommand, ListNotificationsCommand, ListTicketsCommand, ListTradesCommand, ListWithdrawalsCommand, LoginCommand, LogoutCommand, MONEY_REGEX, MarkNotificationsReadCommand, MeCommand, MoneyStringSchema, type MonthlyPricePoint, MonthlyPricePointSchema, NMN_PRICE_DECIMALS, type Notification, NotificationSchema, type NotificationType, NotificationTypeSchema, type Order, type OrderBook, type OrderBookLevel, OrderBookLevelSchema, OrderBookSchema, OrderSchema, type OrderSide, OrderSideSchema, type OrderStatus, OrderStatusSchema, type OrderType, OrderTypeSchema, type Package, PackageSchema, type PackageStatus, PackageStatusSchema, type PackagesOverview, PackagesOverviewSchema, PaginatedSchema, type PaginationQuery, PaginationQuerySchema, type PartnerAccrual, PartnerAccrualSchema, type PartnerLevel, PartnerLevelSchema, type PartnersOverview, PartnersOverviewSchema, type Period, PeriodSchema, PlaceOrderCommand, PositiveMoneyStringSchema, type PublicTrade, PublicTradeSchema, REST_API, type RankDef, RankDefSchema, RegisterCommand, ReplyTicketCommand, RequestEmailChangeCommand, RequestPasswordChangeCommand, RequestWithdrawalCommand, ResendVerificationCommand, ResetPasswordCommand, type SessionInfo, SessionInfoSchema, SetupTotpCommand, type Slide, type SlideButtonStyle, SlideButtonStyleSchema, type SlideKind, SlideKindSchema, type SlideLinkTarget, SlideLinkTargetSchema, SlideSchema, type SlidesResponse, SlidesResponseSchema, SwapCommand, type SwapSide, SwapSideSchema, TICKET_CATEGORIES, TOKEN_ASSET, type ThreatLevel, ThreatLevelSchema, type TicketAttachment, type TicketAttachmentInput, TicketAttachmentInputSchema, TicketAttachmentSchema, TicketAttachmentUploadCommand, type TicketAuthorType, TicketAuthorTypeSchema, TicketBodySchema, type TicketCategory, TicketCategorySchema, type TicketDetail, TicketDetailSchema, type TicketMessage, TicketMessageSchema, type TicketStatus, TicketStatusSchema, type TicketSummary, TicketSummarySchema, type TokenPrice, TokenPriceSchema, type TradeLimits, TradeLimitsSchema, type TradeResult, TradeResultSchema, type Transaction, TransactionSchema, type TransactionStatus, TransactionStatusSchema, type TransactionType, TransactionTypeSchema, UnlinkAccountCommand, UpdateProfileCommand, UpdateSettingsCommand, UpgradePackageCommand, type UserProfile, UserProfileSchema, type UserRank, UserRankSchema, type UserSettings, UserSettingsSchema, type UserStatus, UserStatusSchema, UuidSchema, VerifyEmailCommand, type WalletOverview, WalletOverviewSchema, type Withdrawal, WithdrawalSchema, type WithdrawalStatus, WithdrawalStatusSchema, assetDecimals, endpoint };
|
package/dist/index.js
CHANGED
|
@@ -117,7 +117,8 @@ var AssetBalanceSchema = z.object({
|
|
|
117
117
|
});
|
|
118
118
|
var WalletOverviewSchema = z.object({
|
|
119
119
|
totalUsd: MoneyStringSchema,
|
|
120
|
-
assets: z.array(AssetBalanceSchema)
|
|
120
|
+
assets: z.array(AssetBalanceSchema),
|
|
121
|
+
withdrawalFeeRate: MoneyStringSchema
|
|
121
122
|
});
|
|
122
123
|
var TransactionTypeSchema = z.enum([
|
|
123
124
|
"DEPOSIT",
|
|
@@ -351,6 +352,7 @@ var WithdrawalSchema = z.object({
|
|
|
351
352
|
id: z.string().uuid(),
|
|
352
353
|
asset: AssetSymbolSchema,
|
|
353
354
|
amount: MoneyStringSchema,
|
|
355
|
+
fee: MoneyStringSchema,
|
|
354
356
|
address: z.string(),
|
|
355
357
|
status: WithdrawalStatusSchema,
|
|
356
358
|
createdAt: z.string().datetime()
|
|
@@ -858,6 +860,23 @@ var ClaimDailyBonusCommand;
|
|
|
858
860
|
ClaimDailyBonusCommand2.endpointDetails = endpoint("POST", "/bonus/daily/claim", "Claim today's daily bonus");
|
|
859
861
|
ClaimDailyBonusCommand2.ResponseSchema = DailyBonusClaimResultSchema;
|
|
860
862
|
})(ClaimDailyBonusCommand || (ClaimDailyBonusCommand = {}));
|
|
863
|
+
var GetTutorialRewardCommand;
|
|
864
|
+
((GetTutorialRewardCommand2) => {
|
|
865
|
+
GetTutorialRewardCommand2.endpointDetails = endpoint("GET", "/tutorial/reward", "Reward for finishing the product tour");
|
|
866
|
+
GetTutorialRewardCommand2.ResponseSchema = z.object({
|
|
867
|
+
rewardNmn: MoneyStringSchema,
|
|
868
|
+
claimed: z.boolean()
|
|
869
|
+
});
|
|
870
|
+
})(GetTutorialRewardCommand || (GetTutorialRewardCommand = {}));
|
|
871
|
+
var ClaimTutorialRewardCommand;
|
|
872
|
+
((ClaimTutorialRewardCommand2) => {
|
|
873
|
+
ClaimTutorialRewardCommand2.endpointDetails = endpoint("POST", "/tutorial/reward", "Claim the tour reward, once per account");
|
|
874
|
+
ClaimTutorialRewardCommand2.RequestSchema = z.object({});
|
|
875
|
+
ClaimTutorialRewardCommand2.ResponseSchema = z.object({
|
|
876
|
+
claimed: z.boolean(),
|
|
877
|
+
rewardNmn: MoneyStringSchema
|
|
878
|
+
});
|
|
879
|
+
})(ClaimTutorialRewardCommand || (ClaimTutorialRewardCommand = {}));
|
|
861
880
|
var GetLeaderboardCommand;
|
|
862
881
|
((GetLeaderboardCommand2) => {
|
|
863
882
|
GetLeaderboardCommand2.endpointDetails = endpoint("GET", "/leaderboard", "Top partners ranked by network turnover");
|
|
@@ -1071,6 +1090,9 @@ var REST_API = {
|
|
|
1071
1090
|
CANCEL: "/withdrawals/:id/cancel",
|
|
1072
1091
|
CONFIRM: "/withdrawals/:id/confirm"
|
|
1073
1092
|
},
|
|
1093
|
+
TUTORIAL: {
|
|
1094
|
+
REWARD: "/tutorial/reward"
|
|
1095
|
+
},
|
|
1074
1096
|
SETTINGS: {
|
|
1075
1097
|
EMAIL_REQUEST: "/settings/email/request",
|
|
1076
1098
|
EMAIL_CONFIRM: "/settings/email/confirm",
|
|
@@ -1110,6 +1132,6 @@ var REST_API = {
|
|
|
1110
1132
|
var API_PREFIX = "/api";
|
|
1111
1133
|
var API_VERSION = "v1";
|
|
1112
1134
|
|
|
1113
|
-
export { API_PREFIX, API_VERSION, ASSET_DECIMALS, ASSET_SYMBOLS, AVATAR_CONTENT_TYPES, AssetBalanceSchema, AssetSymbolSchema, AvatarContentTypeSchema, AvatarUploadUrlCommand, BuyPackageCommand, CancelOrderCommand, CancelWithdrawalCommand, CaptchaPolicyCommand, ChangePasswordCommand, ChartPeriodSchema, ChartPointSchema, ClaimDailyBonusCommand, ConfirmEmailChangeCommand, ConfirmTotpCommand, ConfirmWithdrawalCommand, CreateTicketCommand, DEPOSITABLE_ASSETS, DailyBonusClaimResultSchema, DailyBonusDaySchema, DailyBonusStatusSchema, DepositAddressCommand, DepositAddressSchema, DepositEntrySchema, DepositStatusSchema, DepositableAssetSchema, DisableTotpCommand, ERROR_CODE, EarningsOverviewSchema, ErrorResponseSchema, FUNDING_ASSET, ForgotPasswordCommand, GetDailyBonusCommand, GetEarningsCommand, GetIncomeCommand, GetLeaderboardCommand, GetOrderBookCommand, GetPackagesCommand, GetPartnersCommand, GetRanksCommand, GetSettingsCommand, GetSlidesCommand, GetTicketCommand, GetTokenChartCommand, GetTokenPriceCommand, GetTransactionsCommand, GetWalletCommand, IncomeOverviewSchema, IncomePeriodSchema, LeaderboardEntrySchema, LeaderboardPeriodSchema, LeaderboardSchema, LinkGoogleCommand, LinkProviderSchema, LinkTelegramCommand, LinkedAccountSchema, ListDepositsCommand, ListLinkedAccountsCommand, ListMyOrdersCommand, ListNotificationsCommand, ListTicketsCommand, ListTradesCommand, ListWithdrawalsCommand, LoginCommand, LogoutCommand, MONEY_REGEX, MarkNotificationsReadCommand, MeCommand, MoneyStringSchema, MonthlyPricePointSchema, NMN_PRICE_DECIMALS, NotificationSchema, NotificationTypeSchema, OrderBookLevelSchema, OrderBookSchema, OrderSchema, OrderSideSchema, OrderStatusSchema, OrderTypeSchema, PackageSchema, PackageStatusSchema, PackagesOverviewSchema, PaginatedSchema, PaginationQuerySchema, PartnerAccrualSchema, PartnerLevelSchema, PartnersOverviewSchema, PeriodSchema, PlaceOrderCommand, PositiveMoneyStringSchema, PublicTradeSchema, REST_API, RankDefSchema, RegisterCommand, ReplyTicketCommand, RequestEmailChangeCommand, RequestPasswordChangeCommand, RequestWithdrawalCommand, ResendVerificationCommand, ResetPasswordCommand, SessionInfoSchema, SetupTotpCommand, SlideButtonStyleSchema, SlideKindSchema, SlideLinkTargetSchema, SlideSchema, SlidesResponseSchema, SwapCommand, SwapSideSchema, TICKET_CATEGORIES, TOKEN_ASSET, ThreatLevelSchema, TicketAttachmentInputSchema, TicketAttachmentSchema, TicketAttachmentUploadCommand, TicketAuthorTypeSchema, TicketBodySchema, TicketCategorySchema, TicketDetailSchema, TicketMessageSchema, TicketStatusSchema, TicketSummarySchema, TokenPriceSchema, TradeLimitsSchema, TradeResultSchema, TransactionSchema, TransactionStatusSchema, TransactionTypeSchema, UnlinkAccountCommand, UpdateProfileCommand, UpdateSettingsCommand, UpgradePackageCommand, UserProfileSchema, UserRankSchema, UserSettingsSchema, UserStatusSchema, UuidSchema, VerifyEmailCommand, WalletOverviewSchema, WithdrawalSchema, WithdrawalStatusSchema, assetDecimals, endpoint };
|
|
1135
|
+
export { API_PREFIX, API_VERSION, ASSET_DECIMALS, ASSET_SYMBOLS, AVATAR_CONTENT_TYPES, AssetBalanceSchema, AssetSymbolSchema, AvatarContentTypeSchema, AvatarUploadUrlCommand, BuyPackageCommand, CancelOrderCommand, CancelWithdrawalCommand, CaptchaPolicyCommand, ChangePasswordCommand, ChartPeriodSchema, ChartPointSchema, ClaimDailyBonusCommand, ClaimTutorialRewardCommand, ConfirmEmailChangeCommand, ConfirmTotpCommand, ConfirmWithdrawalCommand, CreateTicketCommand, DEPOSITABLE_ASSETS, DailyBonusClaimResultSchema, DailyBonusDaySchema, DailyBonusStatusSchema, DepositAddressCommand, DepositAddressSchema, DepositEntrySchema, DepositStatusSchema, DepositableAssetSchema, DisableTotpCommand, ERROR_CODE, EarningsOverviewSchema, ErrorResponseSchema, FUNDING_ASSET, ForgotPasswordCommand, GetDailyBonusCommand, GetEarningsCommand, GetIncomeCommand, GetLeaderboardCommand, GetOrderBookCommand, GetPackagesCommand, GetPartnersCommand, GetRanksCommand, GetSettingsCommand, GetSlidesCommand, GetTicketCommand, GetTokenChartCommand, GetTokenPriceCommand, GetTransactionsCommand, GetTutorialRewardCommand, GetWalletCommand, IncomeOverviewSchema, IncomePeriodSchema, LeaderboardEntrySchema, LeaderboardPeriodSchema, LeaderboardSchema, LinkGoogleCommand, LinkProviderSchema, LinkTelegramCommand, LinkedAccountSchema, ListDepositsCommand, ListLinkedAccountsCommand, ListMyOrdersCommand, ListNotificationsCommand, ListTicketsCommand, ListTradesCommand, ListWithdrawalsCommand, LoginCommand, LogoutCommand, MONEY_REGEX, MarkNotificationsReadCommand, MeCommand, MoneyStringSchema, MonthlyPricePointSchema, NMN_PRICE_DECIMALS, NotificationSchema, NotificationTypeSchema, OrderBookLevelSchema, OrderBookSchema, OrderSchema, OrderSideSchema, OrderStatusSchema, OrderTypeSchema, PackageSchema, PackageStatusSchema, PackagesOverviewSchema, PaginatedSchema, PaginationQuerySchema, PartnerAccrualSchema, PartnerLevelSchema, PartnersOverviewSchema, PeriodSchema, PlaceOrderCommand, PositiveMoneyStringSchema, PublicTradeSchema, REST_API, RankDefSchema, RegisterCommand, ReplyTicketCommand, RequestEmailChangeCommand, RequestPasswordChangeCommand, RequestWithdrawalCommand, ResendVerificationCommand, ResetPasswordCommand, SessionInfoSchema, SetupTotpCommand, SlideButtonStyleSchema, SlideKindSchema, SlideLinkTargetSchema, SlideSchema, SlidesResponseSchema, SwapCommand, SwapSideSchema, TICKET_CATEGORIES, TOKEN_ASSET, ThreatLevelSchema, TicketAttachmentInputSchema, TicketAttachmentSchema, TicketAttachmentUploadCommand, TicketAuthorTypeSchema, TicketBodySchema, TicketCategorySchema, TicketDetailSchema, TicketMessageSchema, TicketStatusSchema, TicketSummarySchema, TokenPriceSchema, TradeLimitsSchema, TradeResultSchema, TransactionSchema, TransactionStatusSchema, TransactionTypeSchema, UnlinkAccountCommand, UpdateProfileCommand, UpdateSettingsCommand, UpgradePackageCommand, UserProfileSchema, UserRankSchema, UserSettingsSchema, UserStatusSchema, UuidSchema, VerifyEmailCommand, WalletOverviewSchema, WithdrawalSchema, WithdrawalStatusSchema, assetDecimals, endpoint };
|
|
1114
1136
|
//# sourceMappingURL=index.js.map
|
|
1115
1137
|
//# sourceMappingURL=index.js.map
|