@metatrongg/sdk 0.8.0-dev.4ac3e68 → 0.8.0-dev.4fc3172
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/index.d.ts +226 -7
- package/dist/browser/index.js +1 -1
- package/dist/contracts/index.d.ts +1685 -299
- package/dist/contracts/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/node/index.d.ts +226 -7
- package/dist/node/index.js +1 -1
- package/dist/webhook/express.js +1 -1
- package/dist/webhook/fastify.js +1 -1
- package/dist/webhook/hono.js +1 -1
- package/dist/webhook/index.js +1 -1
- package/package.json +3 -3
package/dist/node/index.d.ts
CHANGED
|
@@ -448,6 +448,95 @@ type PublicBipPage = {
|
|
|
448
448
|
publishedAt: string;
|
|
449
449
|
updatedAt: string;
|
|
450
450
|
};
|
|
451
|
+
type BipUpdateListResponse = {
|
|
452
|
+
updates: Array<BipUpdate>;
|
|
453
|
+
total: number;
|
|
454
|
+
hasMore: boolean;
|
|
455
|
+
};
|
|
456
|
+
type BipUpdate = {
|
|
457
|
+
id: string;
|
|
458
|
+
appId: string;
|
|
459
|
+
body: BipUpdateBody;
|
|
460
|
+
attachments: BipUpdateAttachments;
|
|
461
|
+
reactions: BipUpdateReactionCounts;
|
|
462
|
+
commentCount: number;
|
|
463
|
+
createdAt: string;
|
|
464
|
+
updatedAt: string;
|
|
465
|
+
};
|
|
466
|
+
type BipUpdateBody = string;
|
|
467
|
+
type BipUpdateAttachments = Array<BipUpdateAttachment>;
|
|
468
|
+
type BipUpdateAttachment = {
|
|
469
|
+
url: string;
|
|
470
|
+
kind: "image" | "video";
|
|
471
|
+
order: number;
|
|
472
|
+
};
|
|
473
|
+
type BipUpdateReactionCounts = {
|
|
474
|
+
up: number;
|
|
475
|
+
down: number;
|
|
476
|
+
};
|
|
477
|
+
type BipUpdateCommentListResponse = {
|
|
478
|
+
comments: Array<BipUpdateComment>;
|
|
479
|
+
total: number;
|
|
480
|
+
hasMore: boolean;
|
|
481
|
+
};
|
|
482
|
+
type BipUpdateComment = {
|
|
483
|
+
id: string;
|
|
484
|
+
body: BipUpdateCommentBody;
|
|
485
|
+
author: ReviewAuthor;
|
|
486
|
+
createdAt: string;
|
|
487
|
+
};
|
|
488
|
+
type BipUpdateCommentBody = string;
|
|
489
|
+
type ReviewAuthor = {
|
|
490
|
+
userId: string;
|
|
491
|
+
handle: string | null;
|
|
492
|
+
name: string | null;
|
|
493
|
+
avatarUrl: string | null;
|
|
494
|
+
};
|
|
495
|
+
type BipInterestCountResponse = {
|
|
496
|
+
interestCount: number;
|
|
497
|
+
};
|
|
498
|
+
type BipEngagementResponse = {
|
|
499
|
+
interested: boolean;
|
|
500
|
+
subscribed: boolean;
|
|
501
|
+
interestCount: number;
|
|
502
|
+
};
|
|
503
|
+
type MyBipUpdateReactionsResponse = {
|
|
504
|
+
reactions: Array<MyBipUpdateReaction>;
|
|
505
|
+
};
|
|
506
|
+
type MyBipUpdateReaction = {
|
|
507
|
+
updateId: string;
|
|
508
|
+
vote: "up" | "down";
|
|
509
|
+
};
|
|
510
|
+
type SetBipUpdateReactionResponse = {
|
|
511
|
+
reactions: BipUpdateReactionCounts;
|
|
512
|
+
vote: BipUpdateVote;
|
|
513
|
+
};
|
|
514
|
+
type BipUpdateVote = "up" | "down" | null;
|
|
515
|
+
type SetBipUpdateReactionRequest = {
|
|
516
|
+
vote: BipUpdateVote;
|
|
517
|
+
};
|
|
518
|
+
type CreateBipUpdateCommentResponse = {
|
|
519
|
+
comment: BipUpdateComment;
|
|
520
|
+
commentCount: number;
|
|
521
|
+
};
|
|
522
|
+
type DeleteBipUpdateCommentResponse = {
|
|
523
|
+
commentCount: number;
|
|
524
|
+
};
|
|
525
|
+
type CreateBipUpdateRequest = {
|
|
526
|
+
body: BipUpdateBody;
|
|
527
|
+
attachments?: BipUpdateAttachments;
|
|
528
|
+
};
|
|
529
|
+
type UpdateBipUpdateRequest = {
|
|
530
|
+
body?: BipUpdateBody;
|
|
531
|
+
attachments?: BipUpdateAttachments;
|
|
532
|
+
};
|
|
533
|
+
type DeleteBipUpdateResponse = {
|
|
534
|
+
deleted: true;
|
|
535
|
+
};
|
|
536
|
+
type BipUpdateMediaUploadResponse = {
|
|
537
|
+
url: string;
|
|
538
|
+
kind: "image" | "video";
|
|
539
|
+
};
|
|
451
540
|
type ReviewListResponse = {
|
|
452
541
|
aggregate: ReviewAggregate;
|
|
453
542
|
reviews: Array<Review>;
|
|
@@ -481,12 +570,6 @@ type ReviewReactionCounts = {
|
|
|
481
570
|
unhelpful: number;
|
|
482
571
|
funny: number;
|
|
483
572
|
};
|
|
484
|
-
type ReviewAuthor = {
|
|
485
|
-
userId: string;
|
|
486
|
-
handle: string | null;
|
|
487
|
-
name: string | null;
|
|
488
|
-
avatarUrl: string | null;
|
|
489
|
-
};
|
|
490
573
|
type ReviewerStats = {
|
|
491
574
|
playtimeSecondsThisGame: number;
|
|
492
575
|
gamesPlayed: number;
|
|
@@ -1936,6 +2019,18 @@ type NotificationItem = {
|
|
|
1936
2019
|
payload: AppPageRejectedNotificationPayload;
|
|
1937
2020
|
read: boolean;
|
|
1938
2021
|
createdAt: string;
|
|
2022
|
+
} | {
|
|
2023
|
+
id: string;
|
|
2024
|
+
kind: "bip_update_published";
|
|
2025
|
+
payload: BipUpdatePublishedNotificationPayload;
|
|
2026
|
+
read: boolean;
|
|
2027
|
+
createdAt: string;
|
|
2028
|
+
} | {
|
|
2029
|
+
id: string;
|
|
2030
|
+
kind: "bip_now_playable";
|
|
2031
|
+
payload: BipNowPlayableNotificationPayload;
|
|
2032
|
+
read: boolean;
|
|
2033
|
+
createdAt: string;
|
|
1939
2034
|
} | {
|
|
1940
2035
|
id: string;
|
|
1941
2036
|
kind: "app_participant_invite";
|
|
@@ -1974,6 +2069,17 @@ type AppPageRejectedNotificationPayload = {
|
|
|
1974
2069
|
scope: "publish" | "changes" | "bip_publish";
|
|
1975
2070
|
notes: string;
|
|
1976
2071
|
};
|
|
2072
|
+
type BipUpdatePublishedNotificationPayload = {
|
|
2073
|
+
appId: string;
|
|
2074
|
+
appName: string;
|
|
2075
|
+
appSlug: string | null;
|
|
2076
|
+
updateId: string;
|
|
2077
|
+
};
|
|
2078
|
+
type BipNowPlayableNotificationPayload = {
|
|
2079
|
+
appId: string;
|
|
2080
|
+
appName: string;
|
|
2081
|
+
appSlug: string | null;
|
|
2082
|
+
};
|
|
1977
2083
|
type AppParticipantInviteNotificationPayload = {
|
|
1978
2084
|
appId: string;
|
|
1979
2085
|
appName: string;
|
|
@@ -2626,6 +2732,7 @@ type AdminAppPageItem = {
|
|
|
2626
2732
|
bipStatus: "draft" | "pending_review" | "published" | "hidden";
|
|
2627
2733
|
bipFirstPublishedAt: string | null;
|
|
2628
2734
|
bipHiddenAt: string | null;
|
|
2735
|
+
openReportCount: number;
|
|
2629
2736
|
};
|
|
2630
2737
|
type AdminAppPageStatusResponse = {
|
|
2631
2738
|
status: "draft" | "pending_review" | "published" | "hidden";
|
|
@@ -2654,6 +2761,22 @@ type AdminAppPageDiffField = {
|
|
|
2654
2761
|
type AdminAppPageBipStatusResponse = {
|
|
2655
2762
|
bipStatus: "draft" | "pending_review" | "published" | "hidden";
|
|
2656
2763
|
};
|
|
2764
|
+
type AdminAppContentReportListResponse = {
|
|
2765
|
+
reports: Array<AdminAppContentReportItem>;
|
|
2766
|
+
total: number;
|
|
2767
|
+
hasMore: boolean;
|
|
2768
|
+
};
|
|
2769
|
+
type AdminAppContentReportItem = {
|
|
2770
|
+
id: string;
|
|
2771
|
+
category: AppContentReportCategory;
|
|
2772
|
+
details: string | null;
|
|
2773
|
+
status: AppContentReportStatus;
|
|
2774
|
+
acknowledgedAt: string | null;
|
|
2775
|
+
createdAt: string;
|
|
2776
|
+
appId: string;
|
|
2777
|
+
appName: string;
|
|
2778
|
+
appSlug: string | null;
|
|
2779
|
+
};
|
|
2657
2780
|
type PlatformFeesResponse = {
|
|
2658
2781
|
purchaseFeeBps: number;
|
|
2659
2782
|
stakeFeeBps: number;
|
|
@@ -3075,6 +3198,19 @@ declare function resolveAppeal(context: TransportContext, input: {
|
|
|
3075
3198
|
readonly body: AppealResolveRequest;
|
|
3076
3199
|
}): Promise<AppealResolveSignedResponse>;
|
|
3077
3200
|
//#endregion
|
|
3201
|
+
//#region src/admin/content-reports.d.ts
|
|
3202
|
+
declare function listAdminContentReports(context: TransportContext, input: {
|
|
3203
|
+
readonly bearer: string;
|
|
3204
|
+
readonly status?: "open" | "acknowledged" | "dismissed" | "all";
|
|
3205
|
+
readonly limit?: number;
|
|
3206
|
+
readonly offset?: number;
|
|
3207
|
+
}): Promise<AdminAppContentReportListResponse>;
|
|
3208
|
+
declare function triageAdminContentReport(context: TransportContext, input: {
|
|
3209
|
+
readonly bearer: string;
|
|
3210
|
+
readonly reportId: string;
|
|
3211
|
+
readonly status: "acknowledged" | "dismissed";
|
|
3212
|
+
}): Promise<AppContentReport>;
|
|
3213
|
+
//#endregion
|
|
3078
3214
|
//#region src/admin/developers.d.ts
|
|
3079
3215
|
declare function listDeveloperRequests(context: TransportContext, input: {
|
|
3080
3216
|
readonly bearer: string;
|
|
@@ -3214,6 +3350,89 @@ declare function getAppPage(context: TransportContext, input: {
|
|
|
3214
3350
|
readonly slug: string;
|
|
3215
3351
|
}): Promise<PublicAppPage>;
|
|
3216
3352
|
//#endregion
|
|
3353
|
+
//#region src/catalog/bip-updates.d.ts
|
|
3354
|
+
declare function listBipUpdates(context: TransportContext, input: {
|
|
3355
|
+
readonly bearer?: string;
|
|
3356
|
+
readonly slug: string;
|
|
3357
|
+
readonly limit?: number;
|
|
3358
|
+
readonly offset?: number;
|
|
3359
|
+
}): Promise<BipUpdateListResponse>;
|
|
3360
|
+
declare function listBipUpdateComments(context: TransportContext, input: {
|
|
3361
|
+
readonly bearer?: string;
|
|
3362
|
+
readonly slug: string;
|
|
3363
|
+
readonly updateId: string;
|
|
3364
|
+
readonly limit?: number;
|
|
3365
|
+
readonly offset?: number;
|
|
3366
|
+
}): Promise<BipUpdateCommentListResponse>;
|
|
3367
|
+
declare function getMyBipUpdateReactions(context: TransportContext, input: {
|
|
3368
|
+
readonly bearer: string;
|
|
3369
|
+
readonly slug: string;
|
|
3370
|
+
}): Promise<MyBipUpdateReactionsResponse>;
|
|
3371
|
+
declare function setBipUpdateReaction(context: TransportContext, input: {
|
|
3372
|
+
readonly bearer: string;
|
|
3373
|
+
readonly slug: string;
|
|
3374
|
+
readonly updateId: string;
|
|
3375
|
+
readonly body: SetBipUpdateReactionRequest;
|
|
3376
|
+
}): Promise<SetBipUpdateReactionResponse>;
|
|
3377
|
+
declare function commentOnBipUpdate(context: TransportContext, input: {
|
|
3378
|
+
readonly bearer: string;
|
|
3379
|
+
readonly slug: string;
|
|
3380
|
+
readonly updateId: string;
|
|
3381
|
+
readonly body: string;
|
|
3382
|
+
}): Promise<CreateBipUpdateCommentResponse>;
|
|
3383
|
+
declare function deleteBipUpdateComment(context: TransportContext, input: {
|
|
3384
|
+
readonly bearer: string;
|
|
3385
|
+
readonly slug: string;
|
|
3386
|
+
readonly commentId: string;
|
|
3387
|
+
}): Promise<DeleteBipUpdateCommentResponse>;
|
|
3388
|
+
declare function listDeveloperBipUpdates(context: TransportContext, input: {
|
|
3389
|
+
readonly bearer: string;
|
|
3390
|
+
readonly appId: string;
|
|
3391
|
+
readonly limit?: number;
|
|
3392
|
+
readonly offset?: number;
|
|
3393
|
+
}): Promise<BipUpdateListResponse>;
|
|
3394
|
+
declare function createBipUpdate(context: TransportContext, input: {
|
|
3395
|
+
readonly bearer: string;
|
|
3396
|
+
readonly appId: string;
|
|
3397
|
+
readonly body: CreateBipUpdateRequest;
|
|
3398
|
+
}): Promise<BipUpdate>;
|
|
3399
|
+
declare function updateBipUpdate(context: TransportContext, input: {
|
|
3400
|
+
readonly bearer: string;
|
|
3401
|
+
readonly appId: string;
|
|
3402
|
+
readonly updateId: string;
|
|
3403
|
+
readonly body: UpdateBipUpdateRequest;
|
|
3404
|
+
}): Promise<BipUpdate>;
|
|
3405
|
+
declare function deleteBipUpdate(context: TransportContext, input: {
|
|
3406
|
+
readonly bearer: string;
|
|
3407
|
+
readonly appId: string;
|
|
3408
|
+
readonly updateId: string;
|
|
3409
|
+
}): Promise<DeleteBipUpdateResponse>;
|
|
3410
|
+
declare function uploadBipUpdateMedia(context: TransportContext, input: {
|
|
3411
|
+
readonly bearer: string;
|
|
3412
|
+
readonly appId: string;
|
|
3413
|
+
readonly file: Blob;
|
|
3414
|
+
readonly filename: string;
|
|
3415
|
+
readonly contentType: string;
|
|
3416
|
+
}): Promise<BipUpdateMediaUploadResponse>;
|
|
3417
|
+
declare function getBipInterestCount(context: TransportContext, input: {
|
|
3418
|
+
readonly bearer?: string;
|
|
3419
|
+
readonly slug: string;
|
|
3420
|
+
}): Promise<BipInterestCountResponse>;
|
|
3421
|
+
declare function getMyBipEngagement(context: TransportContext, input: {
|
|
3422
|
+
readonly bearer: string;
|
|
3423
|
+
readonly slug: string;
|
|
3424
|
+
}): Promise<BipEngagementResponse>;
|
|
3425
|
+
declare function registerBipInterest(context: TransportContext, input: {
|
|
3426
|
+
readonly bearer: string;
|
|
3427
|
+
readonly slug: string;
|
|
3428
|
+
readonly interested: boolean;
|
|
3429
|
+
}): Promise<BipEngagementResponse>;
|
|
3430
|
+
declare function subscribeBipUpdates(context: TransportContext, input: {
|
|
3431
|
+
readonly bearer: string;
|
|
3432
|
+
readonly slug: string;
|
|
3433
|
+
readonly subscribed: boolean;
|
|
3434
|
+
}): Promise<BipEngagementResponse>;
|
|
3435
|
+
//#endregion
|
|
3217
3436
|
//#region src/catalog/build-in-public.d.ts
|
|
3218
3437
|
declare function getBipDirectory(context: TransportContext, input: {
|
|
3219
3438
|
readonly bearer?: string;
|
|
@@ -4694,4 +4913,4 @@ declare class TronNodeClient {
|
|
|
4694
4913
|
};
|
|
4695
4914
|
}
|
|
4696
4915
|
//#endregion
|
|
4697
|
-
export { AppTokenCache, AuthorizeUrl, type BrowserClientConfig, BuildAuthorizeUrlInput, ChargeResult, type FetchLike, GameHalfCredentials, HttpsGuardOptions, InflightDedup, InventoryUpdateEvent, type Logger, MountPresenceWidgetOptions, NOOP_RATE_LIMITER, type NodeClientConfig, OauthErrorCode, OauthInventoryEventsSubscriber, OauthInventoryEventsSubscriberLifecycle, OauthInventoryEventsSubscriberOptions, OauthPaymentEventsSubscriber, OauthPaymentEventsSubscriberLifecycle, OauthPaymentEventsSubscriberOptions, OauthPaymentWebhookBody, type OauthScope, PkcePair, PlaySessionGameStatus, PresenceStatus, PresenceWidgetHandle, RateLimitOptions, RateLimiter, RequestOptions, SERVER_RATE_LIMIT_MAX_MUTATING, SERVER_RATE_LIMIT_MAX_READ, SERVER_RATE_LIMIT_WINDOW_MS, type SdkBaseConfig, TRON_WS_CLOSE_CODES, type TokenSet, type TokenStore, TransportContext, TronError, TronNodeClient, TronOauthError, TronWsCloseCode, TronWsCloseError, VerifyWebhookFailure, VerifyWebhookInput, VerifyWebhookResult, VerifyWebhookSuccess, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, acceptDeveloperInvite, addAdmin, addAppealBlacklist, addReaction, approveTronCashout, assertSecureIssuer, batchThreadDmKeys, bindReferral, buildAuthorizeUrl, cancelFriendRequest, cancelPot, charge, chargeTronDirect, chargeTronPot, commentOnGameReview, completePaymentIntent, confirmPlaySession, consolidateDeveloperAppWallet, createAppTokenCache, createConsoleLogger, createDelegation, createDeveloperApiKey, createDeveloperApp, createDeveloperAppMintPermit, createDeveloperVaultPermit, createDeveloperWithdrawPermit, createDirectThread, createInMemoryTokenStore, createInflightDedup, createNoopLogger, createRateLimiter, createReferralCode, createTronCashout, createTronConnectOnboarding, createTronDeposit, createTronTransfer, createTronTransferChallenge, decideFriendRequest, declineDeveloperInvite, defaultEndpoints, deleteAppPageBanner, deleteAppPageThumbnail, deleteAppPageThumbnailVideo, deleteAvatar, deleteDelegation, deleteDeveloperApp, deleteDeveloperAppLogo, deleteDeveloperProfileLogo, deleteDeveloperRequestLogo, deleteGameReviewComment, deleteGameReviewReply, deleteMessage, deleteMyGameReview, deleteThread, deleteThreadLogo, denyPaymentIntent, distributePot, distributeTronPot, editMessage, endPlaySession, exchangeAuthorizationCode, executeNftTransfer, fetchAuthorizationServerMetadata, fetchUserInfo, fileAppeal, fileAppealPotLeg, followUser, forceWithdrawVaultCustody, generatePkce, generateState, getActivity, getActivityGroup, getAdminAppealRoom, getAppFeeConfig, getAppPage, getAppPageChanges, getAppealRoom, getBipDirectory, getBipPage, getDelegation, getDeveloperAppActivity, getDeveloperAppBalances, getDeveloperAppEarnings, getDeveloperAppInventoryItemHolders, getDeveloperAppOverview, getDeveloperAppPage, getDeveloperAppPlaytime, getDeveloperAppTronBalance, getDeveloperAppWallets, getDeveloperPaymentAppeals, getDeveloperPaymentPendingDeposits, getDeveloperStatus, getDeveloperTronBalanceSummary, getDmKeyBackupStatus, getIntentStatus, getLibrary, getMoonpayAvailability, getMyDmKey, getMyGameReview, getMyGameReviewReactions, getOutstanding, getPaymentChains, getPaymentHistory, getPaymentIntent, getPaymentLimits, getPaymentPrice, getPlatformFees, getPlaytime, getPlaytimeTimeseries, getPublicProfile, getReferral, getThreadDmKey, getTronBalance, getTronGameBalance, getTronSecurity, heartbeatPlaySession, hideAppPage, hideAppPageBip, hideThread, inventoryUpdateEventSchema, inviteDeveloperAppParticipant, inviteParticipants, leaveThread, listActivePlayers, listAdmins, listAppPages, listAppealBlacklist, listAppealQueue, listAudit, listDeveloperApiKeys, listDeveloperAppContentReports, listDeveloperAppInventoryCollections, listDeveloperAppInventoryItems, listDeveloperAppParticipants, listDeveloperAppReviews, listDeveloperInvites, listDeveloperRequests, listDevelopers, listFriends, listFriendsForApp, listGameReviewComments, listGameReviews, listInventory, listInventoryForApp, listInventoryMintPermits, listInventoryVaultPermits, listInventoryVaulted, listNotifications, listOauthInventoryVaulted, listPaymentAuthorizations, listSocials, listThreadMessages, listThreads, listTronCashoutQueue, listTronCashouts, listTronLedger, listUsers, listWalletManager, listWallets, markAllNotificationsRead, markThreadRead, mintClientCredentialsToken, mintMoonpayBuyUrl, mintMoonpaySellUrl, mountPresenceWidget, oauthPaymentWebhookBodySchema, parseJson, pinThread, postAdminAppealRoomMessage, postAppealRoomMessage, previewReferral, provisionDeveloperAppWallet, publishDmKey, quoteDeveloperAppInventoryRegistration, quoteNftTransfer, quoteRelayedVaultPermit, redeemInventoryMintPermit, refreshAccessToken, registerDeveloperAppInventoryItem, registerOauthClient, rejectTronCashout, removeAdmin, removeAppealBlacklist, removeFriend, removeParticipant, removeReaction, replyToGameReview, requestDeveloperAppProduction, requestMint, requestPayout, resolveAppeal, reviewAppPage, reviewAppPageBip, reviewAppPageChanges, reviewDeveloperRequest, revokeDeveloperApiKey, revokeDeveloperAppParticipant, revokePaymentAuthorization, revokeToken, rotateDeveloperAppKey, rotateDeveloperAppPaymentWebhookSecret, rotateProcessorTreasury, searchGiphy, searchUsers, send, sendFriendRequest, sendJson, sendMessage, sendPresenceHeartbeat, setAppPageBip, setMyGameReviewReaction, setProcessorWhitelist, setTronSecurity, setVaultOperator, setVaultPause, setVaultWithdrawLockDefault, setVaultWithdrawLockOverride, setupDmKeyBackup, sha256Base64Url, signInventoryVaultPermit, signPaymentIntent, startOauthInventoryEventsSubscriber, startOauthPaymentEventsSubscriber, submitAppContentReport, submitAppPageBipForReview, submitAppPageForReview, submitDeveloperRequest, submitRelayedVaultPermit, tipGameReview, toTokenSet, unfollowUser, unhideAppPage, unhideAppPageBip, unlockDmKeyBackup, unpinThread, unpublishAppPage, unpublishAppPageBip, updateAdminRole, updateAppFeeConfig, updateAppPage, updateDeveloperApp, updateDeveloperAppAutoSweep, updateDeveloperAppContentReportStatus, updateDeveloperProfile, updateNotification, updateParticipantRole, updatePaymentAuthorization, updatePlatformFees, updateProfile, updateThreadSettings, updateUserBan, updateWalletLabel, uploadAdminAppealRoomAttachment, uploadAppPageBanner, uploadAppPageGallery, uploadAppPageThumbnail, uploadAppPageThumbnailVideo, uploadAppealRoomAttachment, uploadAttachment, uploadAvatar, uploadDeveloperAppInventoryItemBanner, uploadDeveloperAppInventoryItemImage, uploadDeveloperAppLogo, uploadDeveloperProfileLogo, uploadDeveloperRequestLogo, uploadMultipart, uploadThreadLogo, upsertMyGameReview, verifyWebhook, withdrawDeveloperAppWallet };
|
|
4916
|
+
export { AppTokenCache, AuthorizeUrl, type BrowserClientConfig, BuildAuthorizeUrlInput, ChargeResult, type FetchLike, GameHalfCredentials, HttpsGuardOptions, InflightDedup, InventoryUpdateEvent, type Logger, MountPresenceWidgetOptions, NOOP_RATE_LIMITER, type NodeClientConfig, OauthErrorCode, OauthInventoryEventsSubscriber, OauthInventoryEventsSubscriberLifecycle, OauthInventoryEventsSubscriberOptions, OauthPaymentEventsSubscriber, OauthPaymentEventsSubscriberLifecycle, OauthPaymentEventsSubscriberOptions, OauthPaymentWebhookBody, type OauthScope, PkcePair, PlaySessionGameStatus, PresenceStatus, PresenceWidgetHandle, RateLimitOptions, RateLimiter, RequestOptions, SERVER_RATE_LIMIT_MAX_MUTATING, SERVER_RATE_LIMIT_MAX_READ, SERVER_RATE_LIMIT_WINDOW_MS, type SdkBaseConfig, TRON_WS_CLOSE_CODES, type TokenSet, type TokenStore, TransportContext, TronError, TronNodeClient, TronOauthError, TronWsCloseCode, TronWsCloseError, VerifyWebhookFailure, VerifyWebhookInput, VerifyWebhookResult, VerifyWebhookSuccess, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, acceptDeveloperInvite, addAdmin, addAppealBlacklist, addReaction, approveTronCashout, assertSecureIssuer, batchThreadDmKeys, bindReferral, buildAuthorizeUrl, cancelFriendRequest, cancelPot, charge, chargeTronDirect, chargeTronPot, commentOnBipUpdate, commentOnGameReview, completePaymentIntent, confirmPlaySession, consolidateDeveloperAppWallet, createAppTokenCache, createBipUpdate, createConsoleLogger, createDelegation, createDeveloperApiKey, createDeveloperApp, createDeveloperAppMintPermit, createDeveloperVaultPermit, createDeveloperWithdrawPermit, createDirectThread, createInMemoryTokenStore, createInflightDedup, createNoopLogger, createRateLimiter, createReferralCode, createTronCashout, createTronConnectOnboarding, createTronDeposit, createTronTransfer, createTronTransferChallenge, decideFriendRequest, declineDeveloperInvite, defaultEndpoints, deleteAppPageBanner, deleteAppPageThumbnail, deleteAppPageThumbnailVideo, deleteAvatar, deleteBipUpdate, deleteBipUpdateComment, deleteDelegation, deleteDeveloperApp, deleteDeveloperAppLogo, deleteDeveloperProfileLogo, deleteDeveloperRequestLogo, deleteGameReviewComment, deleteGameReviewReply, deleteMessage, deleteMyGameReview, deleteThread, deleteThreadLogo, denyPaymentIntent, distributePot, distributeTronPot, editMessage, endPlaySession, exchangeAuthorizationCode, executeNftTransfer, fetchAuthorizationServerMetadata, fetchUserInfo, fileAppeal, fileAppealPotLeg, followUser, forceWithdrawVaultCustody, generatePkce, generateState, getActivity, getActivityGroup, getAdminAppealRoom, getAppFeeConfig, getAppPage, getAppPageChanges, getAppealRoom, getBipDirectory, getBipInterestCount, getBipPage, getDelegation, getDeveloperAppActivity, getDeveloperAppBalances, getDeveloperAppEarnings, getDeveloperAppInventoryItemHolders, getDeveloperAppOverview, getDeveloperAppPage, getDeveloperAppPlaytime, getDeveloperAppTronBalance, getDeveloperAppWallets, getDeveloperPaymentAppeals, getDeveloperPaymentPendingDeposits, getDeveloperStatus, getDeveloperTronBalanceSummary, getDmKeyBackupStatus, getIntentStatus, getLibrary, getMoonpayAvailability, getMyBipEngagement, getMyBipUpdateReactions, getMyDmKey, getMyGameReview, getMyGameReviewReactions, getOutstanding, getPaymentChains, getPaymentHistory, getPaymentIntent, getPaymentLimits, getPaymentPrice, getPlatformFees, getPlaytime, getPlaytimeTimeseries, getPublicProfile, getReferral, getThreadDmKey, getTronBalance, getTronGameBalance, getTronSecurity, heartbeatPlaySession, hideAppPage, hideAppPageBip, hideThread, inventoryUpdateEventSchema, inviteDeveloperAppParticipant, inviteParticipants, leaveThread, listActivePlayers, listAdminContentReports, listAdmins, listAppPages, listAppealBlacklist, listAppealQueue, listAudit, listBipUpdateComments, listBipUpdates, listDeveloperApiKeys, listDeveloperAppContentReports, listDeveloperAppInventoryCollections, listDeveloperAppInventoryItems, listDeveloperAppParticipants, listDeveloperAppReviews, listDeveloperBipUpdates, listDeveloperInvites, listDeveloperRequests, listDevelopers, listFriends, listFriendsForApp, listGameReviewComments, listGameReviews, listInventory, listInventoryForApp, listInventoryMintPermits, listInventoryVaultPermits, listInventoryVaulted, listNotifications, listOauthInventoryVaulted, listPaymentAuthorizations, listSocials, listThreadMessages, listThreads, listTronCashoutQueue, listTronCashouts, listTronLedger, listUsers, listWalletManager, listWallets, markAllNotificationsRead, markThreadRead, mintClientCredentialsToken, mintMoonpayBuyUrl, mintMoonpaySellUrl, mountPresenceWidget, oauthPaymentWebhookBodySchema, parseJson, pinThread, postAdminAppealRoomMessage, postAppealRoomMessage, previewReferral, provisionDeveloperAppWallet, publishDmKey, quoteDeveloperAppInventoryRegistration, quoteNftTransfer, quoteRelayedVaultPermit, redeemInventoryMintPermit, refreshAccessToken, registerBipInterest, registerDeveloperAppInventoryItem, registerOauthClient, rejectTronCashout, removeAdmin, removeAppealBlacklist, removeFriend, removeParticipant, removeReaction, replyToGameReview, requestDeveloperAppProduction, requestMint, requestPayout, resolveAppeal, reviewAppPage, reviewAppPageBip, reviewAppPageChanges, reviewDeveloperRequest, revokeDeveloperApiKey, revokeDeveloperAppParticipant, revokePaymentAuthorization, revokeToken, rotateDeveloperAppKey, rotateDeveloperAppPaymentWebhookSecret, rotateProcessorTreasury, searchGiphy, searchUsers, send, sendFriendRequest, sendJson, sendMessage, sendPresenceHeartbeat, setAppPageBip, setBipUpdateReaction, setMyGameReviewReaction, setProcessorWhitelist, setTronSecurity, setVaultOperator, setVaultPause, setVaultWithdrawLockDefault, setVaultWithdrawLockOverride, setupDmKeyBackup, sha256Base64Url, signInventoryVaultPermit, signPaymentIntent, startOauthInventoryEventsSubscriber, startOauthPaymentEventsSubscriber, submitAppContentReport, submitAppPageBipForReview, submitAppPageForReview, submitDeveloperRequest, submitRelayedVaultPermit, subscribeBipUpdates, tipGameReview, toTokenSet, triageAdminContentReport, unfollowUser, unhideAppPage, unhideAppPageBip, unlockDmKeyBackup, 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 };
|