@metatrongg/sdk 0.8.0-dev.18f8137 → 0.8.0-dev.1975260
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 +446 -19
- package/dist/browser/index.js +1 -1
- package/dist/contracts/index.d.ts +8876 -5067
- package/dist/contracts/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/node/index.d.ts +452 -20
- 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/browser/index.d.ts
CHANGED
|
@@ -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";
|
|
@@ -247,7 +249,15 @@ type OauthPaymentIntentContext = {
|
|
|
247
249
|
};
|
|
248
250
|
} | null;
|
|
249
251
|
environment: "development" | "production";
|
|
252
|
+
onramp?: {
|
|
253
|
+
kind: "bridge";
|
|
254
|
+
from: PaymentNetwork;
|
|
255
|
+
to: PaymentNetwork;
|
|
256
|
+
} | {
|
|
257
|
+
kind: "insufficient";
|
|
258
|
+
};
|
|
250
259
|
};
|
|
260
|
+
type PaymentNetwork = "ethereum" | "base" | "solana";
|
|
251
261
|
type OauthPaymentIntentSignResponse = {
|
|
252
262
|
chain: string;
|
|
253
263
|
chainId: number;
|
|
@@ -277,6 +287,13 @@ type OauthPaymentIntentCompleteSigned = {
|
|
|
277
287
|
type OauthPaymentIntentCompleteOffline = {
|
|
278
288
|
method: "offline";
|
|
279
289
|
};
|
|
290
|
+
type OauthPaymentIntentSolanaPrepareResponse = {
|
|
291
|
+
transaction: string;
|
|
292
|
+
payer: string;
|
|
293
|
+
};
|
|
294
|
+
type OauthPaymentIntentSolanaCompleteRequest = {
|
|
295
|
+
signedTransaction: string;
|
|
296
|
+
};
|
|
280
297
|
type ListAppPaymentAuthorizationsResponse = {
|
|
281
298
|
authorizations: Array<AppPaymentAuthorizationItem>;
|
|
282
299
|
};
|
|
@@ -343,6 +360,7 @@ type PublicAppPage = {
|
|
|
343
360
|
paymentsMode: AppPagePaymentsMode;
|
|
344
361
|
oauthScopes: Array<string>;
|
|
345
362
|
chains: Array<string>;
|
|
363
|
+
devlog: boolean;
|
|
346
364
|
publishedAt: string;
|
|
347
365
|
updatedAt: string;
|
|
348
366
|
};
|
|
@@ -380,6 +398,121 @@ type AppPageAgeRating = "everyone" | "13_plus" | "16_plus" | "18_plus" | null;
|
|
|
380
398
|
type AppPageLanguages = Array<"en" | "es" | "fr" | "de" | "pt" | "it" | "ru" | "ja" | "ko" | "zh" | "hi" | "ar" | "tr" | "vi" | "id" | "th" | "pl" | "nl">;
|
|
381
399
|
type AppPageReleaseStatus = "live" | "open_beta" | "coming_soon";
|
|
382
400
|
type AppPagePaymentsMode = "tron" | "onchain" | "both" | null;
|
|
401
|
+
type PublicBipPage = {
|
|
402
|
+
appId: string;
|
|
403
|
+
slug: AppPageSlug;
|
|
404
|
+
appName: string;
|
|
405
|
+
appLogoUrl: string | null;
|
|
406
|
+
categories: AppPageCategories;
|
|
407
|
+
tagline: AppPageTagline;
|
|
408
|
+
bannerUrl: string | null;
|
|
409
|
+
discordUrl: string | null;
|
|
410
|
+
twitterUrl: string | null;
|
|
411
|
+
redditUrl: string | null;
|
|
412
|
+
telegramUrl: string | null;
|
|
413
|
+
gallery: AppPageGallery;
|
|
414
|
+
chapters: AppPageChapters;
|
|
415
|
+
links: AppPageLinks;
|
|
416
|
+
studio: PublicAppPageStudio;
|
|
417
|
+
platforms: AppPagePlatforms;
|
|
418
|
+
gameType: AppPageGameType;
|
|
419
|
+
ageRating: AppPageAgeRating;
|
|
420
|
+
languages: AppPageLanguages;
|
|
421
|
+
releaseStatus: AppPageReleaseStatus;
|
|
422
|
+
publishedAt: string;
|
|
423
|
+
updatedAt: string;
|
|
424
|
+
};
|
|
425
|
+
type BipUpdateListResponse = {
|
|
426
|
+
updates: Array<BipUpdate>;
|
|
427
|
+
total: number;
|
|
428
|
+
hasMore: boolean;
|
|
429
|
+
pinned: BipUpdate | null;
|
|
430
|
+
};
|
|
431
|
+
type BipUpdate = {
|
|
432
|
+
id: string;
|
|
433
|
+
appId: string;
|
|
434
|
+
body: BipUpdateBody;
|
|
435
|
+
attachments: BipUpdateAttachments;
|
|
436
|
+
reactions: BipUpdateReactionCounts;
|
|
437
|
+
commentCount: number;
|
|
438
|
+
createdAt: string;
|
|
439
|
+
updatedAt: string;
|
|
440
|
+
pinnedAt: string | null;
|
|
441
|
+
};
|
|
442
|
+
type BipUpdateBody = string;
|
|
443
|
+
type BipUpdateAttachments = Array<BipUpdateAttachment>;
|
|
444
|
+
type BipUpdateAttachment = {
|
|
445
|
+
url: string;
|
|
446
|
+
kind: "image" | "video";
|
|
447
|
+
order: number;
|
|
448
|
+
};
|
|
449
|
+
type BipUpdateReactionCounts = {
|
|
450
|
+
up: number;
|
|
451
|
+
down: number;
|
|
452
|
+
};
|
|
453
|
+
type BipUpdateCommentListResponse = {
|
|
454
|
+
comments: Array<BipUpdateComment>;
|
|
455
|
+
total: number;
|
|
456
|
+
hasMore: boolean;
|
|
457
|
+
};
|
|
458
|
+
type BipUpdateComment = {
|
|
459
|
+
id: string;
|
|
460
|
+
body: BipUpdateCommentBody;
|
|
461
|
+
author: ReviewAuthor;
|
|
462
|
+
createdAt: string;
|
|
463
|
+
};
|
|
464
|
+
type BipUpdateCommentBody = string;
|
|
465
|
+
type ReviewAuthor = {
|
|
466
|
+
userId: string;
|
|
467
|
+
handle: string | null;
|
|
468
|
+
name: string | null;
|
|
469
|
+
avatarUrl: string | null;
|
|
470
|
+
};
|
|
471
|
+
type BipInterestCountResponse = {
|
|
472
|
+
interestCount: number;
|
|
473
|
+
};
|
|
474
|
+
type BipEngagementResponse = {
|
|
475
|
+
interested: boolean;
|
|
476
|
+
subscribed: boolean;
|
|
477
|
+
interestCount: number;
|
|
478
|
+
};
|
|
479
|
+
type MyBipUpdateReactionsResponse = {
|
|
480
|
+
reactions: Array<MyBipUpdateReaction>;
|
|
481
|
+
};
|
|
482
|
+
type MyBipUpdateReaction = {
|
|
483
|
+
updateId: string;
|
|
484
|
+
vote: "up" | "down";
|
|
485
|
+
};
|
|
486
|
+
type SetBipUpdateReactionResponse = {
|
|
487
|
+
reactions: BipUpdateReactionCounts;
|
|
488
|
+
vote: BipUpdateVote;
|
|
489
|
+
};
|
|
490
|
+
type BipUpdateVote = "up" | "down" | null;
|
|
491
|
+
type SetBipUpdateReactionRequest = {
|
|
492
|
+
vote: BipUpdateVote;
|
|
493
|
+
};
|
|
494
|
+
type CreateBipUpdateCommentResponse = {
|
|
495
|
+
comment: BipUpdateComment;
|
|
496
|
+
commentCount: number;
|
|
497
|
+
};
|
|
498
|
+
type DeleteBipUpdateCommentResponse = {
|
|
499
|
+
commentCount: number;
|
|
500
|
+
};
|
|
501
|
+
type CreateBipUpdateRequest = {
|
|
502
|
+
body: BipUpdateBody;
|
|
503
|
+
attachments?: BipUpdateAttachments;
|
|
504
|
+
};
|
|
505
|
+
type UpdateBipUpdateRequest = {
|
|
506
|
+
body?: BipUpdateBody;
|
|
507
|
+
attachments?: BipUpdateAttachments;
|
|
508
|
+
};
|
|
509
|
+
type DeleteBipUpdateResponse = {
|
|
510
|
+
deleted: true;
|
|
511
|
+
};
|
|
512
|
+
type BipUpdateMediaUploadResponse = {
|
|
513
|
+
url: string;
|
|
514
|
+
kind: "image" | "video";
|
|
515
|
+
};
|
|
383
516
|
type ReviewListResponse = {
|
|
384
517
|
aggregate: ReviewAggregate;
|
|
385
518
|
reviews: Array<Review>;
|
|
@@ -413,12 +546,6 @@ type ReviewReactionCounts = {
|
|
|
413
546
|
unhelpful: number;
|
|
414
547
|
funny: number;
|
|
415
548
|
};
|
|
416
|
-
type ReviewAuthor = {
|
|
417
|
-
userId: string;
|
|
418
|
-
handle: string | null;
|
|
419
|
-
name: string | null;
|
|
420
|
-
avatarUrl: string | null;
|
|
421
|
-
};
|
|
422
549
|
type ReviewerStats = {
|
|
423
550
|
playtimeSecondsThisGame: number;
|
|
424
551
|
gamesPlayed: number;
|
|
@@ -609,7 +736,11 @@ type ActivityRow = ({
|
|
|
609
736
|
kind: "referral_earning";
|
|
610
737
|
} & ActivityRowReferralEarning) | ({
|
|
611
738
|
kind: "nft_charge";
|
|
612
|
-
} & ActivityRowNftCharge)
|
|
739
|
+
} & ActivityRowNftCharge) | ({
|
|
740
|
+
kind: "solana_stake";
|
|
741
|
+
} & ActivityRowSolanaStake) | ({
|
|
742
|
+
kind: "solana_pot_leg";
|
|
743
|
+
} & ActivityRowSolanaPotLeg);
|
|
613
744
|
type ActivityRowPayment = {
|
|
614
745
|
kind: "payment";
|
|
615
746
|
groupId: string | null;
|
|
@@ -937,6 +1068,56 @@ type ActivityRowNftCharge = {
|
|
|
937
1068
|
counterpartyHandle: string | null;
|
|
938
1069
|
counterpartyDisplayName: string | null;
|
|
939
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
|
+
};
|
|
940
1121
|
type OutstandingResponse = {
|
|
941
1122
|
rows: Array<OutstandingByToken>;
|
|
942
1123
|
};
|
|
@@ -1096,12 +1277,15 @@ type WalletListResponse = {
|
|
|
1096
1277
|
wallets: Array<WalletItem>;
|
|
1097
1278
|
};
|
|
1098
1279
|
type WalletChainList = Array<{
|
|
1099
|
-
id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia";
|
|
1280
|
+
id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia" | "base-sepolia" | "solana-mainnet" | "solana-devnet";
|
|
1100
1281
|
displayName: string;
|
|
1101
|
-
|
|
1282
|
+
family: "evm" | "solana";
|
|
1283
|
+
nativeSymbol: string;
|
|
1284
|
+
chainId?: number;
|
|
1102
1285
|
}>;
|
|
1103
1286
|
type WalletItem = {
|
|
1104
|
-
address: string;
|
|
1287
|
+
address: string | string;
|
|
1288
|
+
family: "evm" | "solana";
|
|
1105
1289
|
label: WalletLabel;
|
|
1106
1290
|
kind: "personal" | "app";
|
|
1107
1291
|
app: WalletAppLink;
|
|
@@ -1118,6 +1302,9 @@ type WalletBalances = {
|
|
|
1118
1302
|
"ethereum-mainnet"?: WalletChainBalance;
|
|
1119
1303
|
"base-mainnet"?: WalletChainBalance;
|
|
1120
1304
|
"ethereum-sepolia"?: WalletChainBalance;
|
|
1305
|
+
"base-sepolia"?: WalletChainBalance;
|
|
1306
|
+
"solana-mainnet"?: WalletChainBalance;
|
|
1307
|
+
"solana-devnet"?: WalletChainBalance;
|
|
1121
1308
|
};
|
|
1122
1309
|
type WalletChainBalance = {
|
|
1123
1310
|
native: string;
|
|
@@ -1127,12 +1314,14 @@ type WalletDelegationStatus = {
|
|
|
1127
1314
|
mode: WalletDelegationMode;
|
|
1128
1315
|
caps: WalletDelegationCaps;
|
|
1129
1316
|
policyId: string | null;
|
|
1317
|
+
slippageBps: DelegationSlippageBps;
|
|
1130
1318
|
};
|
|
1131
1319
|
type WalletDelegationMode = "infinite" | "custom" | "scoped" | null;
|
|
1132
1320
|
type WalletDelegationCaps = {
|
|
1133
1321
|
native: string;
|
|
1134
1322
|
usdc: string;
|
|
1135
1323
|
} | null;
|
|
1324
|
+
type DelegationSlippageBps = number | null;
|
|
1136
1325
|
type WalletLabelUpdateResponse = {
|
|
1137
1326
|
address: string;
|
|
1138
1327
|
label: WalletLabel;
|
|
@@ -1230,6 +1419,7 @@ type MessageTransactionNftTransfer = {
|
|
|
1230
1419
|
tokenId: string;
|
|
1231
1420
|
amount: string;
|
|
1232
1421
|
itemName: string | null;
|
|
1422
|
+
imageAssetId?: string | null;
|
|
1233
1423
|
};
|
|
1234
1424
|
type GroupThreadSummary = {
|
|
1235
1425
|
kind: "group";
|
|
@@ -1812,6 +2002,18 @@ type NotificationItem = {
|
|
|
1812
2002
|
payload: AppPageRejectedNotificationPayload;
|
|
1813
2003
|
read: boolean;
|
|
1814
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;
|
|
1815
2017
|
} | {
|
|
1816
2018
|
id: string;
|
|
1817
2019
|
kind: "app_participant_invite";
|
|
@@ -1842,14 +2044,25 @@ type FriendAcceptedNotificationPayload = {
|
|
|
1842
2044
|
type AppPageApprovedNotificationPayload = {
|
|
1843
2045
|
appId: string;
|
|
1844
2046
|
appName: string;
|
|
1845
|
-
scope: "publish" | "changes";
|
|
2047
|
+
scope: "publish" | "changes" | "bip_publish";
|
|
1846
2048
|
};
|
|
1847
2049
|
type AppPageRejectedNotificationPayload = {
|
|
1848
2050
|
appId: string;
|
|
1849
2051
|
appName: string;
|
|
1850
|
-
scope: "publish" | "changes";
|
|
2052
|
+
scope: "publish" | "changes" | "bip_publish";
|
|
1851
2053
|
notes: string;
|
|
1852
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
|
+
};
|
|
1853
2066
|
type AppParticipantInviteNotificationPayload = {
|
|
1854
2067
|
appId: string;
|
|
1855
2068
|
appName: string;
|
|
@@ -1879,6 +2092,9 @@ type FriendListItem = {
|
|
|
1879
2092
|
onlineStatus: OnlineStatus;
|
|
1880
2093
|
};
|
|
1881
2094
|
type OnlineStatus = "online" | "offline";
|
|
2095
|
+
type AppFriendListResponse = {
|
|
2096
|
+
friends: Array<ThreadParticipant>;
|
|
2097
|
+
};
|
|
1882
2098
|
type FriendRequestDecision = {
|
|
1883
2099
|
decision: "accept" | "reject";
|
|
1884
2100
|
};
|
|
@@ -2008,17 +2224,20 @@ type CreateDeveloperAppChain = {
|
|
|
2008
2224
|
};
|
|
2009
2225
|
type UpdateDeveloperApp = {
|
|
2010
2226
|
name?: DeveloperAppName;
|
|
2227
|
+
slug?: AppPageSlug | null;
|
|
2011
2228
|
logoUrl?: string | null;
|
|
2012
2229
|
testAccess?: "private" | "public";
|
|
2013
2230
|
redirectUris?: Array<string>;
|
|
2014
2231
|
embedOrigins?: Array<EmbedOrigin>;
|
|
2015
2232
|
acceptedCurrencies?: AcceptedCurrencies;
|
|
2233
|
+
acceptedNetworks?: AcceptedNetworks;
|
|
2016
2234
|
paymentStatusWebhookUrl?: string | null;
|
|
2017
2235
|
paymentStatusWebhookUrlTest?: string | null;
|
|
2018
2236
|
};
|
|
2019
2237
|
type EmbedOrigin = string;
|
|
2020
2238
|
type AcceptedCurrencies = Array<PlatformCurrency>;
|
|
2021
2239
|
type PlatformCurrency = "eth" | "tron";
|
|
2240
|
+
type AcceptedNetworks = Array<PaymentNetwork> | null;
|
|
2022
2241
|
type DeveloperLogoUploadResponse = {
|
|
2023
2242
|
logoUrl: string | null;
|
|
2024
2243
|
};
|
|
@@ -2081,7 +2300,7 @@ type DeveloperAppWalletsResponse = {
|
|
|
2081
2300
|
};
|
|
2082
2301
|
type DeveloperAppWalletItem = {
|
|
2083
2302
|
chain: string;
|
|
2084
|
-
address: string;
|
|
2303
|
+
address: string | string;
|
|
2085
2304
|
custody: "server" | null;
|
|
2086
2305
|
walletId: string | null;
|
|
2087
2306
|
autoSweepEnabled: boolean;
|
|
@@ -2102,7 +2321,7 @@ type DeveloperAppProvisionWalletResponse = {
|
|
|
2102
2321
|
chain: string;
|
|
2103
2322
|
custody: "server";
|
|
2104
2323
|
walletId: string;
|
|
2105
|
-
address: string;
|
|
2324
|
+
address: string | string;
|
|
2106
2325
|
};
|
|
2107
2326
|
type DeveloperAppWithdrawResponse = {
|
|
2108
2327
|
appId: string;
|
|
@@ -2256,6 +2475,7 @@ type DeveloperProductionRequestPayload = {
|
|
|
2256
2475
|
type DeveloperAppItem = {
|
|
2257
2476
|
id: string;
|
|
2258
2477
|
name: DeveloperAppName;
|
|
2478
|
+
slug: AppPageSlug | null;
|
|
2259
2479
|
logoUrl: string | null;
|
|
2260
2480
|
environment: "development" | "production";
|
|
2261
2481
|
productionApprovedAt: string | null;
|
|
@@ -2264,6 +2484,7 @@ type DeveloperAppItem = {
|
|
|
2264
2484
|
redirectUris: Array<string>;
|
|
2265
2485
|
embedOrigins: Array<EmbedOrigin>;
|
|
2266
2486
|
acceptedCurrencies: AcceptedCurrencies;
|
|
2487
|
+
acceptedNetworks: AcceptedNetworks;
|
|
2267
2488
|
payoutAddresses: Array<DeveloperAppPayoutAddressItem>;
|
|
2268
2489
|
keys: Array<DeveloperAppKeyItem>;
|
|
2269
2490
|
pendingProductionRequestId: string | null;
|
|
@@ -2318,9 +2539,18 @@ type AppPageDraft = {
|
|
|
2318
2539
|
hiddenAt: string | null;
|
|
2319
2540
|
hiddenReasonPublic: string | null;
|
|
2320
2541
|
pendingReview: boolean;
|
|
2542
|
+
bip: AppPageBipState;
|
|
2543
|
+
};
|
|
2544
|
+
type AppPageBipState = {
|
|
2545
|
+
enabled: boolean;
|
|
2546
|
+
status: "draft" | "pending_review" | "published" | "hidden";
|
|
2547
|
+
firstPublishedAt: string | null;
|
|
2548
|
+
reviewedAt: string | null;
|
|
2549
|
+
reviewNotes: string | null;
|
|
2550
|
+
hiddenAt: string | null;
|
|
2551
|
+
hiddenReasonPublic: string | null;
|
|
2321
2552
|
};
|
|
2322
2553
|
type UpdateAppPage = {
|
|
2323
|
-
slug?: AppPageSlug | null;
|
|
2324
2554
|
categories?: AppPageCategories;
|
|
2325
2555
|
tagline?: AppPageTagline | null;
|
|
2326
2556
|
bannerUrl?: string | null;
|
|
@@ -2343,6 +2573,9 @@ type UpdateAppPage = {
|
|
|
2343
2573
|
type AppPageGalleryUploadResponse = {
|
|
2344
2574
|
url: string;
|
|
2345
2575
|
};
|
|
2576
|
+
type AppPageBipToggle = {
|
|
2577
|
+
enabled: boolean;
|
|
2578
|
+
};
|
|
2346
2579
|
type AdminActivePlayersResponse = {
|
|
2347
2580
|
players: Array<AdminActivePlayer>;
|
|
2348
2581
|
total: number;
|
|
@@ -2481,6 +2714,11 @@ type AdminAppPageItem = {
|
|
|
2481
2714
|
hiddenAt: string | null;
|
|
2482
2715
|
hiddenReasonInternal: string | null;
|
|
2483
2716
|
pendingChangesSubmittedAt: string | null;
|
|
2717
|
+
bipEnabled: boolean;
|
|
2718
|
+
bipStatus: "draft" | "pending_review" | "published" | "hidden";
|
|
2719
|
+
bipFirstPublishedAt: string | null;
|
|
2720
|
+
bipHiddenAt: string | null;
|
|
2721
|
+
openReportCount: number;
|
|
2484
2722
|
};
|
|
2485
2723
|
type AdminAppPageStatusResponse = {
|
|
2486
2724
|
status: "draft" | "pending_review" | "published" | "hidden";
|
|
@@ -2506,6 +2744,25 @@ type AdminAppPageDiffField = {
|
|
|
2506
2744
|
from: string;
|
|
2507
2745
|
to: string;
|
|
2508
2746
|
};
|
|
2747
|
+
type AdminAppPageBipStatusResponse = {
|
|
2748
|
+
bipStatus: "draft" | "pending_review" | "published" | "hidden";
|
|
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
|
+
};
|
|
2509
2766
|
type PlatformFeesResponse = {
|
|
2510
2767
|
purchaseFeeBps: number;
|
|
2511
2768
|
stakeFeeBps: number;
|
|
@@ -2686,6 +2943,13 @@ type AppealResolveRequest = {
|
|
|
2686
2943
|
decision: "refund" | "dismiss";
|
|
2687
2944
|
notes?: string;
|
|
2688
2945
|
};
|
|
2946
|
+
type PaymentRatesResponse = {
|
|
2947
|
+
asOf: string;
|
|
2948
|
+
ethUsd: number | null;
|
|
2949
|
+
solUsd: number | null;
|
|
2950
|
+
solLamportsPerCent: number | null;
|
|
2951
|
+
tronUsdPerToken: number;
|
|
2952
|
+
};
|
|
2689
2953
|
type AppealFileResponse = {
|
|
2690
2954
|
appealId: string;
|
|
2691
2955
|
paymentId: string;
|
|
@@ -2795,7 +3059,7 @@ declare function listActivePlayers(context: TransportContext, input: {
|
|
|
2795
3059
|
//#region src/admin/app-pages.d.ts
|
|
2796
3060
|
declare function listAppPages(context: TransportContext, input: {
|
|
2797
3061
|
readonly bearer: string;
|
|
2798
|
-
readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes";
|
|
3062
|
+
readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes" | "bip_pending_review";
|
|
2799
3063
|
}): Promise<AdminAppPageListResponse>;
|
|
2800
3064
|
declare function getAppPageChanges(context: TransportContext, input: {
|
|
2801
3065
|
readonly bearer: string;
|
|
@@ -2820,6 +3084,20 @@ declare function reviewAppPage(context: TransportContext, input: {
|
|
|
2820
3084
|
readonly appId: string;
|
|
2821
3085
|
readonly body: ReviewAppPage;
|
|
2822
3086
|
}): Promise<AdminAppPageStatusResponse>;
|
|
3087
|
+
declare function reviewAppPageBip(context: TransportContext, input: {
|
|
3088
|
+
readonly bearer: string;
|
|
3089
|
+
readonly appId: string;
|
|
3090
|
+
readonly body: ReviewAppPage;
|
|
3091
|
+
}): Promise<AdminAppPageBipStatusResponse>;
|
|
3092
|
+
declare function hideAppPageBip(context: TransportContext, input: {
|
|
3093
|
+
readonly bearer: string;
|
|
3094
|
+
readonly appId: string;
|
|
3095
|
+
readonly body: HideAppPage;
|
|
3096
|
+
}): Promise<AdminAppPageBipStatusResponse>;
|
|
3097
|
+
declare function unhideAppPageBip(context: TransportContext, input: {
|
|
3098
|
+
readonly bearer: string;
|
|
3099
|
+
readonly appId: string;
|
|
3100
|
+
}): Promise<AdminAppPageBipStatusResponse>;
|
|
2823
3101
|
//#endregion
|
|
2824
3102
|
//#region src/admin/appeals.d.ts
|
|
2825
3103
|
declare function listAppealQueue(context: TransportContext, input: {
|
|
@@ -2851,6 +3129,19 @@ declare function resolveAppeal(context: TransportContext, input: {
|
|
|
2851
3129
|
readonly body: AppealResolveRequest;
|
|
2852
3130
|
}): Promise<AppealResolveSignedResponse>;
|
|
2853
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
|
|
2854
3145
|
//#region src/admin/developers.d.ts
|
|
2855
3146
|
declare function listDeveloperRequests(context: TransportContext, input: {
|
|
2856
3147
|
readonly bearer: string;
|
|
@@ -2990,6 +3281,113 @@ declare function getAppPage(context: TransportContext, input: {
|
|
|
2990
3281
|
readonly slug: string;
|
|
2991
3282
|
}): Promise<PublicAppPage>;
|
|
2992
3283
|
//#endregion
|
|
3284
|
+
//#region src/catalog/bip-updates.d.ts
|
|
3285
|
+
declare function listBipUpdates(context: TransportContext, input: {
|
|
3286
|
+
readonly bearer?: string;
|
|
3287
|
+
readonly slug: string;
|
|
3288
|
+
readonly limit?: number;
|
|
3289
|
+
readonly offset?: number;
|
|
3290
|
+
}): Promise<BipUpdateListResponse>;
|
|
3291
|
+
declare function listBipUpdateComments(context: TransportContext, input: {
|
|
3292
|
+
readonly bearer?: string;
|
|
3293
|
+
readonly slug: string;
|
|
3294
|
+
readonly updateId: string;
|
|
3295
|
+
readonly limit?: number;
|
|
3296
|
+
readonly offset?: number;
|
|
3297
|
+
}): Promise<BipUpdateCommentListResponse>;
|
|
3298
|
+
declare function getMyBipUpdateReactions(context: TransportContext, input: {
|
|
3299
|
+
readonly bearer: string;
|
|
3300
|
+
readonly slug: string;
|
|
3301
|
+
}): Promise<MyBipUpdateReactionsResponse>;
|
|
3302
|
+
declare function setBipUpdateReaction(context: TransportContext, input: {
|
|
3303
|
+
readonly bearer: string;
|
|
3304
|
+
readonly slug: string;
|
|
3305
|
+
readonly updateId: string;
|
|
3306
|
+
readonly body: SetBipUpdateReactionRequest;
|
|
3307
|
+
}): Promise<SetBipUpdateReactionResponse>;
|
|
3308
|
+
declare function commentOnBipUpdate(context: TransportContext, input: {
|
|
3309
|
+
readonly bearer: string;
|
|
3310
|
+
readonly slug: string;
|
|
3311
|
+
readonly updateId: string;
|
|
3312
|
+
readonly body: string;
|
|
3313
|
+
}): Promise<CreateBipUpdateCommentResponse>;
|
|
3314
|
+
declare function deleteBipUpdateComment(context: TransportContext, input: {
|
|
3315
|
+
readonly bearer: string;
|
|
3316
|
+
readonly slug: string;
|
|
3317
|
+
readonly commentId: string;
|
|
3318
|
+
}): Promise<DeleteBipUpdateCommentResponse>;
|
|
3319
|
+
declare function listDeveloperBipUpdates(context: TransportContext, input: {
|
|
3320
|
+
readonly bearer: string;
|
|
3321
|
+
readonly appId: string;
|
|
3322
|
+
readonly limit?: number;
|
|
3323
|
+
readonly offset?: number;
|
|
3324
|
+
}): Promise<BipUpdateListResponse>;
|
|
3325
|
+
declare function createBipUpdate(context: TransportContext, input: {
|
|
3326
|
+
readonly bearer: string;
|
|
3327
|
+
readonly appId: string;
|
|
3328
|
+
readonly body: CreateBipUpdateRequest;
|
|
3329
|
+
}): Promise<BipUpdate>;
|
|
3330
|
+
declare function updateBipUpdate(context: TransportContext, input: {
|
|
3331
|
+
readonly bearer: string;
|
|
3332
|
+
readonly appId: string;
|
|
3333
|
+
readonly updateId: string;
|
|
3334
|
+
readonly body: UpdateBipUpdateRequest;
|
|
3335
|
+
}): Promise<BipUpdate>;
|
|
3336
|
+
declare function deleteBipUpdate(context: TransportContext, input: {
|
|
3337
|
+
readonly bearer: string;
|
|
3338
|
+
readonly appId: string;
|
|
3339
|
+
readonly updateId: string;
|
|
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>;
|
|
3351
|
+
declare function uploadBipUpdateMedia(context: TransportContext, input: {
|
|
3352
|
+
readonly bearer: string;
|
|
3353
|
+
readonly appId: string;
|
|
3354
|
+
readonly file: Blob;
|
|
3355
|
+
readonly filename: string;
|
|
3356
|
+
readonly contentType: string;
|
|
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>;
|
|
3376
|
+
//#endregion
|
|
3377
|
+
//#region src/catalog/build-in-public.d.ts
|
|
3378
|
+
declare function getBipDirectory(context: TransportContext, input: {
|
|
3379
|
+
readonly bearer?: string;
|
|
3380
|
+
readonly genre?: string;
|
|
3381
|
+
readonly q?: string;
|
|
3382
|
+
readonly sort?: "newest" | "top";
|
|
3383
|
+
readonly before?: string;
|
|
3384
|
+
readonly limit?: number;
|
|
3385
|
+
}): Promise<LibraryListResponse>;
|
|
3386
|
+
declare function getBipPage(context: TransportContext, input: {
|
|
3387
|
+
readonly bearer?: string;
|
|
3388
|
+
readonly slug: string;
|
|
3389
|
+
}): Promise<PublicBipPage>;
|
|
3390
|
+
//#endregion
|
|
2993
3391
|
//#region src/catalog/content-reports.d.ts
|
|
2994
3392
|
declare function submitAppContentReport(context: TransportContext, input: {
|
|
2995
3393
|
readonly appId: string;
|
|
@@ -3002,6 +3400,7 @@ declare function getLibrary(context: TransportContext, input: {
|
|
|
3002
3400
|
readonly bearer?: string;
|
|
3003
3401
|
readonly genre?: string;
|
|
3004
3402
|
readonly q?: string;
|
|
3403
|
+
readonly sort?: "newest" | "top";
|
|
3005
3404
|
readonly before?: string;
|
|
3006
3405
|
readonly limit?: number;
|
|
3007
3406
|
}): Promise<LibraryListResponse>;
|
|
@@ -3154,6 +3553,9 @@ declare function getPaymentHistory(context: TransportContext, input: {
|
|
|
3154
3553
|
readonly before?: string;
|
|
3155
3554
|
}): Promise<PaymentHistoryResponse>;
|
|
3156
3555
|
//#endregion
|
|
3556
|
+
//#region src/dashboard/rates.d.ts
|
|
3557
|
+
declare function getPaymentRates(context: TransportContext): Promise<PaymentRatesResponse>;
|
|
3558
|
+
//#endregion
|
|
3157
3559
|
//#region src/developer/api-keys.d.ts
|
|
3158
3560
|
declare function createDeveloperApiKey(context: TransportContext, input: {
|
|
3159
3561
|
readonly bearer: string;
|
|
@@ -3396,6 +3798,19 @@ declare function unpublishAppPage(context: TransportContext, input: {
|
|
|
3396
3798
|
readonly bearer: string;
|
|
3397
3799
|
readonly appId: string;
|
|
3398
3800
|
}): Promise<AppPageDraft>;
|
|
3801
|
+
declare function setAppPageBip(context: TransportContext, input: {
|
|
3802
|
+
readonly bearer: string;
|
|
3803
|
+
readonly appId: string;
|
|
3804
|
+
readonly body: AppPageBipToggle;
|
|
3805
|
+
}): Promise<AppPageDraft>;
|
|
3806
|
+
declare function submitAppPageBipForReview(context: TransportContext, input: {
|
|
3807
|
+
readonly bearer: string;
|
|
3808
|
+
readonly appId: string;
|
|
3809
|
+
}): Promise<AppPageDraft>;
|
|
3810
|
+
declare function unpublishAppPageBip(context: TransportContext, input: {
|
|
3811
|
+
readonly bearer: string;
|
|
3812
|
+
readonly appId: string;
|
|
3813
|
+
}): Promise<AppPageDraft>;
|
|
3399
3814
|
//#endregion
|
|
3400
3815
|
//#region src/developer/participants.d.ts
|
|
3401
3816
|
declare function listDeveloperAppParticipants(context: TransportContext, input: {
|
|
@@ -3767,6 +4182,15 @@ declare function denyPaymentIntent(context: TransportContext, input: {
|
|
|
3767
4182
|
readonly bearer: string;
|
|
3768
4183
|
readonly intentId: string;
|
|
3769
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>;
|
|
3770
4194
|
//#endregion
|
|
3771
4195
|
//#region src/payments/limits.d.ts
|
|
3772
4196
|
declare function getPaymentLimits(context: TransportContext, input: {
|
|
@@ -3977,6 +4401,9 @@ declare function cancelFriendRequest(context: TransportContext, input: {
|
|
|
3977
4401
|
declare function listFriends(context: TransportContext, input: {
|
|
3978
4402
|
readonly bearer: string;
|
|
3979
4403
|
}): Promise<FriendListResponse>;
|
|
4404
|
+
declare function listFriendsForApp(context: TransportContext, input: {
|
|
4405
|
+
readonly bearer: string;
|
|
4406
|
+
}): Promise<AppFriendListResponse>;
|
|
3980
4407
|
//#endregion
|
|
3981
4408
|
//#region src/reads/socials.d.ts
|
|
3982
4409
|
declare function listSocials(context: TransportContext, input: {
|
|
@@ -4268,4 +4695,4 @@ type CookieTokenStoreOptions = {
|
|
|
4268
4695
|
};
|
|
4269
4696
|
declare function createCookieTokenStore(options?: CookieTokenStoreOptions): TokenStore;
|
|
4270
4697
|
//#endregion
|
|
4271
|
-
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, commentOnGameReview, completePaymentIntent, consolidateDeveloperAppWallet, 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, 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, getDelegation, getDeveloperAppActivity, getDeveloperAppBalances, getDeveloperAppEarnings, getDeveloperAppInventoryItemHolders, getDeveloperAppOverview, getDeveloperAppPage, getDeveloperAppPlaytime, getDeveloperAppTronBalance, getDeveloperAppWallets, getDeveloperPaymentAppeals, getDeveloperPaymentPendingDeposits, getDeveloperStatus, getDeveloperTronBalanceSummary, getDmKeyBackupStatus, getEarningsTimeseries, getIntentStatus, getLibrary, getMeStats, getMoonpayAvailability, getMyDmKey, getMyGameReview, getMyGameReviewReactions, getOutstanding, getPaymentChains, getPaymentHistory, getPaymentIntent, getPaymentLimits, getPaymentPrice, getPlatformFees, getPlaytime, getPlaytimeTimeseries, getPublicProfile, getReferral, getThreadDmKey, getTronBalance, getTronSecurity, hideAppPage, hideThread, inviteDeveloperAppParticipant, inviteParticipants, leaveThread, listActivePlayers, listAdmins, listAppPages, listAppealBlacklist, listAppealQueue, listAudit, listDeveloperApiKeys, listDeveloperAppContentReports, listDeveloperAppInventoryCollections, listDeveloperAppInventoryItems, listDeveloperAppParticipants, listDeveloperAppReviews, listDeveloperInvites, listDeveloperRequests, listDevelopers, listFriends, 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, reviewAppPageChanges, reviewDeveloperRequest, revokeDeveloperApiKey, revokeDeveloperAppParticipant, revokePaymentAuthorization, revokeToken, rotateDeveloperAppKey, rotateDeveloperAppPaymentWebhookSecret, rotateProcessorTreasury, searchGiphy, searchUsers, sendFriendRequest, sendMessage, sendPresenceHeartbeat, setMyGameReviewReaction, setProcessorWhitelist, setTronSecurity, setVaultOperator, setVaultPause, setVaultWithdrawLockDefault, setVaultWithdrawLockOverride, setupDmKeyBackup, sha256Base64Url, signInventoryVaultPermit, signPaymentIntent, submitAppContentReport, submitAppPageForReview, submitDeveloperRequest, submitRelayedVaultPermit, tipGameReview, 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, 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 };
|