@metatrongg/sdk 0.8.0-dev.911f8da → 0.8.0-dev.9b2d5db
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 +370 -15
- package/dist/browser/index.js +1 -1
- package/dist/contracts/index.d.ts +6985 -3923
- package/dist/contracts/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/node/index.d.ts +376 -16
- 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;
|
|
@@ -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
|
};
|
|
@@ -382,6 +397,119 @@ type AppPageAgeRating = "everyone" | "13_plus" | "16_plus" | "18_plus" | null;
|
|
|
382
397
|
type AppPageLanguages = Array<"en" | "es" | "fr" | "de" | "pt" | "it" | "ru" | "ja" | "ko" | "zh" | "hi" | "ar" | "tr" | "vi" | "id" | "th" | "pl" | "nl">;
|
|
383
398
|
type AppPageReleaseStatus = "live" | "open_beta" | "coming_soon";
|
|
384
399
|
type AppPagePaymentsMode = "tron" | "onchain" | "both" | null;
|
|
400
|
+
type PublicBipPage = {
|
|
401
|
+
appId: string;
|
|
402
|
+
slug: AppPageSlug;
|
|
403
|
+
appName: string;
|
|
404
|
+
appLogoUrl: string | null;
|
|
405
|
+
categories: AppPageCategories;
|
|
406
|
+
tagline: AppPageTagline;
|
|
407
|
+
bannerUrl: string | null;
|
|
408
|
+
discordUrl: string | null;
|
|
409
|
+
twitterUrl: string | null;
|
|
410
|
+
redditUrl: string | null;
|
|
411
|
+
telegramUrl: string | null;
|
|
412
|
+
gallery: AppPageGallery;
|
|
413
|
+
chapters: AppPageChapters;
|
|
414
|
+
links: AppPageLinks;
|
|
415
|
+
studio: PublicAppPageStudio;
|
|
416
|
+
platforms: AppPagePlatforms;
|
|
417
|
+
gameType: AppPageGameType;
|
|
418
|
+
ageRating: AppPageAgeRating;
|
|
419
|
+
languages: AppPageLanguages;
|
|
420
|
+
releaseStatus: AppPageReleaseStatus;
|
|
421
|
+
publishedAt: string;
|
|
422
|
+
updatedAt: string;
|
|
423
|
+
};
|
|
424
|
+
type BipUpdateListResponse = {
|
|
425
|
+
updates: Array<BipUpdate>;
|
|
426
|
+
total: number;
|
|
427
|
+
hasMore: boolean;
|
|
428
|
+
};
|
|
429
|
+
type BipUpdate = {
|
|
430
|
+
id: string;
|
|
431
|
+
appId: string;
|
|
432
|
+
body: BipUpdateBody;
|
|
433
|
+
attachments: BipUpdateAttachments;
|
|
434
|
+
reactions: BipUpdateReactionCounts;
|
|
435
|
+
commentCount: number;
|
|
436
|
+
createdAt: string;
|
|
437
|
+
updatedAt: string;
|
|
438
|
+
};
|
|
439
|
+
type BipUpdateBody = string;
|
|
440
|
+
type BipUpdateAttachments = Array<BipUpdateAttachment>;
|
|
441
|
+
type BipUpdateAttachment = {
|
|
442
|
+
url: string;
|
|
443
|
+
kind: "image" | "video";
|
|
444
|
+
order: number;
|
|
445
|
+
};
|
|
446
|
+
type BipUpdateReactionCounts = {
|
|
447
|
+
up: number;
|
|
448
|
+
down: number;
|
|
449
|
+
};
|
|
450
|
+
type BipUpdateCommentListResponse = {
|
|
451
|
+
comments: Array<BipUpdateComment>;
|
|
452
|
+
total: number;
|
|
453
|
+
hasMore: boolean;
|
|
454
|
+
};
|
|
455
|
+
type BipUpdateComment = {
|
|
456
|
+
id: string;
|
|
457
|
+
body: BipUpdateCommentBody;
|
|
458
|
+
author: ReviewAuthor;
|
|
459
|
+
createdAt: string;
|
|
460
|
+
};
|
|
461
|
+
type BipUpdateCommentBody = string;
|
|
462
|
+
type ReviewAuthor = {
|
|
463
|
+
userId: string;
|
|
464
|
+
handle: string | null;
|
|
465
|
+
name: string | null;
|
|
466
|
+
avatarUrl: string | null;
|
|
467
|
+
};
|
|
468
|
+
type BipInterestCountResponse = {
|
|
469
|
+
interestCount: number;
|
|
470
|
+
};
|
|
471
|
+
type BipEngagementResponse = {
|
|
472
|
+
interested: boolean;
|
|
473
|
+
subscribed: boolean;
|
|
474
|
+
interestCount: number;
|
|
475
|
+
};
|
|
476
|
+
type MyBipUpdateReactionsResponse = {
|
|
477
|
+
reactions: Array<MyBipUpdateReaction>;
|
|
478
|
+
};
|
|
479
|
+
type MyBipUpdateReaction = {
|
|
480
|
+
updateId: string;
|
|
481
|
+
vote: "up" | "down";
|
|
482
|
+
};
|
|
483
|
+
type SetBipUpdateReactionResponse = {
|
|
484
|
+
reactions: BipUpdateReactionCounts;
|
|
485
|
+
vote: BipUpdateVote;
|
|
486
|
+
};
|
|
487
|
+
type BipUpdateVote = "up" | "down" | null;
|
|
488
|
+
type SetBipUpdateReactionRequest = {
|
|
489
|
+
vote: BipUpdateVote;
|
|
490
|
+
};
|
|
491
|
+
type CreateBipUpdateCommentResponse = {
|
|
492
|
+
comment: BipUpdateComment;
|
|
493
|
+
commentCount: number;
|
|
494
|
+
};
|
|
495
|
+
type DeleteBipUpdateCommentResponse = {
|
|
496
|
+
commentCount: number;
|
|
497
|
+
};
|
|
498
|
+
type CreateBipUpdateRequest = {
|
|
499
|
+
body: BipUpdateBody;
|
|
500
|
+
attachments?: BipUpdateAttachments;
|
|
501
|
+
};
|
|
502
|
+
type UpdateBipUpdateRequest = {
|
|
503
|
+
body?: BipUpdateBody;
|
|
504
|
+
attachments?: BipUpdateAttachments;
|
|
505
|
+
};
|
|
506
|
+
type DeleteBipUpdateResponse = {
|
|
507
|
+
deleted: true;
|
|
508
|
+
};
|
|
509
|
+
type BipUpdateMediaUploadResponse = {
|
|
510
|
+
url: string;
|
|
511
|
+
kind: "image" | "video";
|
|
512
|
+
};
|
|
385
513
|
type ReviewListResponse = {
|
|
386
514
|
aggregate: ReviewAggregate;
|
|
387
515
|
reviews: Array<Review>;
|
|
@@ -415,12 +543,6 @@ type ReviewReactionCounts = {
|
|
|
415
543
|
unhelpful: number;
|
|
416
544
|
funny: number;
|
|
417
545
|
};
|
|
418
|
-
type ReviewAuthor = {
|
|
419
|
-
userId: string;
|
|
420
|
-
handle: string | null;
|
|
421
|
-
name: string | null;
|
|
422
|
-
avatarUrl: string | null;
|
|
423
|
-
};
|
|
424
546
|
type ReviewerStats = {
|
|
425
547
|
playtimeSecondsThisGame: number;
|
|
426
548
|
gamesPlayed: number;
|
|
@@ -1098,12 +1220,15 @@ type WalletListResponse = {
|
|
|
1098
1220
|
wallets: Array<WalletItem>;
|
|
1099
1221
|
};
|
|
1100
1222
|
type WalletChainList = Array<{
|
|
1101
|
-
id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia";
|
|
1223
|
+
id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia" | "base-sepolia" | "solana-mainnet" | "solana-devnet";
|
|
1102
1224
|
displayName: string;
|
|
1103
|
-
|
|
1225
|
+
family: "evm" | "solana";
|
|
1226
|
+
nativeSymbol: string;
|
|
1227
|
+
chainId?: number;
|
|
1104
1228
|
}>;
|
|
1105
1229
|
type WalletItem = {
|
|
1106
|
-
address: string;
|
|
1230
|
+
address: string | string;
|
|
1231
|
+
family: "evm" | "solana";
|
|
1107
1232
|
label: WalletLabel;
|
|
1108
1233
|
kind: "personal" | "app";
|
|
1109
1234
|
app: WalletAppLink;
|
|
@@ -1120,6 +1245,9 @@ type WalletBalances = {
|
|
|
1120
1245
|
"ethereum-mainnet"?: WalletChainBalance;
|
|
1121
1246
|
"base-mainnet"?: WalletChainBalance;
|
|
1122
1247
|
"ethereum-sepolia"?: WalletChainBalance;
|
|
1248
|
+
"base-sepolia"?: WalletChainBalance;
|
|
1249
|
+
"solana-mainnet"?: WalletChainBalance;
|
|
1250
|
+
"solana-devnet"?: WalletChainBalance;
|
|
1123
1251
|
};
|
|
1124
1252
|
type WalletChainBalance = {
|
|
1125
1253
|
native: string;
|
|
@@ -1129,12 +1257,14 @@ type WalletDelegationStatus = {
|
|
|
1129
1257
|
mode: WalletDelegationMode;
|
|
1130
1258
|
caps: WalletDelegationCaps;
|
|
1131
1259
|
policyId: string | null;
|
|
1260
|
+
slippageBps: DelegationSlippageBps;
|
|
1132
1261
|
};
|
|
1133
1262
|
type WalletDelegationMode = "infinite" | "custom" | "scoped" | null;
|
|
1134
1263
|
type WalletDelegationCaps = {
|
|
1135
1264
|
native: string;
|
|
1136
1265
|
usdc: string;
|
|
1137
1266
|
} | null;
|
|
1267
|
+
type DelegationSlippageBps = number | null;
|
|
1138
1268
|
type WalletLabelUpdateResponse = {
|
|
1139
1269
|
address: string;
|
|
1140
1270
|
label: WalletLabel;
|
|
@@ -1232,6 +1362,7 @@ type MessageTransactionNftTransfer = {
|
|
|
1232
1362
|
tokenId: string;
|
|
1233
1363
|
amount: string;
|
|
1234
1364
|
itemName: string | null;
|
|
1365
|
+
imageAssetId?: string | null;
|
|
1235
1366
|
};
|
|
1236
1367
|
type GroupThreadSummary = {
|
|
1237
1368
|
kind: "group";
|
|
@@ -1814,6 +1945,18 @@ type NotificationItem = {
|
|
|
1814
1945
|
payload: AppPageRejectedNotificationPayload;
|
|
1815
1946
|
read: boolean;
|
|
1816
1947
|
createdAt: string;
|
|
1948
|
+
} | {
|
|
1949
|
+
id: string;
|
|
1950
|
+
kind: "bip_update_published";
|
|
1951
|
+
payload: BipUpdatePublishedNotificationPayload;
|
|
1952
|
+
read: boolean;
|
|
1953
|
+
createdAt: string;
|
|
1954
|
+
} | {
|
|
1955
|
+
id: string;
|
|
1956
|
+
kind: "bip_now_playable";
|
|
1957
|
+
payload: BipNowPlayableNotificationPayload;
|
|
1958
|
+
read: boolean;
|
|
1959
|
+
createdAt: string;
|
|
1817
1960
|
} | {
|
|
1818
1961
|
id: string;
|
|
1819
1962
|
kind: "app_participant_invite";
|
|
@@ -1844,14 +1987,25 @@ type FriendAcceptedNotificationPayload = {
|
|
|
1844
1987
|
type AppPageApprovedNotificationPayload = {
|
|
1845
1988
|
appId: string;
|
|
1846
1989
|
appName: string;
|
|
1847
|
-
scope: "publish" | "changes";
|
|
1990
|
+
scope: "publish" | "changes" | "bip_publish";
|
|
1848
1991
|
};
|
|
1849
1992
|
type AppPageRejectedNotificationPayload = {
|
|
1850
1993
|
appId: string;
|
|
1851
1994
|
appName: string;
|
|
1852
|
-
scope: "publish" | "changes";
|
|
1995
|
+
scope: "publish" | "changes" | "bip_publish";
|
|
1853
1996
|
notes: string;
|
|
1854
1997
|
};
|
|
1998
|
+
type BipUpdatePublishedNotificationPayload = {
|
|
1999
|
+
appId: string;
|
|
2000
|
+
appName: string;
|
|
2001
|
+
appSlug: string | null;
|
|
2002
|
+
updateId: string;
|
|
2003
|
+
};
|
|
2004
|
+
type BipNowPlayableNotificationPayload = {
|
|
2005
|
+
appId: string;
|
|
2006
|
+
appName: string;
|
|
2007
|
+
appSlug: string | null;
|
|
2008
|
+
};
|
|
1855
2009
|
type AppParticipantInviteNotificationPayload = {
|
|
1856
2010
|
appId: string;
|
|
1857
2011
|
appName: string;
|
|
@@ -1881,6 +2035,9 @@ type FriendListItem = {
|
|
|
1881
2035
|
onlineStatus: OnlineStatus;
|
|
1882
2036
|
};
|
|
1883
2037
|
type OnlineStatus = "online" | "offline";
|
|
2038
|
+
type AppFriendListResponse = {
|
|
2039
|
+
friends: Array<ThreadParticipant>;
|
|
2040
|
+
};
|
|
1884
2041
|
type FriendRequestDecision = {
|
|
1885
2042
|
decision: "accept" | "reject";
|
|
1886
2043
|
};
|
|
@@ -2016,12 +2173,14 @@ type UpdateDeveloperApp = {
|
|
|
2016
2173
|
redirectUris?: Array<string>;
|
|
2017
2174
|
embedOrigins?: Array<EmbedOrigin>;
|
|
2018
2175
|
acceptedCurrencies?: AcceptedCurrencies;
|
|
2176
|
+
acceptedNetworks?: AcceptedNetworks;
|
|
2019
2177
|
paymentStatusWebhookUrl?: string | null;
|
|
2020
2178
|
paymentStatusWebhookUrlTest?: string | null;
|
|
2021
2179
|
};
|
|
2022
2180
|
type EmbedOrigin = string;
|
|
2023
2181
|
type AcceptedCurrencies = Array<PlatformCurrency>;
|
|
2024
2182
|
type PlatformCurrency = "eth" | "tron";
|
|
2183
|
+
type AcceptedNetworks = Array<PaymentNetwork> | null;
|
|
2025
2184
|
type DeveloperLogoUploadResponse = {
|
|
2026
2185
|
logoUrl: string | null;
|
|
2027
2186
|
};
|
|
@@ -2268,6 +2427,7 @@ type DeveloperAppItem = {
|
|
|
2268
2427
|
redirectUris: Array<string>;
|
|
2269
2428
|
embedOrigins: Array<EmbedOrigin>;
|
|
2270
2429
|
acceptedCurrencies: AcceptedCurrencies;
|
|
2430
|
+
acceptedNetworks: AcceptedNetworks;
|
|
2271
2431
|
payoutAddresses: Array<DeveloperAppPayoutAddressItem>;
|
|
2272
2432
|
keys: Array<DeveloperAppKeyItem>;
|
|
2273
2433
|
pendingProductionRequestId: string | null;
|
|
@@ -2322,6 +2482,16 @@ type AppPageDraft = {
|
|
|
2322
2482
|
hiddenAt: string | null;
|
|
2323
2483
|
hiddenReasonPublic: string | null;
|
|
2324
2484
|
pendingReview: boolean;
|
|
2485
|
+
bip: AppPageBipState;
|
|
2486
|
+
};
|
|
2487
|
+
type AppPageBipState = {
|
|
2488
|
+
enabled: boolean;
|
|
2489
|
+
status: "draft" | "pending_review" | "published" | "hidden";
|
|
2490
|
+
firstPublishedAt: string | null;
|
|
2491
|
+
reviewedAt: string | null;
|
|
2492
|
+
reviewNotes: string | null;
|
|
2493
|
+
hiddenAt: string | null;
|
|
2494
|
+
hiddenReasonPublic: string | null;
|
|
2325
2495
|
};
|
|
2326
2496
|
type UpdateAppPage = {
|
|
2327
2497
|
categories?: AppPageCategories;
|
|
@@ -2346,6 +2516,9 @@ type UpdateAppPage = {
|
|
|
2346
2516
|
type AppPageGalleryUploadResponse = {
|
|
2347
2517
|
url: string;
|
|
2348
2518
|
};
|
|
2519
|
+
type AppPageBipToggle = {
|
|
2520
|
+
enabled: boolean;
|
|
2521
|
+
};
|
|
2349
2522
|
type AdminActivePlayersResponse = {
|
|
2350
2523
|
players: Array<AdminActivePlayer>;
|
|
2351
2524
|
total: number;
|
|
@@ -2484,6 +2657,11 @@ type AdminAppPageItem = {
|
|
|
2484
2657
|
hiddenAt: string | null;
|
|
2485
2658
|
hiddenReasonInternal: string | null;
|
|
2486
2659
|
pendingChangesSubmittedAt: string | null;
|
|
2660
|
+
bipEnabled: boolean;
|
|
2661
|
+
bipStatus: "draft" | "pending_review" | "published" | "hidden";
|
|
2662
|
+
bipFirstPublishedAt: string | null;
|
|
2663
|
+
bipHiddenAt: string | null;
|
|
2664
|
+
openReportCount: number;
|
|
2487
2665
|
};
|
|
2488
2666
|
type AdminAppPageStatusResponse = {
|
|
2489
2667
|
status: "draft" | "pending_review" | "published" | "hidden";
|
|
@@ -2509,6 +2687,25 @@ type AdminAppPageDiffField = {
|
|
|
2509
2687
|
from: string;
|
|
2510
2688
|
to: string;
|
|
2511
2689
|
};
|
|
2690
|
+
type AdminAppPageBipStatusResponse = {
|
|
2691
|
+
bipStatus: "draft" | "pending_review" | "published" | "hidden";
|
|
2692
|
+
};
|
|
2693
|
+
type AdminAppContentReportListResponse = {
|
|
2694
|
+
reports: Array<AdminAppContentReportItem>;
|
|
2695
|
+
total: number;
|
|
2696
|
+
hasMore: boolean;
|
|
2697
|
+
};
|
|
2698
|
+
type AdminAppContentReportItem = {
|
|
2699
|
+
id: string;
|
|
2700
|
+
category: AppContentReportCategory;
|
|
2701
|
+
details: string | null;
|
|
2702
|
+
status: AppContentReportStatus;
|
|
2703
|
+
acknowledgedAt: string | null;
|
|
2704
|
+
createdAt: string;
|
|
2705
|
+
appId: string;
|
|
2706
|
+
appName: string;
|
|
2707
|
+
appSlug: string | null;
|
|
2708
|
+
};
|
|
2512
2709
|
type PlatformFeesResponse = {
|
|
2513
2710
|
purchaseFeeBps: number;
|
|
2514
2711
|
stakeFeeBps: number;
|
|
@@ -2689,6 +2886,13 @@ type AppealResolveRequest = {
|
|
|
2689
2886
|
decision: "refund" | "dismiss";
|
|
2690
2887
|
notes?: string;
|
|
2691
2888
|
};
|
|
2889
|
+
type PaymentRatesResponse = {
|
|
2890
|
+
asOf: string;
|
|
2891
|
+
ethUsd: number | null;
|
|
2892
|
+
solUsd: number | null;
|
|
2893
|
+
solLamportsPerCent: number | null;
|
|
2894
|
+
tronUsdPerToken: number;
|
|
2895
|
+
};
|
|
2692
2896
|
type AppealFileResponse = {
|
|
2693
2897
|
appealId: string;
|
|
2694
2898
|
paymentId: string;
|
|
@@ -2798,7 +3002,7 @@ declare function listActivePlayers(context: TransportContext, input: {
|
|
|
2798
3002
|
//#region src/admin/app-pages.d.ts
|
|
2799
3003
|
declare function listAppPages(context: TransportContext, input: {
|
|
2800
3004
|
readonly bearer: string;
|
|
2801
|
-
readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes";
|
|
3005
|
+
readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes" | "bip_pending_review";
|
|
2802
3006
|
}): Promise<AdminAppPageListResponse>;
|
|
2803
3007
|
declare function getAppPageChanges(context: TransportContext, input: {
|
|
2804
3008
|
readonly bearer: string;
|
|
@@ -2823,6 +3027,20 @@ declare function reviewAppPage(context: TransportContext, input: {
|
|
|
2823
3027
|
readonly appId: string;
|
|
2824
3028
|
readonly body: ReviewAppPage;
|
|
2825
3029
|
}): Promise<AdminAppPageStatusResponse>;
|
|
3030
|
+
declare function reviewAppPageBip(context: TransportContext, input: {
|
|
3031
|
+
readonly bearer: string;
|
|
3032
|
+
readonly appId: string;
|
|
3033
|
+
readonly body: ReviewAppPage;
|
|
3034
|
+
}): Promise<AdminAppPageBipStatusResponse>;
|
|
3035
|
+
declare function hideAppPageBip(context: TransportContext, input: {
|
|
3036
|
+
readonly bearer: string;
|
|
3037
|
+
readonly appId: string;
|
|
3038
|
+
readonly body: HideAppPage;
|
|
3039
|
+
}): Promise<AdminAppPageBipStatusResponse>;
|
|
3040
|
+
declare function unhideAppPageBip(context: TransportContext, input: {
|
|
3041
|
+
readonly bearer: string;
|
|
3042
|
+
readonly appId: string;
|
|
3043
|
+
}): Promise<AdminAppPageBipStatusResponse>;
|
|
2826
3044
|
//#endregion
|
|
2827
3045
|
//#region src/admin/appeals.d.ts
|
|
2828
3046
|
declare function listAppealQueue(context: TransportContext, input: {
|
|
@@ -2854,6 +3072,19 @@ declare function resolveAppeal(context: TransportContext, input: {
|
|
|
2854
3072
|
readonly body: AppealResolveRequest;
|
|
2855
3073
|
}): Promise<AppealResolveSignedResponse>;
|
|
2856
3074
|
//#endregion
|
|
3075
|
+
//#region src/admin/content-reports.d.ts
|
|
3076
|
+
declare function listAdminContentReports(context: TransportContext, input: {
|
|
3077
|
+
readonly bearer: string;
|
|
3078
|
+
readonly status?: "open" | "acknowledged" | "dismissed" | "all";
|
|
3079
|
+
readonly limit?: number;
|
|
3080
|
+
readonly offset?: number;
|
|
3081
|
+
}): Promise<AdminAppContentReportListResponse>;
|
|
3082
|
+
declare function triageAdminContentReport(context: TransportContext, input: {
|
|
3083
|
+
readonly bearer: string;
|
|
3084
|
+
readonly reportId: string;
|
|
3085
|
+
readonly status: "acknowledged" | "dismissed";
|
|
3086
|
+
}): Promise<AppContentReport>;
|
|
3087
|
+
//#endregion
|
|
2857
3088
|
//#region src/admin/developers.d.ts
|
|
2858
3089
|
declare function listDeveloperRequests(context: TransportContext, input: {
|
|
2859
3090
|
readonly bearer: string;
|
|
@@ -2993,6 +3224,102 @@ declare function getAppPage(context: TransportContext, input: {
|
|
|
2993
3224
|
readonly slug: string;
|
|
2994
3225
|
}): Promise<PublicAppPage>;
|
|
2995
3226
|
//#endregion
|
|
3227
|
+
//#region src/catalog/bip-updates.d.ts
|
|
3228
|
+
declare function listBipUpdates(context: TransportContext, input: {
|
|
3229
|
+
readonly bearer?: string;
|
|
3230
|
+
readonly slug: string;
|
|
3231
|
+
readonly limit?: number;
|
|
3232
|
+
readonly offset?: number;
|
|
3233
|
+
}): Promise<BipUpdateListResponse>;
|
|
3234
|
+
declare function listBipUpdateComments(context: TransportContext, input: {
|
|
3235
|
+
readonly bearer?: string;
|
|
3236
|
+
readonly slug: string;
|
|
3237
|
+
readonly updateId: string;
|
|
3238
|
+
readonly limit?: number;
|
|
3239
|
+
readonly offset?: number;
|
|
3240
|
+
}): Promise<BipUpdateCommentListResponse>;
|
|
3241
|
+
declare function getMyBipUpdateReactions(context: TransportContext, input: {
|
|
3242
|
+
readonly bearer: string;
|
|
3243
|
+
readonly slug: string;
|
|
3244
|
+
}): Promise<MyBipUpdateReactionsResponse>;
|
|
3245
|
+
declare function setBipUpdateReaction(context: TransportContext, input: {
|
|
3246
|
+
readonly bearer: string;
|
|
3247
|
+
readonly slug: string;
|
|
3248
|
+
readonly updateId: string;
|
|
3249
|
+
readonly body: SetBipUpdateReactionRequest;
|
|
3250
|
+
}): Promise<SetBipUpdateReactionResponse>;
|
|
3251
|
+
declare function commentOnBipUpdate(context: TransportContext, input: {
|
|
3252
|
+
readonly bearer: string;
|
|
3253
|
+
readonly slug: string;
|
|
3254
|
+
readonly updateId: string;
|
|
3255
|
+
readonly body: string;
|
|
3256
|
+
}): Promise<CreateBipUpdateCommentResponse>;
|
|
3257
|
+
declare function deleteBipUpdateComment(context: TransportContext, input: {
|
|
3258
|
+
readonly bearer: string;
|
|
3259
|
+
readonly slug: string;
|
|
3260
|
+
readonly commentId: string;
|
|
3261
|
+
}): Promise<DeleteBipUpdateCommentResponse>;
|
|
3262
|
+
declare function listDeveloperBipUpdates(context: TransportContext, input: {
|
|
3263
|
+
readonly bearer: string;
|
|
3264
|
+
readonly appId: string;
|
|
3265
|
+
readonly limit?: number;
|
|
3266
|
+
readonly offset?: number;
|
|
3267
|
+
}): Promise<BipUpdateListResponse>;
|
|
3268
|
+
declare function createBipUpdate(context: TransportContext, input: {
|
|
3269
|
+
readonly bearer: string;
|
|
3270
|
+
readonly appId: string;
|
|
3271
|
+
readonly body: CreateBipUpdateRequest;
|
|
3272
|
+
}): Promise<BipUpdate>;
|
|
3273
|
+
declare function updateBipUpdate(context: TransportContext, input: {
|
|
3274
|
+
readonly bearer: string;
|
|
3275
|
+
readonly appId: string;
|
|
3276
|
+
readonly updateId: string;
|
|
3277
|
+
readonly body: UpdateBipUpdateRequest;
|
|
3278
|
+
}): Promise<BipUpdate>;
|
|
3279
|
+
declare function deleteBipUpdate(context: TransportContext, input: {
|
|
3280
|
+
readonly bearer: string;
|
|
3281
|
+
readonly appId: string;
|
|
3282
|
+
readonly updateId: string;
|
|
3283
|
+
}): Promise<DeleteBipUpdateResponse>;
|
|
3284
|
+
declare function uploadBipUpdateMedia(context: TransportContext, input: {
|
|
3285
|
+
readonly bearer: string;
|
|
3286
|
+
readonly appId: string;
|
|
3287
|
+
readonly file: Blob;
|
|
3288
|
+
readonly filename: string;
|
|
3289
|
+
readonly contentType: string;
|
|
3290
|
+
}): Promise<BipUpdateMediaUploadResponse>;
|
|
3291
|
+
declare function getBipInterestCount(context: TransportContext, input: {
|
|
3292
|
+
readonly bearer?: string;
|
|
3293
|
+
readonly slug: string;
|
|
3294
|
+
}): Promise<BipInterestCountResponse>;
|
|
3295
|
+
declare function getMyBipEngagement(context: TransportContext, input: {
|
|
3296
|
+
readonly bearer: string;
|
|
3297
|
+
readonly slug: string;
|
|
3298
|
+
}): Promise<BipEngagementResponse>;
|
|
3299
|
+
declare function registerBipInterest(context: TransportContext, input: {
|
|
3300
|
+
readonly bearer: string;
|
|
3301
|
+
readonly slug: string;
|
|
3302
|
+
readonly interested: boolean;
|
|
3303
|
+
}): Promise<BipEngagementResponse>;
|
|
3304
|
+
declare function subscribeBipUpdates(context: TransportContext, input: {
|
|
3305
|
+
readonly bearer: string;
|
|
3306
|
+
readonly slug: string;
|
|
3307
|
+
readonly subscribed: boolean;
|
|
3308
|
+
}): Promise<BipEngagementResponse>;
|
|
3309
|
+
//#endregion
|
|
3310
|
+
//#region src/catalog/build-in-public.d.ts
|
|
3311
|
+
declare function getBipDirectory(context: TransportContext, input: {
|
|
3312
|
+
readonly bearer?: string;
|
|
3313
|
+
readonly genre?: string;
|
|
3314
|
+
readonly q?: string;
|
|
3315
|
+
readonly before?: string;
|
|
3316
|
+
readonly limit?: number;
|
|
3317
|
+
}): Promise<LibraryListResponse>;
|
|
3318
|
+
declare function getBipPage(context: TransportContext, input: {
|
|
3319
|
+
readonly bearer?: string;
|
|
3320
|
+
readonly slug: string;
|
|
3321
|
+
}): Promise<PublicBipPage>;
|
|
3322
|
+
//#endregion
|
|
2996
3323
|
//#region src/catalog/content-reports.d.ts
|
|
2997
3324
|
declare function submitAppContentReport(context: TransportContext, input: {
|
|
2998
3325
|
readonly appId: string;
|
|
@@ -3157,6 +3484,9 @@ declare function getPaymentHistory(context: TransportContext, input: {
|
|
|
3157
3484
|
readonly before?: string;
|
|
3158
3485
|
}): Promise<PaymentHistoryResponse>;
|
|
3159
3486
|
//#endregion
|
|
3487
|
+
//#region src/dashboard/rates.d.ts
|
|
3488
|
+
declare function getPaymentRates(context: TransportContext): Promise<PaymentRatesResponse>;
|
|
3489
|
+
//#endregion
|
|
3160
3490
|
//#region src/developer/api-keys.d.ts
|
|
3161
3491
|
declare function createDeveloperApiKey(context: TransportContext, input: {
|
|
3162
3492
|
readonly bearer: string;
|
|
@@ -3399,6 +3729,19 @@ declare function unpublishAppPage(context: TransportContext, input: {
|
|
|
3399
3729
|
readonly bearer: string;
|
|
3400
3730
|
readonly appId: string;
|
|
3401
3731
|
}): Promise<AppPageDraft>;
|
|
3732
|
+
declare function setAppPageBip(context: TransportContext, input: {
|
|
3733
|
+
readonly bearer: string;
|
|
3734
|
+
readonly appId: string;
|
|
3735
|
+
readonly body: AppPageBipToggle;
|
|
3736
|
+
}): Promise<AppPageDraft>;
|
|
3737
|
+
declare function submitAppPageBipForReview(context: TransportContext, input: {
|
|
3738
|
+
readonly bearer: string;
|
|
3739
|
+
readonly appId: string;
|
|
3740
|
+
}): Promise<AppPageDraft>;
|
|
3741
|
+
declare function unpublishAppPageBip(context: TransportContext, input: {
|
|
3742
|
+
readonly bearer: string;
|
|
3743
|
+
readonly appId: string;
|
|
3744
|
+
}): Promise<AppPageDraft>;
|
|
3402
3745
|
//#endregion
|
|
3403
3746
|
//#region src/developer/participants.d.ts
|
|
3404
3747
|
declare function listDeveloperAppParticipants(context: TransportContext, input: {
|
|
@@ -3770,6 +4113,15 @@ declare function denyPaymentIntent(context: TransportContext, input: {
|
|
|
3770
4113
|
readonly bearer: string;
|
|
3771
4114
|
readonly intentId: string;
|
|
3772
4115
|
}): Promise<OauthPaymentIntentResolveResponse>;
|
|
4116
|
+
declare function preparePaymentIntentSolana(context: TransportContext, input: {
|
|
4117
|
+
readonly bearer: string;
|
|
4118
|
+
readonly intentId: string;
|
|
4119
|
+
}): Promise<OauthPaymentIntentSolanaPrepareResponse>;
|
|
4120
|
+
declare function completePaymentIntentSolana(context: TransportContext, input: {
|
|
4121
|
+
readonly bearer: string;
|
|
4122
|
+
readonly intentId: string;
|
|
4123
|
+
readonly body: OauthPaymentIntentSolanaCompleteRequest;
|
|
4124
|
+
}): Promise<OauthPaymentIntentResolveResponse>;
|
|
3773
4125
|
//#endregion
|
|
3774
4126
|
//#region src/payments/limits.d.ts
|
|
3775
4127
|
declare function getPaymentLimits(context: TransportContext, input: {
|
|
@@ -3980,6 +4332,9 @@ declare function cancelFriendRequest(context: TransportContext, input: {
|
|
|
3980
4332
|
declare function listFriends(context: TransportContext, input: {
|
|
3981
4333
|
readonly bearer: string;
|
|
3982
4334
|
}): Promise<FriendListResponse>;
|
|
4335
|
+
declare function listFriendsForApp(context: TransportContext, input: {
|
|
4336
|
+
readonly bearer: string;
|
|
4337
|
+
}): Promise<AppFriendListResponse>;
|
|
3983
4338
|
//#endregion
|
|
3984
4339
|
//#region src/reads/socials.d.ts
|
|
3985
4340
|
declare function listSocials(context: TransportContext, input: {
|
|
@@ -4271,4 +4626,4 @@ type CookieTokenStoreOptions = {
|
|
|
4271
4626
|
};
|
|
4272
4627
|
declare function createCookieTokenStore(options?: CookieTokenStoreOptions): TokenStore;
|
|
4273
4628
|
//#endregion
|
|
4274
|
-
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 };
|
|
4629
|
+
export { AuthorizeUrl, type BrowserClientConfig, BuildAuthorizeUrlInput, ChargeResult, CookieTokenStoreOptions, type FetchLike, InflightDedup, type Logger, MountPresenceWidgetOptions, NOOP_RATE_LIMITER, OauthErrorCode, OauthPaymentWebhookBody, type OauthScope, PkcePair, PresenceStatus, PresenceWidgetHandle, RateLimitOptions, RateLimiter, SERVER_RATE_LIMIT_MAX_MUTATING, SERVER_RATE_LIMIT_MAX_READ, SERVER_RATE_LIMIT_WINDOW_MS, type SdkBaseConfig, TRON_WS_CLOSE_CODES, type TokenSet, type TokenStore, TronBrowserClient, TronError, TronOauthError, TronWsCloseCode, TronWsCloseError, VerifyWebhookFailure, VerifyWebhookInput, VerifyWebhookResult, VerifyWebhookSuccess, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, acceptDeveloperInvite, addAdmin, addAppealBlacklist, addReaction, approveTronCashout, batchThreadDmKeys, bindReferral, buildAuthorizeUrl, cancelFriendRequest, charge, commentOnBipUpdate, commentOnGameReview, completePaymentIntent, completePaymentIntentSolana, consolidateDeveloperAppWallet, createBipUpdate, createConsoleLogger, createCookieTokenStore, createDelegation, createDeveloperApiKey, createDeveloperApp, createDeveloperAppMintPermit, createDeveloperVaultPermit, createDeveloperWithdrawPermit, createDirectThread, createInMemoryTokenStore, createInflightDedup, createNoopLogger, createRateLimiter, createReferralCode, createTronCashout, createTronConnectOnboarding, createTronDeposit, createTronTransfer, createTronTransferChallenge, decideFriendRequest, declineDeveloperInvite, defaultEndpoints, deleteAppPageBanner, deleteAppPageThumbnail, deleteAppPageThumbnailVideo, deleteAvatar, deleteBipUpdate, deleteBipUpdateComment, deleteDelegation, deleteDeveloperApp, deleteDeveloperAppLogo, deleteDeveloperProfileLogo, deleteDeveloperRequestLogo, deleteGameReviewComment, deleteGameReviewReply, deleteMessage, deleteMyGameReview, deleteThread, deleteThreadLogo, denyPaymentIntent, editMessage, exchangeAuthorizationCode, executeNftTransfer, fetchAuthorizationServerMetadata, fetchUserInfo, fileAppeal, fileAppealPotLeg, followUser, forceWithdrawVaultCustody, generatePkce, generateState, getActivity, getActivityGroup, getAdminAppealRoom, getAppFeeConfig, getAppPage, getAppPageChanges, getAppealRoom, getBipDirectory, getBipInterestCount, getBipPage, getDelegation, getDeveloperAppActivity, getDeveloperAppBalances, getDeveloperAppEarnings, getDeveloperAppInventoryItemHolders, getDeveloperAppOverview, getDeveloperAppPage, getDeveloperAppPlaytime, getDeveloperAppTronBalance, getDeveloperAppWallets, getDeveloperPaymentAppeals, getDeveloperPaymentPendingDeposits, getDeveloperStatus, getDeveloperTronBalanceSummary, getDmKeyBackupStatus, getEarningsTimeseries, getIntentStatus, getLibrary, getMeStats, getMoonpayAvailability, getMyBipEngagement, getMyBipUpdateReactions, getMyDmKey, getMyGameReview, getMyGameReviewReactions, getOutstanding, getPaymentChains, getPaymentHistory, getPaymentIntent, getPaymentLimits, getPaymentPrice, getPaymentRates, getPlatformFees, getPlaytime, getPlaytimeTimeseries, getPublicProfile, getReferral, getThreadDmKey, getTronBalance, getTronSecurity, hideAppPage, hideAppPageBip, hideThread, inviteDeveloperAppParticipant, inviteParticipants, leaveThread, listActivePlayers, listAdminContentReports, listAdmins, listAppPages, listAppealBlacklist, listAppealQueue, listAudit, listBipUpdateComments, listBipUpdates, listDeveloperApiKeys, listDeveloperAppContentReports, listDeveloperAppInventoryCollections, listDeveloperAppInventoryItems, listDeveloperAppParticipants, listDeveloperAppReviews, listDeveloperBipUpdates, listDeveloperInvites, listDeveloperRequests, listDevelopers, listFriends, listFriendsForApp, listGameReviewComments, listGameReviews, listInventory, listInventoryForApp, listInventoryMintPermits, listInventoryVaultPermits, listInventoryVaulted, listNotifications, listOauthInventoryVaulted, listPaymentAuthorizations, listSocials, listThreadMessages, listThreads, listTronCashoutQueue, listTronCashouts, listTronLedger, listUsers, listWalletManager, listWallets, markAllNotificationsRead, markThreadRead, mintMoonpayBuyUrl, mintMoonpaySellUrl, mountPresenceWidget, oauthPaymentWebhookBodySchema, pinThread, postAdminAppealRoomMessage, postAppealRoomMessage, preparePaymentIntentSolana, previewReferral, provisionDeveloperAppWallet, publishDmKey, quoteDeveloperAppInventoryRegistration, quoteNftTransfer, quoteRelayedVaultPermit, redeemInventoryMintPermit, refreshAccessToken, registerBipInterest, registerDeveloperAppInventoryItem, rejectTronCashout, removeAdmin, removeAppealBlacklist, removeFriend, removeParticipant, removeReaction, replyToGameReview, requestDeveloperAppProduction, requestMint, resolveAppeal, reviewAppPage, reviewAppPageBip, reviewAppPageChanges, reviewDeveloperRequest, revokeDeveloperApiKey, revokeDeveloperAppParticipant, revokePaymentAuthorization, revokeToken, rotateDeveloperAppKey, rotateDeveloperAppPaymentWebhookSecret, rotateProcessorTreasury, searchGiphy, searchUsers, sendFriendRequest, sendMessage, sendPresenceHeartbeat, setAppPageBip, setBipUpdateReaction, setMyGameReviewReaction, setProcessorWhitelist, setTronSecurity, setVaultOperator, setVaultPause, setVaultWithdrawLockDefault, setVaultWithdrawLockOverride, setupDmKeyBackup, sha256Base64Url, signInventoryVaultPermit, signPaymentIntent, submitAppContentReport, submitAppPageBipForReview, submitAppPageForReview, submitDeveloperRequest, submitRelayedVaultPermit, subscribeBipUpdates, tipGameReview, toTokenSet, triageAdminContentReport, unfollowUser, unhideAppPage, unhideAppPageBip, unlockDmKeyBackup, unpinThread, unpublishAppPage, unpublishAppPageBip, updateAdminRole, updateAppFeeConfig, updateAppPage, updateBipUpdate, updateDeveloperApp, updateDeveloperAppAutoSweep, updateDeveloperAppContentReportStatus, updateDeveloperProfile, updateNotification, updateParticipantRole, updatePaymentAuthorization, updatePlatformFees, updateProfile, updateThreadSettings, updateUserBan, updateWalletLabel, uploadAdminAppealRoomAttachment, uploadAppPageBanner, uploadAppPageGallery, uploadAppPageThumbnail, uploadAppPageThumbnailVideo, uploadAppealRoomAttachment, uploadAttachment, uploadAvatar, uploadBipUpdateMedia, uploadDeveloperAppInventoryItemBanner, uploadDeveloperAppInventoryItemImage, uploadDeveloperAppLogo, uploadDeveloperProfileLogo, uploadDeveloperRequestLogo, uploadMultipart, uploadThreadLogo, upsertMyGameReview, verifyWebhook, withdrawDeveloperAppWallet };
|