@metatrongg/sdk 0.8.0-dev.65a4da4 → 0.8.0-dev.6be671d
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/LICENSE +1 -0
- package/dist/browser/index.d.ts +1269 -231
- package/dist/browser/index.js +1 -1
- package/dist/contracts/index.d.ts +12386 -4277
- package/dist/contracts/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/node/index.d.ts +1365 -272
- package/dist/node/index.js +1 -1
- package/dist/react/index.d.ts +4 -4
- package/dist/react/index.js +1 -1
- package/dist/webhook/express.d.ts +3 -3
- package/dist/webhook/express.js +1 -1
- package/dist/webhook/fastify.d.ts +2 -2
- package/dist/webhook/fastify.js +1 -1
- package/dist/webhook/hono.d.ts +3 -3
- package/dist/webhook/hono.js +1 -1
- package/dist/webhook/index.js +1 -1
- package/package.json +114 -113
package/dist/browser/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as z from "zod";
|
|
|
2
2
|
|
|
3
3
|
//#region src/core/dedup.d.ts
|
|
4
4
|
type InflightDedup = {
|
|
5
|
-
readonly run: <T>(key: string,
|
|
5
|
+
readonly run: <T>(key: string, function_: () => Promise<T>) => Promise<T>;
|
|
6
6
|
};
|
|
7
7
|
declare function createInflightDedup(): InflightDedup;
|
|
8
8
|
//#endregion
|
|
@@ -91,7 +91,7 @@ type Username = string;
|
|
|
91
91
|
type DisplayName = string | null;
|
|
92
92
|
type Bio = string | null;
|
|
93
93
|
type WebsiteUrl = string | null;
|
|
94
|
-
type BannerVariant = "yellow" | "green" | "blue" | "white" | "black";
|
|
94
|
+
type BannerVariant = "yellow" | "green" | "blue" | "white" | "black" | "red";
|
|
95
95
|
type AdminRole = "super-admin" | "admin" | "read-only" | null;
|
|
96
96
|
type PresenceStatusMode = "auto" | "online" | "offline";
|
|
97
97
|
type PlatformEnvironment = "development" | "production";
|
|
@@ -106,7 +106,7 @@ type OauthAuthorizationServerMetadata = {
|
|
|
106
106
|
grant_types_supported: Array<"authorization_code" | "refresh_token" | "client_credentials">;
|
|
107
107
|
code_challenge_methods_supported: Array<"S256">;
|
|
108
108
|
token_endpoint_auth_methods_supported: Array<"client_secret_basic" | "client_secret_post" | "none">;
|
|
109
|
-
scopes_supported: Array<"openid" | "profile" | "payments:charge" | "inventory:read" | "developer:read" | "developer:apps" | "developer:pages">;
|
|
109
|
+
scopes_supported: Array<"openid" | "profile" | "payments:charge" | "inventory:read" | "social:read" | "developer:read" | "developer:apps" | "developer:pages">;
|
|
110
110
|
};
|
|
111
111
|
type OauthScopeString = string;
|
|
112
112
|
type OauthState = string;
|
|
@@ -127,7 +127,9 @@ type OauthErrorResponse = {
|
|
|
127
127
|
type OauthUserInfoResponse = {
|
|
128
128
|
sub: string;
|
|
129
129
|
name: string | null;
|
|
130
|
+
preferred_username: string | null;
|
|
130
131
|
picture: string | null;
|
|
132
|
+
wallet_address: string | null;
|
|
131
133
|
};
|
|
132
134
|
type OauthPaymentChargeResponse = ({
|
|
133
135
|
status: "completed";
|
|
@@ -246,7 +248,16 @@ type OauthPaymentIntentContext = {
|
|
|
246
248
|
studioXHandle: string | null;
|
|
247
249
|
};
|
|
248
250
|
} | null;
|
|
251
|
+
environment: "development" | "production";
|
|
252
|
+
onramp?: {
|
|
253
|
+
kind: "bridge";
|
|
254
|
+
from: PaymentNetwork;
|
|
255
|
+
to: PaymentNetwork;
|
|
256
|
+
} | {
|
|
257
|
+
kind: "insufficient";
|
|
258
|
+
};
|
|
249
259
|
};
|
|
260
|
+
type PaymentNetwork = "ethereum" | "base" | "solana";
|
|
250
261
|
type OauthPaymentIntentSignResponse = {
|
|
251
262
|
chain: string;
|
|
252
263
|
chainId: number;
|
|
@@ -276,6 +287,13 @@ type OauthPaymentIntentCompleteSigned = {
|
|
|
276
287
|
type OauthPaymentIntentCompleteOffline = {
|
|
277
288
|
method: "offline";
|
|
278
289
|
};
|
|
290
|
+
type OauthPaymentIntentSolanaPrepareResponse = {
|
|
291
|
+
transaction: string;
|
|
292
|
+
payer: string;
|
|
293
|
+
};
|
|
294
|
+
type OauthPaymentIntentSolanaCompleteRequest = {
|
|
295
|
+
signedTransaction: string;
|
|
296
|
+
};
|
|
279
297
|
type ListAppPaymentAuthorizationsResponse = {
|
|
280
298
|
authorizations: Array<AppPaymentAuthorizationItem>;
|
|
281
299
|
};
|
|
@@ -334,9 +352,16 @@ type PublicAppPage = {
|
|
|
334
352
|
chapters: AppPageChapters;
|
|
335
353
|
links: AppPageLinks;
|
|
336
354
|
studio: PublicAppPageStudio;
|
|
355
|
+
platforms: AppPagePlatforms;
|
|
356
|
+
gameType: AppPageGameType;
|
|
357
|
+
ageRating: AppPageAgeRating;
|
|
358
|
+
languages: AppPageLanguages;
|
|
359
|
+
releaseStatus: AppPageReleaseStatus;
|
|
360
|
+
paymentsMode: AppPagePaymentsMode;
|
|
337
361
|
oauthScopes: Array<string>;
|
|
338
362
|
chains: Array<string>;
|
|
339
363
|
publishedAt: string;
|
|
364
|
+
updatedAt: string;
|
|
340
365
|
};
|
|
341
366
|
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">;
|
|
342
367
|
type AppPageTagline = string;
|
|
@@ -359,12 +384,132 @@ type AppPageLink = {
|
|
|
359
384
|
order: number;
|
|
360
385
|
};
|
|
361
386
|
type PublicAppPageStudio = {
|
|
387
|
+
ownerUserId: string | null;
|
|
362
388
|
name: string | null;
|
|
363
389
|
logoUrl: string | null;
|
|
364
390
|
websiteUrl: string | null;
|
|
365
391
|
xHandle: string | null;
|
|
366
392
|
githubUrl: string | null;
|
|
367
393
|
};
|
|
394
|
+
type AppPagePlatforms = Array<"web" | "ios" | "android" | "pc" | "playstation" | "xbox" | "switch">;
|
|
395
|
+
type AppPageGameType = "single_player" | "multiplayer" | "both" | null;
|
|
396
|
+
type AppPageAgeRating = "everyone" | "13_plus" | "16_plus" | "18_plus" | null;
|
|
397
|
+
type AppPageLanguages = Array<"en" | "es" | "fr" | "de" | "pt" | "it" | "ru" | "ja" | "ko" | "zh" | "hi" | "ar" | "tr" | "vi" | "id" | "th" | "pl" | "nl">;
|
|
398
|
+
type AppPageReleaseStatus = "live" | "open_beta" | "coming_soon";
|
|
399
|
+
type AppPagePaymentsMode = "tron" | "onchain" | "both" | null;
|
|
400
|
+
type PublicBipPage = {
|
|
401
|
+
appId: string;
|
|
402
|
+
slug: AppPageSlug;
|
|
403
|
+
appName: string;
|
|
404
|
+
appLogoUrl: string | null;
|
|
405
|
+
categories: AppPageCategories;
|
|
406
|
+
tagline: AppPageTagline;
|
|
407
|
+
bannerUrl: string | null;
|
|
408
|
+
discordUrl: string | null;
|
|
409
|
+
twitterUrl: string | null;
|
|
410
|
+
redditUrl: string | null;
|
|
411
|
+
telegramUrl: string | null;
|
|
412
|
+
gallery: AppPageGallery;
|
|
413
|
+
chapters: AppPageChapters;
|
|
414
|
+
links: AppPageLinks;
|
|
415
|
+
studio: PublicAppPageStudio;
|
|
416
|
+
platforms: AppPagePlatforms;
|
|
417
|
+
gameType: AppPageGameType;
|
|
418
|
+
ageRating: AppPageAgeRating;
|
|
419
|
+
languages: AppPageLanguages;
|
|
420
|
+
releaseStatus: AppPageReleaseStatus;
|
|
421
|
+
publishedAt: string;
|
|
422
|
+
updatedAt: string;
|
|
423
|
+
};
|
|
424
|
+
type BipUpdateListResponse = {
|
|
425
|
+
updates: Array<BipUpdate>;
|
|
426
|
+
total: number;
|
|
427
|
+
hasMore: boolean;
|
|
428
|
+
};
|
|
429
|
+
type BipUpdate = {
|
|
430
|
+
id: string;
|
|
431
|
+
appId: string;
|
|
432
|
+
body: BipUpdateBody;
|
|
433
|
+
attachments: BipUpdateAttachments;
|
|
434
|
+
reactions: BipUpdateReactionCounts;
|
|
435
|
+
commentCount: number;
|
|
436
|
+
createdAt: string;
|
|
437
|
+
updatedAt: string;
|
|
438
|
+
};
|
|
439
|
+
type BipUpdateBody = string;
|
|
440
|
+
type BipUpdateAttachments = Array<BipUpdateAttachment>;
|
|
441
|
+
type BipUpdateAttachment = {
|
|
442
|
+
url: string;
|
|
443
|
+
kind: "image" | "video";
|
|
444
|
+
order: number;
|
|
445
|
+
};
|
|
446
|
+
type BipUpdateReactionCounts = {
|
|
447
|
+
up: number;
|
|
448
|
+
down: number;
|
|
449
|
+
};
|
|
450
|
+
type BipUpdateCommentListResponse = {
|
|
451
|
+
comments: Array<BipUpdateComment>;
|
|
452
|
+
total: number;
|
|
453
|
+
hasMore: boolean;
|
|
454
|
+
};
|
|
455
|
+
type BipUpdateComment = {
|
|
456
|
+
id: string;
|
|
457
|
+
body: BipUpdateCommentBody;
|
|
458
|
+
author: ReviewAuthor;
|
|
459
|
+
createdAt: string;
|
|
460
|
+
};
|
|
461
|
+
type BipUpdateCommentBody = string;
|
|
462
|
+
type ReviewAuthor = {
|
|
463
|
+
userId: string;
|
|
464
|
+
handle: string | null;
|
|
465
|
+
name: string | null;
|
|
466
|
+
avatarUrl: string | null;
|
|
467
|
+
};
|
|
468
|
+
type BipInterestCountResponse = {
|
|
469
|
+
interestCount: number;
|
|
470
|
+
};
|
|
471
|
+
type BipEngagementResponse = {
|
|
472
|
+
interested: boolean;
|
|
473
|
+
subscribed: boolean;
|
|
474
|
+
interestCount: number;
|
|
475
|
+
};
|
|
476
|
+
type MyBipUpdateReactionsResponse = {
|
|
477
|
+
reactions: Array<MyBipUpdateReaction>;
|
|
478
|
+
};
|
|
479
|
+
type MyBipUpdateReaction = {
|
|
480
|
+
updateId: string;
|
|
481
|
+
vote: "up" | "down";
|
|
482
|
+
};
|
|
483
|
+
type SetBipUpdateReactionResponse = {
|
|
484
|
+
reactions: BipUpdateReactionCounts;
|
|
485
|
+
vote: BipUpdateVote;
|
|
486
|
+
};
|
|
487
|
+
type BipUpdateVote = "up" | "down" | null;
|
|
488
|
+
type SetBipUpdateReactionRequest = {
|
|
489
|
+
vote: BipUpdateVote;
|
|
490
|
+
};
|
|
491
|
+
type CreateBipUpdateCommentResponse = {
|
|
492
|
+
comment: BipUpdateComment;
|
|
493
|
+
commentCount: number;
|
|
494
|
+
};
|
|
495
|
+
type DeleteBipUpdateCommentResponse = {
|
|
496
|
+
commentCount: number;
|
|
497
|
+
};
|
|
498
|
+
type CreateBipUpdateRequest = {
|
|
499
|
+
body: BipUpdateBody;
|
|
500
|
+
attachments?: BipUpdateAttachments;
|
|
501
|
+
};
|
|
502
|
+
type UpdateBipUpdateRequest = {
|
|
503
|
+
body?: BipUpdateBody;
|
|
504
|
+
attachments?: BipUpdateAttachments;
|
|
505
|
+
};
|
|
506
|
+
type DeleteBipUpdateResponse = {
|
|
507
|
+
deleted: true;
|
|
508
|
+
};
|
|
509
|
+
type BipUpdateMediaUploadResponse = {
|
|
510
|
+
url: string;
|
|
511
|
+
kind: "image" | "video";
|
|
512
|
+
};
|
|
368
513
|
type ReviewListResponse = {
|
|
369
514
|
aggregate: ReviewAggregate;
|
|
370
515
|
reviews: Array<Review>;
|
|
@@ -372,38 +517,43 @@ type ReviewListResponse = {
|
|
|
372
517
|
hasMore: boolean;
|
|
373
518
|
};
|
|
374
519
|
type ReviewAggregate = {
|
|
375
|
-
average: number | null;
|
|
376
520
|
count: number;
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
1: number;
|
|
381
|
-
2: number;
|
|
382
|
-
3: number;
|
|
383
|
-
4: number;
|
|
384
|
-
5: number;
|
|
521
|
+
recommendedCount: number;
|
|
522
|
+
recommendedPct: number | null;
|
|
523
|
+
summaryLabel: ReviewSummaryLabel;
|
|
385
524
|
};
|
|
525
|
+
type ReviewSummaryLabel = "overwhelmingly_positive" | "very_positive" | "positive" | "mostly_positive" | "mixed" | "mostly_negative" | "negative" | "overwhelmingly_negative" | null;
|
|
386
526
|
type Review = {
|
|
387
527
|
id: string;
|
|
388
|
-
|
|
528
|
+
recommended: ReviewRecommended;
|
|
389
529
|
body: ReviewBody;
|
|
530
|
+
reactions: ReviewReactionCounts;
|
|
531
|
+
tippedCents: number;
|
|
532
|
+
commentCount: number;
|
|
390
533
|
author: ReviewAuthor;
|
|
534
|
+
authorStats: ReviewerStats;
|
|
391
535
|
developerReply: ReviewReply;
|
|
392
536
|
createdAt: string;
|
|
393
537
|
updatedAt: string;
|
|
394
538
|
};
|
|
395
|
-
type
|
|
539
|
+
type ReviewRecommended = boolean;
|
|
396
540
|
type ReviewBody = string;
|
|
397
|
-
type
|
|
398
|
-
|
|
399
|
-
|
|
541
|
+
type ReviewReactionCounts = {
|
|
542
|
+
helpful: number;
|
|
543
|
+
unhelpful: number;
|
|
544
|
+
funny: number;
|
|
545
|
+
};
|
|
546
|
+
type ReviewerStats = {
|
|
547
|
+
playtimeSecondsThisGame: number;
|
|
548
|
+
gamesPlayed: number;
|
|
549
|
+
reviewsWritten: number;
|
|
400
550
|
};
|
|
401
551
|
type ReviewReply = {
|
|
402
552
|
body: ReviewReplyBody;
|
|
403
553
|
repliedAt: string;
|
|
404
554
|
} | null;
|
|
405
555
|
type ReviewReplyBody = string;
|
|
406
|
-
type ReviewSort = "newest" | "oldest" | "
|
|
556
|
+
type ReviewSort = "newest" | "oldest" | "helpful";
|
|
407
557
|
type MyReviewResponse = {
|
|
408
558
|
eligible: boolean;
|
|
409
559
|
eligibleVia: ReviewEligibilityReason;
|
|
@@ -413,15 +563,67 @@ type MyReviewResponse = {
|
|
|
413
563
|
type ReviewEligibilityReason = "payment" | "reward" | null;
|
|
414
564
|
type OwnReview = {
|
|
415
565
|
id: string;
|
|
416
|
-
|
|
566
|
+
recommended: ReviewRecommended;
|
|
417
567
|
body: ReviewBody;
|
|
418
568
|
createdAt: string;
|
|
419
569
|
updatedAt: string;
|
|
420
570
|
} | null;
|
|
421
571
|
type UpsertReviewRequest = {
|
|
422
|
-
|
|
572
|
+
recommended: ReviewRecommended;
|
|
423
573
|
body: ReviewBody;
|
|
424
574
|
};
|
|
575
|
+
type MyReviewReactionsResponse = {
|
|
576
|
+
reactions: Array<MyReviewReaction>;
|
|
577
|
+
};
|
|
578
|
+
type MyReviewReaction = {
|
|
579
|
+
reviewId: string;
|
|
580
|
+
vote: ReviewVote;
|
|
581
|
+
funny: boolean;
|
|
582
|
+
};
|
|
583
|
+
type ReviewVote = "helpful" | "unhelpful" | null;
|
|
584
|
+
type SetReviewReactionResponse = {
|
|
585
|
+
reactions: ReviewReactionCounts;
|
|
586
|
+
vote: ReviewVote;
|
|
587
|
+
funny: boolean;
|
|
588
|
+
};
|
|
589
|
+
type SetReviewReactionRequest = {
|
|
590
|
+
vote: ReviewVote;
|
|
591
|
+
funny: boolean;
|
|
592
|
+
};
|
|
593
|
+
type TipReviewResponse = {
|
|
594
|
+
status: "completed";
|
|
595
|
+
amountCents: number;
|
|
596
|
+
balanceCents: number;
|
|
597
|
+
tippedCents: number;
|
|
598
|
+
};
|
|
599
|
+
type TipReviewRequest = {
|
|
600
|
+
amountCents: number;
|
|
601
|
+
note?: string;
|
|
602
|
+
challengeId?: string;
|
|
603
|
+
signature?: string;
|
|
604
|
+
};
|
|
605
|
+
type ReviewCommentListResponse = {
|
|
606
|
+
comments: Array<ReviewComment>;
|
|
607
|
+
total: number;
|
|
608
|
+
hasMore: boolean;
|
|
609
|
+
};
|
|
610
|
+
type ReviewComment = {
|
|
611
|
+
id: string;
|
|
612
|
+
body: ReviewCommentBody;
|
|
613
|
+
author: ReviewAuthor;
|
|
614
|
+
createdAt: string;
|
|
615
|
+
};
|
|
616
|
+
type ReviewCommentBody = string;
|
|
617
|
+
type CreateReviewCommentResponse = {
|
|
618
|
+
comment: ReviewComment;
|
|
619
|
+
commentCount: number;
|
|
620
|
+
};
|
|
621
|
+
type CreateReviewCommentRequest = {
|
|
622
|
+
body: ReviewCommentBody;
|
|
623
|
+
};
|
|
624
|
+
type DeleteReviewCommentResponse = {
|
|
625
|
+
commentCount: number;
|
|
626
|
+
};
|
|
425
627
|
type ReviewReplyResponse = {
|
|
426
628
|
developerReply: ReviewReply;
|
|
427
629
|
};
|
|
@@ -526,8 +728,16 @@ type ActivityRow = ({
|
|
|
526
728
|
} & ActivityRowTronPot) | ({
|
|
527
729
|
kind: "tron_cashout";
|
|
528
730
|
} & ActivityRowTronCashout) | ({
|
|
731
|
+
kind: "tron_transfer";
|
|
732
|
+
} & ActivityRowTronTransfer) | ({
|
|
529
733
|
kind: "referral_earning";
|
|
530
|
-
} & ActivityRowReferralEarning)
|
|
734
|
+
} & ActivityRowReferralEarning) | ({
|
|
735
|
+
kind: "nft_charge";
|
|
736
|
+
} & ActivityRowNftCharge) | ({
|
|
737
|
+
kind: "solana_stake";
|
|
738
|
+
} & ActivityRowSolanaStake) | ({
|
|
739
|
+
kind: "solana_pot_leg";
|
|
740
|
+
} & ActivityRowSolanaPotLeg);
|
|
531
741
|
type ActivityRowPayment = {
|
|
532
742
|
kind: "payment";
|
|
533
743
|
groupId: string | null;
|
|
@@ -773,6 +983,8 @@ type ActivityRowTronPot = {
|
|
|
773
983
|
role: "incoming" | "outgoing";
|
|
774
984
|
leg: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
|
|
775
985
|
amountCents: number;
|
|
986
|
+
usdCents: number;
|
|
987
|
+
status: "settled";
|
|
776
988
|
app: {
|
|
777
989
|
id: string;
|
|
778
990
|
name: string;
|
|
@@ -780,8 +992,16 @@ type ActivityRowTronPot = {
|
|
|
780
992
|
slug: string | null;
|
|
781
993
|
bannerUrl: string | null;
|
|
782
994
|
} | null;
|
|
995
|
+
involvedUsers?: Array<ActivityTronInvolvedUser> | null;
|
|
783
996
|
metadata?: PaymentMetadata | null;
|
|
784
997
|
};
|
|
998
|
+
type ActivityTronInvolvedUser = {
|
|
999
|
+
userId: string;
|
|
1000
|
+
handle: string | null;
|
|
1001
|
+
displayName: string | null;
|
|
1002
|
+
role: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
|
|
1003
|
+
amountCents: number;
|
|
1004
|
+
};
|
|
785
1005
|
type ActivityRowTronCashout = {
|
|
786
1006
|
kind: "tron_cashout";
|
|
787
1007
|
groupId: string | null;
|
|
@@ -799,6 +1019,20 @@ type ActivityRowTronCashout = {
|
|
|
799
1019
|
rejectionReason: string | null;
|
|
800
1020
|
settledAt: string | null;
|
|
801
1021
|
};
|
|
1022
|
+
type ActivityRowTronTransfer = {
|
|
1023
|
+
kind: "tron_transfer";
|
|
1024
|
+
groupId: string | null;
|
|
1025
|
+
id: string;
|
|
1026
|
+
occurredAt: string;
|
|
1027
|
+
role: "incoming" | "outgoing";
|
|
1028
|
+
amountCents: number;
|
|
1029
|
+
usdCents: number;
|
|
1030
|
+
status: "settled";
|
|
1031
|
+
counterpartyUserId: string | null;
|
|
1032
|
+
counterpartyHandle: string | null;
|
|
1033
|
+
counterpartyDisplayName: string | null;
|
|
1034
|
+
note: string | null;
|
|
1035
|
+
};
|
|
802
1036
|
type ActivityRowReferralEarning = {
|
|
803
1037
|
kind: "referral_earning";
|
|
804
1038
|
groupId: string | null;
|
|
@@ -815,6 +1049,72 @@ type ActivityRowReferralEarning = {
|
|
|
815
1049
|
logIndex: number;
|
|
816
1050
|
usdCents: number | null;
|
|
817
1051
|
};
|
|
1052
|
+
type ActivityRowNftCharge = {
|
|
1053
|
+
kind: "nft_charge";
|
|
1054
|
+
groupId: string | null;
|
|
1055
|
+
id: string;
|
|
1056
|
+
occurredAt: string;
|
|
1057
|
+
role: "outgoing";
|
|
1058
|
+
chargeKind: "registration" | "mint" | "transfer_gas";
|
|
1059
|
+
amountCents: number;
|
|
1060
|
+
usdCents: number;
|
|
1061
|
+
status: "settled";
|
|
1062
|
+
collectionAddress: string | null;
|
|
1063
|
+
tokenId: string | null;
|
|
1064
|
+
counterpartyUserId: string | null;
|
|
1065
|
+
counterpartyHandle: string | null;
|
|
1066
|
+
counterpartyDisplayName: string | null;
|
|
1067
|
+
};
|
|
1068
|
+
type ActivityRowSolanaStake = {
|
|
1069
|
+
kind: "solana_stake";
|
|
1070
|
+
groupId: string | null;
|
|
1071
|
+
id: string;
|
|
1072
|
+
chain: string;
|
|
1073
|
+
occurredAt: string;
|
|
1074
|
+
role: "outgoing" | "incoming";
|
|
1075
|
+
amount: string;
|
|
1076
|
+
token: string;
|
|
1077
|
+
potId: string | null;
|
|
1078
|
+
usdCents: number;
|
|
1079
|
+
status: "completed";
|
|
1080
|
+
txHash: string | null;
|
|
1081
|
+
app: {
|
|
1082
|
+
id: string;
|
|
1083
|
+
name: string;
|
|
1084
|
+
logoUrl: string | null;
|
|
1085
|
+
slug: string | null;
|
|
1086
|
+
bannerUrl: string | null;
|
|
1087
|
+
} | null;
|
|
1088
|
+
stakerUserId?: string | null;
|
|
1089
|
+
stakerHandle?: string | null;
|
|
1090
|
+
stakerDisplayName?: string | null;
|
|
1091
|
+
metadata?: PaymentMetadata | null;
|
|
1092
|
+
};
|
|
1093
|
+
type ActivityRowSolanaPotLeg = {
|
|
1094
|
+
kind: "solana_pot_leg";
|
|
1095
|
+
groupId: string | null;
|
|
1096
|
+
id: string;
|
|
1097
|
+
chain: string;
|
|
1098
|
+
occurredAt: string;
|
|
1099
|
+
role: "outgoing" | "incoming";
|
|
1100
|
+
beneficiary: string;
|
|
1101
|
+
potId: string | null;
|
|
1102
|
+
amount: string;
|
|
1103
|
+
token: string;
|
|
1104
|
+
usdCents: number | null;
|
|
1105
|
+
status: "settled";
|
|
1106
|
+
app: {
|
|
1107
|
+
id: string;
|
|
1108
|
+
name: string;
|
|
1109
|
+
logoUrl: string | null;
|
|
1110
|
+
slug: string | null;
|
|
1111
|
+
bannerUrl: string | null;
|
|
1112
|
+
} | null;
|
|
1113
|
+
txHash: string | null;
|
|
1114
|
+
recipientUserId?: string | null;
|
|
1115
|
+
recipientHandle?: string | null;
|
|
1116
|
+
recipientDisplayName?: string | null;
|
|
1117
|
+
};
|
|
818
1118
|
type OutstandingResponse = {
|
|
819
1119
|
rows: Array<OutstandingByToken>;
|
|
820
1120
|
};
|
|
@@ -864,7 +1164,7 @@ type TronLedgerResponse = {
|
|
|
864
1164
|
};
|
|
865
1165
|
type TronLedgerEntry = {
|
|
866
1166
|
id: string;
|
|
867
|
-
kind: "deposit" | "pot_stake" | "pot_payout" | "dev_earning" | "cashout_hold" | "cashout_release" | "dispute_freeze" | "dispute_unfreeze" | "hosted_billing" | "store_purchase" | "referral_earning";
|
|
1167
|
+
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";
|
|
868
1168
|
amountCents: number;
|
|
869
1169
|
currency: string;
|
|
870
1170
|
createdAt: string;
|
|
@@ -879,6 +1179,45 @@ type TronDepositResponse = {
|
|
|
879
1179
|
type TronDepositRequest = {
|
|
880
1180
|
amountCents: number;
|
|
881
1181
|
};
|
|
1182
|
+
type TronTransferResponse = {
|
|
1183
|
+
status: "completed";
|
|
1184
|
+
amountCents: number;
|
|
1185
|
+
balanceCents: number;
|
|
1186
|
+
recipient: {
|
|
1187
|
+
userId: string;
|
|
1188
|
+
handle: string | null;
|
|
1189
|
+
displayName: string | null;
|
|
1190
|
+
};
|
|
1191
|
+
};
|
|
1192
|
+
type TronTransferRequest = {
|
|
1193
|
+
recipientUserId: string;
|
|
1194
|
+
amountCents: number;
|
|
1195
|
+
note?: string;
|
|
1196
|
+
challengeId?: string;
|
|
1197
|
+
signature?: string;
|
|
1198
|
+
threadId?: string;
|
|
1199
|
+
};
|
|
1200
|
+
type TronSecuritySetting = {
|
|
1201
|
+
requireSignature: boolean;
|
|
1202
|
+
};
|
|
1203
|
+
type TronTransferChallengeResponse = ({
|
|
1204
|
+
required: false;
|
|
1205
|
+
} & TronTransferChallengeNotRequired) | ({
|
|
1206
|
+
required: true;
|
|
1207
|
+
} & TronTransferChallengeRequired);
|
|
1208
|
+
type TronTransferChallengeNotRequired = {
|
|
1209
|
+
required: false;
|
|
1210
|
+
};
|
|
1211
|
+
type TronTransferChallengeRequired = {
|
|
1212
|
+
required: true;
|
|
1213
|
+
challengeId: string;
|
|
1214
|
+
message: string;
|
|
1215
|
+
expiresAt: string;
|
|
1216
|
+
};
|
|
1217
|
+
type TronTransferChallengeRequest = {
|
|
1218
|
+
recipientUserId: string;
|
|
1219
|
+
amountCents: number;
|
|
1220
|
+
};
|
|
882
1221
|
type TronConnectOnboardingResponse = {
|
|
883
1222
|
url: string;
|
|
884
1223
|
};
|
|
@@ -935,12 +1274,15 @@ type WalletListResponse = {
|
|
|
935
1274
|
wallets: Array<WalletItem>;
|
|
936
1275
|
};
|
|
937
1276
|
type WalletChainList = Array<{
|
|
938
|
-
id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia";
|
|
1277
|
+
id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia" | "base-sepolia" | "solana-mainnet" | "solana-devnet";
|
|
939
1278
|
displayName: string;
|
|
940
|
-
|
|
1279
|
+
family: "evm" | "solana";
|
|
1280
|
+
nativeSymbol: string;
|
|
1281
|
+
chainId?: number;
|
|
941
1282
|
}>;
|
|
942
1283
|
type WalletItem = {
|
|
943
|
-
address: string;
|
|
1284
|
+
address: string | string;
|
|
1285
|
+
family: "evm" | "solana";
|
|
944
1286
|
label: WalletLabel;
|
|
945
1287
|
kind: "personal" | "app";
|
|
946
1288
|
app: WalletAppLink;
|
|
@@ -957,6 +1299,9 @@ type WalletBalances = {
|
|
|
957
1299
|
"ethereum-mainnet"?: WalletChainBalance;
|
|
958
1300
|
"base-mainnet"?: WalletChainBalance;
|
|
959
1301
|
"ethereum-sepolia"?: WalletChainBalance;
|
|
1302
|
+
"base-sepolia"?: WalletChainBalance;
|
|
1303
|
+
"solana-mainnet"?: WalletChainBalance;
|
|
1304
|
+
"solana-devnet"?: WalletChainBalance;
|
|
960
1305
|
};
|
|
961
1306
|
type WalletChainBalance = {
|
|
962
1307
|
native: string;
|
|
@@ -966,12 +1311,14 @@ type WalletDelegationStatus = {
|
|
|
966
1311
|
mode: WalletDelegationMode;
|
|
967
1312
|
caps: WalletDelegationCaps;
|
|
968
1313
|
policyId: string | null;
|
|
1314
|
+
slippageBps: DelegationSlippageBps;
|
|
969
1315
|
};
|
|
970
1316
|
type WalletDelegationMode = "infinite" | "custom" | "scoped" | null;
|
|
971
1317
|
type WalletDelegationCaps = {
|
|
972
1318
|
native: string;
|
|
973
1319
|
usdc: string;
|
|
974
1320
|
} | null;
|
|
1321
|
+
type DelegationSlippageBps = number | null;
|
|
975
1322
|
type WalletLabelUpdateResponse = {
|
|
976
1323
|
address: string;
|
|
977
1324
|
label: WalletLabel;
|
|
@@ -1045,6 +1392,7 @@ type ThreadLastMessagePreview = {
|
|
|
1045
1392
|
url: string;
|
|
1046
1393
|
count: number;
|
|
1047
1394
|
} | null;
|
|
1395
|
+
transaction?: MessageTransactionTronTransfer | MessageTransactionNftTransfer | null;
|
|
1048
1396
|
sentAt: string;
|
|
1049
1397
|
} | null;
|
|
1050
1398
|
type MessageEnvelope = {
|
|
@@ -1056,6 +1404,20 @@ type MessageEnvelope = {
|
|
|
1056
1404
|
iv: string;
|
|
1057
1405
|
ct: string;
|
|
1058
1406
|
} | null;
|
|
1407
|
+
type MessageTransactionTronTransfer = {
|
|
1408
|
+
kind: "tron_transfer";
|
|
1409
|
+
amountCents: number;
|
|
1410
|
+
recipientUserId: string;
|
|
1411
|
+
};
|
|
1412
|
+
type MessageTransactionNftTransfer = {
|
|
1413
|
+
kind: "nft_transfer";
|
|
1414
|
+
recipientUserId: string;
|
|
1415
|
+
collectionAddress: string;
|
|
1416
|
+
tokenId: string;
|
|
1417
|
+
amount: string;
|
|
1418
|
+
itemName: string | null;
|
|
1419
|
+
imageAssetId?: string | null;
|
|
1420
|
+
};
|
|
1059
1421
|
type GroupThreadSummary = {
|
|
1060
1422
|
kind: "group";
|
|
1061
1423
|
id: string;
|
|
@@ -1102,6 +1464,7 @@ type MessageItem = {
|
|
|
1102
1464
|
id: string;
|
|
1103
1465
|
threadId: string;
|
|
1104
1466
|
senderUserId: string;
|
|
1467
|
+
transaction?: MessageTransactionTronTransfer | MessageTransactionNftTransfer | null;
|
|
1105
1468
|
body: string;
|
|
1106
1469
|
envelope?: MessageEnvelope;
|
|
1107
1470
|
sentAt: string;
|
|
@@ -1313,11 +1676,45 @@ type InventoryHolding = {
|
|
|
1313
1676
|
tokenId: string;
|
|
1314
1677
|
amount: string;
|
|
1315
1678
|
name: string | null;
|
|
1679
|
+
description: string | null;
|
|
1316
1680
|
imageAssetId: string | null;
|
|
1317
1681
|
bannerAssetId: string | null;
|
|
1318
1682
|
devMetadata: {
|
|
1319
1683
|
[key: string]: unknown;
|
|
1320
1684
|
};
|
|
1685
|
+
appId: string | null;
|
|
1686
|
+
appName: string | null;
|
|
1687
|
+
appLogoUrl: string | null;
|
|
1688
|
+
};
|
|
1689
|
+
type InventoryPendingPermitListResponse = {
|
|
1690
|
+
permits: Array<InventoryPendingPermit>;
|
|
1691
|
+
};
|
|
1692
|
+
type InventoryPendingPermit = {
|
|
1693
|
+
id: string;
|
|
1694
|
+
appId: string;
|
|
1695
|
+
itemId: string;
|
|
1696
|
+
amount: string;
|
|
1697
|
+
priceCents: number | null;
|
|
1698
|
+
gasSponsored: boolean;
|
|
1699
|
+
environment: "development" | "production";
|
|
1700
|
+
createdAt: string;
|
|
1701
|
+
tokenId: string;
|
|
1702
|
+
name: string | null;
|
|
1703
|
+
description: string | null;
|
|
1704
|
+
imageAssetId: string | null;
|
|
1705
|
+
chain: string;
|
|
1706
|
+
collectionAddress: string;
|
|
1707
|
+
kind: "erc721" | "erc1155";
|
|
1708
|
+
};
|
|
1709
|
+
type InventoryPermitRedeemResult = {
|
|
1710
|
+
mint: MintRequestResult;
|
|
1711
|
+
charge: {
|
|
1712
|
+
currency: "tron";
|
|
1713
|
+
gasCents: number;
|
|
1714
|
+
priceCents: number;
|
|
1715
|
+
totalCents: number;
|
|
1716
|
+
gasPaidBy: "user" | "developer";
|
|
1717
|
+
};
|
|
1321
1718
|
};
|
|
1322
1719
|
type MintRequestResult = {
|
|
1323
1720
|
mintRequestId: string;
|
|
@@ -1333,6 +1730,247 @@ type MintRequestInput = {
|
|
|
1333
1730
|
tokenId?: string;
|
|
1334
1731
|
amount?: string;
|
|
1335
1732
|
};
|
|
1733
|
+
type InventoryCollectionListResponse = {
|
|
1734
|
+
collections: Array<InventoryCollectionSummary>;
|
|
1735
|
+
};
|
|
1736
|
+
type InventoryCollectionSummary = {
|
|
1737
|
+
id: string;
|
|
1738
|
+
chain: string;
|
|
1739
|
+
collectionAddress: string;
|
|
1740
|
+
kind: "erc721" | "erc1155";
|
|
1741
|
+
name: string | null;
|
|
1742
|
+
environment: "development" | "production";
|
|
1743
|
+
};
|
|
1744
|
+
type InventoryRegistrationQuote = {
|
|
1745
|
+
itemCount: number;
|
|
1746
|
+
baselineUsdCents: number;
|
|
1747
|
+
gasUsdCents: number;
|
|
1748
|
+
tron: {
|
|
1749
|
+
baselineCents: number;
|
|
1750
|
+
gasCents: number;
|
|
1751
|
+
totalCents: number;
|
|
1752
|
+
};
|
|
1753
|
+
eth: {
|
|
1754
|
+
baselineWei: string;
|
|
1755
|
+
gasWei: string;
|
|
1756
|
+
totalWei: string;
|
|
1757
|
+
};
|
|
1758
|
+
};
|
|
1759
|
+
type InventoryItemRegistrationInput = {
|
|
1760
|
+
collectionAddress: string;
|
|
1761
|
+
chain: string;
|
|
1762
|
+
items: Array<InventoryItemRegistrationSpec>;
|
|
1763
|
+
};
|
|
1764
|
+
type InventoryItemRegistrationSpec = {
|
|
1765
|
+
name?: string | null;
|
|
1766
|
+
description?: string | null;
|
|
1767
|
+
devMetadata?: {
|
|
1768
|
+
[key: string]: unknown;
|
|
1769
|
+
};
|
|
1770
|
+
supplyType?: InventorySupplyType;
|
|
1771
|
+
maxSupply?: string | null;
|
|
1772
|
+
active?: boolean;
|
|
1773
|
+
};
|
|
1774
|
+
type InventorySupplyType = "capped" | "flexible" | "unlimited";
|
|
1775
|
+
type InventoryItemRegistrationResult = {
|
|
1776
|
+
items: Array<InventoryItemRecord>;
|
|
1777
|
+
charge: {
|
|
1778
|
+
currency: "tron";
|
|
1779
|
+
amountCents: number;
|
|
1780
|
+
baselineCents: number;
|
|
1781
|
+
gasCents: number;
|
|
1782
|
+
addItemTxHash: string;
|
|
1783
|
+
};
|
|
1784
|
+
};
|
|
1785
|
+
type InventoryItemRecord = {
|
|
1786
|
+
id: string;
|
|
1787
|
+
collectionId: string;
|
|
1788
|
+
collectionAddress: string;
|
|
1789
|
+
chain: string;
|
|
1790
|
+
kind: "erc721" | "erc1155";
|
|
1791
|
+
tokenId: string;
|
|
1792
|
+
name: string | null;
|
|
1793
|
+
description: string | null;
|
|
1794
|
+
imageAssetId: string | null;
|
|
1795
|
+
bannerAssetId: string | null;
|
|
1796
|
+
devMetadata: {
|
|
1797
|
+
[key: string]: unknown;
|
|
1798
|
+
};
|
|
1799
|
+
supplyType: InventorySupplyType | null;
|
|
1800
|
+
maxSupply: string | null;
|
|
1801
|
+
active: boolean;
|
|
1802
|
+
};
|
|
1803
|
+
type InventoryItemListResponse = {
|
|
1804
|
+
items: Array<InventoryItemRecord>;
|
|
1805
|
+
};
|
|
1806
|
+
type InventoryMintPermitRecord = {
|
|
1807
|
+
id: string;
|
|
1808
|
+
appId: string;
|
|
1809
|
+
itemId: string;
|
|
1810
|
+
userId: string;
|
|
1811
|
+
amount: string;
|
|
1812
|
+
priceCents: number | null;
|
|
1813
|
+
gasSponsored: boolean;
|
|
1814
|
+
status: "pending" | "redeemed" | "revoked";
|
|
1815
|
+
createdAt: string;
|
|
1816
|
+
};
|
|
1817
|
+
type InventoryMintPermitCreateInput = {
|
|
1818
|
+
toUserId: string;
|
|
1819
|
+
amount?: string;
|
|
1820
|
+
priceCents?: number | null;
|
|
1821
|
+
gasSponsored?: boolean;
|
|
1822
|
+
};
|
|
1823
|
+
type InventoryItemHoldersResponse = {
|
|
1824
|
+
stats: InventoryItemStats;
|
|
1825
|
+
holders: Array<InventoryItemHolder>;
|
|
1826
|
+
};
|
|
1827
|
+
type InventoryItemStats = {
|
|
1828
|
+
holderCount: number;
|
|
1829
|
+
walletCount: number;
|
|
1830
|
+
totalHeld: string;
|
|
1831
|
+
};
|
|
1832
|
+
type InventoryItemHolder = {
|
|
1833
|
+
walletAddress: string;
|
|
1834
|
+
userId: string | null;
|
|
1835
|
+
amount: string;
|
|
1836
|
+
};
|
|
1837
|
+
type InventoryVaultPermitRecord = {
|
|
1838
|
+
id: string;
|
|
1839
|
+
appId: string;
|
|
1840
|
+
itemId: string;
|
|
1841
|
+
userId: string;
|
|
1842
|
+
direction: "vault_in" | "withdraw";
|
|
1843
|
+
lockKind: "vault" | "burn" | null;
|
|
1844
|
+
amount: string;
|
|
1845
|
+
gasSponsored: boolean;
|
|
1846
|
+
status: "pending" | "redeemed" | "revoked";
|
|
1847
|
+
custodyId: string | null;
|
|
1848
|
+
createdAt: string;
|
|
1849
|
+
};
|
|
1850
|
+
type InventoryVaultPermitCreateInput = {
|
|
1851
|
+
toUserId: string;
|
|
1852
|
+
lockKind: "vault" | "burn";
|
|
1853
|
+
amount?: string;
|
|
1854
|
+
gasSponsored?: boolean;
|
|
1855
|
+
};
|
|
1856
|
+
type InventoryWithdrawPermitCreateInput = {
|
|
1857
|
+
custodyId: string;
|
|
1858
|
+
};
|
|
1859
|
+
type InventoryPendingVaultPermitListResponse = {
|
|
1860
|
+
permits: Array<InventoryPendingVaultPermit>;
|
|
1861
|
+
};
|
|
1862
|
+
type InventoryPendingVaultPermit = {
|
|
1863
|
+
id: string;
|
|
1864
|
+
appId: string;
|
|
1865
|
+
itemId: string;
|
|
1866
|
+
direction: "vault_in" | "withdraw";
|
|
1867
|
+
lockKind: "vault" | "burn" | null;
|
|
1868
|
+
amount: string;
|
|
1869
|
+
gasSponsored: boolean;
|
|
1870
|
+
environment: "development" | "production";
|
|
1871
|
+
custodyId: string | null;
|
|
1872
|
+
createdAt: string;
|
|
1873
|
+
tokenId: string;
|
|
1874
|
+
name: string | null;
|
|
1875
|
+
description: string | null;
|
|
1876
|
+
imageAssetId: string | null;
|
|
1877
|
+
chain: string;
|
|
1878
|
+
collectionAddress: string;
|
|
1879
|
+
kind: "erc721" | "erc1155";
|
|
1880
|
+
};
|
|
1881
|
+
type InventorySignedVaultPermit = {
|
|
1882
|
+
permitId: string;
|
|
1883
|
+
direction: "vault_in" | "withdraw";
|
|
1884
|
+
vault: string;
|
|
1885
|
+
collection: string;
|
|
1886
|
+
user: string;
|
|
1887
|
+
tokenId: string;
|
|
1888
|
+
amount: string;
|
|
1889
|
+
lockKind: "vault" | "burn" | null;
|
|
1890
|
+
destination: string | null;
|
|
1891
|
+
deadline: number;
|
|
1892
|
+
signature: string;
|
|
1893
|
+
};
|
|
1894
|
+
type InventoryRelayedVaultQuoteResponse = {
|
|
1895
|
+
direction: "vault_in" | "withdraw";
|
|
1896
|
+
collection: string;
|
|
1897
|
+
vault: string;
|
|
1898
|
+
chainId: number;
|
|
1899
|
+
user: string;
|
|
1900
|
+
tokenId: string;
|
|
1901
|
+
amount: string;
|
|
1902
|
+
nonce: string | null;
|
|
1903
|
+
deadline: number;
|
|
1904
|
+
feeCents: number;
|
|
1905
|
+
gasWei: string;
|
|
1906
|
+
gasPaidBy: "developer" | "user";
|
|
1907
|
+
requiresUserSignature: boolean;
|
|
1908
|
+
};
|
|
1909
|
+
type InventoryRelayedVaultSubmitResponse = {
|
|
1910
|
+
ok: boolean;
|
|
1911
|
+
txHash: string;
|
|
1912
|
+
chargedCents: number;
|
|
1913
|
+
gasPaidBy: "developer" | "user";
|
|
1914
|
+
};
|
|
1915
|
+
type InventoryRelayedVaultSubmitRequest = {
|
|
1916
|
+
userSignature?: string;
|
|
1917
|
+
deadline?: number;
|
|
1918
|
+
};
|
|
1919
|
+
type InventoryNftTransferQuoteResponse = {
|
|
1920
|
+
collection: string;
|
|
1921
|
+
chainId: number;
|
|
1922
|
+
from: string;
|
|
1923
|
+
to: string;
|
|
1924
|
+
tokenId: string;
|
|
1925
|
+
amount: string;
|
|
1926
|
+
nonce: string;
|
|
1927
|
+
deadline: number;
|
|
1928
|
+
feeCents: number;
|
|
1929
|
+
gasWei: string;
|
|
1930
|
+
selfPayAvailable: boolean;
|
|
1931
|
+
};
|
|
1932
|
+
type InventoryNftTransferQuoteRequest = {
|
|
1933
|
+
toUserId: string;
|
|
1934
|
+
collection: string;
|
|
1935
|
+
tokenId: string;
|
|
1936
|
+
amount?: string;
|
|
1937
|
+
};
|
|
1938
|
+
type InventoryNftTransferResponse = {
|
|
1939
|
+
ok: boolean;
|
|
1940
|
+
txHash: string;
|
|
1941
|
+
chargedCents: number;
|
|
1942
|
+
};
|
|
1943
|
+
type InventoryNftTransferRequest = {
|
|
1944
|
+
toUserId: string;
|
|
1945
|
+
collection: string;
|
|
1946
|
+
tokenId: string;
|
|
1947
|
+
amount?: string;
|
|
1948
|
+
deadline: number;
|
|
1949
|
+
userSignature: string;
|
|
1950
|
+
threadId?: string;
|
|
1951
|
+
};
|
|
1952
|
+
type InventoryVaultCustodyListResponse = {
|
|
1953
|
+
custody: Array<InventoryVaultCustody>;
|
|
1954
|
+
};
|
|
1955
|
+
type InventoryVaultCustody = {
|
|
1956
|
+
id: string;
|
|
1957
|
+
collectionId: string;
|
|
1958
|
+
collectionAddress: string;
|
|
1959
|
+
chain: string;
|
|
1960
|
+
kind: "erc721" | "erc1155";
|
|
1961
|
+
tokenId: string;
|
|
1962
|
+
amount: string;
|
|
1963
|
+
lockKind: "vault" | "burn";
|
|
1964
|
+
vaultAddress: string;
|
|
1965
|
+
createdAt: string;
|
|
1966
|
+
name: string | null;
|
|
1967
|
+
description: string | null;
|
|
1968
|
+
imageAssetId: string | null;
|
|
1969
|
+
};
|
|
1970
|
+
type InventoryVaultForceWithdrawResponse = {
|
|
1971
|
+
ok: boolean;
|
|
1972
|
+
txHash: string;
|
|
1973
|
+
};
|
|
1336
1974
|
type NotificationListResponse = {
|
|
1337
1975
|
notifications: Array<NotificationItem>;
|
|
1338
1976
|
unreadCount: number;
|
|
@@ -1361,6 +1999,18 @@ type NotificationItem = {
|
|
|
1361
1999
|
payload: AppPageRejectedNotificationPayload;
|
|
1362
2000
|
read: boolean;
|
|
1363
2001
|
createdAt: string;
|
|
2002
|
+
} | {
|
|
2003
|
+
id: string;
|
|
2004
|
+
kind: "bip_update_published";
|
|
2005
|
+
payload: BipUpdatePublishedNotificationPayload;
|
|
2006
|
+
read: boolean;
|
|
2007
|
+
createdAt: string;
|
|
2008
|
+
} | {
|
|
2009
|
+
id: string;
|
|
2010
|
+
kind: "bip_now_playable";
|
|
2011
|
+
payload: BipNowPlayableNotificationPayload;
|
|
2012
|
+
read: boolean;
|
|
2013
|
+
createdAt: string;
|
|
1364
2014
|
} | {
|
|
1365
2015
|
id: string;
|
|
1366
2016
|
kind: "app_participant_invite";
|
|
@@ -1391,14 +2041,25 @@ type FriendAcceptedNotificationPayload = {
|
|
|
1391
2041
|
type AppPageApprovedNotificationPayload = {
|
|
1392
2042
|
appId: string;
|
|
1393
2043
|
appName: string;
|
|
1394
|
-
scope: "publish" | "changes";
|
|
2044
|
+
scope: "publish" | "changes" | "bip_publish";
|
|
1395
2045
|
};
|
|
1396
2046
|
type AppPageRejectedNotificationPayload = {
|
|
1397
2047
|
appId: string;
|
|
1398
2048
|
appName: string;
|
|
1399
|
-
scope: "publish" | "changes";
|
|
2049
|
+
scope: "publish" | "changes" | "bip_publish";
|
|
1400
2050
|
notes: string;
|
|
1401
2051
|
};
|
|
2052
|
+
type BipUpdatePublishedNotificationPayload = {
|
|
2053
|
+
appId: string;
|
|
2054
|
+
appName: string;
|
|
2055
|
+
appSlug: string | null;
|
|
2056
|
+
updateId: string;
|
|
2057
|
+
};
|
|
2058
|
+
type BipNowPlayableNotificationPayload = {
|
|
2059
|
+
appId: string;
|
|
2060
|
+
appName: string;
|
|
2061
|
+
appSlug: string | null;
|
|
2062
|
+
};
|
|
1402
2063
|
type AppParticipantInviteNotificationPayload = {
|
|
1403
2064
|
appId: string;
|
|
1404
2065
|
appName: string;
|
|
@@ -1428,6 +2089,9 @@ type FriendListItem = {
|
|
|
1428
2089
|
onlineStatus: OnlineStatus;
|
|
1429
2090
|
};
|
|
1430
2091
|
type OnlineStatus = "online" | "offline";
|
|
2092
|
+
type AppFriendListResponse = {
|
|
2093
|
+
friends: Array<ThreadParticipant>;
|
|
2094
|
+
};
|
|
1431
2095
|
type FriendRequestDecision = {
|
|
1432
2096
|
decision: "accept" | "reject";
|
|
1433
2097
|
};
|
|
@@ -1500,7 +2164,7 @@ type ProfileRecentReview = {
|
|
|
1500
2164
|
appId: string;
|
|
1501
2165
|
appName: string;
|
|
1502
2166
|
appLogoUrl: string | null;
|
|
1503
|
-
|
|
2167
|
+
recommended: boolean;
|
|
1504
2168
|
body: string;
|
|
1505
2169
|
createdAt: string;
|
|
1506
2170
|
};
|
|
@@ -1557,17 +2221,20 @@ type CreateDeveloperAppChain = {
|
|
|
1557
2221
|
};
|
|
1558
2222
|
type UpdateDeveloperApp = {
|
|
1559
2223
|
name?: DeveloperAppName;
|
|
2224
|
+
slug?: AppPageSlug | null;
|
|
1560
2225
|
logoUrl?: string | null;
|
|
1561
2226
|
testAccess?: "private" | "public";
|
|
1562
2227
|
redirectUris?: Array<string>;
|
|
1563
2228
|
embedOrigins?: Array<EmbedOrigin>;
|
|
1564
2229
|
acceptedCurrencies?: AcceptedCurrencies;
|
|
2230
|
+
acceptedNetworks?: AcceptedNetworks;
|
|
1565
2231
|
paymentStatusWebhookUrl?: string | null;
|
|
1566
2232
|
paymentStatusWebhookUrlTest?: string | null;
|
|
1567
2233
|
};
|
|
1568
2234
|
type EmbedOrigin = string;
|
|
1569
2235
|
type AcceptedCurrencies = Array<PlatformCurrency>;
|
|
1570
2236
|
type PlatformCurrency = "eth" | "tron";
|
|
2237
|
+
type AcceptedNetworks = Array<PaymentNetwork> | null;
|
|
1571
2238
|
type DeveloperLogoUploadResponse = {
|
|
1572
2239
|
logoUrl: string | null;
|
|
1573
2240
|
};
|
|
@@ -1630,7 +2297,7 @@ type DeveloperAppWalletsResponse = {
|
|
|
1630
2297
|
};
|
|
1631
2298
|
type DeveloperAppWalletItem = {
|
|
1632
2299
|
chain: string;
|
|
1633
|
-
address: string;
|
|
2300
|
+
address: string | string;
|
|
1634
2301
|
custody: "server" | null;
|
|
1635
2302
|
walletId: string | null;
|
|
1636
2303
|
autoSweepEnabled: boolean;
|
|
@@ -1651,7 +2318,7 @@ type DeveloperAppProvisionWalletResponse = {
|
|
|
1651
2318
|
chain: string;
|
|
1652
2319
|
custody: "server";
|
|
1653
2320
|
walletId: string;
|
|
1654
|
-
address: string;
|
|
2321
|
+
address: string | string;
|
|
1655
2322
|
};
|
|
1656
2323
|
type DeveloperAppWithdrawResponse = {
|
|
1657
2324
|
appId: string;
|
|
@@ -1805,6 +2472,7 @@ type DeveloperProductionRequestPayload = {
|
|
|
1805
2472
|
type DeveloperAppItem = {
|
|
1806
2473
|
id: string;
|
|
1807
2474
|
name: DeveloperAppName;
|
|
2475
|
+
slug: AppPageSlug | null;
|
|
1808
2476
|
logoUrl: string | null;
|
|
1809
2477
|
environment: "development" | "production";
|
|
1810
2478
|
productionApprovedAt: string | null;
|
|
@@ -1813,6 +2481,7 @@ type DeveloperAppItem = {
|
|
|
1813
2481
|
redirectUris: Array<string>;
|
|
1814
2482
|
embedOrigins: Array<EmbedOrigin>;
|
|
1815
2483
|
acceptedCurrencies: AcceptedCurrencies;
|
|
2484
|
+
acceptedNetworks: AcceptedNetworks;
|
|
1816
2485
|
payoutAddresses: Array<DeveloperAppPayoutAddressItem>;
|
|
1817
2486
|
keys: Array<DeveloperAppKeyItem>;
|
|
1818
2487
|
pendingProductionRequestId: string | null;
|
|
@@ -1856,15 +2525,29 @@ type AppPageDraft = {
|
|
|
1856
2525
|
gallery: AppPageGallery;
|
|
1857
2526
|
chapters: AppPageChapters;
|
|
1858
2527
|
links: AppPageLinks;
|
|
2528
|
+
platforms: AppPagePlatforms;
|
|
2529
|
+
gameType: AppPageGameType;
|
|
2530
|
+
ageRating: AppPageAgeRating;
|
|
2531
|
+
languages: AppPageLanguages;
|
|
2532
|
+
releaseStatus: AppPageReleaseStatus;
|
|
1859
2533
|
firstPublishedAt: string | null;
|
|
1860
2534
|
reviewedAt: string | null;
|
|
1861
2535
|
reviewNotes: string | null;
|
|
1862
2536
|
hiddenAt: string | null;
|
|
1863
2537
|
hiddenReasonPublic: string | null;
|
|
1864
2538
|
pendingReview: boolean;
|
|
2539
|
+
bip: AppPageBipState;
|
|
2540
|
+
};
|
|
2541
|
+
type AppPageBipState = {
|
|
2542
|
+
enabled: boolean;
|
|
2543
|
+
status: "draft" | "pending_review" | "published" | "hidden";
|
|
2544
|
+
firstPublishedAt: string | null;
|
|
2545
|
+
reviewedAt: string | null;
|
|
2546
|
+
reviewNotes: string | null;
|
|
2547
|
+
hiddenAt: string | null;
|
|
2548
|
+
hiddenReasonPublic: string | null;
|
|
1865
2549
|
};
|
|
1866
2550
|
type UpdateAppPage = {
|
|
1867
|
-
slug?: AppPageSlug | null;
|
|
1868
2551
|
categories?: AppPageCategories;
|
|
1869
2552
|
tagline?: AppPageTagline | null;
|
|
1870
2553
|
bannerUrl?: string | null;
|
|
@@ -1878,10 +2561,18 @@ type UpdateAppPage = {
|
|
|
1878
2561
|
gallery?: AppPageGallery;
|
|
1879
2562
|
chapters?: AppPageChapters;
|
|
1880
2563
|
links?: AppPageLinks;
|
|
2564
|
+
platforms?: AppPagePlatforms;
|
|
2565
|
+
gameType?: AppPageGameType;
|
|
2566
|
+
ageRating?: AppPageAgeRating;
|
|
2567
|
+
languages?: AppPageLanguages;
|
|
2568
|
+
releaseStatus?: AppPageReleaseStatus;
|
|
1881
2569
|
};
|
|
1882
2570
|
type AppPageGalleryUploadResponse = {
|
|
1883
2571
|
url: string;
|
|
1884
2572
|
};
|
|
2573
|
+
type AppPageBipToggle = {
|
|
2574
|
+
enabled: boolean;
|
|
2575
|
+
};
|
|
1885
2576
|
type AdminActivePlayersResponse = {
|
|
1886
2577
|
players: Array<AdminActivePlayer>;
|
|
1887
2578
|
total: number;
|
|
@@ -2020,6 +2711,11 @@ type AdminAppPageItem = {
|
|
|
2020
2711
|
hiddenAt: string | null;
|
|
2021
2712
|
hiddenReasonInternal: string | null;
|
|
2022
2713
|
pendingChangesSubmittedAt: string | null;
|
|
2714
|
+
bipEnabled: boolean;
|
|
2715
|
+
bipStatus: "draft" | "pending_review" | "published" | "hidden";
|
|
2716
|
+
bipFirstPublishedAt: string | null;
|
|
2717
|
+
bipHiddenAt: string | null;
|
|
2718
|
+
openReportCount: number;
|
|
2023
2719
|
};
|
|
2024
2720
|
type AdminAppPageStatusResponse = {
|
|
2025
2721
|
status: "draft" | "pending_review" | "published" | "hidden";
|
|
@@ -2045,6 +2741,25 @@ type AdminAppPageDiffField = {
|
|
|
2045
2741
|
from: string;
|
|
2046
2742
|
to: string;
|
|
2047
2743
|
};
|
|
2744
|
+
type AdminAppPageBipStatusResponse = {
|
|
2745
|
+
bipStatus: "draft" | "pending_review" | "published" | "hidden";
|
|
2746
|
+
};
|
|
2747
|
+
type AdminAppContentReportListResponse = {
|
|
2748
|
+
reports: Array<AdminAppContentReportItem>;
|
|
2749
|
+
total: number;
|
|
2750
|
+
hasMore: boolean;
|
|
2751
|
+
};
|
|
2752
|
+
type AdminAppContentReportItem = {
|
|
2753
|
+
id: string;
|
|
2754
|
+
category: AppContentReportCategory;
|
|
2755
|
+
details: string | null;
|
|
2756
|
+
status: AppContentReportStatus;
|
|
2757
|
+
acknowledgedAt: string | null;
|
|
2758
|
+
createdAt: string;
|
|
2759
|
+
appId: string;
|
|
2760
|
+
appName: string;
|
|
2761
|
+
appSlug: string | null;
|
|
2762
|
+
};
|
|
2048
2763
|
type PlatformFeesResponse = {
|
|
2049
2764
|
purchaseFeeBps: number;
|
|
2050
2765
|
stakeFeeBps: number;
|
|
@@ -2225,6 +2940,13 @@ type AppealResolveRequest = {
|
|
|
2225
2940
|
decision: "refund" | "dismiss";
|
|
2226
2941
|
notes?: string;
|
|
2227
2942
|
};
|
|
2943
|
+
type PaymentRatesResponse = {
|
|
2944
|
+
asOf: string;
|
|
2945
|
+
ethUsd: number | null;
|
|
2946
|
+
solUsd: number | null;
|
|
2947
|
+
solLamportsPerCent: number | null;
|
|
2948
|
+
tronUsdPerToken: number;
|
|
2949
|
+
};
|
|
2228
2950
|
type AppealFileResponse = {
|
|
2229
2951
|
appealId: string;
|
|
2230
2952
|
paymentId: string;
|
|
@@ -2285,229 +3007,262 @@ type PostMeDeveloperAppsByAppIdPageThumbnailVideoResponses = {
|
|
|
2285
3007
|
type PostMeDeveloperAppsByAppIdPageThumbnailVideoResponse = PostMeDeveloperAppsByAppIdPageThumbnailVideoResponses[keyof PostMeDeveloperAppsByAppIdPageThumbnailVideoResponses];
|
|
2286
3008
|
//#endregion
|
|
2287
3009
|
//#region src/account/avatar.d.ts
|
|
2288
|
-
declare function uploadAvatar(
|
|
3010
|
+
declare function uploadAvatar(context: TransportContext, input: {
|
|
2289
3011
|
readonly bearer: string;
|
|
2290
3012
|
readonly file: Blob | ArrayBufferView | ArrayBuffer;
|
|
2291
3013
|
readonly filename: string;
|
|
2292
3014
|
readonly contentType: string;
|
|
2293
3015
|
}): Promise<AuthUser>;
|
|
2294
|
-
declare function deleteAvatar(
|
|
3016
|
+
declare function deleteAvatar(context: TransportContext, input: {
|
|
2295
3017
|
readonly bearer: string;
|
|
2296
3018
|
}): Promise<AuthUser>;
|
|
2297
3019
|
//#endregion
|
|
2298
3020
|
//#region src/account/giphy.d.ts
|
|
2299
|
-
declare function searchGiphy(
|
|
3021
|
+
declare function searchGiphy(context: TransportContext, input: {
|
|
2300
3022
|
readonly bearer: string;
|
|
2301
3023
|
readonly q: string;
|
|
2302
3024
|
}): Promise<GiphySearchResponse>;
|
|
2303
3025
|
//#endregion
|
|
2304
3026
|
//#region src/account/payment-authorizations.d.ts
|
|
2305
|
-
declare function listPaymentAuthorizations(
|
|
3027
|
+
declare function listPaymentAuthorizations(context: TransportContext, input: {
|
|
2306
3028
|
readonly bearer: string;
|
|
2307
3029
|
}): Promise<ListAppPaymentAuthorizationsResponse>;
|
|
2308
|
-
declare function updatePaymentAuthorization(
|
|
3030
|
+
declare function updatePaymentAuthorization(context: TransportContext, input: {
|
|
2309
3031
|
readonly bearer: string;
|
|
2310
3032
|
readonly consentId: string;
|
|
2311
3033
|
readonly body: UpdateAppPaymentAuthorization;
|
|
2312
3034
|
}): Promise<void>;
|
|
2313
|
-
declare function revokePaymentAuthorization(
|
|
3035
|
+
declare function revokePaymentAuthorization(context: TransportContext, input: {
|
|
2314
3036
|
readonly bearer: string;
|
|
2315
3037
|
readonly consentId: string;
|
|
2316
3038
|
}): Promise<void>;
|
|
2317
3039
|
//#endregion
|
|
2318
3040
|
//#region src/account/presence-heartbeat.d.ts
|
|
2319
|
-
declare function sendPresenceHeartbeat(
|
|
3041
|
+
declare function sendPresenceHeartbeat(context: TransportContext, input: {
|
|
2320
3042
|
readonly bearer: string;
|
|
2321
3043
|
}): Promise<WebPresenceHeartbeatAck>;
|
|
2322
3044
|
//#endregion
|
|
2323
3045
|
//#region src/account/profile.d.ts
|
|
2324
|
-
declare function updateProfile(
|
|
3046
|
+
declare function updateProfile(context: TransportContext, input: {
|
|
2325
3047
|
readonly bearer: string;
|
|
2326
3048
|
readonly body: ProfileUpdate;
|
|
2327
3049
|
}): Promise<AuthUser>;
|
|
2328
3050
|
//#endregion
|
|
2329
3051
|
//#region src/admin/active-players.d.ts
|
|
2330
|
-
declare function listActivePlayers(
|
|
3052
|
+
declare function listActivePlayers(context: TransportContext, input: {
|
|
2331
3053
|
readonly bearer: string;
|
|
2332
3054
|
}): Promise<AdminActivePlayersResponse>;
|
|
2333
3055
|
//#endregion
|
|
2334
3056
|
//#region src/admin/app-pages.d.ts
|
|
2335
|
-
declare function listAppPages(
|
|
3057
|
+
declare function listAppPages(context: TransportContext, input: {
|
|
2336
3058
|
readonly bearer: string;
|
|
2337
|
-
readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes";
|
|
3059
|
+
readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes" | "bip_pending_review";
|
|
2338
3060
|
}): Promise<AdminAppPageListResponse>;
|
|
2339
|
-
declare function getAppPageChanges(
|
|
3061
|
+
declare function getAppPageChanges(context: TransportContext, input: {
|
|
2340
3062
|
readonly bearer: string;
|
|
2341
3063
|
readonly appId: string;
|
|
2342
3064
|
}): Promise<AdminAppPageDiffResponse>;
|
|
2343
|
-
declare function reviewAppPageChanges(
|
|
3065
|
+
declare function reviewAppPageChanges(context: TransportContext, input: {
|
|
2344
3066
|
readonly bearer: string;
|
|
2345
3067
|
readonly appId: string;
|
|
2346
3068
|
readonly body: ReviewAppPage;
|
|
2347
3069
|
}): Promise<AdminAppPageStatusResponse>;
|
|
2348
|
-
declare function hideAppPage(
|
|
3070
|
+
declare function hideAppPage(context: TransportContext, input: {
|
|
2349
3071
|
readonly bearer: string;
|
|
2350
3072
|
readonly appId: string;
|
|
2351
3073
|
readonly body: HideAppPage;
|
|
2352
3074
|
}): Promise<AdminAppPageStatusResponse>;
|
|
2353
|
-
declare function unhideAppPage(
|
|
3075
|
+
declare function unhideAppPage(context: TransportContext, input: {
|
|
2354
3076
|
readonly bearer: string;
|
|
2355
3077
|
readonly appId: string;
|
|
2356
3078
|
}): Promise<AdminAppPageStatusResponse>;
|
|
2357
|
-
declare function reviewAppPage(
|
|
3079
|
+
declare function reviewAppPage(context: TransportContext, input: {
|
|
2358
3080
|
readonly bearer: string;
|
|
2359
3081
|
readonly appId: string;
|
|
2360
3082
|
readonly body: ReviewAppPage;
|
|
2361
3083
|
}): Promise<AdminAppPageStatusResponse>;
|
|
3084
|
+
declare function reviewAppPageBip(context: TransportContext, input: {
|
|
3085
|
+
readonly bearer: string;
|
|
3086
|
+
readonly appId: string;
|
|
3087
|
+
readonly body: ReviewAppPage;
|
|
3088
|
+
}): Promise<AdminAppPageBipStatusResponse>;
|
|
3089
|
+
declare function hideAppPageBip(context: TransportContext, input: {
|
|
3090
|
+
readonly bearer: string;
|
|
3091
|
+
readonly appId: string;
|
|
3092
|
+
readonly body: HideAppPage;
|
|
3093
|
+
}): Promise<AdminAppPageBipStatusResponse>;
|
|
3094
|
+
declare function unhideAppPageBip(context: TransportContext, input: {
|
|
3095
|
+
readonly bearer: string;
|
|
3096
|
+
readonly appId: string;
|
|
3097
|
+
}): Promise<AdminAppPageBipStatusResponse>;
|
|
2362
3098
|
//#endregion
|
|
2363
3099
|
//#region src/admin/appeals.d.ts
|
|
2364
|
-
declare function listAppealQueue(
|
|
3100
|
+
declare function listAppealQueue(context: TransportContext, input: {
|
|
2365
3101
|
readonly bearer: string;
|
|
2366
3102
|
readonly statuses?: readonly AppealStatusRow["status"][];
|
|
2367
3103
|
readonly chain?: string;
|
|
2368
3104
|
readonly cursorFiledAt?: string;
|
|
2369
3105
|
readonly limit?: number;
|
|
2370
3106
|
}): Promise<ListAppealsResponse>;
|
|
2371
|
-
declare function getAdminAppealRoom(
|
|
3107
|
+
declare function getAdminAppealRoom(context: TransportContext, input: {
|
|
2372
3108
|
readonly bearer: string;
|
|
2373
3109
|
readonly appealId: string;
|
|
2374
3110
|
}): Promise<AppealRoomView>;
|
|
2375
|
-
declare function postAdminAppealRoomMessage(
|
|
3111
|
+
declare function postAdminAppealRoomMessage(context: TransportContext, input: {
|
|
2376
3112
|
readonly bearer: string;
|
|
2377
3113
|
readonly appealId: string;
|
|
2378
3114
|
readonly body: AppealRoomPostRequest;
|
|
2379
3115
|
}): Promise<AppealRoomPostResponse>;
|
|
2380
|
-
declare function uploadAdminAppealRoomAttachment(
|
|
3116
|
+
declare function uploadAdminAppealRoomAttachment(context: TransportContext, input: {
|
|
2381
3117
|
readonly bearer: string;
|
|
2382
3118
|
readonly appealId: string;
|
|
2383
3119
|
readonly file: Blob | ArrayBufferView | ArrayBuffer;
|
|
2384
3120
|
readonly filename: string;
|
|
2385
3121
|
readonly contentType: string;
|
|
2386
3122
|
}): Promise<UploadAttachmentResponse>;
|
|
2387
|
-
declare function resolveAppeal(
|
|
3123
|
+
declare function resolveAppeal(context: TransportContext, input: {
|
|
2388
3124
|
readonly bearer: string;
|
|
2389
3125
|
readonly appealId: string;
|
|
2390
3126
|
readonly body: AppealResolveRequest;
|
|
2391
3127
|
}): Promise<AppealResolveSignedResponse>;
|
|
2392
3128
|
//#endregion
|
|
3129
|
+
//#region src/admin/content-reports.d.ts
|
|
3130
|
+
declare function listAdminContentReports(context: TransportContext, input: {
|
|
3131
|
+
readonly bearer: string;
|
|
3132
|
+
readonly status?: "open" | "acknowledged" | "dismissed" | "all";
|
|
3133
|
+
readonly limit?: number;
|
|
3134
|
+
readonly offset?: number;
|
|
3135
|
+
}): Promise<AdminAppContentReportListResponse>;
|
|
3136
|
+
declare function triageAdminContentReport(context: TransportContext, input: {
|
|
3137
|
+
readonly bearer: string;
|
|
3138
|
+
readonly reportId: string;
|
|
3139
|
+
readonly status: "acknowledged" | "dismissed";
|
|
3140
|
+
}): Promise<AppContentReport>;
|
|
3141
|
+
//#endregion
|
|
2393
3142
|
//#region src/admin/developers.d.ts
|
|
2394
|
-
declare function listDeveloperRequests(
|
|
3143
|
+
declare function listDeveloperRequests(context: TransportContext, input: {
|
|
2395
3144
|
readonly bearer: string;
|
|
2396
3145
|
readonly status?: "pending" | "approved" | "rejected" | "cancelled";
|
|
2397
3146
|
readonly kind?: "role" | "production";
|
|
2398
3147
|
}): Promise<ListDeveloperRequestsResponse>;
|
|
2399
|
-
declare function reviewDeveloperRequest(
|
|
3148
|
+
declare function reviewDeveloperRequest(context: TransportContext, input: {
|
|
2400
3149
|
readonly bearer: string;
|
|
2401
3150
|
readonly id: string;
|
|
2402
3151
|
readonly body: ReviewDeveloperRequest;
|
|
2403
3152
|
}): Promise<ReviewDeveloperRequestResponse>;
|
|
2404
|
-
declare function listDevelopers(
|
|
3153
|
+
declare function listDevelopers(context: TransportContext, input: {
|
|
2405
3154
|
readonly bearer: string;
|
|
2406
3155
|
}): Promise<AdminDeveloperListResponse>;
|
|
2407
3156
|
//#endregion
|
|
3157
|
+
//#region src/admin/inventory-vault.d.ts
|
|
3158
|
+
declare function forceWithdrawVaultCustody(context: TransportContext, input: {
|
|
3159
|
+
readonly bearer: string;
|
|
3160
|
+
readonly custodyId: string;
|
|
3161
|
+
}): Promise<InventoryVaultForceWithdrawResponse>;
|
|
3162
|
+
//#endregion
|
|
2408
3163
|
//#region src/admin/payments.d.ts
|
|
2409
|
-
declare function getPlatformFees(
|
|
3164
|
+
declare function getPlatformFees(context: TransportContext, input: {
|
|
2410
3165
|
readonly bearer: string;
|
|
2411
3166
|
}): Promise<PlatformFeesResponse>;
|
|
2412
|
-
declare function updatePlatformFees(
|
|
3167
|
+
declare function updatePlatformFees(context: TransportContext, input: {
|
|
2413
3168
|
readonly bearer: string;
|
|
2414
3169
|
readonly body: UpdatePlatformFeesRequest;
|
|
2415
3170
|
}): Promise<UpdatePlatformFeesResponse>;
|
|
2416
|
-
declare function getAppFeeConfig(
|
|
3171
|
+
declare function getAppFeeConfig(context: TransportContext, input: {
|
|
2417
3172
|
readonly bearer: string;
|
|
2418
3173
|
readonly appId: string;
|
|
2419
3174
|
}): Promise<AppFeeConfigResponse>;
|
|
2420
|
-
declare function updateAppFeeConfig(
|
|
3175
|
+
declare function updateAppFeeConfig(context: TransportContext, input: {
|
|
2421
3176
|
readonly bearer: string;
|
|
2422
3177
|
readonly appId: string;
|
|
2423
3178
|
readonly body: UpdateAppFeeConfigRequest;
|
|
2424
3179
|
}): Promise<AppFeeConfigResponse>;
|
|
2425
|
-
declare function setProcessorWhitelist(
|
|
3180
|
+
declare function setProcessorWhitelist(context: TransportContext, input: {
|
|
2426
3181
|
readonly bearer: string;
|
|
2427
3182
|
readonly body: SetProcessorWhitelistRequest;
|
|
2428
3183
|
}): Promise<CalldataEnvelope>;
|
|
2429
|
-
declare function rotateProcessorTreasury(
|
|
3184
|
+
declare function rotateProcessorTreasury(context: TransportContext, input: {
|
|
2430
3185
|
readonly bearer: string;
|
|
2431
3186
|
readonly processorId: string;
|
|
2432
3187
|
readonly body: RotateProcessorTreasuryRequest;
|
|
2433
3188
|
}): Promise<CalldataEnvelope>;
|
|
2434
|
-
declare function setVaultOperator(
|
|
3189
|
+
declare function setVaultOperator(context: TransportContext, input: {
|
|
2435
3190
|
readonly bearer: string;
|
|
2436
3191
|
readonly vaultAddress: string;
|
|
2437
3192
|
readonly body: SetOperatorRequest;
|
|
2438
3193
|
}): Promise<CalldataEnvelope>;
|
|
2439
|
-
declare function setVaultPause(
|
|
3194
|
+
declare function setVaultPause(context: TransportContext, input: {
|
|
2440
3195
|
readonly bearer: string;
|
|
2441
3196
|
readonly vaultAddress: string;
|
|
2442
3197
|
readonly body: PauseRequest;
|
|
2443
3198
|
}): Promise<CalldataEnvelope>;
|
|
2444
|
-
declare function setVaultWithdrawLockDefault(
|
|
3199
|
+
declare function setVaultWithdrawLockDefault(context: TransportContext, input: {
|
|
2445
3200
|
readonly bearer: string;
|
|
2446
3201
|
readonly vaultAddress: string;
|
|
2447
3202
|
readonly body: SetDefaultWithdrawLockRequest;
|
|
2448
3203
|
}): Promise<CalldataEnvelope>;
|
|
2449
|
-
declare function setVaultWithdrawLockOverride(
|
|
3204
|
+
declare function setVaultWithdrawLockOverride(context: TransportContext, input: {
|
|
2450
3205
|
readonly bearer: string;
|
|
2451
3206
|
readonly vaultAddress: string;
|
|
2452
3207
|
readonly body: SetWithdrawLockOverrideRequest;
|
|
2453
3208
|
}): Promise<CalldataEnvelope>;
|
|
2454
|
-
declare function addAppealBlacklist(
|
|
3209
|
+
declare function addAppealBlacklist(context: TransportContext, input: {
|
|
2455
3210
|
readonly bearer: string;
|
|
2456
3211
|
readonly body: AppealBlacklistAddRequest;
|
|
2457
3212
|
}): Promise<AppealBlacklistEntry>;
|
|
2458
|
-
declare function removeAppealBlacklist(
|
|
3213
|
+
declare function removeAppealBlacklist(context: TransportContext, input: {
|
|
2459
3214
|
readonly bearer: string;
|
|
2460
3215
|
readonly body: AppealBlacklistRemoveRequest;
|
|
2461
3216
|
}): Promise<AppealBlacklistRemoveResponse>;
|
|
2462
|
-
declare function listAppealBlacklist(
|
|
3217
|
+
declare function listAppealBlacklist(context: TransportContext, input: {
|
|
2463
3218
|
readonly bearer: string;
|
|
2464
3219
|
readonly chain?: string;
|
|
2465
3220
|
}): Promise<AppealBlacklistListResponse>;
|
|
2466
3221
|
//#endregion
|
|
2467
3222
|
//#region src/admin/tron-cashouts.d.ts
|
|
2468
|
-
declare function listTronCashoutQueue(
|
|
3223
|
+
declare function listTronCashoutQueue(context: TransportContext, input: {
|
|
2469
3224
|
readonly bearer: string;
|
|
2470
3225
|
readonly status?: AdminTronCashoutItem["status"];
|
|
2471
3226
|
}): Promise<AdminTronCashoutListResponse>;
|
|
2472
|
-
declare function approveTronCashout(
|
|
3227
|
+
declare function approveTronCashout(context: TransportContext, input: {
|
|
2473
3228
|
readonly bearer: string;
|
|
2474
3229
|
readonly id: string;
|
|
2475
3230
|
}): Promise<AdminTronCashoutItem>;
|
|
2476
|
-
declare function rejectTronCashout(
|
|
3231
|
+
declare function rejectTronCashout(context: TransportContext, input: {
|
|
2477
3232
|
readonly bearer: string;
|
|
2478
3233
|
readonly id: string;
|
|
2479
3234
|
readonly body: AdminTronCashoutRejectRequest;
|
|
2480
3235
|
}): Promise<AdminTronCashoutItem>;
|
|
2481
3236
|
//#endregion
|
|
2482
3237
|
//#region src/admin/users.d.ts
|
|
2483
|
-
declare function listAdmins(
|
|
3238
|
+
declare function listAdmins(context: TransportContext, input: {
|
|
2484
3239
|
readonly bearer: string;
|
|
2485
3240
|
}): Promise<ListAdminsResponse>;
|
|
2486
|
-
declare function addAdmin(
|
|
3241
|
+
declare function addAdmin(context: TransportContext, input: {
|
|
2487
3242
|
readonly bearer: string;
|
|
2488
3243
|
readonly body: AddAdminRequest;
|
|
2489
3244
|
}): Promise<AdminMutationResponse>;
|
|
2490
|
-
declare function updateAdminRole(
|
|
3245
|
+
declare function updateAdminRole(context: TransportContext, input: {
|
|
2491
3246
|
readonly bearer: string;
|
|
2492
3247
|
readonly id: string;
|
|
2493
3248
|
readonly body: UpdateAdminRoleRequest;
|
|
2494
3249
|
}): Promise<AdminRoleChangeResponse>;
|
|
2495
|
-
declare function removeAdmin(
|
|
3250
|
+
declare function removeAdmin(context: TransportContext, input: {
|
|
2496
3251
|
readonly bearer: string;
|
|
2497
3252
|
readonly id: string;
|
|
2498
3253
|
}): Promise<AdminMutationResponse>;
|
|
2499
|
-
declare function listUsers(
|
|
3254
|
+
declare function listUsers(context: TransportContext, input: {
|
|
2500
3255
|
readonly bearer: string;
|
|
2501
3256
|
readonly search?: string;
|
|
2502
3257
|
readonly offset?: number;
|
|
2503
3258
|
readonly limit?: number;
|
|
2504
3259
|
}): Promise<AdminUserListResponse>;
|
|
2505
|
-
declare function updateUserBan(
|
|
3260
|
+
declare function updateUserBan(context: TransportContext, input: {
|
|
2506
3261
|
readonly bearer: string;
|
|
2507
3262
|
readonly id: string;
|
|
2508
3263
|
readonly body: AdminUserBanRequest;
|
|
2509
3264
|
}): Promise<AdminUserBanResponse>;
|
|
2510
|
-
declare function listAudit(
|
|
3265
|
+
declare function listAudit(context: TransportContext, input: {
|
|
2511
3266
|
readonly bearer: string;
|
|
2512
3267
|
readonly action?: string;
|
|
2513
3268
|
readonly actorId?: string;
|
|
@@ -2518,20 +3273,116 @@ declare function listAudit(ctx: TransportContext, input: {
|
|
|
2518
3273
|
}): Promise<AdminAuditListResponse>;
|
|
2519
3274
|
//#endregion
|
|
2520
3275
|
//#region src/catalog/app-page.d.ts
|
|
2521
|
-
declare function getAppPage(
|
|
3276
|
+
declare function getAppPage(context: TransportContext, input: {
|
|
2522
3277
|
readonly bearer?: string;
|
|
2523
3278
|
readonly slug: string;
|
|
2524
3279
|
}): Promise<PublicAppPage>;
|
|
2525
3280
|
//#endregion
|
|
3281
|
+
//#region src/catalog/bip-updates.d.ts
|
|
3282
|
+
declare function listBipUpdates(context: TransportContext, input: {
|
|
3283
|
+
readonly bearer?: string;
|
|
3284
|
+
readonly slug: string;
|
|
3285
|
+
readonly limit?: number;
|
|
3286
|
+
readonly offset?: number;
|
|
3287
|
+
}): Promise<BipUpdateListResponse>;
|
|
3288
|
+
declare function listBipUpdateComments(context: TransportContext, input: {
|
|
3289
|
+
readonly bearer?: string;
|
|
3290
|
+
readonly slug: string;
|
|
3291
|
+
readonly updateId: string;
|
|
3292
|
+
readonly limit?: number;
|
|
3293
|
+
readonly offset?: number;
|
|
3294
|
+
}): Promise<BipUpdateCommentListResponse>;
|
|
3295
|
+
declare function getMyBipUpdateReactions(context: TransportContext, input: {
|
|
3296
|
+
readonly bearer: string;
|
|
3297
|
+
readonly slug: string;
|
|
3298
|
+
}): Promise<MyBipUpdateReactionsResponse>;
|
|
3299
|
+
declare function setBipUpdateReaction(context: TransportContext, input: {
|
|
3300
|
+
readonly bearer: string;
|
|
3301
|
+
readonly slug: string;
|
|
3302
|
+
readonly updateId: string;
|
|
3303
|
+
readonly body: SetBipUpdateReactionRequest;
|
|
3304
|
+
}): Promise<SetBipUpdateReactionResponse>;
|
|
3305
|
+
declare function commentOnBipUpdate(context: TransportContext, input: {
|
|
3306
|
+
readonly bearer: string;
|
|
3307
|
+
readonly slug: string;
|
|
3308
|
+
readonly updateId: string;
|
|
3309
|
+
readonly body: string;
|
|
3310
|
+
}): Promise<CreateBipUpdateCommentResponse>;
|
|
3311
|
+
declare function deleteBipUpdateComment(context: TransportContext, input: {
|
|
3312
|
+
readonly bearer: string;
|
|
3313
|
+
readonly slug: string;
|
|
3314
|
+
readonly commentId: string;
|
|
3315
|
+
}): Promise<DeleteBipUpdateCommentResponse>;
|
|
3316
|
+
declare function listDeveloperBipUpdates(context: TransportContext, input: {
|
|
3317
|
+
readonly bearer: string;
|
|
3318
|
+
readonly appId: string;
|
|
3319
|
+
readonly limit?: number;
|
|
3320
|
+
readonly offset?: number;
|
|
3321
|
+
}): Promise<BipUpdateListResponse>;
|
|
3322
|
+
declare function createBipUpdate(context: TransportContext, input: {
|
|
3323
|
+
readonly bearer: string;
|
|
3324
|
+
readonly appId: string;
|
|
3325
|
+
readonly body: CreateBipUpdateRequest;
|
|
3326
|
+
}): Promise<BipUpdate>;
|
|
3327
|
+
declare function updateBipUpdate(context: TransportContext, input: {
|
|
3328
|
+
readonly bearer: string;
|
|
3329
|
+
readonly appId: string;
|
|
3330
|
+
readonly updateId: string;
|
|
3331
|
+
readonly body: UpdateBipUpdateRequest;
|
|
3332
|
+
}): Promise<BipUpdate>;
|
|
3333
|
+
declare function deleteBipUpdate(context: TransportContext, input: {
|
|
3334
|
+
readonly bearer: string;
|
|
3335
|
+
readonly appId: string;
|
|
3336
|
+
readonly updateId: string;
|
|
3337
|
+
}): Promise<DeleteBipUpdateResponse>;
|
|
3338
|
+
declare function uploadBipUpdateMedia(context: TransportContext, input: {
|
|
3339
|
+
readonly bearer: string;
|
|
3340
|
+
readonly appId: string;
|
|
3341
|
+
readonly file: Blob;
|
|
3342
|
+
readonly filename: string;
|
|
3343
|
+
readonly contentType: string;
|
|
3344
|
+
}): Promise<BipUpdateMediaUploadResponse>;
|
|
3345
|
+
declare function getBipInterestCount(context: TransportContext, input: {
|
|
3346
|
+
readonly bearer?: string;
|
|
3347
|
+
readonly slug: string;
|
|
3348
|
+
}): Promise<BipInterestCountResponse>;
|
|
3349
|
+
declare function getMyBipEngagement(context: TransportContext, input: {
|
|
3350
|
+
readonly bearer: string;
|
|
3351
|
+
readonly slug: string;
|
|
3352
|
+
}): Promise<BipEngagementResponse>;
|
|
3353
|
+
declare function registerBipInterest(context: TransportContext, input: {
|
|
3354
|
+
readonly bearer: string;
|
|
3355
|
+
readonly slug: string;
|
|
3356
|
+
readonly interested: boolean;
|
|
3357
|
+
}): Promise<BipEngagementResponse>;
|
|
3358
|
+
declare function subscribeBipUpdates(context: TransportContext, input: {
|
|
3359
|
+
readonly bearer: string;
|
|
3360
|
+
readonly slug: string;
|
|
3361
|
+
readonly subscribed: boolean;
|
|
3362
|
+
}): Promise<BipEngagementResponse>;
|
|
3363
|
+
//#endregion
|
|
3364
|
+
//#region src/catalog/build-in-public.d.ts
|
|
3365
|
+
declare function getBipDirectory(context: TransportContext, input: {
|
|
3366
|
+
readonly bearer?: string;
|
|
3367
|
+
readonly genre?: string;
|
|
3368
|
+
readonly q?: string;
|
|
3369
|
+
readonly before?: string;
|
|
3370
|
+
readonly limit?: number;
|
|
3371
|
+
}): Promise<LibraryListResponse>;
|
|
3372
|
+
declare function getBipPage(context: TransportContext, input: {
|
|
3373
|
+
readonly bearer?: string;
|
|
3374
|
+
readonly slug: string;
|
|
3375
|
+
}): Promise<PublicBipPage>;
|
|
3376
|
+
//#endregion
|
|
2526
3377
|
//#region src/catalog/content-reports.d.ts
|
|
2527
|
-
declare function submitAppContentReport(
|
|
3378
|
+
declare function submitAppContentReport(context: TransportContext, input: {
|
|
2528
3379
|
readonly appId: string;
|
|
2529
3380
|
readonly bearer: string;
|
|
2530
3381
|
readonly report: SubmitAppContentReportRequest;
|
|
2531
3382
|
}): Promise<SubmitAppContentReportResponse>;
|
|
2532
3383
|
//#endregion
|
|
2533
3384
|
//#region src/catalog/library.d.ts
|
|
2534
|
-
declare function getLibrary(
|
|
3385
|
+
declare function getLibrary(context: TransportContext, input: {
|
|
2535
3386
|
readonly bearer?: string;
|
|
2536
3387
|
readonly genre?: string;
|
|
2537
3388
|
readonly q?: string;
|
|
@@ -2540,40 +3391,75 @@ declare function getLibrary(ctx: TransportContext, input: {
|
|
|
2540
3391
|
}): Promise<LibraryListResponse>;
|
|
2541
3392
|
//#endregion
|
|
2542
3393
|
//#region src/catalog/reviews.d.ts
|
|
2543
|
-
declare function listGameReviews(
|
|
3394
|
+
declare function listGameReviews(context: TransportContext, input: {
|
|
2544
3395
|
readonly slug: string;
|
|
2545
3396
|
readonly bearer?: string;
|
|
2546
3397
|
readonly sort?: ReviewSort;
|
|
2547
3398
|
readonly limit?: number;
|
|
2548
3399
|
readonly offset?: number;
|
|
2549
3400
|
}): Promise<ReviewListResponse>;
|
|
2550
|
-
declare function listDeveloperAppReviews(
|
|
3401
|
+
declare function listDeveloperAppReviews(context: TransportContext, input: {
|
|
2551
3402
|
readonly appId: string;
|
|
2552
3403
|
readonly bearer: string;
|
|
2553
3404
|
readonly sort?: ReviewSort;
|
|
2554
3405
|
readonly limit?: number;
|
|
2555
3406
|
readonly offset?: number;
|
|
2556
3407
|
}): Promise<ReviewListResponse>;
|
|
2557
|
-
declare function getMyGameReview(
|
|
3408
|
+
declare function getMyGameReview(context: TransportContext, input: {
|
|
2558
3409
|
readonly slug: string;
|
|
2559
3410
|
readonly bearer: string;
|
|
2560
3411
|
}): Promise<MyReviewResponse>;
|
|
2561
|
-
declare function upsertMyGameReview(
|
|
3412
|
+
declare function upsertMyGameReview(context: TransportContext, input: {
|
|
2562
3413
|
readonly slug: string;
|
|
2563
3414
|
readonly bearer: string;
|
|
2564
3415
|
readonly review: UpsertReviewRequest;
|
|
2565
3416
|
}): Promise<MyReviewResponse>;
|
|
2566
|
-
declare function deleteMyGameReview(
|
|
3417
|
+
declare function deleteMyGameReview(context: TransportContext, input: {
|
|
2567
3418
|
readonly slug: string;
|
|
2568
3419
|
readonly bearer: string;
|
|
2569
3420
|
}): Promise<MyReviewResponse>;
|
|
2570
|
-
declare function
|
|
3421
|
+
declare function getMyGameReviewReactions(context: TransportContext, input: {
|
|
3422
|
+
readonly slug: string;
|
|
3423
|
+
readonly bearer: string;
|
|
3424
|
+
}): Promise<MyReviewReactionsResponse>;
|
|
3425
|
+
declare function setMyGameReviewReaction(context: TransportContext, input: {
|
|
3426
|
+
readonly slug: string;
|
|
3427
|
+
readonly reviewId: string;
|
|
3428
|
+
readonly bearer: string;
|
|
3429
|
+
readonly reaction: SetReviewReactionRequest;
|
|
3430
|
+
}): Promise<SetReviewReactionResponse>;
|
|
3431
|
+
declare function tipGameReview(context: TransportContext, input: {
|
|
3432
|
+
readonly slug: string;
|
|
3433
|
+
readonly reviewId: string;
|
|
3434
|
+
readonly bearer: string;
|
|
3435
|
+
readonly tip: TipReviewRequest;
|
|
3436
|
+
readonly idempotencyKey?: string;
|
|
3437
|
+
}): Promise<TipReviewResponse>;
|
|
3438
|
+
declare function listGameReviewComments(context: TransportContext, input: {
|
|
3439
|
+
readonly slug: string;
|
|
3440
|
+
readonly reviewId: string;
|
|
3441
|
+
readonly bearer?: string;
|
|
3442
|
+
readonly limit?: number;
|
|
3443
|
+
readonly offset?: number;
|
|
3444
|
+
}): Promise<ReviewCommentListResponse>;
|
|
3445
|
+
declare function commentOnGameReview(context: TransportContext, input: {
|
|
3446
|
+
readonly slug: string;
|
|
3447
|
+
readonly reviewId: string;
|
|
3448
|
+
readonly bearer: string;
|
|
3449
|
+
readonly comment: CreateReviewCommentRequest;
|
|
3450
|
+
}): Promise<CreateReviewCommentResponse>;
|
|
3451
|
+
declare function deleteGameReviewComment(context: TransportContext, input: {
|
|
3452
|
+
readonly slug: string;
|
|
3453
|
+
readonly commentId: string;
|
|
3454
|
+
readonly bearer: string;
|
|
3455
|
+
}): Promise<DeleteReviewCommentResponse>;
|
|
3456
|
+
declare function replyToGameReview(context: TransportContext, input: {
|
|
2571
3457
|
readonly appId: string;
|
|
2572
3458
|
readonly reviewId: string;
|
|
2573
3459
|
readonly bearer: string;
|
|
2574
3460
|
readonly reply: UpsertReviewReplyRequest;
|
|
2575
3461
|
}): Promise<ReviewReplyResponse>;
|
|
2576
|
-
declare function deleteGameReviewReply(
|
|
3462
|
+
declare function deleteGameReviewReply(context: TransportContext, input: {
|
|
2577
3463
|
readonly appId: string;
|
|
2578
3464
|
readonly reviewId: string;
|
|
2579
3465
|
readonly bearer: string;
|
|
@@ -2617,7 +3503,7 @@ declare function createConsoleLogger(prefix?: string): Logger;
|
|
|
2617
3503
|
declare function createInMemoryTokenStore(): TokenStore;
|
|
2618
3504
|
//#endregion
|
|
2619
3505
|
//#region src/dashboard/activity.d.ts
|
|
2620
|
-
declare function getActivity(
|
|
3506
|
+
declare function getActivity(context: TransportContext, input: {
|
|
2621
3507
|
readonly bearer: string;
|
|
2622
3508
|
readonly kind?: string;
|
|
2623
3509
|
readonly direction?: "outgoing" | "incoming";
|
|
@@ -2628,77 +3514,80 @@ declare function getActivity(ctx: TransportContext, input: {
|
|
|
2628
3514
|
readonly before?: string;
|
|
2629
3515
|
readonly includeInactive?: boolean;
|
|
2630
3516
|
}): Promise<ActivityResponse>;
|
|
2631
|
-
declare function getActivityGroup(
|
|
3517
|
+
declare function getActivityGroup(context: TransportContext, input: {
|
|
2632
3518
|
readonly bearer: string;
|
|
2633
3519
|
readonly groupId: string;
|
|
2634
3520
|
}): Promise<ActivityResponse>;
|
|
2635
3521
|
//#endregion
|
|
2636
3522
|
//#region src/dashboard/chains.d.ts
|
|
2637
|
-
declare function getPaymentChains(
|
|
3523
|
+
declare function getPaymentChains(context: TransportContext, input: {
|
|
2638
3524
|
readonly bearer: string;
|
|
2639
3525
|
}): Promise<PaymentChainsResponse>;
|
|
2640
3526
|
//#endregion
|
|
2641
3527
|
//#region src/dashboard/outstanding.d.ts
|
|
2642
|
-
declare function getOutstanding(
|
|
3528
|
+
declare function getOutstanding(context: TransportContext, input: {
|
|
2643
3529
|
readonly bearer: string;
|
|
2644
3530
|
readonly chain?: string;
|
|
2645
3531
|
}): Promise<OutstandingResponse>;
|
|
2646
3532
|
//#endregion
|
|
2647
3533
|
//#region src/dashboard/payment-history.d.ts
|
|
2648
|
-
declare function getPaymentHistory(
|
|
3534
|
+
declare function getPaymentHistory(context: TransportContext, input: {
|
|
2649
3535
|
readonly bearer: string;
|
|
2650
3536
|
readonly status?: "pending" | "completed" | "expired" | "all";
|
|
2651
3537
|
readonly limit?: number;
|
|
2652
3538
|
readonly before?: string;
|
|
2653
3539
|
}): Promise<PaymentHistoryResponse>;
|
|
2654
3540
|
//#endregion
|
|
3541
|
+
//#region src/dashboard/rates.d.ts
|
|
3542
|
+
declare function getPaymentRates(context: TransportContext): Promise<PaymentRatesResponse>;
|
|
3543
|
+
//#endregion
|
|
2655
3544
|
//#region src/developer/api-keys.d.ts
|
|
2656
|
-
declare function createDeveloperApiKey(
|
|
3545
|
+
declare function createDeveloperApiKey(context: TransportContext, input: {
|
|
2657
3546
|
readonly bearer: string;
|
|
2658
3547
|
readonly body: CreateDeveloperApiKey;
|
|
2659
3548
|
}): Promise<CreateDeveloperApiKeyResponse>;
|
|
2660
|
-
declare function listDeveloperApiKeys(
|
|
3549
|
+
declare function listDeveloperApiKeys(context: TransportContext, input: {
|
|
2661
3550
|
readonly bearer: string;
|
|
2662
3551
|
}): Promise<DeveloperApiKeysResponse>;
|
|
2663
|
-
declare function revokeDeveloperApiKey(
|
|
3552
|
+
declare function revokeDeveloperApiKey(context: TransportContext, input: {
|
|
2664
3553
|
readonly bearer: string;
|
|
2665
3554
|
readonly id: string;
|
|
2666
3555
|
}): Promise<DeveloperOkResponse>;
|
|
2667
3556
|
//#endregion
|
|
2668
3557
|
//#region src/developer/apps.d.ts
|
|
2669
|
-
declare function createDeveloperApp(
|
|
3558
|
+
declare function createDeveloperApp(context: TransportContext, input: {
|
|
2670
3559
|
readonly bearer: string;
|
|
2671
3560
|
readonly body: CreateDeveloperApp;
|
|
2672
3561
|
}): Promise<DeveloperAppIdResponse>;
|
|
2673
|
-
declare function updateDeveloperApp(
|
|
3562
|
+
declare function updateDeveloperApp(context: TransportContext, input: {
|
|
2674
3563
|
readonly bearer: string;
|
|
2675
3564
|
readonly id: string;
|
|
2676
3565
|
readonly body: UpdateDeveloperApp;
|
|
2677
3566
|
}): Promise<DeveloperAppIdResponse>;
|
|
2678
|
-
declare function deleteDeveloperApp(
|
|
3567
|
+
declare function deleteDeveloperApp(context: TransportContext, input: {
|
|
2679
3568
|
readonly bearer: string;
|
|
2680
3569
|
readonly id: string;
|
|
2681
3570
|
}): Promise<DeveloperAppIdResponse>;
|
|
2682
|
-
declare function uploadDeveloperAppLogo(
|
|
3571
|
+
declare function uploadDeveloperAppLogo(context: TransportContext, input: {
|
|
2683
3572
|
readonly bearer: string;
|
|
2684
3573
|
readonly id: string;
|
|
2685
3574
|
readonly file: Blob | ArrayBufferView | ArrayBuffer;
|
|
2686
3575
|
readonly filename: string;
|
|
2687
3576
|
readonly contentType: string;
|
|
2688
3577
|
}): Promise<DeveloperLogoUploadResponse>;
|
|
2689
|
-
declare function deleteDeveloperAppLogo(
|
|
3578
|
+
declare function deleteDeveloperAppLogo(context: TransportContext, input: {
|
|
2690
3579
|
readonly bearer: string;
|
|
2691
3580
|
readonly id: string;
|
|
2692
3581
|
}): Promise<DeveloperLogoUploadResponse>;
|
|
2693
|
-
declare function getDeveloperAppBalances(
|
|
3582
|
+
declare function getDeveloperAppBalances(context: TransportContext, input: {
|
|
2694
3583
|
readonly bearer: string;
|
|
2695
3584
|
readonly id: string;
|
|
2696
3585
|
}): Promise<DeveloperAppBalancesResponse>;
|
|
2697
|
-
declare function getDeveloperAppTronBalance(
|
|
3586
|
+
declare function getDeveloperAppTronBalance(context: TransportContext, input: {
|
|
2698
3587
|
readonly bearer: string;
|
|
2699
3588
|
readonly id: string;
|
|
2700
3589
|
}): Promise<DeveloperAppTronBalanceResponse>;
|
|
2701
|
-
declare function getDeveloperAppActivity(
|
|
3590
|
+
declare function getDeveloperAppActivity(context: TransportContext, input: {
|
|
2702
3591
|
readonly bearer: string;
|
|
2703
3592
|
readonly id: string;
|
|
2704
3593
|
readonly kind?: string;
|
|
@@ -2709,203 +3598,263 @@ declare function getDeveloperAppActivity(ctx: TransportContext, input: {
|
|
|
2709
3598
|
readonly cursor?: string;
|
|
2710
3599
|
readonly before?: string;
|
|
2711
3600
|
}): Promise<ActivityResponse>;
|
|
2712
|
-
declare function getDeveloperAppEarnings(
|
|
3601
|
+
declare function getDeveloperAppEarnings(context: TransportContext, input: {
|
|
2713
3602
|
readonly bearer: string;
|
|
2714
3603
|
readonly id: string;
|
|
2715
3604
|
readonly range?: string;
|
|
2716
3605
|
readonly chain?: string;
|
|
2717
3606
|
}): Promise<DeveloperAppEarningsResponse>;
|
|
2718
|
-
declare function getDeveloperAppPlaytime(
|
|
3607
|
+
declare function getDeveloperAppPlaytime(context: TransportContext, input: {
|
|
2719
3608
|
readonly bearer: string;
|
|
2720
3609
|
readonly id: string;
|
|
2721
3610
|
readonly range?: string;
|
|
2722
3611
|
}): Promise<DeveloperAppPlaytimeResponse>;
|
|
2723
|
-
declare function getDeveloperAppOverview(
|
|
3612
|
+
declare function getDeveloperAppOverview(context: TransportContext, input: {
|
|
2724
3613
|
readonly bearer: string;
|
|
2725
3614
|
readonly id: string;
|
|
2726
3615
|
}): Promise<DeveloperAppOverviewResponse>;
|
|
2727
|
-
declare function getDeveloperAppWallets(
|
|
3616
|
+
declare function getDeveloperAppWallets(context: TransportContext, input: {
|
|
2728
3617
|
readonly bearer: string;
|
|
2729
3618
|
readonly id: string;
|
|
2730
3619
|
}): Promise<DeveloperAppWalletsResponse>;
|
|
2731
|
-
declare function updateDeveloperAppAutoSweep(
|
|
3620
|
+
declare function updateDeveloperAppAutoSweep(context: TransportContext, input: {
|
|
2732
3621
|
readonly bearer: string;
|
|
2733
3622
|
readonly id: string;
|
|
2734
3623
|
readonly chain: string;
|
|
2735
3624
|
readonly body: DeveloperAppAutoSweepRequest;
|
|
2736
3625
|
}): Promise<DeveloperAppAutoSweepResponse>;
|
|
2737
|
-
declare function provisionDeveloperAppWallet(
|
|
3626
|
+
declare function provisionDeveloperAppWallet(context: TransportContext, input: {
|
|
2738
3627
|
readonly bearer: string;
|
|
2739
3628
|
readonly id: string;
|
|
2740
3629
|
readonly chain: string;
|
|
2741
3630
|
}): Promise<DeveloperAppProvisionWalletResponse>;
|
|
2742
|
-
declare function withdrawDeveloperAppWallet(
|
|
3631
|
+
declare function withdrawDeveloperAppWallet(context: TransportContext, input: {
|
|
2743
3632
|
readonly bearer: string;
|
|
2744
3633
|
readonly id: string;
|
|
2745
3634
|
readonly chain: string;
|
|
2746
3635
|
readonly token?: string;
|
|
2747
3636
|
}): Promise<DeveloperAppWithdrawResponse>;
|
|
2748
|
-
declare function consolidateDeveloperAppWallet(
|
|
3637
|
+
declare function consolidateDeveloperAppWallet(context: TransportContext, input: {
|
|
2749
3638
|
readonly bearer: string;
|
|
2750
3639
|
readonly id: string;
|
|
2751
3640
|
readonly chain: string;
|
|
2752
3641
|
}): Promise<DeveloperAppConsolidateResponse>;
|
|
2753
|
-
declare function rotateDeveloperAppKey(
|
|
3642
|
+
declare function rotateDeveloperAppKey(context: TransportContext, input: {
|
|
2754
3643
|
readonly bearer: string;
|
|
2755
3644
|
readonly id: string;
|
|
2756
3645
|
readonly env: "development" | "production";
|
|
2757
3646
|
}): Promise<RegenerateDeveloperAppKeyResponse>;
|
|
2758
|
-
declare function requestDeveloperAppProduction(
|
|
3647
|
+
declare function requestDeveloperAppProduction(context: TransportContext, input: {
|
|
2759
3648
|
readonly bearer: string;
|
|
2760
3649
|
readonly id: string;
|
|
2761
3650
|
readonly body: CreateDeveloperProductionRequest;
|
|
2762
3651
|
}): Promise<CreateDeveloperProductionRequestResponse>;
|
|
2763
|
-
declare function rotateDeveloperAppPaymentWebhookSecret(
|
|
3652
|
+
declare function rotateDeveloperAppPaymentWebhookSecret(context: TransportContext, input: {
|
|
2764
3653
|
readonly bearer: string;
|
|
2765
3654
|
readonly id: string;
|
|
2766
3655
|
}): Promise<RegenerateDeveloperAppWebhookSecretResponse>;
|
|
2767
|
-
declare function getDeveloperPaymentAppeals(
|
|
3656
|
+
declare function getDeveloperPaymentAppeals(context: TransportContext, input: {
|
|
2768
3657
|
readonly bearer: string;
|
|
2769
3658
|
readonly chain?: string;
|
|
2770
3659
|
}): Promise<DevAppealsResponse>;
|
|
2771
|
-
declare function getDeveloperPaymentPendingDeposits(
|
|
3660
|
+
declare function getDeveloperPaymentPendingDeposits(context: TransportContext, input: {
|
|
2772
3661
|
readonly bearer: string;
|
|
2773
3662
|
readonly chain?: string;
|
|
2774
3663
|
}): Promise<DevPendingDepositsResponse>;
|
|
2775
|
-
declare function getDeveloperTronBalanceSummary(
|
|
3664
|
+
declare function getDeveloperTronBalanceSummary(context: TransportContext, input: {
|
|
2776
3665
|
readonly bearer: string;
|
|
2777
3666
|
}): Promise<DeveloperTronBalanceSummaryResponse>;
|
|
2778
|
-
declare function listDeveloperAppContentReports(
|
|
3667
|
+
declare function listDeveloperAppContentReports(context: TransportContext, input: {
|
|
2779
3668
|
readonly bearer: string;
|
|
2780
3669
|
readonly id: string;
|
|
2781
3670
|
readonly status?: AppContentReportStatus;
|
|
2782
3671
|
readonly limit?: number;
|
|
2783
3672
|
readonly offset?: number;
|
|
2784
3673
|
}): Promise<AppContentReportListResponse>;
|
|
2785
|
-
declare function updateDeveloperAppContentReportStatus(
|
|
3674
|
+
declare function updateDeveloperAppContentReportStatus(context: TransportContext, input: {
|
|
2786
3675
|
readonly bearer: string;
|
|
2787
3676
|
readonly id: string;
|
|
2788
3677
|
readonly reportId: string;
|
|
2789
3678
|
readonly status: "acknowledged" | "dismissed";
|
|
2790
3679
|
}): Promise<AppContentReport>;
|
|
2791
3680
|
//#endregion
|
|
3681
|
+
//#region src/developer/inventory.d.ts
|
|
3682
|
+
declare function quoteDeveloperAppInventoryRegistration(context: TransportContext, input: {
|
|
3683
|
+
readonly bearer: string;
|
|
3684
|
+
readonly appId: string;
|
|
3685
|
+
readonly registration: InventoryItemRegistrationInput;
|
|
3686
|
+
}): Promise<InventoryRegistrationQuote>;
|
|
3687
|
+
declare function registerDeveloperAppInventoryItem(context: TransportContext, input: {
|
|
3688
|
+
readonly bearer: string;
|
|
3689
|
+
readonly appId: string;
|
|
3690
|
+
readonly registration: InventoryItemRegistrationInput;
|
|
3691
|
+
}): Promise<InventoryItemRegistrationResult>;
|
|
3692
|
+
declare function listDeveloperAppInventoryCollections(context: TransportContext, input: {
|
|
3693
|
+
readonly bearer: string;
|
|
3694
|
+
readonly appId: string;
|
|
3695
|
+
}): Promise<InventoryCollectionListResponse>;
|
|
3696
|
+
declare function listDeveloperAppInventoryItems(context: TransportContext, input: {
|
|
3697
|
+
readonly bearer: string;
|
|
3698
|
+
readonly appId: string;
|
|
3699
|
+
}): Promise<InventoryItemListResponse>;
|
|
3700
|
+
declare function createDeveloperAppMintPermit(context: TransportContext, input: {
|
|
3701
|
+
readonly bearer: string;
|
|
3702
|
+
readonly appId: string;
|
|
3703
|
+
readonly itemId: string;
|
|
3704
|
+
readonly grant: InventoryMintPermitCreateInput;
|
|
3705
|
+
}): Promise<InventoryMintPermitRecord>;
|
|
3706
|
+
declare function getDeveloperAppInventoryItemHolders(context: TransportContext, input: {
|
|
3707
|
+
readonly bearer: string;
|
|
3708
|
+
readonly appId: string;
|
|
3709
|
+
readonly itemId: string;
|
|
3710
|
+
}): Promise<InventoryItemHoldersResponse>;
|
|
3711
|
+
declare function uploadDeveloperAppInventoryItemImage(context: TransportContext, input: {
|
|
3712
|
+
readonly bearer: string;
|
|
3713
|
+
readonly appId: string;
|
|
3714
|
+
readonly itemId: string;
|
|
3715
|
+
readonly file: Blob | ArrayBufferView | ArrayBuffer;
|
|
3716
|
+
readonly filename: string;
|
|
3717
|
+
readonly contentType: string;
|
|
3718
|
+
}): Promise<InventoryItemRecord>;
|
|
3719
|
+
declare function uploadDeveloperAppInventoryItemBanner(context: TransportContext, input: {
|
|
3720
|
+
readonly bearer: string;
|
|
3721
|
+
readonly appId: string;
|
|
3722
|
+
readonly itemId: string;
|
|
3723
|
+
readonly file: Blob | ArrayBufferView | ArrayBuffer;
|
|
3724
|
+
readonly filename: string;
|
|
3725
|
+
readonly contentType: string;
|
|
3726
|
+
}): Promise<InventoryItemRecord>;
|
|
3727
|
+
//#endregion
|
|
2792
3728
|
//#region src/developer/pages.d.ts
|
|
2793
|
-
declare function getDeveloperAppPage(
|
|
3729
|
+
declare function getDeveloperAppPage(context: TransportContext, input: {
|
|
2794
3730
|
readonly bearer: string;
|
|
2795
3731
|
readonly appId: string;
|
|
2796
3732
|
}): Promise<AppPageDraft>;
|
|
2797
|
-
declare function updateAppPage(
|
|
3733
|
+
declare function updateAppPage(context: TransportContext, input: {
|
|
2798
3734
|
readonly bearer: string;
|
|
2799
3735
|
readonly appId: string;
|
|
2800
3736
|
readonly body: UpdateAppPage;
|
|
2801
3737
|
}): Promise<AppPageDraft>;
|
|
2802
|
-
declare function uploadAppPageBanner(
|
|
3738
|
+
declare function uploadAppPageBanner(context: TransportContext, input: {
|
|
2803
3739
|
readonly bearer: string;
|
|
2804
3740
|
readonly appId: string;
|
|
2805
3741
|
readonly file: Blob | ArrayBufferView | ArrayBuffer;
|
|
2806
3742
|
readonly filename: string;
|
|
2807
3743
|
readonly contentType: string;
|
|
2808
3744
|
}): Promise<PostMeDeveloperAppsByAppIdPageBannerResponse>;
|
|
2809
|
-
declare function deleteAppPageBanner(
|
|
3745
|
+
declare function deleteAppPageBanner(context: TransportContext, input: {
|
|
2810
3746
|
readonly bearer: string;
|
|
2811
3747
|
readonly appId: string;
|
|
2812
3748
|
}): Promise<void>;
|
|
2813
|
-
declare function uploadAppPageThumbnail(
|
|
3749
|
+
declare function uploadAppPageThumbnail(context: TransportContext, input: {
|
|
2814
3750
|
readonly bearer: string;
|
|
2815
3751
|
readonly appId: string;
|
|
2816
3752
|
readonly file: Blob | ArrayBufferView | ArrayBuffer;
|
|
2817
3753
|
readonly filename: string;
|
|
2818
3754
|
readonly contentType: string;
|
|
2819
3755
|
}): Promise<PostMeDeveloperAppsByAppIdPageThumbnailResponse>;
|
|
2820
|
-
declare function deleteAppPageThumbnail(
|
|
3756
|
+
declare function deleteAppPageThumbnail(context: TransportContext, input: {
|
|
2821
3757
|
readonly bearer: string;
|
|
2822
3758
|
readonly appId: string;
|
|
2823
3759
|
}): Promise<void>;
|
|
2824
|
-
declare function uploadAppPageThumbnailVideo(
|
|
3760
|
+
declare function uploadAppPageThumbnailVideo(context: TransportContext, input: {
|
|
2825
3761
|
readonly bearer: string;
|
|
2826
3762
|
readonly appId: string;
|
|
2827
3763
|
readonly file: Blob | ArrayBufferView | ArrayBuffer;
|
|
2828
3764
|
readonly filename: string;
|
|
2829
3765
|
readonly contentType: string;
|
|
2830
3766
|
}): Promise<PostMeDeveloperAppsByAppIdPageThumbnailVideoResponse>;
|
|
2831
|
-
declare function deleteAppPageThumbnailVideo(
|
|
3767
|
+
declare function deleteAppPageThumbnailVideo(context: TransportContext, input: {
|
|
2832
3768
|
readonly bearer: string;
|
|
2833
3769
|
readonly appId: string;
|
|
2834
3770
|
}): Promise<void>;
|
|
2835
|
-
declare function uploadAppPageGallery(
|
|
3771
|
+
declare function uploadAppPageGallery(context: TransportContext, input: {
|
|
2836
3772
|
readonly bearer: string;
|
|
2837
3773
|
readonly appId: string;
|
|
2838
3774
|
readonly file: Blob | ArrayBufferView | ArrayBuffer;
|
|
2839
3775
|
readonly filename: string;
|
|
2840
3776
|
readonly contentType: string;
|
|
2841
3777
|
}): Promise<AppPageGalleryUploadResponse>;
|
|
2842
|
-
declare function submitAppPageForReview(
|
|
3778
|
+
declare function submitAppPageForReview(context: TransportContext, input: {
|
|
3779
|
+
readonly bearer: string;
|
|
3780
|
+
readonly appId: string;
|
|
3781
|
+
}): Promise<AppPageDraft>;
|
|
3782
|
+
declare function unpublishAppPage(context: TransportContext, input: {
|
|
3783
|
+
readonly bearer: string;
|
|
3784
|
+
readonly appId: string;
|
|
3785
|
+
}): Promise<AppPageDraft>;
|
|
3786
|
+
declare function setAppPageBip(context: TransportContext, input: {
|
|
2843
3787
|
readonly bearer: string;
|
|
2844
3788
|
readonly appId: string;
|
|
3789
|
+
readonly body: AppPageBipToggle;
|
|
2845
3790
|
}): Promise<AppPageDraft>;
|
|
2846
|
-
declare function
|
|
3791
|
+
declare function submitAppPageBipForReview(context: TransportContext, input: {
|
|
3792
|
+
readonly bearer: string;
|
|
3793
|
+
readonly appId: string;
|
|
3794
|
+
}): Promise<AppPageDraft>;
|
|
3795
|
+
declare function unpublishAppPageBip(context: TransportContext, input: {
|
|
2847
3796
|
readonly bearer: string;
|
|
2848
3797
|
readonly appId: string;
|
|
2849
3798
|
}): Promise<AppPageDraft>;
|
|
2850
3799
|
//#endregion
|
|
2851
3800
|
//#region src/developer/participants.d.ts
|
|
2852
|
-
declare function listDeveloperAppParticipants(
|
|
3801
|
+
declare function listDeveloperAppParticipants(context: TransportContext, input: {
|
|
2853
3802
|
readonly bearer: string;
|
|
2854
3803
|
readonly id: string;
|
|
2855
3804
|
}): Promise<DeveloperAppParticipantsResponse>;
|
|
2856
|
-
declare function inviteDeveloperAppParticipant(
|
|
3805
|
+
declare function inviteDeveloperAppParticipant(context: TransportContext, input: {
|
|
2857
3806
|
readonly bearer: string;
|
|
2858
3807
|
readonly id: string;
|
|
2859
3808
|
readonly body: InviteDeveloperAppParticipant;
|
|
2860
3809
|
}): Promise<DeveloperAppParticipantsResponse>;
|
|
2861
|
-
declare function revokeDeveloperAppParticipant(
|
|
3810
|
+
declare function revokeDeveloperAppParticipant(context: TransportContext, input: {
|
|
2862
3811
|
readonly bearer: string;
|
|
2863
3812
|
readonly id: string;
|
|
2864
3813
|
readonly userId: string;
|
|
2865
3814
|
}): Promise<DeveloperOkResponse>;
|
|
2866
|
-
declare function listDeveloperInvites(
|
|
3815
|
+
declare function listDeveloperInvites(context: TransportContext, input: {
|
|
2867
3816
|
readonly bearer: string;
|
|
2868
3817
|
}): Promise<DeveloperInvitesResponse>;
|
|
2869
|
-
declare function acceptDeveloperInvite(
|
|
3818
|
+
declare function acceptDeveloperInvite(context: TransportContext, input: {
|
|
2870
3819
|
readonly bearer: string;
|
|
2871
3820
|
readonly appId: string;
|
|
2872
3821
|
}): Promise<DeveloperOkResponse>;
|
|
2873
|
-
declare function declineDeveloperInvite(
|
|
3822
|
+
declare function declineDeveloperInvite(context: TransportContext, input: {
|
|
2874
3823
|
readonly bearer: string;
|
|
2875
3824
|
readonly appId: string;
|
|
2876
3825
|
}): Promise<DeveloperOkResponse>;
|
|
2877
3826
|
//#endregion
|
|
2878
3827
|
//#region src/developer/profile.d.ts
|
|
2879
|
-
declare function getDeveloperStatus(
|
|
3828
|
+
declare function getDeveloperStatus(context: TransportContext, input: {
|
|
2880
3829
|
readonly bearer: string;
|
|
2881
3830
|
}): Promise<DeveloperMeStatus>;
|
|
2882
|
-
declare function updateDeveloperProfile(
|
|
3831
|
+
declare function updateDeveloperProfile(context: TransportContext, input: {
|
|
2883
3832
|
readonly bearer: string;
|
|
2884
3833
|
readonly body: UpdateDeveloperProfile;
|
|
2885
3834
|
}): Promise<DeveloperOkResponse>;
|
|
2886
|
-
declare function uploadDeveloperProfileLogo(
|
|
3835
|
+
declare function uploadDeveloperProfileLogo(context: TransportContext, input: {
|
|
2887
3836
|
readonly bearer: string;
|
|
2888
3837
|
readonly file: Blob | ArrayBufferView | ArrayBuffer;
|
|
2889
3838
|
readonly filename: string;
|
|
2890
3839
|
readonly contentType: string;
|
|
2891
3840
|
}): Promise<DeveloperLogoUploadResponse>;
|
|
2892
|
-
declare function deleteDeveloperProfileLogo(
|
|
3841
|
+
declare function deleteDeveloperProfileLogo(context: TransportContext, input: {
|
|
2893
3842
|
readonly bearer: string;
|
|
2894
3843
|
}): Promise<DeveloperLogoUploadResponse>;
|
|
2895
|
-
declare function submitDeveloperRequest(
|
|
3844
|
+
declare function submitDeveloperRequest(context: TransportContext, input: {
|
|
2896
3845
|
readonly bearer: string;
|
|
2897
3846
|
readonly body: CreateDeveloperRoleRequest;
|
|
2898
3847
|
}): Promise<DeveloperOkResponse>;
|
|
2899
|
-
declare function uploadDeveloperRequestLogo(
|
|
3848
|
+
declare function uploadDeveloperRequestLogo(context: TransportContext, input: {
|
|
2900
3849
|
readonly bearer: string;
|
|
2901
3850
|
readonly file: Blob | ArrayBufferView | ArrayBuffer;
|
|
2902
3851
|
readonly filename: string;
|
|
2903
3852
|
readonly contentType: string;
|
|
2904
3853
|
}): Promise<DeveloperLogoUploadResponse>;
|
|
2905
|
-
declare function deleteDeveloperRequestLogo(
|
|
3854
|
+
declare function deleteDeveloperRequestLogo(context: TransportContext, input: {
|
|
2906
3855
|
readonly bearer: string;
|
|
2907
3856
|
}): Promise<DeveloperLogoUploadResponse>;
|
|
2908
|
-
declare function uploadMultipart(
|
|
3857
|
+
declare function uploadMultipart(context: TransportContext, input: {
|
|
2909
3858
|
readonly path: string;
|
|
2910
3859
|
readonly bearer: string;
|
|
2911
3860
|
readonly file: Blob | ArrayBufferView | ArrayBuffer;
|
|
@@ -2913,82 +3862,139 @@ declare function uploadMultipart(ctx: TransportContext, input: {
|
|
|
2913
3862
|
readonly contentType: string;
|
|
2914
3863
|
}): Promise<unknown>;
|
|
2915
3864
|
//#endregion
|
|
3865
|
+
//#region src/developer/vault.d.ts
|
|
3866
|
+
declare function createDeveloperVaultPermit(context: TransportContext, input: {
|
|
3867
|
+
readonly bearer: string;
|
|
3868
|
+
readonly appId: string;
|
|
3869
|
+
readonly itemId: string;
|
|
3870
|
+
readonly grant: InventoryVaultPermitCreateInput;
|
|
3871
|
+
}): Promise<InventoryVaultPermitRecord>;
|
|
3872
|
+
declare function createDeveloperWithdrawPermit(context: TransportContext, input: {
|
|
3873
|
+
readonly bearer: string;
|
|
3874
|
+
readonly appId: string;
|
|
3875
|
+
readonly itemId: string;
|
|
3876
|
+
readonly grant: InventoryWithdrawPermitCreateInput;
|
|
3877
|
+
}): Promise<InventoryVaultPermitRecord>;
|
|
3878
|
+
//#endregion
|
|
2916
3879
|
//#region src/inventory/list.d.ts
|
|
2917
|
-
declare function listInventory(
|
|
3880
|
+
declare function listInventory(context: TransportContext, input: {
|
|
2918
3881
|
readonly bearer: string;
|
|
2919
3882
|
}): Promise<InventoryListResponse>;
|
|
2920
|
-
declare function listInventoryForApp(
|
|
3883
|
+
declare function listInventoryForApp(context: TransportContext, input: {
|
|
2921
3884
|
readonly bearer: string;
|
|
2922
3885
|
}): Promise<InventoryListResponse>;
|
|
2923
3886
|
//#endregion
|
|
3887
|
+
//#region src/inventory/nft-transfer.d.ts
|
|
3888
|
+
declare function quoteNftTransfer(context: TransportContext, input: {
|
|
3889
|
+
readonly bearer: string;
|
|
3890
|
+
readonly body: InventoryNftTransferQuoteRequest;
|
|
3891
|
+
}): Promise<InventoryNftTransferQuoteResponse>;
|
|
3892
|
+
declare function executeNftTransfer(context: TransportContext, input: {
|
|
3893
|
+
readonly bearer: string;
|
|
3894
|
+
readonly body: InventoryNftTransferRequest;
|
|
3895
|
+
}): Promise<InventoryNftTransferResponse>;
|
|
3896
|
+
//#endregion
|
|
3897
|
+
//#region src/inventory/permits.d.ts
|
|
3898
|
+
declare function listInventoryMintPermits(context: TransportContext, input: {
|
|
3899
|
+
readonly bearer: string;
|
|
3900
|
+
}): Promise<InventoryPendingPermitListResponse>;
|
|
3901
|
+
declare function redeemInventoryMintPermit(context: TransportContext, input: {
|
|
3902
|
+
readonly bearer: string;
|
|
3903
|
+
readonly permitId: string;
|
|
3904
|
+
}): Promise<InventoryPermitRedeemResult>;
|
|
3905
|
+
//#endregion
|
|
2924
3906
|
//#region src/inventory/request-mint.d.ts
|
|
2925
|
-
declare function requestMint(
|
|
3907
|
+
declare function requestMint(context: TransportContext, input: {
|
|
2926
3908
|
readonly appBearer: string;
|
|
2927
3909
|
readonly body: MintRequestInput;
|
|
2928
3910
|
}): Promise<MintRequestResult>;
|
|
2929
3911
|
//#endregion
|
|
3912
|
+
//#region src/inventory/vault.d.ts
|
|
3913
|
+
declare function listInventoryVaultPermits(context: TransportContext, input: {
|
|
3914
|
+
readonly bearer: string;
|
|
3915
|
+
}): Promise<InventoryPendingVaultPermitListResponse>;
|
|
3916
|
+
declare function signInventoryVaultPermit(context: TransportContext, input: {
|
|
3917
|
+
readonly bearer: string;
|
|
3918
|
+
readonly permitId: string;
|
|
3919
|
+
}): Promise<InventorySignedVaultPermit>;
|
|
3920
|
+
declare function quoteRelayedVaultPermit(context: TransportContext, input: {
|
|
3921
|
+
readonly bearer: string;
|
|
3922
|
+
readonly permitId: string;
|
|
3923
|
+
}): Promise<InventoryRelayedVaultQuoteResponse>;
|
|
3924
|
+
declare function submitRelayedVaultPermit(context: TransportContext, input: {
|
|
3925
|
+
readonly bearer: string;
|
|
3926
|
+
readonly permitId: string;
|
|
3927
|
+
readonly body: InventoryRelayedVaultSubmitRequest;
|
|
3928
|
+
}): Promise<InventoryRelayedVaultSubmitResponse>;
|
|
3929
|
+
declare function listInventoryVaulted(context: TransportContext, input: {
|
|
3930
|
+
readonly bearer: string;
|
|
3931
|
+
}): Promise<InventoryVaultCustodyListResponse>;
|
|
3932
|
+
declare function listOauthInventoryVaulted(context: TransportContext, input: {
|
|
3933
|
+
readonly bearer: string;
|
|
3934
|
+
}): Promise<InventoryVaultCustodyListResponse>;
|
|
3935
|
+
//#endregion
|
|
2930
3936
|
//#region src/messaging/dm-key-backup.d.ts
|
|
2931
|
-
declare function getDmKeyBackupStatus(
|
|
3937
|
+
declare function getDmKeyBackupStatus(context: TransportContext, input: {
|
|
2932
3938
|
readonly bearer: string;
|
|
2933
3939
|
}): Promise<DmKeyBackupStatusResponse>;
|
|
2934
|
-
declare function setupDmKeyBackup(
|
|
3940
|
+
declare function setupDmKeyBackup(context: TransportContext, input: {
|
|
2935
3941
|
readonly bearer: string;
|
|
2936
3942
|
readonly body: DmKeyBackupSetupBody;
|
|
2937
3943
|
}): Promise<DmKeyBackupOkResponse>;
|
|
2938
|
-
declare function unlockDmKeyBackup(
|
|
3944
|
+
declare function unlockDmKeyBackup(context: TransportContext, input: {
|
|
2939
3945
|
readonly bearer: string;
|
|
2940
3946
|
readonly body: DmKeyBackupUnlockBody;
|
|
2941
3947
|
}): Promise<DmKeyBackupUnlockResponse>;
|
|
2942
3948
|
//#endregion
|
|
2943
3949
|
//#region src/messaging/dm-keys.d.ts
|
|
2944
|
-
declare function publishDmKey(
|
|
3950
|
+
declare function publishDmKey(context: TransportContext, input: {
|
|
2945
3951
|
readonly bearer: string;
|
|
2946
3952
|
readonly body: PublishDmKeyBody;
|
|
2947
3953
|
}): Promise<DmKeyResponse>;
|
|
2948
|
-
declare function getMyDmKey(
|
|
3954
|
+
declare function getMyDmKey(context: TransportContext, input: {
|
|
2949
3955
|
readonly bearer: string;
|
|
2950
3956
|
}): Promise<DmKeyResponse | null>;
|
|
2951
|
-
declare function getThreadDmKey(
|
|
3957
|
+
declare function getThreadDmKey(context: TransportContext, input: {
|
|
2952
3958
|
readonly bearer: string;
|
|
2953
3959
|
readonly threadId: string;
|
|
2954
3960
|
}): Promise<DmKeyResponse>;
|
|
2955
|
-
declare function batchThreadDmKeys(
|
|
3961
|
+
declare function batchThreadDmKeys(context: TransportContext, input: {
|
|
2956
3962
|
readonly bearer: string;
|
|
2957
3963
|
readonly threadIds: readonly string[];
|
|
2958
3964
|
}): Promise<BatchThreadDmKeysResponse>;
|
|
2959
3965
|
//#endregion
|
|
2960
3966
|
//#region src/messaging/logo.d.ts
|
|
2961
|
-
declare function uploadThreadLogo(
|
|
3967
|
+
declare function uploadThreadLogo(context: TransportContext, input: {
|
|
2962
3968
|
readonly bearer: string;
|
|
2963
3969
|
readonly threadId: string;
|
|
2964
3970
|
readonly file: Blob | ArrayBufferView | ArrayBuffer;
|
|
2965
3971
|
readonly filename: string;
|
|
2966
3972
|
readonly contentType: string;
|
|
2967
3973
|
}): Promise<GroupThreadMutationResponse>;
|
|
2968
|
-
declare function deleteThreadLogo(
|
|
3974
|
+
declare function deleteThreadLogo(context: TransportContext, input: {
|
|
2969
3975
|
readonly bearer: string;
|
|
2970
3976
|
readonly threadId: string;
|
|
2971
3977
|
}): Promise<GroupThreadMutationResponse>;
|
|
2972
3978
|
//#endregion
|
|
2973
3979
|
//#region src/messaging/messages.d.ts
|
|
2974
|
-
declare function deleteMessage(
|
|
3980
|
+
declare function deleteMessage(context: TransportContext, input: {
|
|
2975
3981
|
readonly bearer: string;
|
|
2976
3982
|
readonly threadId: string;
|
|
2977
3983
|
readonly messageId: string;
|
|
2978
3984
|
}): Promise<MessagingOkResponse>;
|
|
2979
|
-
declare function editMessage(
|
|
3985
|
+
declare function editMessage(context: TransportContext, input: {
|
|
2980
3986
|
readonly bearer: string;
|
|
2981
3987
|
readonly threadId: string;
|
|
2982
3988
|
readonly messageId: string;
|
|
2983
3989
|
readonly body: EditMessageBody;
|
|
2984
3990
|
}): Promise<MessageItem>;
|
|
2985
|
-
declare function addReaction(
|
|
3991
|
+
declare function addReaction(context: TransportContext, input: {
|
|
2986
3992
|
readonly bearer: string;
|
|
2987
3993
|
readonly threadId: string;
|
|
2988
3994
|
readonly messageId: string;
|
|
2989
3995
|
readonly emoji: ReactionEmoji;
|
|
2990
3996
|
}): Promise<ReactionMutationResponse>;
|
|
2991
|
-
declare function removeReaction(
|
|
3997
|
+
declare function removeReaction(context: TransportContext, input: {
|
|
2992
3998
|
readonly bearer: string;
|
|
2993
3999
|
readonly threadId: string;
|
|
2994
4000
|
readonly messageId: string;
|
|
@@ -2996,12 +4002,12 @@ declare function removeReaction(ctx: TransportContext, input: {
|
|
|
2996
4002
|
}): Promise<ReactionMutationResponse>;
|
|
2997
4003
|
//#endregion
|
|
2998
4004
|
//#region src/messaging/participants.d.ts
|
|
2999
|
-
declare function removeParticipant(
|
|
4005
|
+
declare function removeParticipant(context: TransportContext, input: {
|
|
3000
4006
|
readonly bearer: string;
|
|
3001
4007
|
readonly threadId: string;
|
|
3002
4008
|
readonly userId: string;
|
|
3003
4009
|
}): Promise<GroupThreadMutationResponse>;
|
|
3004
|
-
declare function updateParticipantRole(
|
|
4010
|
+
declare function updateParticipantRole(context: TransportContext, input: {
|
|
3005
4011
|
readonly bearer: string;
|
|
3006
4012
|
readonly threadId: string;
|
|
3007
4013
|
readonly userId: string;
|
|
@@ -3009,33 +4015,33 @@ declare function updateParticipantRole(ctx: TransportContext, input: {
|
|
|
3009
4015
|
}): Promise<GroupThreadMutationResponse>;
|
|
3010
4016
|
//#endregion
|
|
3011
4017
|
//#region src/messaging/threads.d.ts
|
|
3012
|
-
declare function deleteThread(
|
|
4018
|
+
declare function deleteThread(context: TransportContext, input: {
|
|
3013
4019
|
readonly bearer: string;
|
|
3014
4020
|
readonly threadId: string;
|
|
3015
4021
|
}): Promise<MessagingOkResponse>;
|
|
3016
|
-
declare function updateThreadSettings(
|
|
4022
|
+
declare function updateThreadSettings(context: TransportContext, input: {
|
|
3017
4023
|
readonly bearer: string;
|
|
3018
4024
|
readonly threadId: string;
|
|
3019
4025
|
readonly body: UpdateThreadSettingsBody;
|
|
3020
4026
|
}): Promise<GroupThreadMutationResponse>;
|
|
3021
|
-
declare function hideThread(
|
|
4027
|
+
declare function hideThread(context: TransportContext, input: {
|
|
3022
4028
|
readonly bearer: string;
|
|
3023
4029
|
readonly threadId: string;
|
|
3024
4030
|
}): Promise<MessagingOkResponse>;
|
|
3025
|
-
declare function inviteParticipants(
|
|
4031
|
+
declare function inviteParticipants(context: TransportContext, input: {
|
|
3026
4032
|
readonly bearer: string;
|
|
3027
4033
|
readonly threadId: string;
|
|
3028
4034
|
readonly body: InviteParticipantsBody;
|
|
3029
4035
|
}): Promise<GroupThreadMutationResponse>;
|
|
3030
|
-
declare function leaveThread(
|
|
4036
|
+
declare function leaveThread(context: TransportContext, input: {
|
|
3031
4037
|
readonly bearer: string;
|
|
3032
4038
|
readonly threadId: string;
|
|
3033
4039
|
}): Promise<MessagingOkResponse>;
|
|
3034
|
-
declare function pinThread(
|
|
4040
|
+
declare function pinThread(context: TransportContext, input: {
|
|
3035
4041
|
readonly bearer: string;
|
|
3036
4042
|
readonly threadId: string;
|
|
3037
4043
|
}): Promise<PinThreadResponse>;
|
|
3038
|
-
declare function unpinThread(
|
|
4044
|
+
declare function unpinThread(context: TransportContext, input: {
|
|
3039
4045
|
readonly bearer: string;
|
|
3040
4046
|
readonly threadId: string;
|
|
3041
4047
|
}): Promise<MessagingOkResponse>;
|
|
@@ -3068,7 +4074,7 @@ type AuthorizeUrl = {
|
|
|
3068
4074
|
declare function buildAuthorizeUrl(input: BuildAuthorizeUrlInput): Promise<AuthorizeUrl>;
|
|
3069
4075
|
//#endregion
|
|
3070
4076
|
//#region src/oauth/discovery.d.ts
|
|
3071
|
-
declare function fetchAuthorizationServerMetadata(
|
|
4077
|
+
declare function fetchAuthorizationServerMetadata(context: TransportContext): Promise<OauthAuthorizationServerMetadata>;
|
|
3072
4078
|
declare function defaultEndpoints(issuer: string): {
|
|
3073
4079
|
authorize: string;
|
|
3074
4080
|
token: string;
|
|
@@ -3077,7 +4083,7 @@ declare function defaultEndpoints(issuer: string): {
|
|
|
3077
4083
|
};
|
|
3078
4084
|
//#endregion
|
|
3079
4085
|
//#region src/oauth/revoke.d.ts
|
|
3080
|
-
declare function revokeToken(
|
|
4086
|
+
declare function revokeToken(context: TransportContext, input: {
|
|
3081
4087
|
readonly token: string;
|
|
3082
4088
|
readonly tokenTypeHint?: "access_token" | "refresh_token" | undefined;
|
|
3083
4089
|
readonly clientId: string;
|
|
@@ -3085,14 +4091,14 @@ declare function revokeToken(ctx: TransportContext, input: {
|
|
|
3085
4091
|
}): Promise<void>;
|
|
3086
4092
|
//#endregion
|
|
3087
4093
|
//#region src/oauth/token.d.ts
|
|
3088
|
-
declare function exchangeAuthorizationCode(
|
|
4094
|
+
declare function exchangeAuthorizationCode(context: TransportContext, input: {
|
|
3089
4095
|
readonly code: string;
|
|
3090
4096
|
readonly redirectUri: string;
|
|
3091
4097
|
readonly codeVerifier: string;
|
|
3092
4098
|
readonly clientId: string;
|
|
3093
4099
|
readonly clientSecret?: string | undefined;
|
|
3094
4100
|
}): Promise<OauthTokenResponse>;
|
|
3095
|
-
declare function refreshAccessToken(
|
|
4101
|
+
declare function refreshAccessToken(context: TransportContext, input: {
|
|
3096
4102
|
readonly refreshToken: string;
|
|
3097
4103
|
readonly clientId: string;
|
|
3098
4104
|
readonly clientSecret?: string | undefined;
|
|
@@ -3101,31 +4107,31 @@ declare function refreshAccessToken(ctx: TransportContext, input: {
|
|
|
3101
4107
|
declare function toTokenSet(now: number, response: OauthTokenResponse): TokenSet;
|
|
3102
4108
|
//#endregion
|
|
3103
4109
|
//#region src/oauth/userinfo.d.ts
|
|
3104
|
-
declare function fetchUserInfo(
|
|
4110
|
+
declare function fetchUserInfo(context: TransportContext, input: {
|
|
3105
4111
|
readonly bearer: string;
|
|
3106
4112
|
}): Promise<OauthUserInfoResponse>;
|
|
3107
4113
|
//#endregion
|
|
3108
4114
|
//#region src/payments/appeal.d.ts
|
|
3109
|
-
declare function fileAppeal(
|
|
4115
|
+
declare function fileAppeal(context: TransportContext, input: {
|
|
3110
4116
|
readonly bearer: string;
|
|
3111
4117
|
readonly body: AppealFileRequest;
|
|
3112
4118
|
}): Promise<AppealFileResponse>;
|
|
3113
|
-
declare function fileAppealPotLeg(
|
|
4119
|
+
declare function fileAppealPotLeg(context: TransportContext, input: {
|
|
3114
4120
|
readonly bearer: string;
|
|
3115
4121
|
readonly body: AppealPotLegFileRequest;
|
|
3116
4122
|
}): Promise<AppealFileResponse>;
|
|
3117
4123
|
//#endregion
|
|
3118
4124
|
//#region src/payments/appeal-room.d.ts
|
|
3119
|
-
declare function getAppealRoom(
|
|
4125
|
+
declare function getAppealRoom(context: TransportContext, input: {
|
|
3120
4126
|
readonly bearer: string;
|
|
3121
4127
|
readonly appealId: string;
|
|
3122
4128
|
}): Promise<AppealRoomView>;
|
|
3123
|
-
declare function postAppealRoomMessage(
|
|
4129
|
+
declare function postAppealRoomMessage(context: TransportContext, input: {
|
|
3124
4130
|
readonly bearer: string;
|
|
3125
4131
|
readonly appealId: string;
|
|
3126
4132
|
readonly body: AppealRoomPostRequest;
|
|
3127
4133
|
}): Promise<AppealRoomPostResponse>;
|
|
3128
|
-
declare function uploadAppealRoomAttachment(
|
|
4134
|
+
declare function uploadAppealRoomAttachment(context: TransportContext, input: {
|
|
3129
4135
|
readonly bearer: string;
|
|
3130
4136
|
readonly appealId: string;
|
|
3131
4137
|
readonly file: Blob | ArrayBufferView | ArrayBuffer;
|
|
@@ -3137,80 +4143,105 @@ declare function uploadAppealRoomAttachment(ctx: TransportContext, input: {
|
|
|
3137
4143
|
type ChargeResult = OauthPaymentChargeResponse | ({
|
|
3138
4144
|
status: "monthly_limit_exceeded";
|
|
3139
4145
|
} & Omit<OauthPaymentChargeLimitExceeded, "error">);
|
|
3140
|
-
declare function charge(
|
|
4146
|
+
declare function charge(context: TransportContext, input: {
|
|
3141
4147
|
readonly bearer: string;
|
|
3142
4148
|
readonly body: OauthPaymentChargeRequest;
|
|
3143
4149
|
readonly idempotencyKey?: string;
|
|
3144
4150
|
}): Promise<ChargeResult>;
|
|
3145
4151
|
//#endregion
|
|
3146
4152
|
//#region src/payments/intent.d.ts
|
|
3147
|
-
declare function getPaymentIntent(
|
|
4153
|
+
declare function getPaymentIntent(context: TransportContext, input: {
|
|
3148
4154
|
readonly bearer: string;
|
|
3149
4155
|
readonly intentId: string;
|
|
3150
4156
|
}): Promise<OauthPaymentIntentContext>;
|
|
3151
|
-
declare function signPaymentIntent(
|
|
4157
|
+
declare function signPaymentIntent(context: TransportContext, input: {
|
|
3152
4158
|
readonly bearer: string;
|
|
3153
4159
|
readonly intentId: string;
|
|
3154
4160
|
}): Promise<OauthPaymentIntentSignResponse>;
|
|
3155
|
-
declare function completePaymentIntent(
|
|
4161
|
+
declare function completePaymentIntent(context: TransportContext, input: {
|
|
3156
4162
|
readonly bearer: string;
|
|
3157
4163
|
readonly intentId: string;
|
|
3158
4164
|
readonly body: OauthPaymentIntentComplete;
|
|
3159
4165
|
}): Promise<OauthPaymentIntentResolveResponse>;
|
|
3160
|
-
declare function denyPaymentIntent(
|
|
4166
|
+
declare function denyPaymentIntent(context: TransportContext, input: {
|
|
4167
|
+
readonly bearer: string;
|
|
4168
|
+
readonly intentId: string;
|
|
4169
|
+
}): Promise<OauthPaymentIntentResolveResponse>;
|
|
4170
|
+
declare function preparePaymentIntentSolana(context: TransportContext, input: {
|
|
3161
4171
|
readonly bearer: string;
|
|
3162
4172
|
readonly intentId: string;
|
|
4173
|
+
}): Promise<OauthPaymentIntentSolanaPrepareResponse>;
|
|
4174
|
+
declare function completePaymentIntentSolana(context: TransportContext, input: {
|
|
4175
|
+
readonly bearer: string;
|
|
4176
|
+
readonly intentId: string;
|
|
4177
|
+
readonly body: OauthPaymentIntentSolanaCompleteRequest;
|
|
3163
4178
|
}): Promise<OauthPaymentIntentResolveResponse>;
|
|
3164
4179
|
//#endregion
|
|
3165
4180
|
//#region src/payments/limits.d.ts
|
|
3166
|
-
declare function getPaymentLimits(
|
|
4181
|
+
declare function getPaymentLimits(context: TransportContext, input: {
|
|
3167
4182
|
readonly bearer: string;
|
|
3168
4183
|
}): Promise<OauthPaymentLimitsResponse>;
|
|
3169
4184
|
//#endregion
|
|
3170
4185
|
//#region src/payments/moonpay.d.ts
|
|
3171
|
-
declare function getMoonpayAvailability(
|
|
4186
|
+
declare function getMoonpayAvailability(context: TransportContext, input: {
|
|
3172
4187
|
readonly bearer: string;
|
|
3173
4188
|
}): Promise<MoonpayAvailabilityResponse>;
|
|
3174
|
-
declare function mintMoonpayBuyUrl(
|
|
4189
|
+
declare function mintMoonpayBuyUrl(context: TransportContext, input: {
|
|
3175
4190
|
readonly bearer: string;
|
|
3176
4191
|
readonly body: MoonpayBuyUrlRequest;
|
|
3177
4192
|
}): Promise<MoonpayBuyUrlResponse>;
|
|
3178
|
-
declare function mintMoonpaySellUrl(
|
|
4193
|
+
declare function mintMoonpaySellUrl(context: TransportContext, input: {
|
|
3179
4194
|
readonly bearer: string;
|
|
3180
4195
|
readonly body: MoonpaySellUrlRequest;
|
|
3181
4196
|
}): Promise<MoonpaySellUrlResponse>;
|
|
3182
4197
|
//#endregion
|
|
3183
4198
|
//#region src/payments/price.d.ts
|
|
3184
|
-
declare function getPaymentPrice(
|
|
4199
|
+
declare function getPaymentPrice(context: TransportContext, input: {
|
|
3185
4200
|
readonly bearer: string;
|
|
3186
4201
|
} & GetOauthPaymentsPriceData["query"]): Promise<OauthPaymentPriceResponse>;
|
|
3187
4202
|
//#endregion
|
|
3188
4203
|
//#region src/payments/status.d.ts
|
|
3189
|
-
declare function getIntentStatus(
|
|
4204
|
+
declare function getIntentStatus(context: TransportContext, input: {
|
|
3190
4205
|
readonly bearer: string;
|
|
3191
4206
|
readonly intentId: string;
|
|
3192
4207
|
}): Promise<OauthPaymentIntentStatus>;
|
|
3193
4208
|
//#endregion
|
|
3194
4209
|
//#region src/payments/tron.d.ts
|
|
3195
|
-
declare function getTronBalance(
|
|
4210
|
+
declare function getTronBalance(context: TransportContext, input: {
|
|
3196
4211
|
readonly bearer: string;
|
|
3197
4212
|
}): Promise<TronBalanceResponse>;
|
|
3198
|
-
declare function listTronLedger(
|
|
4213
|
+
declare function listTronLedger(context: TransportContext, input: {
|
|
3199
4214
|
readonly bearer: string;
|
|
3200
4215
|
readonly before?: string;
|
|
3201
4216
|
}): Promise<TronLedgerResponse>;
|
|
3202
|
-
declare function createTronDeposit(
|
|
4217
|
+
declare function createTronDeposit(context: TransportContext, input: {
|
|
3203
4218
|
readonly bearer: string;
|
|
3204
4219
|
readonly body: TronDepositRequest;
|
|
3205
4220
|
}): Promise<TronDepositResponse>;
|
|
3206
|
-
declare function
|
|
4221
|
+
declare function createTronTransfer(context: TransportContext, input: {
|
|
4222
|
+
readonly bearer: string;
|
|
4223
|
+
readonly body: TronTransferRequest;
|
|
4224
|
+
readonly idempotencyKey?: string;
|
|
4225
|
+
}): Promise<TronTransferResponse>;
|
|
4226
|
+
declare function getTronSecurity(context: TransportContext, input: {
|
|
4227
|
+
readonly bearer: string;
|
|
4228
|
+
}): Promise<TronSecuritySetting>;
|
|
4229
|
+
declare function setTronSecurity(context: TransportContext, input: {
|
|
4230
|
+
readonly bearer: string;
|
|
4231
|
+
readonly setting: TronSecuritySetting;
|
|
4232
|
+
}): Promise<TronSecuritySetting>;
|
|
4233
|
+
declare function createTronTransferChallenge(context: TransportContext, input: {
|
|
4234
|
+
readonly bearer: string;
|
|
4235
|
+
readonly body: TronTransferChallengeRequest;
|
|
4236
|
+
}): Promise<TronTransferChallengeResponse>;
|
|
4237
|
+
declare function createTronConnectOnboarding(context: TransportContext, input: {
|
|
3207
4238
|
readonly bearer: string;
|
|
3208
4239
|
}): Promise<TronConnectOnboardingResponse>;
|
|
3209
|
-
declare function createTronCashout(
|
|
4240
|
+
declare function createTronCashout(context: TransportContext, input: {
|
|
3210
4241
|
readonly bearer: string;
|
|
3211
4242
|
readonly body: TronCashoutCreateRequest;
|
|
3212
4243
|
}): Promise<TronCashoutItem>;
|
|
3213
|
-
declare function listTronCashouts(
|
|
4244
|
+
declare function listTronCashouts(context: TransportContext, input: {
|
|
3214
4245
|
readonly bearer: string;
|
|
3215
4246
|
}): Promise<TronCashoutListResponse>;
|
|
3216
4247
|
//#endregion
|
|
@@ -3223,7 +4254,7 @@ type MountPresenceWidgetOptions = {
|
|
|
3223
4254
|
readonly container?: HTMLElement;
|
|
3224
4255
|
readonly onPlaySessionId?: (playSessionId: string | null) => void;
|
|
3225
4256
|
readonly onStatus?: (status: PresenceStatus) => void;
|
|
3226
|
-
readonly onAuthChange?: (
|
|
4257
|
+
readonly onAuthChange?: (isAuthenticated: boolean) => void;
|
|
3227
4258
|
readonly styleIframe?: (iframe: HTMLIFrameElement) => void;
|
|
3228
4259
|
readonly onPresentationChange?: (mode: "chip" | "overlay") => void;
|
|
3229
4260
|
readonly background?: string;
|
|
@@ -3234,40 +4265,40 @@ type PresenceWidgetHandle = {
|
|
|
3234
4265
|
declare function mountPresenceWidget(options: MountPresenceWidgetOptions): PresenceWidgetHandle;
|
|
3235
4266
|
//#endregion
|
|
3236
4267
|
//#region src/reads/dashboard.d.ts
|
|
3237
|
-
declare function getMeStats(
|
|
4268
|
+
declare function getMeStats(context: TransportContext, input: {
|
|
3238
4269
|
readonly bearer: string;
|
|
3239
4270
|
}): Promise<MeStats>;
|
|
3240
|
-
declare function getEarningsTimeseries(
|
|
4271
|
+
declare function getEarningsTimeseries(context: TransportContext, input: {
|
|
3241
4272
|
readonly bearer: string;
|
|
3242
4273
|
readonly days?: number;
|
|
3243
4274
|
}): Promise<EarningsTimeseries>;
|
|
3244
4275
|
//#endregion
|
|
3245
4276
|
//#region src/reads/messaging.d.ts
|
|
3246
|
-
declare function listThreads(
|
|
4277
|
+
declare function listThreads(context: TransportContext, input: {
|
|
3247
4278
|
readonly bearer: string;
|
|
3248
4279
|
readonly limit?: number;
|
|
3249
4280
|
readonly cursor?: string;
|
|
3250
4281
|
}): Promise<ThreadListResponse>;
|
|
3251
|
-
declare function createDirectThread(
|
|
4282
|
+
declare function createDirectThread(context: TransportContext, input: {
|
|
3252
4283
|
readonly bearer: string;
|
|
3253
4284
|
readonly body: CreateDirectThreadBody;
|
|
3254
4285
|
}): Promise<ThreadSummary>;
|
|
3255
|
-
declare function listThreadMessages(
|
|
4286
|
+
declare function listThreadMessages(context: TransportContext, input: {
|
|
3256
4287
|
readonly bearer: string;
|
|
3257
4288
|
readonly threadId: string;
|
|
3258
4289
|
readonly limit?: number;
|
|
3259
4290
|
readonly cursor?: string;
|
|
3260
4291
|
}): Promise<MessagesPageResponse>;
|
|
3261
|
-
declare function sendMessage(
|
|
4292
|
+
declare function sendMessage(context: TransportContext, input: {
|
|
3262
4293
|
readonly bearer: string;
|
|
3263
4294
|
readonly threadId: string;
|
|
3264
4295
|
readonly body: SendMessageBody;
|
|
3265
4296
|
}): Promise<void>;
|
|
3266
|
-
declare function markThreadRead(
|
|
4297
|
+
declare function markThreadRead(context: TransportContext, input: {
|
|
3267
4298
|
readonly bearer: string;
|
|
3268
4299
|
readonly threadId: string;
|
|
3269
4300
|
}): Promise<void>;
|
|
3270
|
-
declare function uploadAttachment(
|
|
4301
|
+
declare function uploadAttachment(context: TransportContext, input: {
|
|
3271
4302
|
readonly bearer: string;
|
|
3272
4303
|
readonly threadId: string;
|
|
3273
4304
|
readonly file: Blob | ArrayBufferView | ArrayBuffer;
|
|
@@ -3276,116 +4307,123 @@ declare function uploadAttachment(ctx: TransportContext, input: {
|
|
|
3276
4307
|
}): Promise<UploadAttachmentResponse>;
|
|
3277
4308
|
//#endregion
|
|
3278
4309
|
//#region src/reads/notifications.d.ts
|
|
3279
|
-
declare function listNotifications(
|
|
4310
|
+
declare function listNotifications(context: TransportContext, input: {
|
|
3280
4311
|
readonly bearer: string;
|
|
3281
4312
|
readonly limit?: number;
|
|
3282
4313
|
readonly cursor?: string;
|
|
3283
4314
|
}): Promise<NotificationListResponse>;
|
|
3284
|
-
declare function updateNotification(
|
|
4315
|
+
declare function updateNotification(context: TransportContext, input: {
|
|
3285
4316
|
readonly bearer: string;
|
|
3286
4317
|
readonly notificationId: string;
|
|
3287
4318
|
readonly body: NotificationUpdate;
|
|
3288
4319
|
}): Promise<void>;
|
|
3289
|
-
declare function markAllNotificationsRead(
|
|
4320
|
+
declare function markAllNotificationsRead(context: TransportContext, input: {
|
|
3290
4321
|
readonly bearer: string;
|
|
3291
4322
|
}): Promise<void>;
|
|
3292
4323
|
//#endregion
|
|
3293
4324
|
//#region src/reads/playtime.d.ts
|
|
3294
|
-
declare function getPlaytime(
|
|
4325
|
+
declare function getPlaytime(context: TransportContext, input: {
|
|
3295
4326
|
readonly bearer: string;
|
|
3296
4327
|
}): Promise<PlaytimeOverview>;
|
|
3297
|
-
declare function getPlaytimeTimeseries(
|
|
4328
|
+
declare function getPlaytimeTimeseries(context: TransportContext, input: {
|
|
3298
4329
|
readonly bearer: string;
|
|
3299
4330
|
readonly days?: number;
|
|
3300
4331
|
}): Promise<PlaytimeTimeseries>;
|
|
3301
4332
|
//#endregion
|
|
3302
4333
|
//#region src/reads/profile.d.ts
|
|
3303
|
-
declare function getPublicProfile(
|
|
4334
|
+
declare function getPublicProfile(context: TransportContext, input: {
|
|
3304
4335
|
readonly bearer?: string;
|
|
3305
4336
|
readonly handle: string;
|
|
3306
4337
|
}): Promise<PublicProfile>;
|
|
3307
|
-
declare function searchUsers(
|
|
4338
|
+
declare function searchUsers(context: TransportContext, input: {
|
|
3308
4339
|
readonly bearer: string;
|
|
3309
4340
|
readonly q: string;
|
|
3310
4341
|
readonly limit?: number;
|
|
3311
4342
|
}): Promise<UserSearchResponse>;
|
|
3312
4343
|
//#endregion
|
|
3313
4344
|
//#region src/reads/referral.d.ts
|
|
3314
|
-
declare function getReferral(
|
|
4345
|
+
declare function getReferral(context: TransportContext, input: {
|
|
3315
4346
|
readonly bearer: string;
|
|
3316
4347
|
}): Promise<ReferralOverview>;
|
|
3317
|
-
declare function createReferralCode(
|
|
4348
|
+
declare function createReferralCode(context: TransportContext, input: {
|
|
3318
4349
|
readonly bearer: string;
|
|
3319
4350
|
readonly regenerate?: boolean;
|
|
3320
4351
|
}): Promise<ReferralCodeResponse>;
|
|
3321
|
-
declare function previewReferral(
|
|
4352
|
+
declare function previewReferral(context: TransportContext, input: {
|
|
3322
4353
|
readonly bearer: string;
|
|
3323
4354
|
readonly code: string;
|
|
3324
4355
|
}): Promise<ReferralPreviewResponse>;
|
|
3325
|
-
declare function bindReferral(
|
|
4356
|
+
declare function bindReferral(context: TransportContext, input: {
|
|
3326
4357
|
readonly bearer: string;
|
|
3327
4358
|
} & ReferralBindRequest): Promise<ReferralBindResponse>;
|
|
3328
4359
|
//#endregion
|
|
3329
4360
|
//#region src/reads/social-graph.d.ts
|
|
3330
|
-
declare function followUser(
|
|
4361
|
+
declare function followUser(context: TransportContext, input: {
|
|
3331
4362
|
readonly bearer: string;
|
|
3332
4363
|
readonly userId: string;
|
|
3333
4364
|
}): Promise<void>;
|
|
3334
|
-
declare function unfollowUser(
|
|
4365
|
+
declare function unfollowUser(context: TransportContext, input: {
|
|
3335
4366
|
readonly bearer: string;
|
|
3336
4367
|
readonly userId: string;
|
|
3337
4368
|
}): Promise<void>;
|
|
3338
|
-
declare function sendFriendRequest(
|
|
4369
|
+
declare function sendFriendRequest(context: TransportContext, input: {
|
|
3339
4370
|
readonly bearer: string;
|
|
3340
4371
|
readonly userId: string;
|
|
3341
4372
|
}): Promise<void>;
|
|
3342
|
-
declare function
|
|
4373
|
+
declare function removeFriend(context: TransportContext, input: {
|
|
4374
|
+
readonly bearer: string;
|
|
4375
|
+
readonly userId: string;
|
|
4376
|
+
}): Promise<void>;
|
|
4377
|
+
declare function decideFriendRequest(context: TransportContext, input: {
|
|
3343
4378
|
readonly bearer: string;
|
|
3344
4379
|
readonly requestId: string;
|
|
3345
4380
|
readonly decision: FriendRequestDecision["decision"];
|
|
3346
4381
|
}): Promise<void>;
|
|
3347
|
-
declare function cancelFriendRequest(
|
|
4382
|
+
declare function cancelFriendRequest(context: TransportContext, input: {
|
|
3348
4383
|
readonly bearer: string;
|
|
3349
4384
|
readonly requestId: string;
|
|
3350
4385
|
}): Promise<void>;
|
|
3351
|
-
declare function listFriends(
|
|
4386
|
+
declare function listFriends(context: TransportContext, input: {
|
|
3352
4387
|
readonly bearer: string;
|
|
3353
4388
|
}): Promise<FriendListResponse>;
|
|
4389
|
+
declare function listFriendsForApp(context: TransportContext, input: {
|
|
4390
|
+
readonly bearer: string;
|
|
4391
|
+
}): Promise<AppFriendListResponse>;
|
|
3354
4392
|
//#endregion
|
|
3355
4393
|
//#region src/reads/socials.d.ts
|
|
3356
|
-
declare function listSocials(
|
|
4394
|
+
declare function listSocials(context: TransportContext, input: {
|
|
3357
4395
|
readonly bearer: string;
|
|
3358
4396
|
}): Promise<SocialListResponse>;
|
|
3359
4397
|
//#endregion
|
|
3360
4398
|
//#region src/reads/wallets.d.ts
|
|
3361
|
-
declare function listWallets(
|
|
4399
|
+
declare function listWallets(context: TransportContext, input: {
|
|
3362
4400
|
readonly bearer: string;
|
|
3363
4401
|
}): Promise<WalletListResponse>;
|
|
3364
4402
|
//#endregion
|
|
3365
4403
|
//#region src/wallets-mgmt/delegation.d.ts
|
|
3366
|
-
declare function getDelegation(
|
|
4404
|
+
declare function getDelegation(context: TransportContext, input: {
|
|
3367
4405
|
readonly bearer: string;
|
|
3368
4406
|
readonly address: string;
|
|
3369
4407
|
}): Promise<WalletDelegationStatus>;
|
|
3370
|
-
declare function createDelegation(
|
|
4408
|
+
declare function createDelegation(context: TransportContext, input: {
|
|
3371
4409
|
readonly bearer: string;
|
|
3372
4410
|
readonly address: string;
|
|
3373
4411
|
readonly body: CreateWalletDelegation;
|
|
3374
4412
|
}): Promise<CreateWalletDelegationResponse>;
|
|
3375
|
-
declare function deleteDelegation(
|
|
4413
|
+
declare function deleteDelegation(context: TransportContext, input: {
|
|
3376
4414
|
readonly bearer: string;
|
|
3377
4415
|
readonly address: string;
|
|
3378
4416
|
}): Promise<DeleteWalletDelegationResponse>;
|
|
3379
4417
|
//#endregion
|
|
3380
4418
|
//#region src/wallets-mgmt/label.d.ts
|
|
3381
|
-
declare function updateWalletLabel(
|
|
4419
|
+
declare function updateWalletLabel(context: TransportContext, input: {
|
|
3382
4420
|
readonly bearer: string;
|
|
3383
4421
|
readonly address: string;
|
|
3384
4422
|
readonly body: WalletLabelUpdate;
|
|
3385
4423
|
}): Promise<WalletLabelUpdateResponse>;
|
|
3386
4424
|
//#endregion
|
|
3387
4425
|
//#region src/wallets-mgmt/list.d.ts
|
|
3388
|
-
declare function listWalletManager(
|
|
4426
|
+
declare function listWalletManager(context: TransportContext, input: {
|
|
3389
4427
|
readonly bearer: string;
|
|
3390
4428
|
}): Promise<WalletListResponse>;
|
|
3391
4429
|
//#endregion
|
|
@@ -3642,4 +4680,4 @@ type CookieTokenStoreOptions = {
|
|
|
3642
4680
|
};
|
|
3643
4681
|
declare function createCookieTokenStore(options?: CookieTokenStoreOptions): TokenStore;
|
|
3644
4682
|
//#endregion
|
|
3645
|
-
export { AuthorizeUrl, type BrowserClientConfig, BuildAuthorizeUrlInput, ChargeResult, CookieTokenStoreOptions, type FetchLike, InflightDedup, type Logger, MountPresenceWidgetOptions, NOOP_RATE_LIMITER, OauthErrorCode, OauthPaymentWebhookBody, type OauthScope, PkcePair, PresenceStatus, PresenceWidgetHandle, RateLimitOptions, RateLimiter, 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, TronBrowserClient, TronError, TronOauthError, TronWsCloseCode, TronWsCloseError, VerifyWebhookFailure, VerifyWebhookInput, VerifyWebhookResult, VerifyWebhookSuccess, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, acceptDeveloperInvite, addAdmin, addAppealBlacklist, addReaction, approveTronCashout, batchThreadDmKeys, bindReferral, buildAuthorizeUrl, cancelFriendRequest, charge, completePaymentIntent, consolidateDeveloperAppWallet, createConsoleLogger, createCookieTokenStore, 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, editMessage, 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, getEarningsTimeseries, getIntentStatus, getLibrary, getMeStats, getMoonpayAvailability, getMyDmKey, getMyGameReview, getOutstanding, getPaymentChains, getPaymentHistory, getPaymentIntent, getPaymentLimits, getPaymentPrice, getPlatformFees, getPlaytime, getPlaytimeTimeseries, getPublicProfile, getReferral, getThreadDmKey, getTronBalance, 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, mintMoonpayBuyUrl, mintMoonpaySellUrl, mountPresenceWidget, oauthPaymentWebhookBodySchema, pinThread, postAdminAppealRoomMessage, postAppealRoomMessage, previewReferral, provisionDeveloperAppWallet, publishDmKey, refreshAccessToken, rejectTronCashout, removeAdmin, removeAppealBlacklist, removeParticipant, removeReaction, replyToGameReview, requestDeveloperAppProduction, requestMint, resolveAppeal, reviewAppPage, reviewAppPageChanges, reviewDeveloperRequest, revokeDeveloperApiKey, revokeDeveloperAppParticipant, revokePaymentAuthorization, revokeToken, rotateDeveloperAppKey, rotateDeveloperAppPaymentWebhookSecret, rotateProcessorTreasury, searchGiphy, searchUsers, sendFriendRequest, sendMessage, sendPresenceHeartbeat, setProcessorWhitelist, setVaultOperator, setVaultPause, setVaultWithdrawLockDefault, setVaultWithdrawLockOverride, setupDmKeyBackup, sha256Base64Url, signPaymentIntent, 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 };
|
|
4683
|
+
export { AuthorizeUrl, type BrowserClientConfig, BuildAuthorizeUrlInput, ChargeResult, CookieTokenStoreOptions, type FetchLike, InflightDedup, type Logger, MountPresenceWidgetOptions, NOOP_RATE_LIMITER, OauthErrorCode, OauthPaymentWebhookBody, type OauthScope, PkcePair, PresenceStatus, PresenceWidgetHandle, RateLimitOptions, RateLimiter, 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, TronBrowserClient, TronError, TronOauthError, TronWsCloseCode, TronWsCloseError, VerifyWebhookFailure, VerifyWebhookInput, VerifyWebhookResult, VerifyWebhookSuccess, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, acceptDeveloperInvite, addAdmin, addAppealBlacklist, addReaction, approveTronCashout, batchThreadDmKeys, bindReferral, buildAuthorizeUrl, cancelFriendRequest, charge, commentOnBipUpdate, commentOnGameReview, completePaymentIntent, completePaymentIntentSolana, consolidateDeveloperAppWallet, createBipUpdate, createConsoleLogger, createCookieTokenStore, 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, editMessage, 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, getEarningsTimeseries, getIntentStatus, getLibrary, getMeStats, getMoonpayAvailability, getMyBipEngagement, getMyBipUpdateReactions, getMyDmKey, getMyGameReview, getMyGameReviewReactions, getOutstanding, getPaymentChains, getPaymentHistory, getPaymentIntent, getPaymentLimits, getPaymentPrice, getPaymentRates, getPlatformFees, getPlaytime, getPlaytimeTimeseries, getPublicProfile, getReferral, getThreadDmKey, getTronBalance, getTronSecurity, hideAppPage, hideAppPageBip, hideThread, 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, mintMoonpayBuyUrl, mintMoonpaySellUrl, mountPresenceWidget, oauthPaymentWebhookBodySchema, pinThread, postAdminAppealRoomMessage, postAppealRoomMessage, preparePaymentIntentSolana, previewReferral, provisionDeveloperAppWallet, publishDmKey, quoteDeveloperAppInventoryRegistration, quoteNftTransfer, quoteRelayedVaultPermit, redeemInventoryMintPermit, refreshAccessToken, registerBipInterest, registerDeveloperAppInventoryItem, rejectTronCashout, removeAdmin, removeAppealBlacklist, removeFriend, removeParticipant, removeReaction, replyToGameReview, requestDeveloperAppProduction, requestMint, resolveAppeal, reviewAppPage, reviewAppPageBip, reviewAppPageChanges, reviewDeveloperRequest, revokeDeveloperApiKey, revokeDeveloperAppParticipant, revokePaymentAuthorization, revokeToken, rotateDeveloperAppKey, rotateDeveloperAppPaymentWebhookSecret, rotateProcessorTreasury, searchGiphy, searchUsers, sendFriendRequest, sendMessage, sendPresenceHeartbeat, setAppPageBip, setBipUpdateReaction, setMyGameReviewReaction, setProcessorWhitelist, setTronSecurity, setVaultOperator, setVaultPause, setVaultWithdrawLockDefault, setVaultWithdrawLockOverride, setupDmKeyBackup, sha256Base64Url, signInventoryVaultPermit, signPaymentIntent, submitAppContentReport, submitAppPageBipForReview, submitAppPageForReview, submitDeveloperRequest, submitRelayedVaultPermit, subscribeBipUpdates, tipGameReview, toTokenSet, triageAdminContentReport, unfollowUser, unhideAppPage, unhideAppPageBip, unlockDmKeyBackup, 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 };
|