@numen-crypto/contract 0.2.3 → 0.2.5

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.d.cts CHANGED
@@ -377,6 +377,185 @@ declare const PartnersOverviewSchema: z.ZodObject<{
377
377
  }>;
378
378
  type PartnersOverview = z.infer<typeof PartnersOverviewSchema>;
379
379
 
380
+ declare const PackageStatusSchema: z.ZodEnum<["active", "locked"]>;
381
+ type PackageStatus = z.infer<typeof PackageStatusSchema>;
382
+ declare const PackageSchema: z.ZodObject<{
383
+ id: z.ZodString;
384
+ tier: z.ZodNumber;
385
+ priceUsd: z.ZodString;
386
+ sellIntervalDays: z.ZodNumber;
387
+ status: z.ZodEnum<["active", "locked"]>;
388
+ badge: z.ZodNullable<z.ZodString>;
389
+ }, "strip", z.ZodTypeAny, {
390
+ status: "active" | "locked";
391
+ id: string;
392
+ tier: number;
393
+ priceUsd: string;
394
+ sellIntervalDays: number;
395
+ badge: string | null;
396
+ }, {
397
+ status: "active" | "locked";
398
+ id: string;
399
+ tier: number;
400
+ priceUsd: string;
401
+ sellIntervalDays: number;
402
+ badge: string | null;
403
+ }>;
404
+ type Package = z.infer<typeof PackageSchema>;
405
+ declare const PackagesOverviewSchema: z.ZodObject<{
406
+ packages: z.ZodArray<z.ZodObject<{
407
+ id: z.ZodString;
408
+ tier: z.ZodNumber;
409
+ priceUsd: z.ZodString;
410
+ sellIntervalDays: z.ZodNumber;
411
+ status: z.ZodEnum<["active", "locked"]>;
412
+ badge: z.ZodNullable<z.ZodString>;
413
+ }, "strip", z.ZodTypeAny, {
414
+ status: "active" | "locked";
415
+ id: string;
416
+ tier: number;
417
+ priceUsd: string;
418
+ sellIntervalDays: number;
419
+ badge: string | null;
420
+ }, {
421
+ status: "active" | "locked";
422
+ id: string;
423
+ tier: number;
424
+ priceUsd: string;
425
+ sellIntervalDays: number;
426
+ badge: string | null;
427
+ }>, "many">;
428
+ dailyLimit: z.ZodNumber;
429
+ dailyUsed: z.ZodNumber;
430
+ weeklyLimitUsd: z.ZodNullable<z.ZodString>;
431
+ weeklySpentUsd: z.ZodString;
432
+ minPriceUsd: z.ZodString;
433
+ maxPriceUsd: z.ZodString;
434
+ sellIntervalDays: z.ZodNullable<z.ZodNumber>;
435
+ nextSellAt: z.ZodNullable<z.ZodString>;
436
+ balanceUsdt: z.ZodString;
437
+ }, "strip", z.ZodTypeAny, {
438
+ sellIntervalDays: number | null;
439
+ packages: {
440
+ status: "active" | "locked";
441
+ id: string;
442
+ tier: number;
443
+ priceUsd: string;
444
+ sellIntervalDays: number;
445
+ badge: string | null;
446
+ }[];
447
+ dailyLimit: number;
448
+ dailyUsed: number;
449
+ weeklyLimitUsd: string | null;
450
+ weeklySpentUsd: string;
451
+ minPriceUsd: string;
452
+ maxPriceUsd: string;
453
+ nextSellAt: string | null;
454
+ balanceUsdt: string;
455
+ }, {
456
+ sellIntervalDays: number | null;
457
+ packages: {
458
+ status: "active" | "locked";
459
+ id: string;
460
+ tier: number;
461
+ priceUsd: string;
462
+ sellIntervalDays: number;
463
+ badge: string | null;
464
+ }[];
465
+ dailyLimit: number;
466
+ dailyUsed: number;
467
+ weeklyLimitUsd: string | null;
468
+ weeklySpentUsd: string;
469
+ minPriceUsd: string;
470
+ maxPriceUsd: string;
471
+ nextSellAt: string | null;
472
+ balanceUsdt: string;
473
+ }>;
474
+ type PackagesOverview = z.infer<typeof PackagesOverviewSchema>;
475
+
476
+ declare const SlideKindSchema: z.ZodEnum<["image", "text"]>;
477
+ type SlideKind = z.infer<typeof SlideKindSchema>;
478
+ declare const SlideButtonStyleSchema: z.ZodEnum<["primary", "secondary", "outline", "ghost"]>;
479
+ type SlideButtonStyle = z.infer<typeof SlideButtonStyleSchema>;
480
+ declare const SlideLinkTargetSchema: z.ZodEnum<["_self", "_blank"]>;
481
+ type SlideLinkTarget = z.infer<typeof SlideLinkTargetSchema>;
482
+ declare const SlideSchema: z.ZodObject<{
483
+ id: z.ZodString;
484
+ kind: z.ZodEnum<["image", "text"]>;
485
+ imageUrl: z.ZodNullable<z.ZodString>;
486
+ tag: z.ZodNullable<z.ZodString>;
487
+ title: z.ZodNullable<z.ZodString>;
488
+ body: z.ZodNullable<z.ZodString>;
489
+ linkUrl: z.ZodNullable<z.ZodString>;
490
+ linkTarget: z.ZodEnum<["_self", "_blank"]>;
491
+ wholeSlideLink: z.ZodBoolean;
492
+ buttonLabel: z.ZodNullable<z.ZodString>;
493
+ buttonStyle: z.ZodNullable<z.ZodEnum<["primary", "secondary", "outline", "ghost"]>>;
494
+ }, "strip", z.ZodTypeAny, {
495
+ id: string;
496
+ kind: "image" | "text";
497
+ imageUrl: string | null;
498
+ tag: string | null;
499
+ title: string | null;
500
+ body: string | null;
501
+ linkUrl: string | null;
502
+ linkTarget: "_self" | "_blank";
503
+ wholeSlideLink: boolean;
504
+ buttonLabel: string | null;
505
+ buttonStyle: "primary" | "secondary" | "outline" | "ghost" | null;
506
+ }, {
507
+ id: string;
508
+ kind: "image" | "text";
509
+ imageUrl: string | null;
510
+ tag: string | null;
511
+ title: string | null;
512
+ body: string | null;
513
+ linkUrl: string | null;
514
+ linkTarget: "_self" | "_blank";
515
+ wholeSlideLink: boolean;
516
+ buttonLabel: string | null;
517
+ buttonStyle: "primary" | "secondary" | "outline" | "ghost" | null;
518
+ }>;
519
+ type Slide = z.infer<typeof SlideSchema>;
520
+ declare const SlidesResponseSchema: z.ZodArray<z.ZodObject<{
521
+ id: z.ZodString;
522
+ kind: z.ZodEnum<["image", "text"]>;
523
+ imageUrl: z.ZodNullable<z.ZodString>;
524
+ tag: z.ZodNullable<z.ZodString>;
525
+ title: z.ZodNullable<z.ZodString>;
526
+ body: z.ZodNullable<z.ZodString>;
527
+ linkUrl: z.ZodNullable<z.ZodString>;
528
+ linkTarget: z.ZodEnum<["_self", "_blank"]>;
529
+ wholeSlideLink: z.ZodBoolean;
530
+ buttonLabel: z.ZodNullable<z.ZodString>;
531
+ buttonStyle: z.ZodNullable<z.ZodEnum<["primary", "secondary", "outline", "ghost"]>>;
532
+ }, "strip", z.ZodTypeAny, {
533
+ id: string;
534
+ kind: "image" | "text";
535
+ imageUrl: string | null;
536
+ tag: string | null;
537
+ title: string | null;
538
+ body: string | null;
539
+ linkUrl: string | null;
540
+ linkTarget: "_self" | "_blank";
541
+ wholeSlideLink: boolean;
542
+ buttonLabel: string | null;
543
+ buttonStyle: "primary" | "secondary" | "outline" | "ghost" | null;
544
+ }, {
545
+ id: string;
546
+ kind: "image" | "text";
547
+ imageUrl: string | null;
548
+ tag: string | null;
549
+ title: string | null;
550
+ body: string | null;
551
+ linkUrl: string | null;
552
+ linkTarget: "_self" | "_blank";
553
+ wholeSlideLink: boolean;
554
+ buttonLabel: string | null;
555
+ buttonStyle: "primary" | "secondary" | "outline" | "ghost" | null;
556
+ }>, "many">;
557
+ type SlidesResponse = z.infer<typeof SlidesResponseSchema>;
558
+
380
559
  declare const RankDefSchema: z.ZodObject<{
381
560
  name: z.ZodString;
382
561
  order: z.ZodNumber;
@@ -1966,6 +2145,151 @@ declare namespace GetPartnersCommand {
1966
2145
  type Response = PartnersOverview;
1967
2146
  }
1968
2147
 
2148
+ declare namespace GetPackagesCommand {
2149
+ const endpointDetails: EndpointDetails;
2150
+ const ResponseSchema: zod.ZodObject<{
2151
+ packages: zod.ZodArray<zod.ZodObject<{
2152
+ id: zod.ZodString;
2153
+ tier: zod.ZodNumber;
2154
+ priceUsd: zod.ZodString;
2155
+ sellIntervalDays: zod.ZodNumber;
2156
+ status: zod.ZodEnum<["active", "locked"]>;
2157
+ badge: zod.ZodNullable<zod.ZodString>;
2158
+ }, "strip", zod.ZodTypeAny, {
2159
+ status: "active" | "locked";
2160
+ id: string;
2161
+ tier: number;
2162
+ priceUsd: string;
2163
+ sellIntervalDays: number;
2164
+ badge: string | null;
2165
+ }, {
2166
+ status: "active" | "locked";
2167
+ id: string;
2168
+ tier: number;
2169
+ priceUsd: string;
2170
+ sellIntervalDays: number;
2171
+ badge: string | null;
2172
+ }>, "many">;
2173
+ dailyLimit: zod.ZodNumber;
2174
+ dailyUsed: zod.ZodNumber;
2175
+ weeklyLimitUsd: zod.ZodNullable<zod.ZodString>;
2176
+ weeklySpentUsd: zod.ZodString;
2177
+ minPriceUsd: zod.ZodString;
2178
+ maxPriceUsd: zod.ZodString;
2179
+ sellIntervalDays: zod.ZodNullable<zod.ZodNumber>;
2180
+ nextSellAt: zod.ZodNullable<zod.ZodString>;
2181
+ balanceUsdt: zod.ZodString;
2182
+ }, "strip", zod.ZodTypeAny, {
2183
+ sellIntervalDays: number | null;
2184
+ packages: {
2185
+ status: "active" | "locked";
2186
+ id: string;
2187
+ tier: number;
2188
+ priceUsd: string;
2189
+ sellIntervalDays: number;
2190
+ badge: string | null;
2191
+ }[];
2192
+ dailyLimit: number;
2193
+ dailyUsed: number;
2194
+ weeklyLimitUsd: string | null;
2195
+ weeklySpentUsd: string;
2196
+ minPriceUsd: string;
2197
+ maxPriceUsd: string;
2198
+ nextSellAt: string | null;
2199
+ balanceUsdt: string;
2200
+ }, {
2201
+ sellIntervalDays: number | null;
2202
+ packages: {
2203
+ status: "active" | "locked";
2204
+ id: string;
2205
+ tier: number;
2206
+ priceUsd: string;
2207
+ sellIntervalDays: number;
2208
+ badge: string | null;
2209
+ }[];
2210
+ dailyLimit: number;
2211
+ dailyUsed: number;
2212
+ weeklyLimitUsd: string | null;
2213
+ weeklySpentUsd: string;
2214
+ minPriceUsd: string;
2215
+ maxPriceUsd: string;
2216
+ nextSellAt: string | null;
2217
+ balanceUsdt: string;
2218
+ }>;
2219
+ type Response = PackagesOverview;
2220
+ }
2221
+
2222
+ declare namespace BuyPackageCommand {
2223
+ const endpointDetails: EndpointDetails;
2224
+ const RequestSchema: z.ZodObject<{
2225
+ idempotencyKey: z.ZodString;
2226
+ }, "strip", z.ZodTypeAny, {
2227
+ idempotencyKey: string;
2228
+ }, {
2229
+ idempotencyKey: string;
2230
+ }>;
2231
+ type Request = z.infer<typeof RequestSchema>;
2232
+ const ResponseSchema: z.ZodObject<{
2233
+ purchaseId: z.ZodString;
2234
+ priceUsd: z.ZodString;
2235
+ nmnAmount: z.ZodString;
2236
+ tokenPrice: z.ZodString;
2237
+ }, "strip", z.ZodTypeAny, {
2238
+ priceUsd: string;
2239
+ tokenPrice: string;
2240
+ nmnAmount: string;
2241
+ purchaseId: string;
2242
+ }, {
2243
+ priceUsd: string;
2244
+ tokenPrice: string;
2245
+ nmnAmount: string;
2246
+ purchaseId: string;
2247
+ }>;
2248
+ type Response = z.infer<typeof ResponseSchema>;
2249
+ }
2250
+
2251
+ declare namespace GetSlidesCommand {
2252
+ const endpointDetails: EndpointDetails;
2253
+ const ResponseSchema: zod.ZodArray<zod.ZodObject<{
2254
+ id: zod.ZodString;
2255
+ kind: zod.ZodEnum<["image", "text"]>;
2256
+ imageUrl: zod.ZodNullable<zod.ZodString>;
2257
+ tag: zod.ZodNullable<zod.ZodString>;
2258
+ title: zod.ZodNullable<zod.ZodString>;
2259
+ body: zod.ZodNullable<zod.ZodString>;
2260
+ linkUrl: zod.ZodNullable<zod.ZodString>;
2261
+ linkTarget: zod.ZodEnum<["_self", "_blank"]>;
2262
+ wholeSlideLink: zod.ZodBoolean;
2263
+ buttonLabel: zod.ZodNullable<zod.ZodString>;
2264
+ buttonStyle: zod.ZodNullable<zod.ZodEnum<["primary", "secondary", "outline", "ghost"]>>;
2265
+ }, "strip", zod.ZodTypeAny, {
2266
+ id: string;
2267
+ kind: "image" | "text";
2268
+ imageUrl: string | null;
2269
+ tag: string | null;
2270
+ title: string | null;
2271
+ body: string | null;
2272
+ linkUrl: string | null;
2273
+ linkTarget: "_self" | "_blank";
2274
+ wholeSlideLink: boolean;
2275
+ buttonLabel: string | null;
2276
+ buttonStyle: "primary" | "secondary" | "outline" | "ghost" | null;
2277
+ }, {
2278
+ id: string;
2279
+ kind: "image" | "text";
2280
+ imageUrl: string | null;
2281
+ tag: string | null;
2282
+ title: string | null;
2283
+ body: string | null;
2284
+ linkUrl: string | null;
2285
+ linkTarget: "_self" | "_blank";
2286
+ wholeSlideLink: boolean;
2287
+ buttonLabel: string | null;
2288
+ buttonStyle: "primary" | "secondary" | "outline" | "ghost" | null;
2289
+ }>, "many">;
2290
+ type Response = SlidesResponse;
2291
+ }
2292
+
1969
2293
  declare namespace GetRanksCommand {
1970
2294
  const endpointDetails: EndpointDetails;
1971
2295
  const ResponseSchema: z.ZodObject<{
@@ -3584,6 +3908,13 @@ declare const REST_API: {
3584
3908
  readonly PARTNERS: {
3585
3909
  readonly OVERVIEW: "/partners";
3586
3910
  };
3911
+ readonly PACKAGES: {
3912
+ readonly OVERVIEW: "/packages";
3913
+ readonly BUY: "/packages/:id/buy";
3914
+ };
3915
+ readonly CONTENT: {
3916
+ readonly SLIDES: "/content/slides";
3917
+ };
3587
3918
  readonly RANKS: {
3588
3919
  readonly LIST: "/ranks";
3589
3920
  };
@@ -3633,4 +3964,4 @@ declare const REST_API: {
3633
3964
  declare const API_PREFIX = "/api";
3634
3965
  declare const API_VERSION = "v1";
3635
3966
 
3636
- export { API_PREFIX, API_VERSION, ASSET_SYMBOLS, AVATAR_CONTENT_TYPES, type AssetBalance, AssetBalanceSchema, type AssetSymbol, AssetSymbolSchema, AvatarContentTypeSchema, AvatarUploadUrlCommand, CancelOrderCommand, CancelWithdrawalCommand, 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 DepositableAsset, DepositableAssetSchema, DisableTotpCommand, ERROR_CODE, type EarningsOverview, EarningsOverviewSchema, type EndpointDetails, type ErrorCode, type ErrorResponse, ErrorResponseSchema, FUNDING_ASSET, GetDailyBonusCommand, GetEarningsCommand, GetIncomeCommand, GetLeaderboardCommand, GetOrderBookCommand, GetPartnersCommand, GetRanksCommand, GetSettingsCommand, 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, ListLinkedAccountsCommand, ListMyOrdersCommand, ListNotificationsCommand, ListTicketsCommand, ListTradesCommand, ListWithdrawalsCommand, LoginCommand, LogoutCommand, MONEY_REGEX, MarkNotificationsReadCommand, MeCommand, MoneyStringSchema, type MonthlyPricePoint, MonthlyPricePointSchema, type Notification, NotificationSchema, type NotificationType, NotificationTypeSchema, type Order, type OrderBook, type OrderBookLevel, OrderBookLevelSchema, OrderBookSchema, OrderSchema, type OrderSide, OrderSideSchema, type OrderStatus, OrderStatusSchema, type OrderType, OrderTypeSchema, 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, RequestWithdrawalCommand, type SessionInfo, SessionInfoSchema, SetupTotpCommand, SwapCommand, type SwapSide, SwapSideSchema, TICKET_CATEGORIES, TOKEN_ASSET, 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 TradeResult, TradeResultSchema, type Transaction, TransactionSchema, type TransactionStatus, TransactionStatusSchema, type TransactionType, TransactionTypeSchema, UnlinkAccountCommand, UpdateProfileCommand, UpdateSettingsCommand, type UserProfile, UserProfileSchema, type UserRank, UserRankSchema, type UserSettings, UserSettingsSchema, type UserStatus, UserStatusSchema, UuidSchema, type WalletOverview, WalletOverviewSchema, type Withdrawal, WithdrawalSchema, type WithdrawalStatus, WithdrawalStatusSchema, endpoint };
3967
+ export { API_PREFIX, API_VERSION, ASSET_SYMBOLS, AVATAR_CONTENT_TYPES, type AssetBalance, AssetBalanceSchema, type AssetSymbol, AssetSymbolSchema, AvatarContentTypeSchema, AvatarUploadUrlCommand, BuyPackageCommand, CancelOrderCommand, CancelWithdrawalCommand, 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 DepositableAsset, DepositableAssetSchema, DisableTotpCommand, ERROR_CODE, type EarningsOverview, EarningsOverviewSchema, type EndpointDetails, type ErrorCode, type ErrorResponse, ErrorResponseSchema, FUNDING_ASSET, 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, ListLinkedAccountsCommand, ListMyOrdersCommand, ListNotificationsCommand, ListTicketsCommand, ListTradesCommand, ListWithdrawalsCommand, LoginCommand, LogoutCommand, MONEY_REGEX, MarkNotificationsReadCommand, MeCommand, MoneyStringSchema, type MonthlyPricePoint, MonthlyPricePointSchema, 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, RequestWithdrawalCommand, 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 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 TradeResult, TradeResultSchema, type Transaction, TransactionSchema, type TransactionStatus, TransactionStatusSchema, type TransactionType, TransactionTypeSchema, UnlinkAccountCommand, UpdateProfileCommand, UpdateSettingsCommand, type UserProfile, UserProfileSchema, type UserRank, UserRankSchema, type UserSettings, UserSettingsSchema, type UserStatus, UserStatusSchema, UuidSchema, type WalletOverview, WalletOverviewSchema, type Withdrawal, WithdrawalSchema, type WithdrawalStatus, WithdrawalStatusSchema, endpoint };