@metatrongg/sdk 0.8.0-dev.b082f17 → 0.8.0-dev.b8ab51a
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/browser/index.d.ts +1087 -32
- package/dist/browser/index.js +1 -1
- package/dist/contracts/index.d.ts +12700 -4379
- package/dist/contracts/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/node/index.d.ts +1167 -57
- package/dist/node/index.js +1 -1
- package/dist/webhook/express.js +1 -1
- package/dist/webhook/fastify.js +1 -1
- package/dist/webhook/hono.js +1 -1
- package/dist/webhook/index.js +1 -1
- package/package.json +4 -3
package/dist/node/index.d.ts
CHANGED
|
@@ -114,7 +114,7 @@ type Username = string;
|
|
|
114
114
|
type DisplayName = string | null;
|
|
115
115
|
type Bio = string | null;
|
|
116
116
|
type WebsiteUrl = string | null;
|
|
117
|
-
type BannerVariant = "yellow" | "green" | "blue" | "white" | "black";
|
|
117
|
+
type BannerVariant = "yellow" | "green" | "blue" | "white" | "black" | "red";
|
|
118
118
|
type AdminRole = "super-admin" | "admin" | "read-only" | null;
|
|
119
119
|
type PresenceStatusMode = "auto" | "online" | "offline";
|
|
120
120
|
type PlatformEnvironment = "development" | "production";
|
|
@@ -129,7 +129,7 @@ type OauthAuthorizationServerMetadata = {
|
|
|
129
129
|
grant_types_supported: Array<"authorization_code" | "refresh_token" | "client_credentials">;
|
|
130
130
|
code_challenge_methods_supported: Array<"S256">;
|
|
131
131
|
token_endpoint_auth_methods_supported: Array<"client_secret_basic" | "client_secret_post" | "none">;
|
|
132
|
-
scopes_supported: Array<"openid" | "profile" | "payments:charge" | "inventory:read" | "developer:read" | "developer:apps" | "developer:pages">;
|
|
132
|
+
scopes_supported: Array<"openid" | "profile" | "payments:charge" | "inventory:read" | "social:read" | "developer:read" | "developer:apps" | "developer:pages">;
|
|
133
133
|
};
|
|
134
134
|
type OauthClientRegistrationResponse = {
|
|
135
135
|
client_id: string;
|
|
@@ -169,7 +169,9 @@ type OauthErrorResponse = {
|
|
|
169
169
|
type OauthUserInfoResponse = {
|
|
170
170
|
sub: string;
|
|
171
171
|
name: string | null;
|
|
172
|
+
preferred_username: string | null;
|
|
172
173
|
picture: string | null;
|
|
174
|
+
wallet_address: string | null;
|
|
173
175
|
};
|
|
174
176
|
type OauthPaymentChargeResponse = ({
|
|
175
177
|
status: "completed";
|
|
@@ -288,7 +290,16 @@ type OauthPaymentIntentContext = {
|
|
|
288
290
|
studioXHandle: string | null;
|
|
289
291
|
};
|
|
290
292
|
} | null;
|
|
293
|
+
environment: "development" | "production";
|
|
294
|
+
onramp?: {
|
|
295
|
+
kind: "bridge";
|
|
296
|
+
from: PaymentNetwork;
|
|
297
|
+
to: PaymentNetwork;
|
|
298
|
+
} | {
|
|
299
|
+
kind: "insufficient";
|
|
300
|
+
};
|
|
291
301
|
};
|
|
302
|
+
type PaymentNetwork = "ethereum" | "base" | "solana";
|
|
292
303
|
type OauthPaymentIntentSignResponse = {
|
|
293
304
|
chain: string;
|
|
294
305
|
chainId: number;
|
|
@@ -318,6 +329,13 @@ type OauthPaymentIntentCompleteSigned = {
|
|
|
318
329
|
type OauthPaymentIntentCompleteOffline = {
|
|
319
330
|
method: "offline";
|
|
320
331
|
};
|
|
332
|
+
type OauthPaymentIntentSolanaPrepareResponse = {
|
|
333
|
+
transaction: string;
|
|
334
|
+
payer: string;
|
|
335
|
+
};
|
|
336
|
+
type OauthPaymentIntentSolanaCompleteRequest = {
|
|
337
|
+
signedTransaction: string;
|
|
338
|
+
};
|
|
321
339
|
type ListAppPaymentAuthorizationsResponse = {
|
|
322
340
|
authorizations: Array<AppPaymentAuthorizationItem>;
|
|
323
341
|
};
|
|
@@ -376,9 +394,17 @@ type PublicAppPage = {
|
|
|
376
394
|
chapters: AppPageChapters;
|
|
377
395
|
links: AppPageLinks;
|
|
378
396
|
studio: PublicAppPageStudio;
|
|
397
|
+
platforms: AppPagePlatforms;
|
|
398
|
+
gameType: AppPageGameType;
|
|
399
|
+
ageRating: AppPageAgeRating;
|
|
400
|
+
languages: AppPageLanguages;
|
|
401
|
+
releaseStatus: AppPageReleaseStatus;
|
|
402
|
+
paymentsMode: AppPagePaymentsMode;
|
|
379
403
|
oauthScopes: Array<string>;
|
|
380
404
|
chains: Array<string>;
|
|
405
|
+
devlog: boolean;
|
|
381
406
|
publishedAt: string;
|
|
407
|
+
updatedAt: string;
|
|
382
408
|
};
|
|
383
409
|
type AppPageCategories = Array<"adventure" | "battle_royale" | "board" | "cards" | "casino" | "casual" | "fighting" | "idle" | "mmo" | "moba" | "platformer" | "prediction" | "puzzle" | "racing" | "rhythm" | "roguelike" | "rpg" | "rts" | "sandbox" | "shooter" | "simulation" | "sports" | "strategy" | "survival" | "tools" | "tower_defense" | "visual_novel" | "other">;
|
|
384
410
|
type AppPageTagline = string;
|
|
@@ -401,12 +427,134 @@ type AppPageLink = {
|
|
|
401
427
|
order: number;
|
|
402
428
|
};
|
|
403
429
|
type PublicAppPageStudio = {
|
|
430
|
+
ownerUserId: string | null;
|
|
404
431
|
name: string | null;
|
|
405
432
|
logoUrl: string | null;
|
|
406
433
|
websiteUrl: string | null;
|
|
407
434
|
xHandle: string | null;
|
|
408
435
|
githubUrl: string | null;
|
|
409
436
|
};
|
|
437
|
+
type AppPagePlatforms = Array<"web" | "ios" | "android" | "pc" | "playstation" | "xbox" | "switch">;
|
|
438
|
+
type AppPageGameType = "single_player" | "multiplayer" | "both" | null;
|
|
439
|
+
type AppPageAgeRating = "everyone" | "13_plus" | "16_plus" | "18_plus" | null;
|
|
440
|
+
type AppPageLanguages = Array<"en" | "es" | "fr" | "de" | "pt" | "it" | "ru" | "ja" | "ko" | "zh" | "hi" | "ar" | "tr" | "vi" | "id" | "th" | "pl" | "nl">;
|
|
441
|
+
type AppPageReleaseStatus = "live" | "open_beta" | "coming_soon";
|
|
442
|
+
type AppPagePaymentsMode = "tron" | "onchain" | "both" | null;
|
|
443
|
+
type PublicBipPage = {
|
|
444
|
+
appId: string;
|
|
445
|
+
slug: AppPageSlug;
|
|
446
|
+
appName: string;
|
|
447
|
+
appLogoUrl: string | null;
|
|
448
|
+
categories: AppPageCategories;
|
|
449
|
+
tagline: AppPageTagline;
|
|
450
|
+
bannerUrl: string | null;
|
|
451
|
+
discordUrl: string | null;
|
|
452
|
+
twitterUrl: string | null;
|
|
453
|
+
redditUrl: string | null;
|
|
454
|
+
telegramUrl: string | null;
|
|
455
|
+
gallery: AppPageGallery;
|
|
456
|
+
chapters: AppPageChapters;
|
|
457
|
+
links: AppPageLinks;
|
|
458
|
+
studio: PublicAppPageStudio;
|
|
459
|
+
platforms: AppPagePlatforms;
|
|
460
|
+
gameType: AppPageGameType;
|
|
461
|
+
ageRating: AppPageAgeRating;
|
|
462
|
+
languages: AppPageLanguages;
|
|
463
|
+
releaseStatus: AppPageReleaseStatus;
|
|
464
|
+
publishedAt: string;
|
|
465
|
+
updatedAt: string;
|
|
466
|
+
};
|
|
467
|
+
type BipUpdateListResponse = {
|
|
468
|
+
updates: Array<BipUpdate>;
|
|
469
|
+
total: number;
|
|
470
|
+
hasMore: boolean;
|
|
471
|
+
pinned: BipUpdate | null;
|
|
472
|
+
};
|
|
473
|
+
type BipUpdate = {
|
|
474
|
+
id: string;
|
|
475
|
+
appId: string;
|
|
476
|
+
body: BipUpdateBody;
|
|
477
|
+
attachments: BipUpdateAttachments;
|
|
478
|
+
reactions: BipUpdateReactionCounts;
|
|
479
|
+
commentCount: number;
|
|
480
|
+
createdAt: string;
|
|
481
|
+
updatedAt: string;
|
|
482
|
+
pinnedAt: string | null;
|
|
483
|
+
};
|
|
484
|
+
type BipUpdateBody = string;
|
|
485
|
+
type BipUpdateAttachments = Array<BipUpdateAttachment>;
|
|
486
|
+
type BipUpdateAttachment = {
|
|
487
|
+
url: string;
|
|
488
|
+
kind: "image" | "video";
|
|
489
|
+
order: number;
|
|
490
|
+
};
|
|
491
|
+
type BipUpdateReactionCounts = {
|
|
492
|
+
up: number;
|
|
493
|
+
down: number;
|
|
494
|
+
};
|
|
495
|
+
type BipUpdateCommentListResponse = {
|
|
496
|
+
comments: Array<BipUpdateComment>;
|
|
497
|
+
total: number;
|
|
498
|
+
hasMore: boolean;
|
|
499
|
+
};
|
|
500
|
+
type BipUpdateComment = {
|
|
501
|
+
id: string;
|
|
502
|
+
body: BipUpdateCommentBody;
|
|
503
|
+
author: ReviewAuthor;
|
|
504
|
+
createdAt: string;
|
|
505
|
+
};
|
|
506
|
+
type BipUpdateCommentBody = string;
|
|
507
|
+
type ReviewAuthor = {
|
|
508
|
+
userId: string;
|
|
509
|
+
handle: string | null;
|
|
510
|
+
name: string | null;
|
|
511
|
+
avatarUrl: string | null;
|
|
512
|
+
};
|
|
513
|
+
type BipInterestCountResponse = {
|
|
514
|
+
interestCount: number;
|
|
515
|
+
};
|
|
516
|
+
type BipEngagementResponse = {
|
|
517
|
+
interested: boolean;
|
|
518
|
+
subscribed: boolean;
|
|
519
|
+
interestCount: number;
|
|
520
|
+
};
|
|
521
|
+
type MyBipUpdateReactionsResponse = {
|
|
522
|
+
reactions: Array<MyBipUpdateReaction>;
|
|
523
|
+
};
|
|
524
|
+
type MyBipUpdateReaction = {
|
|
525
|
+
updateId: string;
|
|
526
|
+
vote: "up" | "down";
|
|
527
|
+
};
|
|
528
|
+
type SetBipUpdateReactionResponse = {
|
|
529
|
+
reactions: BipUpdateReactionCounts;
|
|
530
|
+
vote: BipUpdateVote;
|
|
531
|
+
};
|
|
532
|
+
type BipUpdateVote = "up" | "down" | null;
|
|
533
|
+
type SetBipUpdateReactionRequest = {
|
|
534
|
+
vote: BipUpdateVote;
|
|
535
|
+
};
|
|
536
|
+
type CreateBipUpdateCommentResponse = {
|
|
537
|
+
comment: BipUpdateComment;
|
|
538
|
+
commentCount: number;
|
|
539
|
+
};
|
|
540
|
+
type DeleteBipUpdateCommentResponse = {
|
|
541
|
+
commentCount: number;
|
|
542
|
+
};
|
|
543
|
+
type CreateBipUpdateRequest = {
|
|
544
|
+
body: BipUpdateBody;
|
|
545
|
+
attachments?: BipUpdateAttachments;
|
|
546
|
+
};
|
|
547
|
+
type UpdateBipUpdateRequest = {
|
|
548
|
+
body?: BipUpdateBody;
|
|
549
|
+
attachments?: BipUpdateAttachments;
|
|
550
|
+
};
|
|
551
|
+
type DeleteBipUpdateResponse = {
|
|
552
|
+
deleted: true;
|
|
553
|
+
};
|
|
554
|
+
type BipUpdateMediaUploadResponse = {
|
|
555
|
+
url: string;
|
|
556
|
+
kind: "image" | "video";
|
|
557
|
+
};
|
|
410
558
|
type ReviewListResponse = {
|
|
411
559
|
aggregate: ReviewAggregate;
|
|
412
560
|
reviews: Array<Review>;
|
|
@@ -414,38 +562,43 @@ type ReviewListResponse = {
|
|
|
414
562
|
hasMore: boolean;
|
|
415
563
|
};
|
|
416
564
|
type ReviewAggregate = {
|
|
417
|
-
average: number | null;
|
|
418
565
|
count: number;
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
1: number;
|
|
423
|
-
2: number;
|
|
424
|
-
3: number;
|
|
425
|
-
4: number;
|
|
426
|
-
5: number;
|
|
566
|
+
recommendedCount: number;
|
|
567
|
+
recommendedPct: number | null;
|
|
568
|
+
summaryLabel: ReviewSummaryLabel;
|
|
427
569
|
};
|
|
570
|
+
type ReviewSummaryLabel = "overwhelmingly_positive" | "very_positive" | "positive" | "mostly_positive" | "mixed" | "mostly_negative" | "negative" | "overwhelmingly_negative" | null;
|
|
428
571
|
type Review = {
|
|
429
572
|
id: string;
|
|
430
|
-
|
|
573
|
+
recommended: ReviewRecommended;
|
|
431
574
|
body: ReviewBody;
|
|
575
|
+
reactions: ReviewReactionCounts;
|
|
576
|
+
tippedCents: number;
|
|
577
|
+
commentCount: number;
|
|
432
578
|
author: ReviewAuthor;
|
|
579
|
+
authorStats: ReviewerStats;
|
|
433
580
|
developerReply: ReviewReply;
|
|
434
581
|
createdAt: string;
|
|
435
582
|
updatedAt: string;
|
|
436
583
|
};
|
|
437
|
-
type
|
|
584
|
+
type ReviewRecommended = boolean;
|
|
438
585
|
type ReviewBody = string;
|
|
439
|
-
type
|
|
440
|
-
|
|
441
|
-
|
|
586
|
+
type ReviewReactionCounts = {
|
|
587
|
+
helpful: number;
|
|
588
|
+
unhelpful: number;
|
|
589
|
+
funny: number;
|
|
590
|
+
};
|
|
591
|
+
type ReviewerStats = {
|
|
592
|
+
playtimeSecondsThisGame: number;
|
|
593
|
+
gamesPlayed: number;
|
|
594
|
+
reviewsWritten: number;
|
|
442
595
|
};
|
|
443
596
|
type ReviewReply = {
|
|
444
597
|
body: ReviewReplyBody;
|
|
445
598
|
repliedAt: string;
|
|
446
599
|
} | null;
|
|
447
600
|
type ReviewReplyBody = string;
|
|
448
|
-
type ReviewSort = "newest" | "oldest" | "
|
|
601
|
+
type ReviewSort = "newest" | "oldest" | "helpful";
|
|
449
602
|
type MyReviewResponse = {
|
|
450
603
|
eligible: boolean;
|
|
451
604
|
eligibleVia: ReviewEligibilityReason;
|
|
@@ -455,15 +608,67 @@ type MyReviewResponse = {
|
|
|
455
608
|
type ReviewEligibilityReason = "payment" | "reward" | null;
|
|
456
609
|
type OwnReview = {
|
|
457
610
|
id: string;
|
|
458
|
-
|
|
611
|
+
recommended: ReviewRecommended;
|
|
459
612
|
body: ReviewBody;
|
|
460
613
|
createdAt: string;
|
|
461
614
|
updatedAt: string;
|
|
462
615
|
} | null;
|
|
463
616
|
type UpsertReviewRequest = {
|
|
464
|
-
|
|
617
|
+
recommended: ReviewRecommended;
|
|
465
618
|
body: ReviewBody;
|
|
466
619
|
};
|
|
620
|
+
type MyReviewReactionsResponse = {
|
|
621
|
+
reactions: Array<MyReviewReaction>;
|
|
622
|
+
};
|
|
623
|
+
type MyReviewReaction = {
|
|
624
|
+
reviewId: string;
|
|
625
|
+
vote: ReviewVote;
|
|
626
|
+
funny: boolean;
|
|
627
|
+
};
|
|
628
|
+
type ReviewVote = "helpful" | "unhelpful" | null;
|
|
629
|
+
type SetReviewReactionResponse = {
|
|
630
|
+
reactions: ReviewReactionCounts;
|
|
631
|
+
vote: ReviewVote;
|
|
632
|
+
funny: boolean;
|
|
633
|
+
};
|
|
634
|
+
type SetReviewReactionRequest = {
|
|
635
|
+
vote: ReviewVote;
|
|
636
|
+
funny: boolean;
|
|
637
|
+
};
|
|
638
|
+
type TipReviewResponse = {
|
|
639
|
+
status: "completed";
|
|
640
|
+
amountCents: number;
|
|
641
|
+
balanceCents: number;
|
|
642
|
+
tippedCents: number;
|
|
643
|
+
};
|
|
644
|
+
type TipReviewRequest = {
|
|
645
|
+
amountCents: number;
|
|
646
|
+
note?: string;
|
|
647
|
+
challengeId?: string;
|
|
648
|
+
signature?: string;
|
|
649
|
+
};
|
|
650
|
+
type ReviewCommentListResponse = {
|
|
651
|
+
comments: Array<ReviewComment>;
|
|
652
|
+
total: number;
|
|
653
|
+
hasMore: boolean;
|
|
654
|
+
};
|
|
655
|
+
type ReviewComment = {
|
|
656
|
+
id: string;
|
|
657
|
+
body: ReviewCommentBody;
|
|
658
|
+
author: ReviewAuthor;
|
|
659
|
+
createdAt: string;
|
|
660
|
+
};
|
|
661
|
+
type ReviewCommentBody = string;
|
|
662
|
+
type CreateReviewCommentResponse = {
|
|
663
|
+
comment: ReviewComment;
|
|
664
|
+
commentCount: number;
|
|
665
|
+
};
|
|
666
|
+
type CreateReviewCommentRequest = {
|
|
667
|
+
body: ReviewCommentBody;
|
|
668
|
+
};
|
|
669
|
+
type DeleteReviewCommentResponse = {
|
|
670
|
+
commentCount: number;
|
|
671
|
+
};
|
|
467
672
|
type ReviewReplyResponse = {
|
|
468
673
|
developerReply: ReviewReply;
|
|
469
674
|
};
|
|
@@ -568,8 +773,16 @@ type ActivityRow = ({
|
|
|
568
773
|
} & ActivityRowTronPot) | ({
|
|
569
774
|
kind: "tron_cashout";
|
|
570
775
|
} & ActivityRowTronCashout) | ({
|
|
776
|
+
kind: "tron_transfer";
|
|
777
|
+
} & ActivityRowTronTransfer) | ({
|
|
571
778
|
kind: "referral_earning";
|
|
572
|
-
} & ActivityRowReferralEarning)
|
|
779
|
+
} & ActivityRowReferralEarning) | ({
|
|
780
|
+
kind: "nft_charge";
|
|
781
|
+
} & ActivityRowNftCharge) | ({
|
|
782
|
+
kind: "solana_stake";
|
|
783
|
+
} & ActivityRowSolanaStake) | ({
|
|
784
|
+
kind: "solana_pot_leg";
|
|
785
|
+
} & ActivityRowSolanaPotLeg);
|
|
573
786
|
type ActivityRowPayment = {
|
|
574
787
|
kind: "payment";
|
|
575
788
|
groupId: string | null;
|
|
@@ -815,6 +1028,8 @@ type ActivityRowTronPot = {
|
|
|
815
1028
|
role: "incoming" | "outgoing";
|
|
816
1029
|
leg: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
|
|
817
1030
|
amountCents: number;
|
|
1031
|
+
usdCents: number;
|
|
1032
|
+
status: "settled";
|
|
818
1033
|
app: {
|
|
819
1034
|
id: string;
|
|
820
1035
|
name: string;
|
|
@@ -822,8 +1037,16 @@ type ActivityRowTronPot = {
|
|
|
822
1037
|
slug: string | null;
|
|
823
1038
|
bannerUrl: string | null;
|
|
824
1039
|
} | null;
|
|
1040
|
+
involvedUsers?: Array<ActivityTronInvolvedUser> | null;
|
|
825
1041
|
metadata?: PaymentMetadata | null;
|
|
826
1042
|
};
|
|
1043
|
+
type ActivityTronInvolvedUser = {
|
|
1044
|
+
userId: string;
|
|
1045
|
+
handle: string | null;
|
|
1046
|
+
displayName: string | null;
|
|
1047
|
+
role: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
|
|
1048
|
+
amountCents: number;
|
|
1049
|
+
};
|
|
827
1050
|
type ActivityRowTronCashout = {
|
|
828
1051
|
kind: "tron_cashout";
|
|
829
1052
|
groupId: string | null;
|
|
@@ -841,6 +1064,20 @@ type ActivityRowTronCashout = {
|
|
|
841
1064
|
rejectionReason: string | null;
|
|
842
1065
|
settledAt: string | null;
|
|
843
1066
|
};
|
|
1067
|
+
type ActivityRowTronTransfer = {
|
|
1068
|
+
kind: "tron_transfer";
|
|
1069
|
+
groupId: string | null;
|
|
1070
|
+
id: string;
|
|
1071
|
+
occurredAt: string;
|
|
1072
|
+
role: "incoming" | "outgoing";
|
|
1073
|
+
amountCents: number;
|
|
1074
|
+
usdCents: number;
|
|
1075
|
+
status: "settled";
|
|
1076
|
+
counterpartyUserId: string | null;
|
|
1077
|
+
counterpartyHandle: string | null;
|
|
1078
|
+
counterpartyDisplayName: string | null;
|
|
1079
|
+
note: string | null;
|
|
1080
|
+
};
|
|
844
1081
|
type ActivityRowReferralEarning = {
|
|
845
1082
|
kind: "referral_earning";
|
|
846
1083
|
groupId: string | null;
|
|
@@ -857,6 +1094,72 @@ type ActivityRowReferralEarning = {
|
|
|
857
1094
|
logIndex: number;
|
|
858
1095
|
usdCents: number | null;
|
|
859
1096
|
};
|
|
1097
|
+
type ActivityRowNftCharge = {
|
|
1098
|
+
kind: "nft_charge";
|
|
1099
|
+
groupId: string | null;
|
|
1100
|
+
id: string;
|
|
1101
|
+
occurredAt: string;
|
|
1102
|
+
role: "outgoing";
|
|
1103
|
+
chargeKind: "registration" | "mint" | "transfer_gas";
|
|
1104
|
+
amountCents: number;
|
|
1105
|
+
usdCents: number;
|
|
1106
|
+
status: "settled";
|
|
1107
|
+
collectionAddress: string | null;
|
|
1108
|
+
tokenId: string | null;
|
|
1109
|
+
counterpartyUserId: string | null;
|
|
1110
|
+
counterpartyHandle: string | null;
|
|
1111
|
+
counterpartyDisplayName: string | null;
|
|
1112
|
+
};
|
|
1113
|
+
type ActivityRowSolanaStake = {
|
|
1114
|
+
kind: "solana_stake";
|
|
1115
|
+
groupId: string | null;
|
|
1116
|
+
id: string;
|
|
1117
|
+
chain: string;
|
|
1118
|
+
occurredAt: string;
|
|
1119
|
+
role: "outgoing" | "incoming";
|
|
1120
|
+
amount: string;
|
|
1121
|
+
token: string;
|
|
1122
|
+
potId: string | null;
|
|
1123
|
+
usdCents: number;
|
|
1124
|
+
status: "completed";
|
|
1125
|
+
txHash: string | null;
|
|
1126
|
+
app: {
|
|
1127
|
+
id: string;
|
|
1128
|
+
name: string;
|
|
1129
|
+
logoUrl: string | null;
|
|
1130
|
+
slug: string | null;
|
|
1131
|
+
bannerUrl: string | null;
|
|
1132
|
+
} | null;
|
|
1133
|
+
stakerUserId?: string | null;
|
|
1134
|
+
stakerHandle?: string | null;
|
|
1135
|
+
stakerDisplayName?: string | null;
|
|
1136
|
+
metadata?: PaymentMetadata | null;
|
|
1137
|
+
};
|
|
1138
|
+
type ActivityRowSolanaPotLeg = {
|
|
1139
|
+
kind: "solana_pot_leg";
|
|
1140
|
+
groupId: string | null;
|
|
1141
|
+
id: string;
|
|
1142
|
+
chain: string;
|
|
1143
|
+
occurredAt: string;
|
|
1144
|
+
role: "outgoing" | "incoming";
|
|
1145
|
+
beneficiary: string;
|
|
1146
|
+
potId: string | null;
|
|
1147
|
+
amount: string;
|
|
1148
|
+
token: string;
|
|
1149
|
+
usdCents: number | null;
|
|
1150
|
+
status: "settled";
|
|
1151
|
+
app: {
|
|
1152
|
+
id: string;
|
|
1153
|
+
name: string;
|
|
1154
|
+
logoUrl: string | null;
|
|
1155
|
+
slug: string | null;
|
|
1156
|
+
bannerUrl: string | null;
|
|
1157
|
+
} | null;
|
|
1158
|
+
txHash: string | null;
|
|
1159
|
+
recipientUserId?: string | null;
|
|
1160
|
+
recipientHandle?: string | null;
|
|
1161
|
+
recipientDisplayName?: string | null;
|
|
1162
|
+
};
|
|
860
1163
|
type OutstandingResponse = {
|
|
861
1164
|
rows: Array<OutstandingByToken>;
|
|
862
1165
|
};
|
|
@@ -906,7 +1209,7 @@ type TronLedgerResponse = {
|
|
|
906
1209
|
};
|
|
907
1210
|
type TronLedgerEntry = {
|
|
908
1211
|
id: string;
|
|
909
|
-
kind: "deposit" | "pot_stake" | "pot_payout" | "dev_earning" | "cashout_hold" | "cashout_release" | "dispute_freeze" | "dispute_unfreeze" | "hosted_billing" | "store_purchase" | "referral_earning";
|
|
1212
|
+
kind: "deposit" | "pot_stake" | "pot_payout" | "dev_earning" | "cashout_hold" | "cashout_release" | "dispute_freeze" | "dispute_unfreeze" | "hosted_billing" | "store_purchase" | "referral_earning" | "peer_transfer" | "nft_registration" | "nft_mint" | "nft_gas";
|
|
910
1213
|
amountCents: number;
|
|
911
1214
|
currency: string;
|
|
912
1215
|
createdAt: string;
|
|
@@ -921,6 +1224,45 @@ type TronDepositResponse = {
|
|
|
921
1224
|
type TronDepositRequest = {
|
|
922
1225
|
amountCents: number;
|
|
923
1226
|
};
|
|
1227
|
+
type TronTransferResponse = {
|
|
1228
|
+
status: "completed";
|
|
1229
|
+
amountCents: number;
|
|
1230
|
+
balanceCents: number;
|
|
1231
|
+
recipient: {
|
|
1232
|
+
userId: string;
|
|
1233
|
+
handle: string | null;
|
|
1234
|
+
displayName: string | null;
|
|
1235
|
+
};
|
|
1236
|
+
};
|
|
1237
|
+
type TronTransferRequest = {
|
|
1238
|
+
recipientUserId: string;
|
|
1239
|
+
amountCents: number;
|
|
1240
|
+
note?: string;
|
|
1241
|
+
challengeId?: string;
|
|
1242
|
+
signature?: string;
|
|
1243
|
+
threadId?: string;
|
|
1244
|
+
};
|
|
1245
|
+
type TronSecuritySetting = {
|
|
1246
|
+
requireSignature: boolean;
|
|
1247
|
+
};
|
|
1248
|
+
type TronTransferChallengeResponse = ({
|
|
1249
|
+
required: false;
|
|
1250
|
+
} & TronTransferChallengeNotRequired) | ({
|
|
1251
|
+
required: true;
|
|
1252
|
+
} & TronTransferChallengeRequired);
|
|
1253
|
+
type TronTransferChallengeNotRequired = {
|
|
1254
|
+
required: false;
|
|
1255
|
+
};
|
|
1256
|
+
type TronTransferChallengeRequired = {
|
|
1257
|
+
required: true;
|
|
1258
|
+
challengeId: string;
|
|
1259
|
+
message: string;
|
|
1260
|
+
expiresAt: string;
|
|
1261
|
+
};
|
|
1262
|
+
type TronTransferChallengeRequest = {
|
|
1263
|
+
recipientUserId: string;
|
|
1264
|
+
amountCents: number;
|
|
1265
|
+
};
|
|
924
1266
|
type TronGameBalanceResponse = {
|
|
925
1267
|
balanceCents: number;
|
|
926
1268
|
rakeBps: number;
|
|
@@ -1053,12 +1395,15 @@ type WalletListResponse = {
|
|
|
1053
1395
|
wallets: Array<WalletItem>;
|
|
1054
1396
|
};
|
|
1055
1397
|
type WalletChainList = Array<{
|
|
1056
|
-
id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia";
|
|
1398
|
+
id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia" | "base-sepolia" | "solana-mainnet" | "solana-devnet";
|
|
1057
1399
|
displayName: string;
|
|
1058
|
-
|
|
1400
|
+
family: "evm" | "solana";
|
|
1401
|
+
nativeSymbol: string;
|
|
1402
|
+
chainId?: number;
|
|
1059
1403
|
}>;
|
|
1060
1404
|
type WalletItem = {
|
|
1061
|
-
address: string;
|
|
1405
|
+
address: string | string;
|
|
1406
|
+
family: "evm" | "solana";
|
|
1062
1407
|
label: WalletLabel;
|
|
1063
1408
|
kind: "personal" | "app";
|
|
1064
1409
|
app: WalletAppLink;
|
|
@@ -1075,6 +1420,9 @@ type WalletBalances = {
|
|
|
1075
1420
|
"ethereum-mainnet"?: WalletChainBalance;
|
|
1076
1421
|
"base-mainnet"?: WalletChainBalance;
|
|
1077
1422
|
"ethereum-sepolia"?: WalletChainBalance;
|
|
1423
|
+
"base-sepolia"?: WalletChainBalance;
|
|
1424
|
+
"solana-mainnet"?: WalletChainBalance;
|
|
1425
|
+
"solana-devnet"?: WalletChainBalance;
|
|
1078
1426
|
};
|
|
1079
1427
|
type WalletChainBalance = {
|
|
1080
1428
|
native: string;
|
|
@@ -1084,12 +1432,14 @@ type WalletDelegationStatus = {
|
|
|
1084
1432
|
mode: WalletDelegationMode;
|
|
1085
1433
|
caps: WalletDelegationCaps;
|
|
1086
1434
|
policyId: string | null;
|
|
1435
|
+
slippageBps: DelegationSlippageBps;
|
|
1087
1436
|
};
|
|
1088
1437
|
type WalletDelegationMode = "infinite" | "custom" | "scoped" | null;
|
|
1089
1438
|
type WalletDelegationCaps = {
|
|
1090
1439
|
native: string;
|
|
1091
1440
|
usdc: string;
|
|
1092
1441
|
} | null;
|
|
1442
|
+
type DelegationSlippageBps = number | null;
|
|
1093
1443
|
type WalletLabelUpdateResponse = {
|
|
1094
1444
|
address: string;
|
|
1095
1445
|
label: WalletLabel;
|
|
@@ -1163,6 +1513,7 @@ type ThreadLastMessagePreview = {
|
|
|
1163
1513
|
url: string;
|
|
1164
1514
|
count: number;
|
|
1165
1515
|
} | null;
|
|
1516
|
+
transaction?: MessageTransactionTronTransfer | MessageTransactionNftTransfer | null;
|
|
1166
1517
|
sentAt: string;
|
|
1167
1518
|
} | null;
|
|
1168
1519
|
type MessageEnvelope = {
|
|
@@ -1174,6 +1525,20 @@ type MessageEnvelope = {
|
|
|
1174
1525
|
iv: string;
|
|
1175
1526
|
ct: string;
|
|
1176
1527
|
} | null;
|
|
1528
|
+
type MessageTransactionTronTransfer = {
|
|
1529
|
+
kind: "tron_transfer";
|
|
1530
|
+
amountCents: number;
|
|
1531
|
+
recipientUserId: string;
|
|
1532
|
+
};
|
|
1533
|
+
type MessageTransactionNftTransfer = {
|
|
1534
|
+
kind: "nft_transfer";
|
|
1535
|
+
recipientUserId: string;
|
|
1536
|
+
collectionAddress: string;
|
|
1537
|
+
tokenId: string;
|
|
1538
|
+
amount: string;
|
|
1539
|
+
itemName: string | null;
|
|
1540
|
+
imageAssetId?: string | null;
|
|
1541
|
+
};
|
|
1177
1542
|
type GroupThreadSummary = {
|
|
1178
1543
|
kind: "group";
|
|
1179
1544
|
id: string;
|
|
@@ -1220,6 +1585,7 @@ type MessageItem = {
|
|
|
1220
1585
|
id: string;
|
|
1221
1586
|
threadId: string;
|
|
1222
1587
|
senderUserId: string;
|
|
1588
|
+
transaction?: MessageTransactionTronTransfer | MessageTransactionNftTransfer | null;
|
|
1223
1589
|
body: string;
|
|
1224
1590
|
envelope?: MessageEnvelope;
|
|
1225
1591
|
sentAt: string;
|
|
@@ -1393,42 +1759,317 @@ type PlaytimeTimeseries = {
|
|
|
1393
1759
|
to: string;
|
|
1394
1760
|
buckets: Array<PlaytimeTimeseriesBucket>;
|
|
1395
1761
|
};
|
|
1396
|
-
type PlaytimeTimeseriesBucket = {
|
|
1397
|
-
date: string;
|
|
1398
|
-
appId: PlaySessionAppId;
|
|
1399
|
-
sessionCount: number;
|
|
1400
|
-
totalDurationSeconds: number;
|
|
1762
|
+
type PlaytimeTimeseriesBucket = {
|
|
1763
|
+
date: string;
|
|
1764
|
+
appId: PlaySessionAppId;
|
|
1765
|
+
sessionCount: number;
|
|
1766
|
+
totalDurationSeconds: number;
|
|
1767
|
+
};
|
|
1768
|
+
type InventoryListResponse = {
|
|
1769
|
+
items: Array<InventoryHolding>;
|
|
1770
|
+
};
|
|
1771
|
+
type InventoryHolding = {
|
|
1772
|
+
collectionId: string;
|
|
1773
|
+
collectionAddress: string;
|
|
1774
|
+
chain: string;
|
|
1775
|
+
kind: "erc721" | "erc1155";
|
|
1776
|
+
tokenId: string;
|
|
1777
|
+
amount: string;
|
|
1778
|
+
name: string | null;
|
|
1779
|
+
description: string | null;
|
|
1780
|
+
imageAssetId: string | null;
|
|
1781
|
+
bannerAssetId: string | null;
|
|
1782
|
+
devMetadata: {
|
|
1783
|
+
[key: string]: unknown;
|
|
1784
|
+
};
|
|
1785
|
+
appId: string | null;
|
|
1786
|
+
appName: string | null;
|
|
1787
|
+
appLogoUrl: string | null;
|
|
1788
|
+
};
|
|
1789
|
+
type InventoryPendingPermitListResponse = {
|
|
1790
|
+
permits: Array<InventoryPendingPermit>;
|
|
1791
|
+
};
|
|
1792
|
+
type InventoryPendingPermit = {
|
|
1793
|
+
id: string;
|
|
1794
|
+
appId: string;
|
|
1795
|
+
itemId: string;
|
|
1796
|
+
amount: string;
|
|
1797
|
+
priceCents: number | null;
|
|
1798
|
+
gasSponsored: boolean;
|
|
1799
|
+
environment: "development" | "production";
|
|
1800
|
+
createdAt: string;
|
|
1801
|
+
tokenId: string;
|
|
1802
|
+
name: string | null;
|
|
1803
|
+
description: string | null;
|
|
1804
|
+
imageAssetId: string | null;
|
|
1805
|
+
chain: string;
|
|
1806
|
+
collectionAddress: string;
|
|
1807
|
+
kind: "erc721" | "erc1155";
|
|
1808
|
+
};
|
|
1809
|
+
type InventoryPermitRedeemResult = {
|
|
1810
|
+
mint: MintRequestResult;
|
|
1811
|
+
charge: {
|
|
1812
|
+
currency: "tron";
|
|
1813
|
+
gasCents: number;
|
|
1814
|
+
priceCents: number;
|
|
1815
|
+
totalCents: number;
|
|
1816
|
+
gasPaidBy: "user" | "developer";
|
|
1817
|
+
};
|
|
1818
|
+
};
|
|
1819
|
+
type MintRequestResult = {
|
|
1820
|
+
mintRequestId: string;
|
|
1821
|
+
txHash: string;
|
|
1822
|
+
status: "submitted" | "completed";
|
|
1823
|
+
mintedTokenId: string | null;
|
|
1824
|
+
};
|
|
1825
|
+
type MintRequestInput = {
|
|
1826
|
+
collectionAddress: string;
|
|
1827
|
+
chain: string;
|
|
1828
|
+
toWallet?: string;
|
|
1829
|
+
toUserId?: string;
|
|
1830
|
+
tokenId?: string;
|
|
1831
|
+
amount?: string;
|
|
1832
|
+
};
|
|
1833
|
+
type InventoryCollectionListResponse = {
|
|
1834
|
+
collections: Array<InventoryCollectionSummary>;
|
|
1835
|
+
};
|
|
1836
|
+
type InventoryCollectionSummary = {
|
|
1837
|
+
id: string;
|
|
1838
|
+
chain: string;
|
|
1839
|
+
collectionAddress: string;
|
|
1840
|
+
kind: "erc721" | "erc1155";
|
|
1841
|
+
name: string | null;
|
|
1842
|
+
environment: "development" | "production";
|
|
1843
|
+
};
|
|
1844
|
+
type InventoryRegistrationQuote = {
|
|
1845
|
+
itemCount: number;
|
|
1846
|
+
baselineUsdCents: number;
|
|
1847
|
+
gasUsdCents: number;
|
|
1848
|
+
tron: {
|
|
1849
|
+
baselineCents: number;
|
|
1850
|
+
gasCents: number;
|
|
1851
|
+
totalCents: number;
|
|
1852
|
+
};
|
|
1853
|
+
eth: {
|
|
1854
|
+
baselineWei: string;
|
|
1855
|
+
gasWei: string;
|
|
1856
|
+
totalWei: string;
|
|
1857
|
+
};
|
|
1858
|
+
};
|
|
1859
|
+
type InventoryItemRegistrationInput = {
|
|
1860
|
+
collectionAddress: string;
|
|
1861
|
+
chain: string;
|
|
1862
|
+
items: Array<InventoryItemRegistrationSpec>;
|
|
1863
|
+
};
|
|
1864
|
+
type InventoryItemRegistrationSpec = {
|
|
1865
|
+
name?: string | null;
|
|
1866
|
+
description?: string | null;
|
|
1867
|
+
devMetadata?: {
|
|
1868
|
+
[key: string]: unknown;
|
|
1869
|
+
};
|
|
1870
|
+
supplyType?: InventorySupplyType;
|
|
1871
|
+
maxSupply?: string | null;
|
|
1872
|
+
active?: boolean;
|
|
1873
|
+
};
|
|
1874
|
+
type InventorySupplyType = "capped" | "flexible" | "unlimited";
|
|
1875
|
+
type InventoryItemRegistrationResult = {
|
|
1876
|
+
items: Array<InventoryItemRecord>;
|
|
1877
|
+
charge: {
|
|
1878
|
+
currency: "tron";
|
|
1879
|
+
amountCents: number;
|
|
1880
|
+
baselineCents: number;
|
|
1881
|
+
gasCents: number;
|
|
1882
|
+
addItemTxHash: string;
|
|
1883
|
+
};
|
|
1884
|
+
};
|
|
1885
|
+
type InventoryItemRecord = {
|
|
1886
|
+
id: string;
|
|
1887
|
+
collectionId: string;
|
|
1888
|
+
collectionAddress: string;
|
|
1889
|
+
chain: string;
|
|
1890
|
+
kind: "erc721" | "erc1155";
|
|
1891
|
+
tokenId: string;
|
|
1892
|
+
name: string | null;
|
|
1893
|
+
description: string | null;
|
|
1894
|
+
imageAssetId: string | null;
|
|
1895
|
+
bannerAssetId: string | null;
|
|
1896
|
+
devMetadata: {
|
|
1897
|
+
[key: string]: unknown;
|
|
1898
|
+
};
|
|
1899
|
+
supplyType: InventorySupplyType | null;
|
|
1900
|
+
maxSupply: string | null;
|
|
1901
|
+
active: boolean;
|
|
1902
|
+
};
|
|
1903
|
+
type InventoryItemListResponse = {
|
|
1904
|
+
items: Array<InventoryItemRecord>;
|
|
1905
|
+
};
|
|
1906
|
+
type InventoryMintPermitRecord = {
|
|
1907
|
+
id: string;
|
|
1908
|
+
appId: string;
|
|
1909
|
+
itemId: string;
|
|
1910
|
+
userId: string;
|
|
1911
|
+
amount: string;
|
|
1912
|
+
priceCents: number | null;
|
|
1913
|
+
gasSponsored: boolean;
|
|
1914
|
+
status: "pending" | "redeemed" | "revoked";
|
|
1915
|
+
createdAt: string;
|
|
1916
|
+
};
|
|
1917
|
+
type InventoryMintPermitCreateInput = {
|
|
1918
|
+
toUserId: string;
|
|
1919
|
+
amount?: string;
|
|
1920
|
+
priceCents?: number | null;
|
|
1921
|
+
gasSponsored?: boolean;
|
|
1922
|
+
};
|
|
1923
|
+
type InventoryItemHoldersResponse = {
|
|
1924
|
+
stats: InventoryItemStats;
|
|
1925
|
+
holders: Array<InventoryItemHolder>;
|
|
1926
|
+
};
|
|
1927
|
+
type InventoryItemStats = {
|
|
1928
|
+
holderCount: number;
|
|
1929
|
+
walletCount: number;
|
|
1930
|
+
totalHeld: string;
|
|
1931
|
+
};
|
|
1932
|
+
type InventoryItemHolder = {
|
|
1933
|
+
walletAddress: string;
|
|
1934
|
+
userId: string | null;
|
|
1935
|
+
amount: string;
|
|
1936
|
+
};
|
|
1937
|
+
type InventoryVaultPermitRecord = {
|
|
1938
|
+
id: string;
|
|
1939
|
+
appId: string;
|
|
1940
|
+
itemId: string;
|
|
1941
|
+
userId: string;
|
|
1942
|
+
direction: "vault_in" | "withdraw";
|
|
1943
|
+
lockKind: "vault" | "burn" | null;
|
|
1944
|
+
amount: string;
|
|
1945
|
+
gasSponsored: boolean;
|
|
1946
|
+
status: "pending" | "redeemed" | "revoked";
|
|
1947
|
+
custodyId: string | null;
|
|
1948
|
+
createdAt: string;
|
|
1949
|
+
};
|
|
1950
|
+
type InventoryVaultPermitCreateInput = {
|
|
1951
|
+
toUserId: string;
|
|
1952
|
+
lockKind: "vault" | "burn";
|
|
1953
|
+
amount?: string;
|
|
1954
|
+
gasSponsored?: boolean;
|
|
1955
|
+
};
|
|
1956
|
+
type InventoryWithdrawPermitCreateInput = {
|
|
1957
|
+
custodyId: string;
|
|
1958
|
+
};
|
|
1959
|
+
type InventoryPendingVaultPermitListResponse = {
|
|
1960
|
+
permits: Array<InventoryPendingVaultPermit>;
|
|
1961
|
+
};
|
|
1962
|
+
type InventoryPendingVaultPermit = {
|
|
1963
|
+
id: string;
|
|
1964
|
+
appId: string;
|
|
1965
|
+
itemId: string;
|
|
1966
|
+
direction: "vault_in" | "withdraw";
|
|
1967
|
+
lockKind: "vault" | "burn" | null;
|
|
1968
|
+
amount: string;
|
|
1969
|
+
gasSponsored: boolean;
|
|
1970
|
+
environment: "development" | "production";
|
|
1971
|
+
custodyId: string | null;
|
|
1972
|
+
createdAt: string;
|
|
1973
|
+
tokenId: string;
|
|
1974
|
+
name: string | null;
|
|
1975
|
+
description: string | null;
|
|
1976
|
+
imageAssetId: string | null;
|
|
1977
|
+
chain: string;
|
|
1978
|
+
collectionAddress: string;
|
|
1979
|
+
kind: "erc721" | "erc1155";
|
|
1980
|
+
};
|
|
1981
|
+
type InventorySignedVaultPermit = {
|
|
1982
|
+
permitId: string;
|
|
1983
|
+
direction: "vault_in" | "withdraw";
|
|
1984
|
+
vault: string;
|
|
1985
|
+
collection: string;
|
|
1986
|
+
user: string;
|
|
1987
|
+
tokenId: string;
|
|
1988
|
+
amount: string;
|
|
1989
|
+
lockKind: "vault" | "burn" | null;
|
|
1990
|
+
destination: string | null;
|
|
1991
|
+
deadline: number;
|
|
1992
|
+
signature: string;
|
|
1993
|
+
};
|
|
1994
|
+
type InventoryRelayedVaultQuoteResponse = {
|
|
1995
|
+
direction: "vault_in" | "withdraw";
|
|
1996
|
+
collection: string;
|
|
1997
|
+
vault: string;
|
|
1998
|
+
chainId: number;
|
|
1999
|
+
user: string;
|
|
2000
|
+
tokenId: string;
|
|
2001
|
+
amount: string;
|
|
2002
|
+
nonce: string | null;
|
|
2003
|
+
deadline: number;
|
|
2004
|
+
feeCents: number;
|
|
2005
|
+
gasWei: string;
|
|
2006
|
+
gasPaidBy: "developer" | "user";
|
|
2007
|
+
requiresUserSignature: boolean;
|
|
2008
|
+
};
|
|
2009
|
+
type InventoryRelayedVaultSubmitResponse = {
|
|
2010
|
+
ok: boolean;
|
|
2011
|
+
txHash: string;
|
|
2012
|
+
chargedCents: number;
|
|
2013
|
+
gasPaidBy: "developer" | "user";
|
|
2014
|
+
};
|
|
2015
|
+
type InventoryRelayedVaultSubmitRequest = {
|
|
2016
|
+
userSignature?: string;
|
|
2017
|
+
deadline?: number;
|
|
2018
|
+
};
|
|
2019
|
+
type InventoryNftTransferQuoteResponse = {
|
|
2020
|
+
collection: string;
|
|
2021
|
+
chainId: number;
|
|
2022
|
+
from: string;
|
|
2023
|
+
to: string;
|
|
2024
|
+
tokenId: string;
|
|
2025
|
+
amount: string;
|
|
2026
|
+
nonce: string;
|
|
2027
|
+
deadline: number;
|
|
2028
|
+
feeCents: number;
|
|
2029
|
+
gasWei: string;
|
|
2030
|
+
selfPayAvailable: boolean;
|
|
2031
|
+
};
|
|
2032
|
+
type InventoryNftTransferQuoteRequest = {
|
|
2033
|
+
toUserId: string;
|
|
2034
|
+
collection: string;
|
|
2035
|
+
tokenId: string;
|
|
2036
|
+
amount?: string;
|
|
2037
|
+
};
|
|
2038
|
+
type InventoryNftTransferResponse = {
|
|
2039
|
+
ok: boolean;
|
|
2040
|
+
txHash: string;
|
|
2041
|
+
chargedCents: number;
|
|
2042
|
+
};
|
|
2043
|
+
type InventoryNftTransferRequest = {
|
|
2044
|
+
toUserId: string;
|
|
2045
|
+
collection: string;
|
|
2046
|
+
tokenId: string;
|
|
2047
|
+
amount?: string;
|
|
2048
|
+
deadline: number;
|
|
2049
|
+
userSignature: string;
|
|
2050
|
+
threadId?: string;
|
|
1401
2051
|
};
|
|
1402
|
-
type
|
|
1403
|
-
|
|
2052
|
+
type InventoryVaultCustodyListResponse = {
|
|
2053
|
+
custody: Array<InventoryVaultCustody>;
|
|
1404
2054
|
};
|
|
1405
|
-
type
|
|
2055
|
+
type InventoryVaultCustody = {
|
|
2056
|
+
id: string;
|
|
1406
2057
|
collectionId: string;
|
|
1407
2058
|
collectionAddress: string;
|
|
1408
2059
|
chain: string;
|
|
1409
2060
|
kind: "erc721" | "erc1155";
|
|
1410
2061
|
tokenId: string;
|
|
1411
2062
|
amount: string;
|
|
2063
|
+
lockKind: "vault" | "burn";
|
|
2064
|
+
vaultAddress: string;
|
|
2065
|
+
createdAt: string;
|
|
1412
2066
|
name: string | null;
|
|
2067
|
+
description: string | null;
|
|
1413
2068
|
imageAssetId: string | null;
|
|
1414
|
-
bannerAssetId: string | null;
|
|
1415
|
-
devMetadata: {
|
|
1416
|
-
[key: string]: unknown;
|
|
1417
|
-
};
|
|
1418
2069
|
};
|
|
1419
|
-
type
|
|
1420
|
-
|
|
2070
|
+
type InventoryVaultForceWithdrawResponse = {
|
|
2071
|
+
ok: boolean;
|
|
1421
2072
|
txHash: string;
|
|
1422
|
-
status: "submitted" | "completed";
|
|
1423
|
-
mintedTokenId: string | null;
|
|
1424
|
-
};
|
|
1425
|
-
type MintRequestInput = {
|
|
1426
|
-
collectionAddress: string;
|
|
1427
|
-
chain: string;
|
|
1428
|
-
toWallet?: string;
|
|
1429
|
-
toUserId?: string;
|
|
1430
|
-
tokenId?: string;
|
|
1431
|
-
amount?: string;
|
|
1432
2073
|
};
|
|
1433
2074
|
type NotificationListResponse = {
|
|
1434
2075
|
notifications: Array<NotificationItem>;
|
|
@@ -1458,6 +2099,18 @@ type NotificationItem = {
|
|
|
1458
2099
|
payload: AppPageRejectedNotificationPayload;
|
|
1459
2100
|
read: boolean;
|
|
1460
2101
|
createdAt: string;
|
|
2102
|
+
} | {
|
|
2103
|
+
id: string;
|
|
2104
|
+
kind: "bip_update_published";
|
|
2105
|
+
payload: BipUpdatePublishedNotificationPayload;
|
|
2106
|
+
read: boolean;
|
|
2107
|
+
createdAt: string;
|
|
2108
|
+
} | {
|
|
2109
|
+
id: string;
|
|
2110
|
+
kind: "bip_now_playable";
|
|
2111
|
+
payload: BipNowPlayableNotificationPayload;
|
|
2112
|
+
read: boolean;
|
|
2113
|
+
createdAt: string;
|
|
1461
2114
|
} | {
|
|
1462
2115
|
id: string;
|
|
1463
2116
|
kind: "app_participant_invite";
|
|
@@ -1488,14 +2141,25 @@ type FriendAcceptedNotificationPayload = {
|
|
|
1488
2141
|
type AppPageApprovedNotificationPayload = {
|
|
1489
2142
|
appId: string;
|
|
1490
2143
|
appName: string;
|
|
1491
|
-
scope: "publish" | "changes";
|
|
2144
|
+
scope: "publish" | "changes" | "bip_publish";
|
|
1492
2145
|
};
|
|
1493
2146
|
type AppPageRejectedNotificationPayload = {
|
|
1494
2147
|
appId: string;
|
|
1495
2148
|
appName: string;
|
|
1496
|
-
scope: "publish" | "changes";
|
|
2149
|
+
scope: "publish" | "changes" | "bip_publish";
|
|
1497
2150
|
notes: string;
|
|
1498
2151
|
};
|
|
2152
|
+
type BipUpdatePublishedNotificationPayload = {
|
|
2153
|
+
appId: string;
|
|
2154
|
+
appName: string;
|
|
2155
|
+
appSlug: string | null;
|
|
2156
|
+
updateId: string;
|
|
2157
|
+
};
|
|
2158
|
+
type BipNowPlayableNotificationPayload = {
|
|
2159
|
+
appId: string;
|
|
2160
|
+
appName: string;
|
|
2161
|
+
appSlug: string | null;
|
|
2162
|
+
};
|
|
1499
2163
|
type AppParticipantInviteNotificationPayload = {
|
|
1500
2164
|
appId: string;
|
|
1501
2165
|
appName: string;
|
|
@@ -1525,6 +2189,9 @@ type FriendListItem = {
|
|
|
1525
2189
|
onlineStatus: OnlineStatus;
|
|
1526
2190
|
};
|
|
1527
2191
|
type OnlineStatus = "online" | "offline";
|
|
2192
|
+
type AppFriendListResponse = {
|
|
2193
|
+
friends: Array<ThreadParticipant>;
|
|
2194
|
+
};
|
|
1528
2195
|
type FriendRequestDecision = {
|
|
1529
2196
|
decision: "accept" | "reject";
|
|
1530
2197
|
};
|
|
@@ -1597,7 +2264,7 @@ type ProfileRecentReview = {
|
|
|
1597
2264
|
appId: string;
|
|
1598
2265
|
appName: string;
|
|
1599
2266
|
appLogoUrl: string | null;
|
|
1600
|
-
|
|
2267
|
+
recommended: boolean;
|
|
1601
2268
|
body: string;
|
|
1602
2269
|
createdAt: string;
|
|
1603
2270
|
};
|
|
@@ -1654,17 +2321,20 @@ type CreateDeveloperAppChain = {
|
|
|
1654
2321
|
};
|
|
1655
2322
|
type UpdateDeveloperApp = {
|
|
1656
2323
|
name?: DeveloperAppName;
|
|
2324
|
+
slug?: AppPageSlug | null;
|
|
1657
2325
|
logoUrl?: string | null;
|
|
1658
2326
|
testAccess?: "private" | "public";
|
|
1659
2327
|
redirectUris?: Array<string>;
|
|
1660
2328
|
embedOrigins?: Array<EmbedOrigin>;
|
|
1661
2329
|
acceptedCurrencies?: AcceptedCurrencies;
|
|
2330
|
+
acceptedNetworks?: AcceptedNetworks;
|
|
1662
2331
|
paymentStatusWebhookUrl?: string | null;
|
|
1663
2332
|
paymentStatusWebhookUrlTest?: string | null;
|
|
1664
2333
|
};
|
|
1665
2334
|
type EmbedOrigin = string;
|
|
1666
2335
|
type AcceptedCurrencies = Array<PlatformCurrency>;
|
|
1667
2336
|
type PlatformCurrency = "eth" | "tron";
|
|
2337
|
+
type AcceptedNetworks = Array<PaymentNetwork> | null;
|
|
1668
2338
|
type DeveloperLogoUploadResponse = {
|
|
1669
2339
|
logoUrl: string | null;
|
|
1670
2340
|
};
|
|
@@ -1727,7 +2397,7 @@ type DeveloperAppWalletsResponse = {
|
|
|
1727
2397
|
};
|
|
1728
2398
|
type DeveloperAppWalletItem = {
|
|
1729
2399
|
chain: string;
|
|
1730
|
-
address: string;
|
|
2400
|
+
address: string | string;
|
|
1731
2401
|
custody: "server" | null;
|
|
1732
2402
|
walletId: string | null;
|
|
1733
2403
|
autoSweepEnabled: boolean;
|
|
@@ -1748,7 +2418,7 @@ type DeveloperAppProvisionWalletResponse = {
|
|
|
1748
2418
|
chain: string;
|
|
1749
2419
|
custody: "server";
|
|
1750
2420
|
walletId: string;
|
|
1751
|
-
address: string;
|
|
2421
|
+
address: string | string;
|
|
1752
2422
|
};
|
|
1753
2423
|
type DeveloperAppWithdrawResponse = {
|
|
1754
2424
|
appId: string;
|
|
@@ -1902,6 +2572,7 @@ type DeveloperProductionRequestPayload = {
|
|
|
1902
2572
|
type DeveloperAppItem = {
|
|
1903
2573
|
id: string;
|
|
1904
2574
|
name: DeveloperAppName;
|
|
2575
|
+
slug: AppPageSlug | null;
|
|
1905
2576
|
logoUrl: string | null;
|
|
1906
2577
|
environment: "development" | "production";
|
|
1907
2578
|
productionApprovedAt: string | null;
|
|
@@ -1910,6 +2581,7 @@ type DeveloperAppItem = {
|
|
|
1910
2581
|
redirectUris: Array<string>;
|
|
1911
2582
|
embedOrigins: Array<EmbedOrigin>;
|
|
1912
2583
|
acceptedCurrencies: AcceptedCurrencies;
|
|
2584
|
+
acceptedNetworks: AcceptedNetworks;
|
|
1913
2585
|
payoutAddresses: Array<DeveloperAppPayoutAddressItem>;
|
|
1914
2586
|
keys: Array<DeveloperAppKeyItem>;
|
|
1915
2587
|
pendingProductionRequestId: string | null;
|
|
@@ -1953,15 +2625,29 @@ type AppPageDraft = {
|
|
|
1953
2625
|
gallery: AppPageGallery;
|
|
1954
2626
|
chapters: AppPageChapters;
|
|
1955
2627
|
links: AppPageLinks;
|
|
2628
|
+
platforms: AppPagePlatforms;
|
|
2629
|
+
gameType: AppPageGameType;
|
|
2630
|
+
ageRating: AppPageAgeRating;
|
|
2631
|
+
languages: AppPageLanguages;
|
|
2632
|
+
releaseStatus: AppPageReleaseStatus;
|
|
1956
2633
|
firstPublishedAt: string | null;
|
|
1957
2634
|
reviewedAt: string | null;
|
|
1958
2635
|
reviewNotes: string | null;
|
|
1959
2636
|
hiddenAt: string | null;
|
|
1960
2637
|
hiddenReasonPublic: string | null;
|
|
1961
2638
|
pendingReview: boolean;
|
|
2639
|
+
bip: AppPageBipState;
|
|
2640
|
+
};
|
|
2641
|
+
type AppPageBipState = {
|
|
2642
|
+
enabled: boolean;
|
|
2643
|
+
status: "draft" | "pending_review" | "published" | "hidden";
|
|
2644
|
+
firstPublishedAt: string | null;
|
|
2645
|
+
reviewedAt: string | null;
|
|
2646
|
+
reviewNotes: string | null;
|
|
2647
|
+
hiddenAt: string | null;
|
|
2648
|
+
hiddenReasonPublic: string | null;
|
|
1962
2649
|
};
|
|
1963
2650
|
type UpdateAppPage = {
|
|
1964
|
-
slug?: AppPageSlug | null;
|
|
1965
2651
|
categories?: AppPageCategories;
|
|
1966
2652
|
tagline?: AppPageTagline | null;
|
|
1967
2653
|
bannerUrl?: string | null;
|
|
@@ -1975,10 +2661,18 @@ type UpdateAppPage = {
|
|
|
1975
2661
|
gallery?: AppPageGallery;
|
|
1976
2662
|
chapters?: AppPageChapters;
|
|
1977
2663
|
links?: AppPageLinks;
|
|
2664
|
+
platforms?: AppPagePlatforms;
|
|
2665
|
+
gameType?: AppPageGameType;
|
|
2666
|
+
ageRating?: AppPageAgeRating;
|
|
2667
|
+
languages?: AppPageLanguages;
|
|
2668
|
+
releaseStatus?: AppPageReleaseStatus;
|
|
1978
2669
|
};
|
|
1979
2670
|
type AppPageGalleryUploadResponse = {
|
|
1980
2671
|
url: string;
|
|
1981
2672
|
};
|
|
2673
|
+
type AppPageBipToggle = {
|
|
2674
|
+
enabled: boolean;
|
|
2675
|
+
};
|
|
1982
2676
|
type AdminActivePlayersResponse = {
|
|
1983
2677
|
players: Array<AdminActivePlayer>;
|
|
1984
2678
|
total: number;
|
|
@@ -2050,6 +2744,7 @@ type AdminAuditListResponse = {
|
|
|
2050
2744
|
total: number;
|
|
2051
2745
|
offset: number;
|
|
2052
2746
|
limit: number;
|
|
2747
|
+
nextCursor: string | null;
|
|
2053
2748
|
};
|
|
2054
2749
|
type AdminAuditListItem = {
|
|
2055
2750
|
id: string;
|
|
@@ -2117,6 +2812,11 @@ type AdminAppPageItem = {
|
|
|
2117
2812
|
hiddenAt: string | null;
|
|
2118
2813
|
hiddenReasonInternal: string | null;
|
|
2119
2814
|
pendingChangesSubmittedAt: string | null;
|
|
2815
|
+
bipEnabled: boolean;
|
|
2816
|
+
bipStatus: "draft" | "pending_review" | "published" | "hidden";
|
|
2817
|
+
bipFirstPublishedAt: string | null;
|
|
2818
|
+
bipHiddenAt: string | null;
|
|
2819
|
+
openReportCount: number;
|
|
2120
2820
|
};
|
|
2121
2821
|
type AdminAppPageStatusResponse = {
|
|
2122
2822
|
status: "draft" | "pending_review" | "published" | "hidden";
|
|
@@ -2142,6 +2842,25 @@ type AdminAppPageDiffField = {
|
|
|
2142
2842
|
from: string;
|
|
2143
2843
|
to: string;
|
|
2144
2844
|
};
|
|
2845
|
+
type AdminAppPageBipStatusResponse = {
|
|
2846
|
+
bipStatus: "draft" | "pending_review" | "published" | "hidden";
|
|
2847
|
+
};
|
|
2848
|
+
type AdminAppContentReportListResponse = {
|
|
2849
|
+
reports: Array<AdminAppContentReportItem>;
|
|
2850
|
+
total: number;
|
|
2851
|
+
hasMore: boolean;
|
|
2852
|
+
};
|
|
2853
|
+
type AdminAppContentReportItem = {
|
|
2854
|
+
id: string;
|
|
2855
|
+
category: AppContentReportCategory;
|
|
2856
|
+
details: string | null;
|
|
2857
|
+
status: AppContentReportStatus;
|
|
2858
|
+
acknowledgedAt: string | null;
|
|
2859
|
+
createdAt: string;
|
|
2860
|
+
appId: string;
|
|
2861
|
+
appName: string;
|
|
2862
|
+
appSlug: string | null;
|
|
2863
|
+
};
|
|
2145
2864
|
type PlatformFeesResponse = {
|
|
2146
2865
|
purchaseFeeBps: number;
|
|
2147
2866
|
stakeFeeBps: number;
|
|
@@ -2322,6 +3041,13 @@ type AppealResolveRequest = {
|
|
|
2322
3041
|
decision: "refund" | "dismiss";
|
|
2323
3042
|
notes?: string;
|
|
2324
3043
|
};
|
|
3044
|
+
type PaymentRatesResponse = {
|
|
3045
|
+
asOf: string;
|
|
3046
|
+
ethUsd: number | null;
|
|
3047
|
+
solUsd: number | null;
|
|
3048
|
+
solLamportsPerCent: number | null;
|
|
3049
|
+
tronUsdPerToken: number;
|
|
3050
|
+
};
|
|
2325
3051
|
type AppealFileResponse = {
|
|
2326
3052
|
appealId: string;
|
|
2327
3053
|
paymentId: string;
|
|
@@ -2370,7 +3096,7 @@ type OauthPaymentPayoutRequest = {
|
|
|
2370
3096
|
metadata?: PaymentMetadata;
|
|
2371
3097
|
};
|
|
2372
3098
|
type OauthPaymentDistributeResponse = {
|
|
2373
|
-
distributionId
|
|
3099
|
+
distributionId?: string;
|
|
2374
3100
|
txHash: string;
|
|
2375
3101
|
blockNumber: string;
|
|
2376
3102
|
potId: string;
|
|
@@ -2493,7 +3219,7 @@ declare function listActivePlayers(context: TransportContext, input: {
|
|
|
2493
3219
|
//#region src/admin/app-pages.d.ts
|
|
2494
3220
|
declare function listAppPages(context: TransportContext, input: {
|
|
2495
3221
|
readonly bearer: string;
|
|
2496
|
-
readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes";
|
|
3222
|
+
readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes" | "bip_pending_review";
|
|
2497
3223
|
}): Promise<AdminAppPageListResponse>;
|
|
2498
3224
|
declare function getAppPageChanges(context: TransportContext, input: {
|
|
2499
3225
|
readonly bearer: string;
|
|
@@ -2518,6 +3244,20 @@ declare function reviewAppPage(context: TransportContext, input: {
|
|
|
2518
3244
|
readonly appId: string;
|
|
2519
3245
|
readonly body: ReviewAppPage;
|
|
2520
3246
|
}): Promise<AdminAppPageStatusResponse>;
|
|
3247
|
+
declare function reviewAppPageBip(context: TransportContext, input: {
|
|
3248
|
+
readonly bearer: string;
|
|
3249
|
+
readonly appId: string;
|
|
3250
|
+
readonly body: ReviewAppPage;
|
|
3251
|
+
}): Promise<AdminAppPageBipStatusResponse>;
|
|
3252
|
+
declare function hideAppPageBip(context: TransportContext, input: {
|
|
3253
|
+
readonly bearer: string;
|
|
3254
|
+
readonly appId: string;
|
|
3255
|
+
readonly body: HideAppPage;
|
|
3256
|
+
}): Promise<AdminAppPageBipStatusResponse>;
|
|
3257
|
+
declare function unhideAppPageBip(context: TransportContext, input: {
|
|
3258
|
+
readonly bearer: string;
|
|
3259
|
+
readonly appId: string;
|
|
3260
|
+
}): Promise<AdminAppPageBipStatusResponse>;
|
|
2521
3261
|
//#endregion
|
|
2522
3262
|
//#region src/admin/appeals.d.ts
|
|
2523
3263
|
declare function listAppealQueue(context: TransportContext, input: {
|
|
@@ -2549,6 +3289,19 @@ declare function resolveAppeal(context: TransportContext, input: {
|
|
|
2549
3289
|
readonly body: AppealResolveRequest;
|
|
2550
3290
|
}): Promise<AppealResolveSignedResponse>;
|
|
2551
3291
|
//#endregion
|
|
3292
|
+
//#region src/admin/content-reports.d.ts
|
|
3293
|
+
declare function listAdminContentReports(context: TransportContext, input: {
|
|
3294
|
+
readonly bearer: string;
|
|
3295
|
+
readonly status?: "open" | "acknowledged" | "dismissed" | "all";
|
|
3296
|
+
readonly limit?: number;
|
|
3297
|
+
readonly offset?: number;
|
|
3298
|
+
}): Promise<AdminAppContentReportListResponse>;
|
|
3299
|
+
declare function triageAdminContentReport(context: TransportContext, input: {
|
|
3300
|
+
readonly bearer: string;
|
|
3301
|
+
readonly reportId: string;
|
|
3302
|
+
readonly status: "acknowledged" | "dismissed";
|
|
3303
|
+
}): Promise<AppContentReport>;
|
|
3304
|
+
//#endregion
|
|
2552
3305
|
//#region src/admin/developers.d.ts
|
|
2553
3306
|
declare function listDeveloperRequests(context: TransportContext, input: {
|
|
2554
3307
|
readonly bearer: string;
|
|
@@ -2564,6 +3317,12 @@ declare function listDevelopers(context: TransportContext, input: {
|
|
|
2564
3317
|
readonly bearer: string;
|
|
2565
3318
|
}): Promise<AdminDeveloperListResponse>;
|
|
2566
3319
|
//#endregion
|
|
3320
|
+
//#region src/admin/inventory-vault.d.ts
|
|
3321
|
+
declare function forceWithdrawVaultCustody(context: TransportContext, input: {
|
|
3322
|
+
readonly bearer: string;
|
|
3323
|
+
readonly custodyId: string;
|
|
3324
|
+
}): Promise<InventoryVaultForceWithdrawResponse>;
|
|
3325
|
+
//#endregion
|
|
2567
3326
|
//#region src/admin/payments.d.ts
|
|
2568
3327
|
declare function getPlatformFees(context: TransportContext, input: {
|
|
2569
3328
|
readonly bearer: string;
|
|
@@ -2672,6 +3431,7 @@ declare function listAudit(context: TransportContext, input: {
|
|
|
2672
3431
|
readonly actorId?: string;
|
|
2673
3432
|
readonly targetType?: string;
|
|
2674
3433
|
readonly targetId?: string;
|
|
3434
|
+
readonly cursor?: string;
|
|
2675
3435
|
readonly offset?: number;
|
|
2676
3436
|
readonly limit?: number;
|
|
2677
3437
|
}): Promise<AdminAuditListResponse>;
|
|
@@ -2682,6 +3442,113 @@ declare function getAppPage(context: TransportContext, input: {
|
|
|
2682
3442
|
readonly slug: string;
|
|
2683
3443
|
}): Promise<PublicAppPage>;
|
|
2684
3444
|
//#endregion
|
|
3445
|
+
//#region src/catalog/bip-updates.d.ts
|
|
3446
|
+
declare function listBipUpdates(context: TransportContext, input: {
|
|
3447
|
+
readonly bearer?: string;
|
|
3448
|
+
readonly slug: string;
|
|
3449
|
+
readonly limit?: number;
|
|
3450
|
+
readonly offset?: number;
|
|
3451
|
+
}): Promise<BipUpdateListResponse>;
|
|
3452
|
+
declare function listBipUpdateComments(context: TransportContext, input: {
|
|
3453
|
+
readonly bearer?: string;
|
|
3454
|
+
readonly slug: string;
|
|
3455
|
+
readonly updateId: string;
|
|
3456
|
+
readonly limit?: number;
|
|
3457
|
+
readonly offset?: number;
|
|
3458
|
+
}): Promise<BipUpdateCommentListResponse>;
|
|
3459
|
+
declare function getMyBipUpdateReactions(context: TransportContext, input: {
|
|
3460
|
+
readonly bearer: string;
|
|
3461
|
+
readonly slug: string;
|
|
3462
|
+
}): Promise<MyBipUpdateReactionsResponse>;
|
|
3463
|
+
declare function setBipUpdateReaction(context: TransportContext, input: {
|
|
3464
|
+
readonly bearer: string;
|
|
3465
|
+
readonly slug: string;
|
|
3466
|
+
readonly updateId: string;
|
|
3467
|
+
readonly body: SetBipUpdateReactionRequest;
|
|
3468
|
+
}): Promise<SetBipUpdateReactionResponse>;
|
|
3469
|
+
declare function commentOnBipUpdate(context: TransportContext, input: {
|
|
3470
|
+
readonly bearer: string;
|
|
3471
|
+
readonly slug: string;
|
|
3472
|
+
readonly updateId: string;
|
|
3473
|
+
readonly body: string;
|
|
3474
|
+
}): Promise<CreateBipUpdateCommentResponse>;
|
|
3475
|
+
declare function deleteBipUpdateComment(context: TransportContext, input: {
|
|
3476
|
+
readonly bearer: string;
|
|
3477
|
+
readonly slug: string;
|
|
3478
|
+
readonly commentId: string;
|
|
3479
|
+
}): Promise<DeleteBipUpdateCommentResponse>;
|
|
3480
|
+
declare function listDeveloperBipUpdates(context: TransportContext, input: {
|
|
3481
|
+
readonly bearer: string;
|
|
3482
|
+
readonly appId: string;
|
|
3483
|
+
readonly limit?: number;
|
|
3484
|
+
readonly offset?: number;
|
|
3485
|
+
}): Promise<BipUpdateListResponse>;
|
|
3486
|
+
declare function createBipUpdate(context: TransportContext, input: {
|
|
3487
|
+
readonly bearer: string;
|
|
3488
|
+
readonly appId: string;
|
|
3489
|
+
readonly body: CreateBipUpdateRequest;
|
|
3490
|
+
}): Promise<BipUpdate>;
|
|
3491
|
+
declare function updateBipUpdate(context: TransportContext, input: {
|
|
3492
|
+
readonly bearer: string;
|
|
3493
|
+
readonly appId: string;
|
|
3494
|
+
readonly updateId: string;
|
|
3495
|
+
readonly body: UpdateBipUpdateRequest;
|
|
3496
|
+
}): Promise<BipUpdate>;
|
|
3497
|
+
declare function deleteBipUpdate(context: TransportContext, input: {
|
|
3498
|
+
readonly bearer: string;
|
|
3499
|
+
readonly appId: string;
|
|
3500
|
+
readonly updateId: string;
|
|
3501
|
+
}): Promise<DeleteBipUpdateResponse>;
|
|
3502
|
+
declare function pinBipUpdate(context: TransportContext, input: {
|
|
3503
|
+
readonly bearer: string;
|
|
3504
|
+
readonly appId: string;
|
|
3505
|
+
readonly updateId: string;
|
|
3506
|
+
}): Promise<BipUpdate>;
|
|
3507
|
+
declare function unpinBipUpdate(context: TransportContext, input: {
|
|
3508
|
+
readonly bearer: string;
|
|
3509
|
+
readonly appId: string;
|
|
3510
|
+
readonly updateId: string;
|
|
3511
|
+
}): Promise<BipUpdate>;
|
|
3512
|
+
declare function uploadBipUpdateMedia(context: TransportContext, input: {
|
|
3513
|
+
readonly bearer: string;
|
|
3514
|
+
readonly appId: string;
|
|
3515
|
+
readonly file: Blob;
|
|
3516
|
+
readonly filename: string;
|
|
3517
|
+
readonly contentType: string;
|
|
3518
|
+
}): Promise<BipUpdateMediaUploadResponse>;
|
|
3519
|
+
declare function getBipInterestCount(context: TransportContext, input: {
|
|
3520
|
+
readonly bearer?: string;
|
|
3521
|
+
readonly slug: string;
|
|
3522
|
+
}): Promise<BipInterestCountResponse>;
|
|
3523
|
+
declare function getMyBipEngagement(context: TransportContext, input: {
|
|
3524
|
+
readonly bearer: string;
|
|
3525
|
+
readonly slug: string;
|
|
3526
|
+
}): Promise<BipEngagementResponse>;
|
|
3527
|
+
declare function registerBipInterest(context: TransportContext, input: {
|
|
3528
|
+
readonly bearer: string;
|
|
3529
|
+
readonly slug: string;
|
|
3530
|
+
readonly interested: boolean;
|
|
3531
|
+
}): Promise<BipEngagementResponse>;
|
|
3532
|
+
declare function subscribeBipUpdates(context: TransportContext, input: {
|
|
3533
|
+
readonly bearer: string;
|
|
3534
|
+
readonly slug: string;
|
|
3535
|
+
readonly subscribed: boolean;
|
|
3536
|
+
}): Promise<BipEngagementResponse>;
|
|
3537
|
+
//#endregion
|
|
3538
|
+
//#region src/catalog/build-in-public.d.ts
|
|
3539
|
+
declare function getBipDirectory(context: TransportContext, input: {
|
|
3540
|
+
readonly bearer?: string;
|
|
3541
|
+
readonly genre?: string;
|
|
3542
|
+
readonly q?: string;
|
|
3543
|
+
readonly sort?: "newest" | "top";
|
|
3544
|
+
readonly before?: string;
|
|
3545
|
+
readonly limit?: number;
|
|
3546
|
+
}): Promise<LibraryListResponse>;
|
|
3547
|
+
declare function getBipPage(context: TransportContext, input: {
|
|
3548
|
+
readonly bearer?: string;
|
|
3549
|
+
readonly slug: string;
|
|
3550
|
+
}): Promise<PublicBipPage>;
|
|
3551
|
+
//#endregion
|
|
2685
3552
|
//#region src/catalog/content-reports.d.ts
|
|
2686
3553
|
declare function submitAppContentReport(context: TransportContext, input: {
|
|
2687
3554
|
readonly appId: string;
|
|
@@ -2694,6 +3561,7 @@ declare function getLibrary(context: TransportContext, input: {
|
|
|
2694
3561
|
readonly bearer?: string;
|
|
2695
3562
|
readonly genre?: string;
|
|
2696
3563
|
readonly q?: string;
|
|
3564
|
+
readonly sort?: "newest" | "top";
|
|
2697
3565
|
readonly before?: string;
|
|
2698
3566
|
readonly limit?: number;
|
|
2699
3567
|
}): Promise<LibraryListResponse>;
|
|
@@ -2726,6 +3594,41 @@ declare function deleteMyGameReview(context: TransportContext, input: {
|
|
|
2726
3594
|
readonly slug: string;
|
|
2727
3595
|
readonly bearer: string;
|
|
2728
3596
|
}): Promise<MyReviewResponse>;
|
|
3597
|
+
declare function getMyGameReviewReactions(context: TransportContext, input: {
|
|
3598
|
+
readonly slug: string;
|
|
3599
|
+
readonly bearer: string;
|
|
3600
|
+
}): Promise<MyReviewReactionsResponse>;
|
|
3601
|
+
declare function setMyGameReviewReaction(context: TransportContext, input: {
|
|
3602
|
+
readonly slug: string;
|
|
3603
|
+
readonly reviewId: string;
|
|
3604
|
+
readonly bearer: string;
|
|
3605
|
+
readonly reaction: SetReviewReactionRequest;
|
|
3606
|
+
}): Promise<SetReviewReactionResponse>;
|
|
3607
|
+
declare function tipGameReview(context: TransportContext, input: {
|
|
3608
|
+
readonly slug: string;
|
|
3609
|
+
readonly reviewId: string;
|
|
3610
|
+
readonly bearer: string;
|
|
3611
|
+
readonly tip: TipReviewRequest;
|
|
3612
|
+
readonly idempotencyKey?: string;
|
|
3613
|
+
}): Promise<TipReviewResponse>;
|
|
3614
|
+
declare function listGameReviewComments(context: TransportContext, input: {
|
|
3615
|
+
readonly slug: string;
|
|
3616
|
+
readonly reviewId: string;
|
|
3617
|
+
readonly bearer?: string;
|
|
3618
|
+
readonly limit?: number;
|
|
3619
|
+
readonly offset?: number;
|
|
3620
|
+
}): Promise<ReviewCommentListResponse>;
|
|
3621
|
+
declare function commentOnGameReview(context: TransportContext, input: {
|
|
3622
|
+
readonly slug: string;
|
|
3623
|
+
readonly reviewId: string;
|
|
3624
|
+
readonly bearer: string;
|
|
3625
|
+
readonly comment: CreateReviewCommentRequest;
|
|
3626
|
+
}): Promise<CreateReviewCommentResponse>;
|
|
3627
|
+
declare function deleteGameReviewComment(context: TransportContext, input: {
|
|
3628
|
+
readonly slug: string;
|
|
3629
|
+
readonly commentId: string;
|
|
3630
|
+
readonly bearer: string;
|
|
3631
|
+
}): Promise<DeleteReviewCommentResponse>;
|
|
2729
3632
|
declare function replyToGameReview(context: TransportContext, input: {
|
|
2730
3633
|
readonly appId: string;
|
|
2731
3634
|
readonly reviewId: string;
|
|
@@ -2817,6 +3720,9 @@ declare function getPaymentHistory(context: TransportContext, input: {
|
|
|
2817
3720
|
readonly before?: string;
|
|
2818
3721
|
}): Promise<PaymentHistoryResponse>;
|
|
2819
3722
|
//#endregion
|
|
3723
|
+
//#region src/dashboard/rates.d.ts
|
|
3724
|
+
declare function getPaymentRates(context: TransportContext): Promise<PaymentRatesResponse>;
|
|
3725
|
+
//#endregion
|
|
2820
3726
|
//#region src/developer/api-keys.d.ts
|
|
2821
3727
|
declare function createDeveloperApiKey(context: TransportContext, input: {
|
|
2822
3728
|
readonly bearer: string;
|
|
@@ -2954,6 +3860,53 @@ declare function updateDeveloperAppContentReportStatus(context: TransportContext
|
|
|
2954
3860
|
readonly status: "acknowledged" | "dismissed";
|
|
2955
3861
|
}): Promise<AppContentReport>;
|
|
2956
3862
|
//#endregion
|
|
3863
|
+
//#region src/developer/inventory.d.ts
|
|
3864
|
+
declare function quoteDeveloperAppInventoryRegistration(context: TransportContext, input: {
|
|
3865
|
+
readonly bearer: string;
|
|
3866
|
+
readonly appId: string;
|
|
3867
|
+
readonly registration: InventoryItemRegistrationInput;
|
|
3868
|
+
}): Promise<InventoryRegistrationQuote>;
|
|
3869
|
+
declare function registerDeveloperAppInventoryItem(context: TransportContext, input: {
|
|
3870
|
+
readonly bearer: string;
|
|
3871
|
+
readonly appId: string;
|
|
3872
|
+
readonly registration: InventoryItemRegistrationInput;
|
|
3873
|
+
}): Promise<InventoryItemRegistrationResult>;
|
|
3874
|
+
declare function listDeveloperAppInventoryCollections(context: TransportContext, input: {
|
|
3875
|
+
readonly bearer: string;
|
|
3876
|
+
readonly appId: string;
|
|
3877
|
+
}): Promise<InventoryCollectionListResponse>;
|
|
3878
|
+
declare function listDeveloperAppInventoryItems(context: TransportContext, input: {
|
|
3879
|
+
readonly bearer: string;
|
|
3880
|
+
readonly appId: string;
|
|
3881
|
+
}): Promise<InventoryItemListResponse>;
|
|
3882
|
+
declare function createDeveloperAppMintPermit(context: TransportContext, input: {
|
|
3883
|
+
readonly bearer: string;
|
|
3884
|
+
readonly appId: string;
|
|
3885
|
+
readonly itemId: string;
|
|
3886
|
+
readonly grant: InventoryMintPermitCreateInput;
|
|
3887
|
+
}): Promise<InventoryMintPermitRecord>;
|
|
3888
|
+
declare function getDeveloperAppInventoryItemHolders(context: TransportContext, input: {
|
|
3889
|
+
readonly bearer: string;
|
|
3890
|
+
readonly appId: string;
|
|
3891
|
+
readonly itemId: string;
|
|
3892
|
+
}): Promise<InventoryItemHoldersResponse>;
|
|
3893
|
+
declare function uploadDeveloperAppInventoryItemImage(context: TransportContext, input: {
|
|
3894
|
+
readonly bearer: string;
|
|
3895
|
+
readonly appId: string;
|
|
3896
|
+
readonly itemId: string;
|
|
3897
|
+
readonly file: Blob | ArrayBufferView | ArrayBuffer;
|
|
3898
|
+
readonly filename: string;
|
|
3899
|
+
readonly contentType: string;
|
|
3900
|
+
}): Promise<InventoryItemRecord>;
|
|
3901
|
+
declare function uploadDeveloperAppInventoryItemBanner(context: TransportContext, input: {
|
|
3902
|
+
readonly bearer: string;
|
|
3903
|
+
readonly appId: string;
|
|
3904
|
+
readonly itemId: string;
|
|
3905
|
+
readonly file: Blob | ArrayBufferView | ArrayBuffer;
|
|
3906
|
+
readonly filename: string;
|
|
3907
|
+
readonly contentType: string;
|
|
3908
|
+
}): Promise<InventoryItemRecord>;
|
|
3909
|
+
//#endregion
|
|
2957
3910
|
//#region src/developer/pages.d.ts
|
|
2958
3911
|
declare function getDeveloperAppPage(context: TransportContext, input: {
|
|
2959
3912
|
readonly bearer: string;
|
|
@@ -3012,6 +3965,19 @@ declare function unpublishAppPage(context: TransportContext, input: {
|
|
|
3012
3965
|
readonly bearer: string;
|
|
3013
3966
|
readonly appId: string;
|
|
3014
3967
|
}): Promise<AppPageDraft>;
|
|
3968
|
+
declare function setAppPageBip(context: TransportContext, input: {
|
|
3969
|
+
readonly bearer: string;
|
|
3970
|
+
readonly appId: string;
|
|
3971
|
+
readonly body: AppPageBipToggle;
|
|
3972
|
+
}): Promise<AppPageDraft>;
|
|
3973
|
+
declare function submitAppPageBipForReview(context: TransportContext, input: {
|
|
3974
|
+
readonly bearer: string;
|
|
3975
|
+
readonly appId: string;
|
|
3976
|
+
}): Promise<AppPageDraft>;
|
|
3977
|
+
declare function unpublishAppPageBip(context: TransportContext, input: {
|
|
3978
|
+
readonly bearer: string;
|
|
3979
|
+
readonly appId: string;
|
|
3980
|
+
}): Promise<AppPageDraft>;
|
|
3015
3981
|
//#endregion
|
|
3016
3982
|
//#region src/developer/participants.d.ts
|
|
3017
3983
|
declare function listDeveloperAppParticipants(context: TransportContext, input: {
|
|
@@ -3078,6 +4044,68 @@ declare function uploadMultipart(context: TransportContext, input: {
|
|
|
3078
4044
|
readonly contentType: string;
|
|
3079
4045
|
}): Promise<unknown>;
|
|
3080
4046
|
//#endregion
|
|
4047
|
+
//#region src/developer/vault.d.ts
|
|
4048
|
+
declare function createDeveloperVaultPermit(context: TransportContext, input: {
|
|
4049
|
+
readonly bearer: string;
|
|
4050
|
+
readonly appId: string;
|
|
4051
|
+
readonly itemId: string;
|
|
4052
|
+
readonly grant: InventoryVaultPermitCreateInput;
|
|
4053
|
+
}): Promise<InventoryVaultPermitRecord>;
|
|
4054
|
+
declare function createDeveloperWithdrawPermit(context: TransportContext, input: {
|
|
4055
|
+
readonly bearer: string;
|
|
4056
|
+
readonly appId: string;
|
|
4057
|
+
readonly itemId: string;
|
|
4058
|
+
readonly grant: InventoryWithdrawPermitCreateInput;
|
|
4059
|
+
}): Promise<InventoryVaultPermitRecord>;
|
|
4060
|
+
//#endregion
|
|
4061
|
+
//#region src/events/inventory-socket.d.ts
|
|
4062
|
+
declare const inventoryUpdateEventSchema: z.ZodObject<{
|
|
4063
|
+
event: z.ZodLiteral<"inventory.updated">;
|
|
4064
|
+
deliveredAt: z.ZodString;
|
|
4065
|
+
environment: z.ZodEnum<{
|
|
4066
|
+
development: "development";
|
|
4067
|
+
production: "production";
|
|
4068
|
+
}>;
|
|
4069
|
+
subject: z.ZodString;
|
|
4070
|
+
collectionId: z.ZodString;
|
|
4071
|
+
collectionAddress: z.ZodString;
|
|
4072
|
+
chain: z.ZodString;
|
|
4073
|
+
kind: z.ZodEnum<{
|
|
4074
|
+
erc721: "erc721";
|
|
4075
|
+
erc1155: "erc1155";
|
|
4076
|
+
}>;
|
|
4077
|
+
tokenId: z.ZodString;
|
|
4078
|
+
direction: z.ZodEnum<{
|
|
4079
|
+
credit: "credit";
|
|
4080
|
+
debit: "debit";
|
|
4081
|
+
}>;
|
|
4082
|
+
amount: z.ZodString;
|
|
4083
|
+
balance: z.ZodString;
|
|
4084
|
+
}, z.core.$strip>;
|
|
4085
|
+
type InventoryUpdateEvent = z.infer<typeof inventoryUpdateEventSchema>;
|
|
4086
|
+
type OauthInventoryEventsSubscriberLifecycle = {
|
|
4087
|
+
onOpen?: () => void;
|
|
4088
|
+
onSubscribed?: (appId: string) => void;
|
|
4089
|
+
onMessage: (body: InventoryUpdateEvent) => void | Promise<void>;
|
|
4090
|
+
onClose?: (error: TronWsCloseError) => void;
|
|
4091
|
+
onError?: (error: Error) => void;
|
|
4092
|
+
};
|
|
4093
|
+
type OauthInventoryEventsSubscriberOptions = {
|
|
4094
|
+
readonly issuer: string;
|
|
4095
|
+
readonly clientId: string;
|
|
4096
|
+
readonly clientSecret: string;
|
|
4097
|
+
readonly logger?: Logger;
|
|
4098
|
+
readonly lifecycle: OauthInventoryEventsSubscriberLifecycle;
|
|
4099
|
+
readonly initialBackoffMs?: number;
|
|
4100
|
+
readonly maxBackoffMs?: number;
|
|
4101
|
+
readonly shouldReconnect?: (error: TronWsCloseError) => boolean;
|
|
4102
|
+
readonly WebSocketImpl?: typeof globalThis.WebSocket;
|
|
4103
|
+
};
|
|
4104
|
+
type OauthInventoryEventsSubscriber = {
|
|
4105
|
+
readonly stop: () => void;
|
|
4106
|
+
};
|
|
4107
|
+
declare function startOauthInventoryEventsSubscriber(options: OauthInventoryEventsSubscriberOptions): OauthInventoryEventsSubscriber;
|
|
4108
|
+
//#endregion
|
|
3081
4109
|
//#region src/webhook/verify.d.ts
|
|
3082
4110
|
declare const oauthPaymentWebhookBodySchema: z.ZodObject<{
|
|
3083
4111
|
event: z.ZodEnum<{
|
|
@@ -3152,6 +4180,7 @@ type OauthPaymentEventsSubscriberOptions = {
|
|
|
3152
4180
|
readonly maxBackoffMs?: number;
|
|
3153
4181
|
readonly shouldReconnect?: (error: TronWsCloseError) => boolean;
|
|
3154
4182
|
readonly WebSocketImpl?: typeof globalThis.WebSocket;
|
|
4183
|
+
readonly disableEventAck?: boolean;
|
|
3155
4184
|
};
|
|
3156
4185
|
type OauthPaymentEventsSubscriber = {
|
|
3157
4186
|
readonly stop: () => void;
|
|
@@ -3166,12 +4195,55 @@ declare function listInventoryForApp(context: TransportContext, input: {
|
|
|
3166
4195
|
readonly bearer: string;
|
|
3167
4196
|
}): Promise<InventoryListResponse>;
|
|
3168
4197
|
//#endregion
|
|
4198
|
+
//#region src/inventory/nft-transfer.d.ts
|
|
4199
|
+
declare function quoteNftTransfer(context: TransportContext, input: {
|
|
4200
|
+
readonly bearer: string;
|
|
4201
|
+
readonly body: InventoryNftTransferQuoteRequest;
|
|
4202
|
+
}): Promise<InventoryNftTransferQuoteResponse>;
|
|
4203
|
+
declare function executeNftTransfer(context: TransportContext, input: {
|
|
4204
|
+
readonly bearer: string;
|
|
4205
|
+
readonly body: InventoryNftTransferRequest;
|
|
4206
|
+
}): Promise<InventoryNftTransferResponse>;
|
|
4207
|
+
//#endregion
|
|
4208
|
+
//#region src/inventory/permits.d.ts
|
|
4209
|
+
declare function listInventoryMintPermits(context: TransportContext, input: {
|
|
4210
|
+
readonly bearer: string;
|
|
4211
|
+
}): Promise<InventoryPendingPermitListResponse>;
|
|
4212
|
+
declare function redeemInventoryMintPermit(context: TransportContext, input: {
|
|
4213
|
+
readonly bearer: string;
|
|
4214
|
+
readonly permitId: string;
|
|
4215
|
+
}): Promise<InventoryPermitRedeemResult>;
|
|
4216
|
+
//#endregion
|
|
3169
4217
|
//#region src/inventory/request-mint.d.ts
|
|
3170
4218
|
declare function requestMint(context: TransportContext, input: {
|
|
3171
4219
|
readonly appBearer: string;
|
|
3172
4220
|
readonly body: MintRequestInput;
|
|
3173
4221
|
}): Promise<MintRequestResult>;
|
|
3174
4222
|
//#endregion
|
|
4223
|
+
//#region src/inventory/vault.d.ts
|
|
4224
|
+
declare function listInventoryVaultPermits(context: TransportContext, input: {
|
|
4225
|
+
readonly bearer: string;
|
|
4226
|
+
}): Promise<InventoryPendingVaultPermitListResponse>;
|
|
4227
|
+
declare function signInventoryVaultPermit(context: TransportContext, input: {
|
|
4228
|
+
readonly bearer: string;
|
|
4229
|
+
readonly permitId: string;
|
|
4230
|
+
}): Promise<InventorySignedVaultPermit>;
|
|
4231
|
+
declare function quoteRelayedVaultPermit(context: TransportContext, input: {
|
|
4232
|
+
readonly bearer: string;
|
|
4233
|
+
readonly permitId: string;
|
|
4234
|
+
}): Promise<InventoryRelayedVaultQuoteResponse>;
|
|
4235
|
+
declare function submitRelayedVaultPermit(context: TransportContext, input: {
|
|
4236
|
+
readonly bearer: string;
|
|
4237
|
+
readonly permitId: string;
|
|
4238
|
+
readonly body: InventoryRelayedVaultSubmitRequest;
|
|
4239
|
+
}): Promise<InventoryRelayedVaultSubmitResponse>;
|
|
4240
|
+
declare function listInventoryVaulted(context: TransportContext, input: {
|
|
4241
|
+
readonly bearer: string;
|
|
4242
|
+
}): Promise<InventoryVaultCustodyListResponse>;
|
|
4243
|
+
declare function listOauthInventoryVaulted(context: TransportContext, input: {
|
|
4244
|
+
readonly bearer: string;
|
|
4245
|
+
}): Promise<InventoryVaultCustodyListResponse>;
|
|
4246
|
+
//#endregion
|
|
3175
4247
|
//#region src/messaging/dm-key-backup.d.ts
|
|
3176
4248
|
declare function getDmKeyBackupStatus(context: TransportContext, input: {
|
|
3177
4249
|
readonly bearer: string;
|
|
@@ -3438,6 +4510,15 @@ declare function denyPaymentIntent(context: TransportContext, input: {
|
|
|
3438
4510
|
readonly bearer: string;
|
|
3439
4511
|
readonly intentId: string;
|
|
3440
4512
|
}): Promise<OauthPaymentIntentResolveResponse>;
|
|
4513
|
+
declare function preparePaymentIntentSolana(context: TransportContext, input: {
|
|
4514
|
+
readonly bearer: string;
|
|
4515
|
+
readonly intentId: string;
|
|
4516
|
+
}): Promise<OauthPaymentIntentSolanaPrepareResponse>;
|
|
4517
|
+
declare function completePaymentIntentSolana(context: TransportContext, input: {
|
|
4518
|
+
readonly bearer: string;
|
|
4519
|
+
readonly intentId: string;
|
|
4520
|
+
readonly body: OauthPaymentIntentSolanaCompleteRequest;
|
|
4521
|
+
}): Promise<OauthPaymentIntentResolveResponse>;
|
|
3441
4522
|
//#endregion
|
|
3442
4523
|
//#region src/payments/limits.d.ts
|
|
3443
4524
|
declare function getPaymentLimits(context: TransportContext, input: {
|
|
@@ -3486,6 +4567,22 @@ declare function createTronDeposit(context: TransportContext, input: {
|
|
|
3486
4567
|
readonly bearer: string;
|
|
3487
4568
|
readonly body: TronDepositRequest;
|
|
3488
4569
|
}): Promise<TronDepositResponse>;
|
|
4570
|
+
declare function createTronTransfer(context: TransportContext, input: {
|
|
4571
|
+
readonly bearer: string;
|
|
4572
|
+
readonly body: TronTransferRequest;
|
|
4573
|
+
readonly idempotencyKey?: string;
|
|
4574
|
+
}): Promise<TronTransferResponse>;
|
|
4575
|
+
declare function getTronSecurity(context: TransportContext, input: {
|
|
4576
|
+
readonly bearer: string;
|
|
4577
|
+
}): Promise<TronSecuritySetting>;
|
|
4578
|
+
declare function setTronSecurity(context: TransportContext, input: {
|
|
4579
|
+
readonly bearer: string;
|
|
4580
|
+
readonly setting: TronSecuritySetting;
|
|
4581
|
+
}): Promise<TronSecuritySetting>;
|
|
4582
|
+
declare function createTronTransferChallenge(context: TransportContext, input: {
|
|
4583
|
+
readonly bearer: string;
|
|
4584
|
+
readonly body: TronTransferChallengeRequest;
|
|
4585
|
+
}): Promise<TronTransferChallengeResponse>;
|
|
3489
4586
|
declare function createTronConnectOnboarding(context: TransportContext, input: {
|
|
3490
4587
|
readonly bearer: string;
|
|
3491
4588
|
}): Promise<TronConnectOnboardingResponse>;
|
|
@@ -3660,6 +4757,10 @@ declare function sendFriendRequest(context: TransportContext, input: {
|
|
|
3660
4757
|
readonly bearer: string;
|
|
3661
4758
|
readonly userId: string;
|
|
3662
4759
|
}): Promise<void>;
|
|
4760
|
+
declare function removeFriend(context: TransportContext, input: {
|
|
4761
|
+
readonly bearer: string;
|
|
4762
|
+
readonly userId: string;
|
|
4763
|
+
}): Promise<void>;
|
|
3663
4764
|
declare function decideFriendRequest(context: TransportContext, input: {
|
|
3664
4765
|
readonly bearer: string;
|
|
3665
4766
|
readonly requestId: string;
|
|
@@ -3672,6 +4773,9 @@ declare function cancelFriendRequest(context: TransportContext, input: {
|
|
|
3672
4773
|
declare function listFriends(context: TransportContext, input: {
|
|
3673
4774
|
readonly bearer: string;
|
|
3674
4775
|
}): Promise<FriendListResponse>;
|
|
4776
|
+
declare function listFriendsForApp(context: TransportContext, input: {
|
|
4777
|
+
readonly bearer: string;
|
|
4778
|
+
}): Promise<AppFriendListResponse>;
|
|
3675
4779
|
//#endregion
|
|
3676
4780
|
//#region src/reads/socials.d.ts
|
|
3677
4781
|
declare function listSocials(context: TransportContext, input: {
|
|
@@ -3798,6 +4902,7 @@ declare class TronNodeClient {
|
|
|
3798
4902
|
};
|
|
3799
4903
|
};
|
|
3800
4904
|
subscribeOauthPaymentEvents(lifecycle: OauthPaymentEventsSubscriberLifecycle): OauthPaymentEventsSubscriber;
|
|
4905
|
+
subscribeOauthInventoryEvents(lifecycle: OauthInventoryEventsSubscriberLifecycle): OauthInventoryEventsSubscriber;
|
|
3801
4906
|
get users(): {
|
|
3802
4907
|
get: (input: {
|
|
3803
4908
|
bearer?: string;
|
|
@@ -3898,6 +5003,11 @@ declare class TronNodeClient {
|
|
|
3898
5003
|
body: MintRequestInput;
|
|
3899
5004
|
}) => Promise<MintRequestResult>;
|
|
3900
5005
|
};
|
|
5006
|
+
get friends(): {
|
|
5007
|
+
list: (input: {
|
|
5008
|
+
bearer: string;
|
|
5009
|
+
}) => Promise<AppFriendListResponse>;
|
|
5010
|
+
};
|
|
3901
5011
|
get socials(): {
|
|
3902
5012
|
list: (input: {
|
|
3903
5013
|
bearer: string;
|
|
@@ -3919,4 +5029,4 @@ declare class TronNodeClient {
|
|
|
3919
5029
|
};
|
|
3920
5030
|
}
|
|
3921
5031
|
//#endregion
|
|
3922
|
-
export { AppTokenCache, AuthorizeUrl, type BrowserClientConfig, BuildAuthorizeUrlInput, ChargeResult, type FetchLike, GameHalfCredentials, HttpsGuardOptions, InflightDedup, type Logger, MountPresenceWidgetOptions, NOOP_RATE_LIMITER, type NodeClientConfig, OauthErrorCode, OauthPaymentEventsSubscriber, OauthPaymentEventsSubscriberLifecycle, OauthPaymentEventsSubscriberOptions, OauthPaymentWebhookBody, type OauthScope, PkcePair, PlaySessionGameStatus, PresenceStatus, PresenceWidgetHandle, RateLimitOptions, RateLimiter, RequestOptions, SERVER_RATE_LIMIT_MAX_MUTATING, SERVER_RATE_LIMIT_MAX_READ, SERVER_RATE_LIMIT_WINDOW_MS, type SdkBaseConfig, TRON_WS_CLOSE_CODES, type TokenSet, type TokenStore, TransportContext, TronError, TronNodeClient, TronOauthError, TronWsCloseCode, TronWsCloseError, VerifyWebhookFailure, VerifyWebhookInput, VerifyWebhookResult, VerifyWebhookSuccess, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, acceptDeveloperInvite, addAdmin, addAppealBlacklist, addReaction, approveTronCashout, assertSecureIssuer, batchThreadDmKeys, bindReferral, buildAuthorizeUrl, cancelFriendRequest, cancelPot, charge, chargeTronDirect, chargeTronPot, completePaymentIntent, confirmPlaySession, consolidateDeveloperAppWallet, createAppTokenCache, createConsoleLogger, createDelegation, createDeveloperApiKey, createDeveloperApp, createDirectThread, createInMemoryTokenStore, createInflightDedup, createNoopLogger, createRateLimiter, createReferralCode, createTronCashout, createTronConnectOnboarding, createTronDeposit, decideFriendRequest, declineDeveloperInvite, defaultEndpoints, deleteAppPageBanner, deleteAppPageThumbnail, deleteAppPageThumbnailVideo, deleteAvatar, deleteDelegation, deleteDeveloperApp, deleteDeveloperAppLogo, deleteDeveloperProfileLogo, deleteDeveloperRequestLogo, deleteGameReviewReply, deleteMessage, deleteMyGameReview, deleteThread, deleteThreadLogo, denyPaymentIntent, distributePot, distributeTronPot, editMessage, endPlaySession, exchangeAuthorizationCode, fetchAuthorizationServerMetadata, fetchUserInfo, fileAppeal, fileAppealPotLeg, followUser, generatePkce, generateState, getActivity, getActivityGroup, getAdminAppealRoom, getAppFeeConfig, getAppPage, getAppPageChanges, getAppealRoom, getDelegation, getDeveloperAppActivity, getDeveloperAppBalances, getDeveloperAppEarnings, getDeveloperAppOverview, getDeveloperAppPage, getDeveloperAppPlaytime, getDeveloperAppTronBalance, getDeveloperAppWallets, getDeveloperPaymentAppeals, getDeveloperPaymentPendingDeposits, getDeveloperStatus, getDeveloperTronBalanceSummary, getDmKeyBackupStatus, getIntentStatus, getLibrary, getMoonpayAvailability, getMyDmKey, getMyGameReview, getOutstanding, getPaymentChains, getPaymentHistory, getPaymentIntent, getPaymentLimits, getPaymentPrice, getPlatformFees, getPlaytime, getPlaytimeTimeseries, getPublicProfile, getReferral, getThreadDmKey, getTronBalance, getTronGameBalance, heartbeatPlaySession, hideAppPage, hideThread, inviteDeveloperAppParticipant, inviteParticipants, leaveThread, listActivePlayers, listAdmins, listAppPages, listAppealBlacklist, listAppealQueue, listAudit, listDeveloperApiKeys, listDeveloperAppContentReports, listDeveloperAppParticipants, listDeveloperAppReviews, listDeveloperInvites, listDeveloperRequests, listDevelopers, listFriends, listGameReviews, listInventory, listInventoryForApp, listNotifications, listPaymentAuthorizations, listSocials, listThreadMessages, listThreads, listTronCashoutQueue, listTronCashouts, listTronLedger, listUsers, listWalletManager, listWallets, markAllNotificationsRead, markThreadRead, mintClientCredentialsToken, mintMoonpayBuyUrl, mintMoonpaySellUrl, mountPresenceWidget, oauthPaymentWebhookBodySchema, parseJson, pinThread, postAdminAppealRoomMessage, postAppealRoomMessage, previewReferral, provisionDeveloperAppWallet, publishDmKey, refreshAccessToken, registerOauthClient, rejectTronCashout, removeAdmin, removeAppealBlacklist, removeParticipant, removeReaction, replyToGameReview, requestDeveloperAppProduction, requestMint, requestPayout, resolveAppeal, reviewAppPage, reviewAppPageChanges, reviewDeveloperRequest, revokeDeveloperApiKey, revokeDeveloperAppParticipant, revokePaymentAuthorization, revokeToken, rotateDeveloperAppKey, rotateDeveloperAppPaymentWebhookSecret, rotateProcessorTreasury, searchGiphy, searchUsers, send, sendFriendRequest, sendJson, sendMessage, sendPresenceHeartbeat, setProcessorWhitelist, setVaultOperator, setVaultPause, setVaultWithdrawLockDefault, setVaultWithdrawLockOverride, setupDmKeyBackup, sha256Base64Url, signPaymentIntent, startOauthPaymentEventsSubscriber, submitAppContentReport, submitAppPageForReview, submitDeveloperRequest, toTokenSet, unfollowUser, unhideAppPage, unlockDmKeyBackup, unpinThread, unpublishAppPage, updateAdminRole, updateAppFeeConfig, updateAppPage, updateDeveloperApp, updateDeveloperAppAutoSweep, updateDeveloperAppContentReportStatus, updateDeveloperProfile, updateNotification, updateParticipantRole, updatePaymentAuthorization, updatePlatformFees, updateProfile, updateThreadSettings, updateUserBan, updateWalletLabel, uploadAdminAppealRoomAttachment, uploadAppPageBanner, uploadAppPageGallery, uploadAppPageThumbnail, uploadAppPageThumbnailVideo, uploadAppealRoomAttachment, uploadAttachment, uploadAvatar, uploadDeveloperAppLogo, uploadDeveloperProfileLogo, uploadDeveloperRequestLogo, uploadMultipart, uploadThreadLogo, upsertMyGameReview, verifyWebhook, withdrawDeveloperAppWallet };
|
|
5032
|
+
export { AppTokenCache, AuthorizeUrl, type BrowserClientConfig, BuildAuthorizeUrlInput, ChargeResult, type FetchLike, GameHalfCredentials, HttpsGuardOptions, InflightDedup, InventoryUpdateEvent, type Logger, MountPresenceWidgetOptions, NOOP_RATE_LIMITER, type NodeClientConfig, OauthErrorCode, OauthInventoryEventsSubscriber, OauthInventoryEventsSubscriberLifecycle, OauthInventoryEventsSubscriberOptions, OauthPaymentEventsSubscriber, OauthPaymentEventsSubscriberLifecycle, OauthPaymentEventsSubscriberOptions, OauthPaymentWebhookBody, type OauthScope, PkcePair, PlaySessionGameStatus, PresenceStatus, PresenceWidgetHandle, RateLimitOptions, RateLimiter, RequestOptions, SERVER_RATE_LIMIT_MAX_MUTATING, SERVER_RATE_LIMIT_MAX_READ, SERVER_RATE_LIMIT_WINDOW_MS, type SdkBaseConfig, TRON_WS_CLOSE_CODES, type TokenSet, type TokenStore, TransportContext, TronError, TronNodeClient, TronOauthError, TronWsCloseCode, TronWsCloseError, VerifyWebhookFailure, VerifyWebhookInput, VerifyWebhookResult, VerifyWebhookSuccess, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, acceptDeveloperInvite, addAdmin, addAppealBlacklist, addReaction, approveTronCashout, assertSecureIssuer, batchThreadDmKeys, bindReferral, buildAuthorizeUrl, cancelFriendRequest, cancelPot, charge, chargeTronDirect, chargeTronPot, commentOnBipUpdate, commentOnGameReview, completePaymentIntent, completePaymentIntentSolana, confirmPlaySession, consolidateDeveloperAppWallet, createAppTokenCache, createBipUpdate, createConsoleLogger, createDelegation, createDeveloperApiKey, createDeveloperApp, createDeveloperAppMintPermit, createDeveloperVaultPermit, createDeveloperWithdrawPermit, createDirectThread, createInMemoryTokenStore, createInflightDedup, createNoopLogger, createRateLimiter, createReferralCode, createTronCashout, createTronConnectOnboarding, createTronDeposit, createTronTransfer, createTronTransferChallenge, decideFriendRequest, declineDeveloperInvite, defaultEndpoints, deleteAppPageBanner, deleteAppPageThumbnail, deleteAppPageThumbnailVideo, deleteAvatar, deleteBipUpdate, deleteBipUpdateComment, deleteDelegation, deleteDeveloperApp, deleteDeveloperAppLogo, deleteDeveloperProfileLogo, deleteDeveloperRequestLogo, deleteGameReviewComment, deleteGameReviewReply, deleteMessage, deleteMyGameReview, deleteThread, deleteThreadLogo, denyPaymentIntent, distributePot, distributeTronPot, editMessage, endPlaySession, exchangeAuthorizationCode, executeNftTransfer, fetchAuthorizationServerMetadata, fetchUserInfo, fileAppeal, fileAppealPotLeg, followUser, forceWithdrawVaultCustody, generatePkce, generateState, getActivity, getActivityGroup, getAdminAppealRoom, getAppFeeConfig, getAppPage, getAppPageChanges, getAppealRoom, getBipDirectory, getBipInterestCount, getBipPage, getDelegation, getDeveloperAppActivity, getDeveloperAppBalances, getDeveloperAppEarnings, getDeveloperAppInventoryItemHolders, getDeveloperAppOverview, getDeveloperAppPage, getDeveloperAppPlaytime, getDeveloperAppTronBalance, getDeveloperAppWallets, getDeveloperPaymentAppeals, getDeveloperPaymentPendingDeposits, getDeveloperStatus, getDeveloperTronBalanceSummary, getDmKeyBackupStatus, getIntentStatus, getLibrary, getMoonpayAvailability, getMyBipEngagement, getMyBipUpdateReactions, getMyDmKey, getMyGameReview, getMyGameReviewReactions, getOutstanding, getPaymentChains, getPaymentHistory, getPaymentIntent, getPaymentLimits, getPaymentPrice, getPaymentRates, getPlatformFees, getPlaytime, getPlaytimeTimeseries, getPublicProfile, getReferral, getThreadDmKey, getTronBalance, getTronGameBalance, getTronSecurity, heartbeatPlaySession, hideAppPage, hideAppPageBip, hideThread, inventoryUpdateEventSchema, inviteDeveloperAppParticipant, inviteParticipants, leaveThread, listActivePlayers, listAdminContentReports, listAdmins, listAppPages, listAppealBlacklist, listAppealQueue, listAudit, listBipUpdateComments, listBipUpdates, listDeveloperApiKeys, listDeveloperAppContentReports, listDeveloperAppInventoryCollections, listDeveloperAppInventoryItems, listDeveloperAppParticipants, listDeveloperAppReviews, listDeveloperBipUpdates, listDeveloperInvites, listDeveloperRequests, listDevelopers, listFriends, listFriendsForApp, listGameReviewComments, listGameReviews, listInventory, listInventoryForApp, listInventoryMintPermits, listInventoryVaultPermits, listInventoryVaulted, listNotifications, listOauthInventoryVaulted, listPaymentAuthorizations, listSocials, listThreadMessages, listThreads, listTronCashoutQueue, listTronCashouts, listTronLedger, listUsers, listWalletManager, listWallets, markAllNotificationsRead, markThreadRead, mintClientCredentialsToken, mintMoonpayBuyUrl, mintMoonpaySellUrl, mountPresenceWidget, oauthPaymentWebhookBodySchema, parseJson, pinBipUpdate, pinThread, postAdminAppealRoomMessage, postAppealRoomMessage, preparePaymentIntentSolana, previewReferral, provisionDeveloperAppWallet, publishDmKey, quoteDeveloperAppInventoryRegistration, quoteNftTransfer, quoteRelayedVaultPermit, redeemInventoryMintPermit, refreshAccessToken, registerBipInterest, registerDeveloperAppInventoryItem, registerOauthClient, rejectTronCashout, removeAdmin, removeAppealBlacklist, removeFriend, removeParticipant, removeReaction, replyToGameReview, requestDeveloperAppProduction, requestMint, requestPayout, resolveAppeal, reviewAppPage, reviewAppPageBip, reviewAppPageChanges, reviewDeveloperRequest, revokeDeveloperApiKey, revokeDeveloperAppParticipant, revokePaymentAuthorization, revokeToken, rotateDeveloperAppKey, rotateDeveloperAppPaymentWebhookSecret, rotateProcessorTreasury, searchGiphy, searchUsers, send, sendFriendRequest, sendJson, sendMessage, sendPresenceHeartbeat, setAppPageBip, setBipUpdateReaction, setMyGameReviewReaction, setProcessorWhitelist, setTronSecurity, setVaultOperator, setVaultPause, setVaultWithdrawLockDefault, setVaultWithdrawLockOverride, setupDmKeyBackup, sha256Base64Url, signInventoryVaultPermit, signPaymentIntent, startOauthInventoryEventsSubscriber, startOauthPaymentEventsSubscriber, submitAppContentReport, submitAppPageBipForReview, submitAppPageForReview, submitDeveloperRequest, submitRelayedVaultPermit, subscribeBipUpdates, tipGameReview, toTokenSet, triageAdminContentReport, unfollowUser, unhideAppPage, unhideAppPageBip, unlockDmKeyBackup, unpinBipUpdate, unpinThread, unpublishAppPage, unpublishAppPageBip, updateAdminRole, updateAppFeeConfig, updateAppPage, updateBipUpdate, updateDeveloperApp, updateDeveloperAppAutoSweep, updateDeveloperAppContentReportStatus, updateDeveloperProfile, updateNotification, updateParticipantRole, updatePaymentAuthorization, updatePlatformFees, updateProfile, updateThreadSettings, updateUserBan, updateWalletLabel, uploadAdminAppealRoomAttachment, uploadAppPageBanner, uploadAppPageGallery, uploadAppPageThumbnail, uploadAppPageThumbnailVideo, uploadAppealRoomAttachment, uploadAttachment, uploadAvatar, uploadBipUpdateMedia, uploadDeveloperAppInventoryItemBanner, uploadDeveloperAppInventoryItemImage, uploadDeveloperAppLogo, uploadDeveloperProfileLogo, uploadDeveloperRequestLogo, uploadMultipart, uploadThreadLogo, upsertMyGameReview, verifyWebhook, withdrawDeveloperAppWallet };
|