@metatrongg/sdk 0.8.0-dev.42c667f → 0.8.0-dev.45ada1b

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.
@@ -249,7 +249,15 @@ type OauthPaymentIntentContext = {
249
249
  };
250
250
  } | null;
251
251
  environment: "development" | "production";
252
+ onramp?: {
253
+ kind: "bridge";
254
+ from: PaymentNetwork;
255
+ to: PaymentNetwork;
256
+ } | {
257
+ kind: "insufficient";
258
+ };
252
259
  };
260
+ type PaymentNetwork = "ethereum" | "base" | "solana";
253
261
  type OauthPaymentIntentSignResponse = {
254
262
  chain: string;
255
263
  chainId: number;
@@ -279,6 +287,13 @@ type OauthPaymentIntentCompleteSigned = {
279
287
  type OauthPaymentIntentCompleteOffline = {
280
288
  method: "offline";
281
289
  };
290
+ type OauthPaymentIntentSolanaPrepareResponse = {
291
+ transaction: string;
292
+ payer: string;
293
+ };
294
+ type OauthPaymentIntentSolanaCompleteRequest = {
295
+ signedTransaction: string;
296
+ };
282
297
  type ListAppPaymentAuthorizationsResponse = {
283
298
  authorizations: Array<AppPaymentAuthorizationItem>;
284
299
  };
@@ -345,6 +360,7 @@ type PublicAppPage = {
345
360
  paymentsMode: AppPagePaymentsMode;
346
361
  oauthScopes: Array<string>;
347
362
  chains: Array<string>;
363
+ devlog: boolean;
348
364
  publishedAt: string;
349
365
  updatedAt: string;
350
366
  };
@@ -410,6 +426,7 @@ type BipUpdateListResponse = {
410
426
  updates: Array<BipUpdate>;
411
427
  total: number;
412
428
  hasMore: boolean;
429
+ pinned: BipUpdate | null;
413
430
  };
414
431
  type BipUpdate = {
415
432
  id: string;
@@ -420,6 +437,7 @@ type BipUpdate = {
420
437
  commentCount: number;
421
438
  createdAt: string;
422
439
  updatedAt: string;
440
+ pinnedAt: string | null;
423
441
  };
424
442
  type BipUpdateBody = string;
425
443
  type BipUpdateAttachments = Array<BipUpdateAttachment>;
@@ -450,6 +468,14 @@ type ReviewAuthor = {
450
468
  name: string | null;
451
469
  avatarUrl: string | null;
452
470
  };
471
+ type BipInterestCountResponse = {
472
+ interestCount: number;
473
+ };
474
+ type BipEngagementResponse = {
475
+ interested: boolean;
476
+ subscribed: boolean;
477
+ interestCount: number;
478
+ };
453
479
  type MyBipUpdateReactionsResponse = {
454
480
  reactions: Array<MyBipUpdateReaction>;
455
481
  };
@@ -710,7 +736,11 @@ type ActivityRow = ({
710
736
  kind: "referral_earning";
711
737
  } & ActivityRowReferralEarning) | ({
712
738
  kind: "nft_charge";
713
- } & ActivityRowNftCharge);
739
+ } & ActivityRowNftCharge) | ({
740
+ kind: "solana_stake";
741
+ } & ActivityRowSolanaStake) | ({
742
+ kind: "solana_pot_leg";
743
+ } & ActivityRowSolanaPotLeg);
714
744
  type ActivityRowPayment = {
715
745
  kind: "payment";
716
746
  groupId: string | null;
@@ -1038,6 +1068,56 @@ type ActivityRowNftCharge = {
1038
1068
  counterpartyHandle: string | null;
1039
1069
  counterpartyDisplayName: string | null;
1040
1070
  };
1071
+ type ActivityRowSolanaStake = {
1072
+ kind: "solana_stake";
1073
+ groupId: string | null;
1074
+ id: string;
1075
+ chain: string;
1076
+ occurredAt: string;
1077
+ role: "outgoing" | "incoming";
1078
+ amount: string;
1079
+ token: string;
1080
+ potId: string | null;
1081
+ usdCents: number;
1082
+ status: "completed";
1083
+ txHash: string | null;
1084
+ app: {
1085
+ id: string;
1086
+ name: string;
1087
+ logoUrl: string | null;
1088
+ slug: string | null;
1089
+ bannerUrl: string | null;
1090
+ } | null;
1091
+ stakerUserId?: string | null;
1092
+ stakerHandle?: string | null;
1093
+ stakerDisplayName?: string | null;
1094
+ metadata?: PaymentMetadata | null;
1095
+ };
1096
+ type ActivityRowSolanaPotLeg = {
1097
+ kind: "solana_pot_leg";
1098
+ groupId: string | null;
1099
+ id: string;
1100
+ chain: string;
1101
+ occurredAt: string;
1102
+ role: "outgoing" | "incoming";
1103
+ beneficiary: string;
1104
+ potId: string | null;
1105
+ amount: string;
1106
+ token: string;
1107
+ usdCents: number | null;
1108
+ status: "settled";
1109
+ app: {
1110
+ id: string;
1111
+ name: string;
1112
+ logoUrl: string | null;
1113
+ slug: string | null;
1114
+ bannerUrl: string | null;
1115
+ } | null;
1116
+ txHash: string | null;
1117
+ recipientUserId?: string | null;
1118
+ recipientHandle?: string | null;
1119
+ recipientDisplayName?: string | null;
1120
+ };
1041
1121
  type OutstandingResponse = {
1042
1122
  rows: Array<OutstandingByToken>;
1043
1123
  };
@@ -1197,12 +1277,15 @@ type WalletListResponse = {
1197
1277
  wallets: Array<WalletItem>;
1198
1278
  };
1199
1279
  type WalletChainList = Array<{
1200
- id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia";
1280
+ id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia" | "base-sepolia" | "solana-mainnet" | "solana-devnet";
1201
1281
  displayName: string;
1202
- chainId: number;
1282
+ family: "evm" | "solana";
1283
+ nativeSymbol: string;
1284
+ chainId?: number;
1203
1285
  }>;
1204
1286
  type WalletItem = {
1205
- address: string;
1287
+ address: string | string;
1288
+ family: "evm" | "solana";
1206
1289
  label: WalletLabel;
1207
1290
  kind: "personal" | "app";
1208
1291
  app: WalletAppLink;
@@ -1219,6 +1302,9 @@ type WalletBalances = {
1219
1302
  "ethereum-mainnet"?: WalletChainBalance;
1220
1303
  "base-mainnet"?: WalletChainBalance;
1221
1304
  "ethereum-sepolia"?: WalletChainBalance;
1305
+ "base-sepolia"?: WalletChainBalance;
1306
+ "solana-mainnet"?: WalletChainBalance;
1307
+ "solana-devnet"?: WalletChainBalance;
1222
1308
  };
1223
1309
  type WalletChainBalance = {
1224
1310
  native: string;
@@ -1228,12 +1314,14 @@ type WalletDelegationStatus = {
1228
1314
  mode: WalletDelegationMode;
1229
1315
  caps: WalletDelegationCaps;
1230
1316
  policyId: string | null;
1317
+ slippageBps: DelegationSlippageBps;
1231
1318
  };
1232
1319
  type WalletDelegationMode = "infinite" | "custom" | "scoped" | null;
1233
1320
  type WalletDelegationCaps = {
1234
1321
  native: string;
1235
1322
  usdc: string;
1236
1323
  } | null;
1324
+ type DelegationSlippageBps = number | null;
1237
1325
  type WalletLabelUpdateResponse = {
1238
1326
  address: string;
1239
1327
  label: WalletLabel;
@@ -1914,6 +2002,18 @@ type NotificationItem = {
1914
2002
  payload: AppPageRejectedNotificationPayload;
1915
2003
  read: boolean;
1916
2004
  createdAt: string;
2005
+ } | {
2006
+ id: string;
2007
+ kind: "bip_update_published";
2008
+ payload: BipUpdatePublishedNotificationPayload;
2009
+ read: boolean;
2010
+ createdAt: string;
2011
+ } | {
2012
+ id: string;
2013
+ kind: "bip_now_playable";
2014
+ payload: BipNowPlayableNotificationPayload;
2015
+ read: boolean;
2016
+ createdAt: string;
1917
2017
  } | {
1918
2018
  id: string;
1919
2019
  kind: "app_participant_invite";
@@ -1952,6 +2052,17 @@ type AppPageRejectedNotificationPayload = {
1952
2052
  scope: "publish" | "changes" | "bip_publish";
1953
2053
  notes: string;
1954
2054
  };
2055
+ type BipUpdatePublishedNotificationPayload = {
2056
+ appId: string;
2057
+ appName: string;
2058
+ appSlug: string | null;
2059
+ updateId: string;
2060
+ };
2061
+ type BipNowPlayableNotificationPayload = {
2062
+ appId: string;
2063
+ appName: string;
2064
+ appSlug: string | null;
2065
+ };
1955
2066
  type AppParticipantInviteNotificationPayload = {
1956
2067
  appId: string;
1957
2068
  appName: string;
@@ -2119,12 +2230,14 @@ type UpdateDeveloperApp = {
2119
2230
  redirectUris?: Array<string>;
2120
2231
  embedOrigins?: Array<EmbedOrigin>;
2121
2232
  acceptedCurrencies?: AcceptedCurrencies;
2233
+ acceptedNetworks?: AcceptedNetworks;
2122
2234
  paymentStatusWebhookUrl?: string | null;
2123
2235
  paymentStatusWebhookUrlTest?: string | null;
2124
2236
  };
2125
2237
  type EmbedOrigin = string;
2126
2238
  type AcceptedCurrencies = Array<PlatformCurrency>;
2127
2239
  type PlatformCurrency = "eth" | "tron";
2240
+ type AcceptedNetworks = Array<PaymentNetwork> | null;
2128
2241
  type DeveloperLogoUploadResponse = {
2129
2242
  logoUrl: string | null;
2130
2243
  };
@@ -2187,7 +2300,7 @@ type DeveloperAppWalletsResponse = {
2187
2300
  };
2188
2301
  type DeveloperAppWalletItem = {
2189
2302
  chain: string;
2190
- address: string;
2303
+ address: string | string;
2191
2304
  custody: "server" | null;
2192
2305
  walletId: string | null;
2193
2306
  autoSweepEnabled: boolean;
@@ -2208,7 +2321,7 @@ type DeveloperAppProvisionWalletResponse = {
2208
2321
  chain: string;
2209
2322
  custody: "server";
2210
2323
  walletId: string;
2211
- address: string;
2324
+ address: string | string;
2212
2325
  };
2213
2326
  type DeveloperAppWithdrawResponse = {
2214
2327
  appId: string;
@@ -2371,6 +2484,7 @@ type DeveloperAppItem = {
2371
2484
  redirectUris: Array<string>;
2372
2485
  embedOrigins: Array<EmbedOrigin>;
2373
2486
  acceptedCurrencies: AcceptedCurrencies;
2487
+ acceptedNetworks: AcceptedNetworks;
2374
2488
  payoutAddresses: Array<DeveloperAppPayoutAddressItem>;
2375
2489
  keys: Array<DeveloperAppKeyItem>;
2376
2490
  pendingProductionRequestId: string | null;
@@ -2604,6 +2718,7 @@ type AdminAppPageItem = {
2604
2718
  bipStatus: "draft" | "pending_review" | "published" | "hidden";
2605
2719
  bipFirstPublishedAt: string | null;
2606
2720
  bipHiddenAt: string | null;
2721
+ openReportCount: number;
2607
2722
  };
2608
2723
  type AdminAppPageStatusResponse = {
2609
2724
  status: "draft" | "pending_review" | "published" | "hidden";
@@ -2632,6 +2747,22 @@ type AdminAppPageDiffField = {
2632
2747
  type AdminAppPageBipStatusResponse = {
2633
2748
  bipStatus: "draft" | "pending_review" | "published" | "hidden";
2634
2749
  };
2750
+ type AdminAppContentReportListResponse = {
2751
+ reports: Array<AdminAppContentReportItem>;
2752
+ total: number;
2753
+ hasMore: boolean;
2754
+ };
2755
+ type AdminAppContentReportItem = {
2756
+ id: string;
2757
+ category: AppContentReportCategory;
2758
+ details: string | null;
2759
+ status: AppContentReportStatus;
2760
+ acknowledgedAt: string | null;
2761
+ createdAt: string;
2762
+ appId: string;
2763
+ appName: string;
2764
+ appSlug: string | null;
2765
+ };
2635
2766
  type PlatformFeesResponse = {
2636
2767
  purchaseFeeBps: number;
2637
2768
  stakeFeeBps: number;
@@ -2812,6 +2943,13 @@ type AppealResolveRequest = {
2812
2943
  decision: "refund" | "dismiss";
2813
2944
  notes?: string;
2814
2945
  };
2946
+ type PaymentRatesResponse = {
2947
+ asOf: string;
2948
+ ethUsd: number | null;
2949
+ solUsd: number | null;
2950
+ solLamportsPerCent: number | null;
2951
+ tronUsdPerToken: number;
2952
+ };
2815
2953
  type AppealFileResponse = {
2816
2954
  appealId: string;
2817
2955
  paymentId: string;
@@ -2991,6 +3129,19 @@ declare function resolveAppeal(context: TransportContext, input: {
2991
3129
  readonly body: AppealResolveRequest;
2992
3130
  }): Promise<AppealResolveSignedResponse>;
2993
3131
  //#endregion
3132
+ //#region src/admin/content-reports.d.ts
3133
+ declare function listAdminContentReports(context: TransportContext, input: {
3134
+ readonly bearer: string;
3135
+ readonly status?: "open" | "acknowledged" | "dismissed" | "all";
3136
+ readonly limit?: number;
3137
+ readonly offset?: number;
3138
+ }): Promise<AdminAppContentReportListResponse>;
3139
+ declare function triageAdminContentReport(context: TransportContext, input: {
3140
+ readonly bearer: string;
3141
+ readonly reportId: string;
3142
+ readonly status: "acknowledged" | "dismissed";
3143
+ }): Promise<AppContentReport>;
3144
+ //#endregion
2994
3145
  //#region src/admin/developers.d.ts
2995
3146
  declare function listDeveloperRequests(context: TransportContext, input: {
2996
3147
  readonly bearer: string;
@@ -3187,6 +3338,16 @@ declare function deleteBipUpdate(context: TransportContext, input: {
3187
3338
  readonly appId: string;
3188
3339
  readonly updateId: string;
3189
3340
  }): Promise<DeleteBipUpdateResponse>;
3341
+ declare function pinBipUpdate(context: TransportContext, input: {
3342
+ readonly bearer: string;
3343
+ readonly appId: string;
3344
+ readonly updateId: string;
3345
+ }): Promise<BipUpdate>;
3346
+ declare function unpinBipUpdate(context: TransportContext, input: {
3347
+ readonly bearer: string;
3348
+ readonly appId: string;
3349
+ readonly updateId: string;
3350
+ }): Promise<BipUpdate>;
3190
3351
  declare function uploadBipUpdateMedia(context: TransportContext, input: {
3191
3352
  readonly bearer: string;
3192
3353
  readonly appId: string;
@@ -3194,12 +3355,31 @@ declare function uploadBipUpdateMedia(context: TransportContext, input: {
3194
3355
  readonly filename: string;
3195
3356
  readonly contentType: string;
3196
3357
  }): Promise<BipUpdateMediaUploadResponse>;
3358
+ declare function getBipInterestCount(context: TransportContext, input: {
3359
+ readonly bearer?: string;
3360
+ readonly slug: string;
3361
+ }): Promise<BipInterestCountResponse>;
3362
+ declare function getMyBipEngagement(context: TransportContext, input: {
3363
+ readonly bearer: string;
3364
+ readonly slug: string;
3365
+ }): Promise<BipEngagementResponse>;
3366
+ declare function registerBipInterest(context: TransportContext, input: {
3367
+ readonly bearer: string;
3368
+ readonly slug: string;
3369
+ readonly interested: boolean;
3370
+ }): Promise<BipEngagementResponse>;
3371
+ declare function subscribeBipUpdates(context: TransportContext, input: {
3372
+ readonly bearer: string;
3373
+ readonly slug: string;
3374
+ readonly subscribed: boolean;
3375
+ }): Promise<BipEngagementResponse>;
3197
3376
  //#endregion
3198
3377
  //#region src/catalog/build-in-public.d.ts
3199
3378
  declare function getBipDirectory(context: TransportContext, input: {
3200
3379
  readonly bearer?: string;
3201
3380
  readonly genre?: string;
3202
3381
  readonly q?: string;
3382
+ readonly sort?: "newest" | "top";
3203
3383
  readonly before?: string;
3204
3384
  readonly limit?: number;
3205
3385
  }): Promise<LibraryListResponse>;
@@ -3220,6 +3400,7 @@ declare function getLibrary(context: TransportContext, input: {
3220
3400
  readonly bearer?: string;
3221
3401
  readonly genre?: string;
3222
3402
  readonly q?: string;
3403
+ readonly sort?: "newest" | "top";
3223
3404
  readonly before?: string;
3224
3405
  readonly limit?: number;
3225
3406
  }): Promise<LibraryListResponse>;
@@ -3372,6 +3553,9 @@ declare function getPaymentHistory(context: TransportContext, input: {
3372
3553
  readonly before?: string;
3373
3554
  }): Promise<PaymentHistoryResponse>;
3374
3555
  //#endregion
3556
+ //#region src/dashboard/rates.d.ts
3557
+ declare function getPaymentRates(context: TransportContext): Promise<PaymentRatesResponse>;
3558
+ //#endregion
3375
3559
  //#region src/developer/api-keys.d.ts
3376
3560
  declare function createDeveloperApiKey(context: TransportContext, input: {
3377
3561
  readonly bearer: string;
@@ -3998,6 +4182,15 @@ declare function denyPaymentIntent(context: TransportContext, input: {
3998
4182
  readonly bearer: string;
3999
4183
  readonly intentId: string;
4000
4184
  }): Promise<OauthPaymentIntentResolveResponse>;
4185
+ declare function preparePaymentIntentSolana(context: TransportContext, input: {
4186
+ readonly bearer: string;
4187
+ readonly intentId: string;
4188
+ }): Promise<OauthPaymentIntentSolanaPrepareResponse>;
4189
+ declare function completePaymentIntentSolana(context: TransportContext, input: {
4190
+ readonly bearer: string;
4191
+ readonly intentId: string;
4192
+ readonly body: OauthPaymentIntentSolanaCompleteRequest;
4193
+ }): Promise<OauthPaymentIntentResolveResponse>;
4001
4194
  //#endregion
4002
4195
  //#region src/payments/limits.d.ts
4003
4196
  declare function getPaymentLimits(context: TransportContext, input: {
@@ -4502,4 +4695,4 @@ type CookieTokenStoreOptions = {
4502
4695
  };
4503
4696
  declare function createCookieTokenStore(options?: CookieTokenStoreOptions): TokenStore;
4504
4697
  //#endregion
4505
- 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, 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, getBipPage, getDelegation, getDeveloperAppActivity, getDeveloperAppBalances, getDeveloperAppEarnings, getDeveloperAppInventoryItemHolders, getDeveloperAppOverview, getDeveloperAppPage, getDeveloperAppPlaytime, getDeveloperAppTronBalance, getDeveloperAppWallets, getDeveloperPaymentAppeals, getDeveloperPaymentPendingDeposits, getDeveloperStatus, getDeveloperTronBalanceSummary, getDmKeyBackupStatus, getEarningsTimeseries, getIntentStatus, getLibrary, getMeStats, getMoonpayAvailability, getMyBipUpdateReactions, getMyDmKey, getMyGameReview, getMyGameReviewReactions, getOutstanding, getPaymentChains, getPaymentHistory, getPaymentIntent, getPaymentLimits, getPaymentPrice, getPlatformFees, getPlaytime, getPlaytimeTimeseries, getPublicProfile, getReferral, getThreadDmKey, getTronBalance, getTronSecurity, hideAppPage, hideAppPageBip, hideThread, inviteDeveloperAppParticipant, inviteParticipants, leaveThread, listActivePlayers, 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, previewReferral, provisionDeveloperAppWallet, publishDmKey, quoteDeveloperAppInventoryRegistration, quoteNftTransfer, quoteRelayedVaultPermit, redeemInventoryMintPermit, refreshAccessToken, 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, tipGameReview, toTokenSet, 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 };
4698
+ 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, pinBipUpdate, 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, unpinBipUpdate, unpinThread, unpublishAppPage, unpublishAppPageBip, updateAdminRole, updateAppFeeConfig, updateAppPage, updateBipUpdate, updateDeveloperApp, updateDeveloperAppAutoSweep, updateDeveloperAppContentReportStatus, updateDeveloperProfile, updateNotification, updateParticipantRole, updatePaymentAuthorization, updatePlatformFees, updateProfile, updateThreadSettings, updateUserBan, updateWalletLabel, uploadAdminAppealRoomAttachment, uploadAppPageBanner, uploadAppPageGallery, uploadAppPageThumbnail, uploadAppPageThumbnailVideo, uploadAppealRoomAttachment, uploadAttachment, uploadAvatar, uploadBipUpdateMedia, uploadDeveloperAppInventoryItemBanner, uploadDeveloperAppInventoryItemImage, uploadDeveloperAppLogo, uploadDeveloperProfileLogo, uploadDeveloperRequestLogo, uploadMultipart, uploadThreadLogo, upsertMyGameReview, verifyWebhook, withdrawDeveloperAppWallet };