@metatrongg/sdk 0.8.0-dev.2fc7340 → 0.8.0-dev.3419bfc
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 +362 -14
- package/dist/browser/index.js +1 -1
- package/dist/contracts/index.d.ts +6852 -3869
- package/dist/contracts/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/node/index.d.ts +363 -15
- 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 +4 -4
package/dist/node/index.d.ts
CHANGED
|
@@ -114,7 +114,7 @@ type Username = string;
|
|
|
114
114
|
type DisplayName = string | null;
|
|
115
115
|
type Bio = string | null;
|
|
116
116
|
type WebsiteUrl = string | null;
|
|
117
|
-
type BannerVariant = "yellow" | "green" | "blue" | "white" | "black";
|
|
117
|
+
type BannerVariant = "yellow" | "green" | "blue" | "white" | "black" | "red";
|
|
118
118
|
type AdminRole = "super-admin" | "admin" | "read-only" | null;
|
|
119
119
|
type PresenceStatusMode = "auto" | "online" | "offline";
|
|
120
120
|
type PlatformEnvironment = "development" | "production";
|
|
@@ -291,7 +291,15 @@ type OauthPaymentIntentContext = {
|
|
|
291
291
|
};
|
|
292
292
|
} | null;
|
|
293
293
|
environment: "development" | "production";
|
|
294
|
+
onramp?: {
|
|
295
|
+
kind: "bridge";
|
|
296
|
+
from: PaymentNetwork;
|
|
297
|
+
to: PaymentNetwork;
|
|
298
|
+
} | {
|
|
299
|
+
kind: "insufficient";
|
|
300
|
+
};
|
|
294
301
|
};
|
|
302
|
+
type PaymentNetwork = "ethereum" | "base" | "solana";
|
|
295
303
|
type OauthPaymentIntentSignResponse = {
|
|
296
304
|
chain: string;
|
|
297
305
|
chainId: number;
|
|
@@ -321,6 +329,13 @@ type OauthPaymentIntentCompleteSigned = {
|
|
|
321
329
|
type OauthPaymentIntentCompleteOffline = {
|
|
322
330
|
method: "offline";
|
|
323
331
|
};
|
|
332
|
+
type OauthPaymentIntentSolanaPrepareResponse = {
|
|
333
|
+
transaction: string;
|
|
334
|
+
payer: string;
|
|
335
|
+
};
|
|
336
|
+
type OauthPaymentIntentSolanaCompleteRequest = {
|
|
337
|
+
signedTransaction: string;
|
|
338
|
+
};
|
|
324
339
|
type ListAppPaymentAuthorizationsResponse = {
|
|
325
340
|
authorizations: Array<AppPaymentAuthorizationItem>;
|
|
326
341
|
};
|
|
@@ -424,6 +439,119 @@ type AppPageAgeRating = "everyone" | "13_plus" | "16_plus" | "18_plus" | null;
|
|
|
424
439
|
type AppPageLanguages = Array<"en" | "es" | "fr" | "de" | "pt" | "it" | "ru" | "ja" | "ko" | "zh" | "hi" | "ar" | "tr" | "vi" | "id" | "th" | "pl" | "nl">;
|
|
425
440
|
type AppPageReleaseStatus = "live" | "open_beta" | "coming_soon";
|
|
426
441
|
type AppPagePaymentsMode = "tron" | "onchain" | "both" | null;
|
|
442
|
+
type PublicBipPage = {
|
|
443
|
+
appId: string;
|
|
444
|
+
slug: AppPageSlug;
|
|
445
|
+
appName: string;
|
|
446
|
+
appLogoUrl: string | null;
|
|
447
|
+
categories: AppPageCategories;
|
|
448
|
+
tagline: AppPageTagline;
|
|
449
|
+
bannerUrl: string | null;
|
|
450
|
+
discordUrl: string | null;
|
|
451
|
+
twitterUrl: string | null;
|
|
452
|
+
redditUrl: string | null;
|
|
453
|
+
telegramUrl: string | null;
|
|
454
|
+
gallery: AppPageGallery;
|
|
455
|
+
chapters: AppPageChapters;
|
|
456
|
+
links: AppPageLinks;
|
|
457
|
+
studio: PublicAppPageStudio;
|
|
458
|
+
platforms: AppPagePlatforms;
|
|
459
|
+
gameType: AppPageGameType;
|
|
460
|
+
ageRating: AppPageAgeRating;
|
|
461
|
+
languages: AppPageLanguages;
|
|
462
|
+
releaseStatus: AppPageReleaseStatus;
|
|
463
|
+
publishedAt: string;
|
|
464
|
+
updatedAt: string;
|
|
465
|
+
};
|
|
466
|
+
type BipUpdateListResponse = {
|
|
467
|
+
updates: Array<BipUpdate>;
|
|
468
|
+
total: number;
|
|
469
|
+
hasMore: boolean;
|
|
470
|
+
};
|
|
471
|
+
type BipUpdate = {
|
|
472
|
+
id: string;
|
|
473
|
+
appId: string;
|
|
474
|
+
body: BipUpdateBody;
|
|
475
|
+
attachments: BipUpdateAttachments;
|
|
476
|
+
reactions: BipUpdateReactionCounts;
|
|
477
|
+
commentCount: number;
|
|
478
|
+
createdAt: string;
|
|
479
|
+
updatedAt: string;
|
|
480
|
+
};
|
|
481
|
+
type BipUpdateBody = string;
|
|
482
|
+
type BipUpdateAttachments = Array<BipUpdateAttachment>;
|
|
483
|
+
type BipUpdateAttachment = {
|
|
484
|
+
url: string;
|
|
485
|
+
kind: "image" | "video";
|
|
486
|
+
order: number;
|
|
487
|
+
};
|
|
488
|
+
type BipUpdateReactionCounts = {
|
|
489
|
+
up: number;
|
|
490
|
+
down: number;
|
|
491
|
+
};
|
|
492
|
+
type BipUpdateCommentListResponse = {
|
|
493
|
+
comments: Array<BipUpdateComment>;
|
|
494
|
+
total: number;
|
|
495
|
+
hasMore: boolean;
|
|
496
|
+
};
|
|
497
|
+
type BipUpdateComment = {
|
|
498
|
+
id: string;
|
|
499
|
+
body: BipUpdateCommentBody;
|
|
500
|
+
author: ReviewAuthor;
|
|
501
|
+
createdAt: string;
|
|
502
|
+
};
|
|
503
|
+
type BipUpdateCommentBody = string;
|
|
504
|
+
type ReviewAuthor = {
|
|
505
|
+
userId: string;
|
|
506
|
+
handle: string | null;
|
|
507
|
+
name: string | null;
|
|
508
|
+
avatarUrl: string | null;
|
|
509
|
+
};
|
|
510
|
+
type BipInterestCountResponse = {
|
|
511
|
+
interestCount: number;
|
|
512
|
+
};
|
|
513
|
+
type BipEngagementResponse = {
|
|
514
|
+
interested: boolean;
|
|
515
|
+
subscribed: boolean;
|
|
516
|
+
interestCount: number;
|
|
517
|
+
};
|
|
518
|
+
type MyBipUpdateReactionsResponse = {
|
|
519
|
+
reactions: Array<MyBipUpdateReaction>;
|
|
520
|
+
};
|
|
521
|
+
type MyBipUpdateReaction = {
|
|
522
|
+
updateId: string;
|
|
523
|
+
vote: "up" | "down";
|
|
524
|
+
};
|
|
525
|
+
type SetBipUpdateReactionResponse = {
|
|
526
|
+
reactions: BipUpdateReactionCounts;
|
|
527
|
+
vote: BipUpdateVote;
|
|
528
|
+
};
|
|
529
|
+
type BipUpdateVote = "up" | "down" | null;
|
|
530
|
+
type SetBipUpdateReactionRequest = {
|
|
531
|
+
vote: BipUpdateVote;
|
|
532
|
+
};
|
|
533
|
+
type CreateBipUpdateCommentResponse = {
|
|
534
|
+
comment: BipUpdateComment;
|
|
535
|
+
commentCount: number;
|
|
536
|
+
};
|
|
537
|
+
type DeleteBipUpdateCommentResponse = {
|
|
538
|
+
commentCount: number;
|
|
539
|
+
};
|
|
540
|
+
type CreateBipUpdateRequest = {
|
|
541
|
+
body: BipUpdateBody;
|
|
542
|
+
attachments?: BipUpdateAttachments;
|
|
543
|
+
};
|
|
544
|
+
type UpdateBipUpdateRequest = {
|
|
545
|
+
body?: BipUpdateBody;
|
|
546
|
+
attachments?: BipUpdateAttachments;
|
|
547
|
+
};
|
|
548
|
+
type DeleteBipUpdateResponse = {
|
|
549
|
+
deleted: true;
|
|
550
|
+
};
|
|
551
|
+
type BipUpdateMediaUploadResponse = {
|
|
552
|
+
url: string;
|
|
553
|
+
kind: "image" | "video";
|
|
554
|
+
};
|
|
427
555
|
type ReviewListResponse = {
|
|
428
556
|
aggregate: ReviewAggregate;
|
|
429
557
|
reviews: Array<Review>;
|
|
@@ -457,12 +585,6 @@ type ReviewReactionCounts = {
|
|
|
457
585
|
unhelpful: number;
|
|
458
586
|
funny: number;
|
|
459
587
|
};
|
|
460
|
-
type ReviewAuthor = {
|
|
461
|
-
userId: string;
|
|
462
|
-
handle: string | null;
|
|
463
|
-
name: string | null;
|
|
464
|
-
avatarUrl: string | null;
|
|
465
|
-
};
|
|
466
588
|
type ReviewerStats = {
|
|
467
589
|
playtimeSecondsThisGame: number;
|
|
468
590
|
gamesPlayed: number;
|
|
@@ -1216,12 +1338,15 @@ type WalletListResponse = {
|
|
|
1216
1338
|
wallets: Array<WalletItem>;
|
|
1217
1339
|
};
|
|
1218
1340
|
type WalletChainList = Array<{
|
|
1219
|
-
id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia";
|
|
1341
|
+
id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia" | "base-sepolia" | "solana-mainnet" | "solana-devnet";
|
|
1220
1342
|
displayName: string;
|
|
1221
|
-
|
|
1343
|
+
family: "evm" | "solana";
|
|
1344
|
+
nativeSymbol: string;
|
|
1345
|
+
chainId?: number;
|
|
1222
1346
|
}>;
|
|
1223
1347
|
type WalletItem = {
|
|
1224
|
-
address: string;
|
|
1348
|
+
address: string | string;
|
|
1349
|
+
family: "evm" | "solana";
|
|
1225
1350
|
label: WalletLabel;
|
|
1226
1351
|
kind: "personal" | "app";
|
|
1227
1352
|
app: WalletAppLink;
|
|
@@ -1238,6 +1363,9 @@ type WalletBalances = {
|
|
|
1238
1363
|
"ethereum-mainnet"?: WalletChainBalance;
|
|
1239
1364
|
"base-mainnet"?: WalletChainBalance;
|
|
1240
1365
|
"ethereum-sepolia"?: WalletChainBalance;
|
|
1366
|
+
"base-sepolia"?: WalletChainBalance;
|
|
1367
|
+
"solana-mainnet"?: WalletChainBalance;
|
|
1368
|
+
"solana-devnet"?: WalletChainBalance;
|
|
1241
1369
|
};
|
|
1242
1370
|
type WalletChainBalance = {
|
|
1243
1371
|
native: string;
|
|
@@ -1247,12 +1375,14 @@ type WalletDelegationStatus = {
|
|
|
1247
1375
|
mode: WalletDelegationMode;
|
|
1248
1376
|
caps: WalletDelegationCaps;
|
|
1249
1377
|
policyId: string | null;
|
|
1378
|
+
slippageBps: DelegationSlippageBps;
|
|
1250
1379
|
};
|
|
1251
1380
|
type WalletDelegationMode = "infinite" | "custom" | "scoped" | null;
|
|
1252
1381
|
type WalletDelegationCaps = {
|
|
1253
1382
|
native: string;
|
|
1254
1383
|
usdc: string;
|
|
1255
1384
|
} | null;
|
|
1385
|
+
type DelegationSlippageBps = number | null;
|
|
1256
1386
|
type WalletLabelUpdateResponse = {
|
|
1257
1387
|
address: string;
|
|
1258
1388
|
label: WalletLabel;
|
|
@@ -1912,6 +2042,18 @@ type NotificationItem = {
|
|
|
1912
2042
|
payload: AppPageRejectedNotificationPayload;
|
|
1913
2043
|
read: boolean;
|
|
1914
2044
|
createdAt: string;
|
|
2045
|
+
} | {
|
|
2046
|
+
id: string;
|
|
2047
|
+
kind: "bip_update_published";
|
|
2048
|
+
payload: BipUpdatePublishedNotificationPayload;
|
|
2049
|
+
read: boolean;
|
|
2050
|
+
createdAt: string;
|
|
2051
|
+
} | {
|
|
2052
|
+
id: string;
|
|
2053
|
+
kind: "bip_now_playable";
|
|
2054
|
+
payload: BipNowPlayableNotificationPayload;
|
|
2055
|
+
read: boolean;
|
|
2056
|
+
createdAt: string;
|
|
1915
2057
|
} | {
|
|
1916
2058
|
id: string;
|
|
1917
2059
|
kind: "app_participant_invite";
|
|
@@ -1942,14 +2084,25 @@ type FriendAcceptedNotificationPayload = {
|
|
|
1942
2084
|
type AppPageApprovedNotificationPayload = {
|
|
1943
2085
|
appId: string;
|
|
1944
2086
|
appName: string;
|
|
1945
|
-
scope: "publish" | "changes";
|
|
2087
|
+
scope: "publish" | "changes" | "bip_publish";
|
|
1946
2088
|
};
|
|
1947
2089
|
type AppPageRejectedNotificationPayload = {
|
|
1948
2090
|
appId: string;
|
|
1949
2091
|
appName: string;
|
|
1950
|
-
scope: "publish" | "changes";
|
|
2092
|
+
scope: "publish" | "changes" | "bip_publish";
|
|
1951
2093
|
notes: string;
|
|
1952
2094
|
};
|
|
2095
|
+
type BipUpdatePublishedNotificationPayload = {
|
|
2096
|
+
appId: string;
|
|
2097
|
+
appName: string;
|
|
2098
|
+
appSlug: string | null;
|
|
2099
|
+
updateId: string;
|
|
2100
|
+
};
|
|
2101
|
+
type BipNowPlayableNotificationPayload = {
|
|
2102
|
+
appId: string;
|
|
2103
|
+
appName: string;
|
|
2104
|
+
appSlug: string | null;
|
|
2105
|
+
};
|
|
1953
2106
|
type AppParticipantInviteNotificationPayload = {
|
|
1954
2107
|
appId: string;
|
|
1955
2108
|
appName: string;
|
|
@@ -2117,12 +2270,14 @@ type UpdateDeveloperApp = {
|
|
|
2117
2270
|
redirectUris?: Array<string>;
|
|
2118
2271
|
embedOrigins?: Array<EmbedOrigin>;
|
|
2119
2272
|
acceptedCurrencies?: AcceptedCurrencies;
|
|
2273
|
+
acceptedNetworks?: AcceptedNetworks;
|
|
2120
2274
|
paymentStatusWebhookUrl?: string | null;
|
|
2121
2275
|
paymentStatusWebhookUrlTest?: string | null;
|
|
2122
2276
|
};
|
|
2123
2277
|
type EmbedOrigin = string;
|
|
2124
2278
|
type AcceptedCurrencies = Array<PlatformCurrency>;
|
|
2125
2279
|
type PlatformCurrency = "eth" | "tron";
|
|
2280
|
+
type AcceptedNetworks = Array<PaymentNetwork> | null;
|
|
2126
2281
|
type DeveloperLogoUploadResponse = {
|
|
2127
2282
|
logoUrl: string | null;
|
|
2128
2283
|
};
|
|
@@ -2369,6 +2524,7 @@ type DeveloperAppItem = {
|
|
|
2369
2524
|
redirectUris: Array<string>;
|
|
2370
2525
|
embedOrigins: Array<EmbedOrigin>;
|
|
2371
2526
|
acceptedCurrencies: AcceptedCurrencies;
|
|
2527
|
+
acceptedNetworks: AcceptedNetworks;
|
|
2372
2528
|
payoutAddresses: Array<DeveloperAppPayoutAddressItem>;
|
|
2373
2529
|
keys: Array<DeveloperAppKeyItem>;
|
|
2374
2530
|
pendingProductionRequestId: string | null;
|
|
@@ -2423,6 +2579,16 @@ type AppPageDraft = {
|
|
|
2423
2579
|
hiddenAt: string | null;
|
|
2424
2580
|
hiddenReasonPublic: string | null;
|
|
2425
2581
|
pendingReview: boolean;
|
|
2582
|
+
bip: AppPageBipState;
|
|
2583
|
+
};
|
|
2584
|
+
type AppPageBipState = {
|
|
2585
|
+
enabled: boolean;
|
|
2586
|
+
status: "draft" | "pending_review" | "published" | "hidden";
|
|
2587
|
+
firstPublishedAt: string | null;
|
|
2588
|
+
reviewedAt: string | null;
|
|
2589
|
+
reviewNotes: string | null;
|
|
2590
|
+
hiddenAt: string | null;
|
|
2591
|
+
hiddenReasonPublic: string | null;
|
|
2426
2592
|
};
|
|
2427
2593
|
type UpdateAppPage = {
|
|
2428
2594
|
categories?: AppPageCategories;
|
|
@@ -2447,6 +2613,9 @@ type UpdateAppPage = {
|
|
|
2447
2613
|
type AppPageGalleryUploadResponse = {
|
|
2448
2614
|
url: string;
|
|
2449
2615
|
};
|
|
2616
|
+
type AppPageBipToggle = {
|
|
2617
|
+
enabled: boolean;
|
|
2618
|
+
};
|
|
2450
2619
|
type AdminActivePlayersResponse = {
|
|
2451
2620
|
players: Array<AdminActivePlayer>;
|
|
2452
2621
|
total: number;
|
|
@@ -2585,6 +2754,11 @@ type AdminAppPageItem = {
|
|
|
2585
2754
|
hiddenAt: string | null;
|
|
2586
2755
|
hiddenReasonInternal: string | null;
|
|
2587
2756
|
pendingChangesSubmittedAt: string | null;
|
|
2757
|
+
bipEnabled: boolean;
|
|
2758
|
+
bipStatus: "draft" | "pending_review" | "published" | "hidden";
|
|
2759
|
+
bipFirstPublishedAt: string | null;
|
|
2760
|
+
bipHiddenAt: string | null;
|
|
2761
|
+
openReportCount: number;
|
|
2588
2762
|
};
|
|
2589
2763
|
type AdminAppPageStatusResponse = {
|
|
2590
2764
|
status: "draft" | "pending_review" | "published" | "hidden";
|
|
@@ -2610,6 +2784,25 @@ type AdminAppPageDiffField = {
|
|
|
2610
2784
|
from: string;
|
|
2611
2785
|
to: string;
|
|
2612
2786
|
};
|
|
2787
|
+
type AdminAppPageBipStatusResponse = {
|
|
2788
|
+
bipStatus: "draft" | "pending_review" | "published" | "hidden";
|
|
2789
|
+
};
|
|
2790
|
+
type AdminAppContentReportListResponse = {
|
|
2791
|
+
reports: Array<AdminAppContentReportItem>;
|
|
2792
|
+
total: number;
|
|
2793
|
+
hasMore: boolean;
|
|
2794
|
+
};
|
|
2795
|
+
type AdminAppContentReportItem = {
|
|
2796
|
+
id: string;
|
|
2797
|
+
category: AppContentReportCategory;
|
|
2798
|
+
details: string | null;
|
|
2799
|
+
status: AppContentReportStatus;
|
|
2800
|
+
acknowledgedAt: string | null;
|
|
2801
|
+
createdAt: string;
|
|
2802
|
+
appId: string;
|
|
2803
|
+
appName: string;
|
|
2804
|
+
appSlug: string | null;
|
|
2805
|
+
};
|
|
2613
2806
|
type PlatformFeesResponse = {
|
|
2614
2807
|
purchaseFeeBps: number;
|
|
2615
2808
|
stakeFeeBps: number;
|
|
@@ -2790,6 +2983,13 @@ type AppealResolveRequest = {
|
|
|
2790
2983
|
decision: "refund" | "dismiss";
|
|
2791
2984
|
notes?: string;
|
|
2792
2985
|
};
|
|
2986
|
+
type PaymentRatesResponse = {
|
|
2987
|
+
asOf: string;
|
|
2988
|
+
ethUsd: number | null;
|
|
2989
|
+
solUsd: number | null;
|
|
2990
|
+
solLamportsPerCent: number | null;
|
|
2991
|
+
tronUsdPerToken: number;
|
|
2992
|
+
};
|
|
2793
2993
|
type AppealFileResponse = {
|
|
2794
2994
|
appealId: string;
|
|
2795
2995
|
paymentId: string;
|
|
@@ -2838,7 +3038,7 @@ type OauthPaymentPayoutRequest = {
|
|
|
2838
3038
|
metadata?: PaymentMetadata;
|
|
2839
3039
|
};
|
|
2840
3040
|
type OauthPaymentDistributeResponse = {
|
|
2841
|
-
distributionId
|
|
3041
|
+
distributionId?: string;
|
|
2842
3042
|
txHash: string;
|
|
2843
3043
|
blockNumber: string;
|
|
2844
3044
|
potId: string;
|
|
@@ -2961,7 +3161,7 @@ declare function listActivePlayers(context: TransportContext, input: {
|
|
|
2961
3161
|
//#region src/admin/app-pages.d.ts
|
|
2962
3162
|
declare function listAppPages(context: TransportContext, input: {
|
|
2963
3163
|
readonly bearer: string;
|
|
2964
|
-
readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes";
|
|
3164
|
+
readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes" | "bip_pending_review";
|
|
2965
3165
|
}): Promise<AdminAppPageListResponse>;
|
|
2966
3166
|
declare function getAppPageChanges(context: TransportContext, input: {
|
|
2967
3167
|
readonly bearer: string;
|
|
@@ -2986,6 +3186,20 @@ declare function reviewAppPage(context: TransportContext, input: {
|
|
|
2986
3186
|
readonly appId: string;
|
|
2987
3187
|
readonly body: ReviewAppPage;
|
|
2988
3188
|
}): Promise<AdminAppPageStatusResponse>;
|
|
3189
|
+
declare function reviewAppPageBip(context: TransportContext, input: {
|
|
3190
|
+
readonly bearer: string;
|
|
3191
|
+
readonly appId: string;
|
|
3192
|
+
readonly body: ReviewAppPage;
|
|
3193
|
+
}): Promise<AdminAppPageBipStatusResponse>;
|
|
3194
|
+
declare function hideAppPageBip(context: TransportContext, input: {
|
|
3195
|
+
readonly bearer: string;
|
|
3196
|
+
readonly appId: string;
|
|
3197
|
+
readonly body: HideAppPage;
|
|
3198
|
+
}): Promise<AdminAppPageBipStatusResponse>;
|
|
3199
|
+
declare function unhideAppPageBip(context: TransportContext, input: {
|
|
3200
|
+
readonly bearer: string;
|
|
3201
|
+
readonly appId: string;
|
|
3202
|
+
}): Promise<AdminAppPageBipStatusResponse>;
|
|
2989
3203
|
//#endregion
|
|
2990
3204
|
//#region src/admin/appeals.d.ts
|
|
2991
3205
|
declare function listAppealQueue(context: TransportContext, input: {
|
|
@@ -3017,6 +3231,19 @@ declare function resolveAppeal(context: TransportContext, input: {
|
|
|
3017
3231
|
readonly body: AppealResolveRequest;
|
|
3018
3232
|
}): Promise<AppealResolveSignedResponse>;
|
|
3019
3233
|
//#endregion
|
|
3234
|
+
//#region src/admin/content-reports.d.ts
|
|
3235
|
+
declare function listAdminContentReports(context: TransportContext, input: {
|
|
3236
|
+
readonly bearer: string;
|
|
3237
|
+
readonly status?: "open" | "acknowledged" | "dismissed" | "all";
|
|
3238
|
+
readonly limit?: number;
|
|
3239
|
+
readonly offset?: number;
|
|
3240
|
+
}): Promise<AdminAppContentReportListResponse>;
|
|
3241
|
+
declare function triageAdminContentReport(context: TransportContext, input: {
|
|
3242
|
+
readonly bearer: string;
|
|
3243
|
+
readonly reportId: string;
|
|
3244
|
+
readonly status: "acknowledged" | "dismissed";
|
|
3245
|
+
}): Promise<AppContentReport>;
|
|
3246
|
+
//#endregion
|
|
3020
3247
|
//#region src/admin/developers.d.ts
|
|
3021
3248
|
declare function listDeveloperRequests(context: TransportContext, input: {
|
|
3022
3249
|
readonly bearer: string;
|
|
@@ -3156,6 +3383,102 @@ declare function getAppPage(context: TransportContext, input: {
|
|
|
3156
3383
|
readonly slug: string;
|
|
3157
3384
|
}): Promise<PublicAppPage>;
|
|
3158
3385
|
//#endregion
|
|
3386
|
+
//#region src/catalog/bip-updates.d.ts
|
|
3387
|
+
declare function listBipUpdates(context: TransportContext, input: {
|
|
3388
|
+
readonly bearer?: string;
|
|
3389
|
+
readonly slug: string;
|
|
3390
|
+
readonly limit?: number;
|
|
3391
|
+
readonly offset?: number;
|
|
3392
|
+
}): Promise<BipUpdateListResponse>;
|
|
3393
|
+
declare function listBipUpdateComments(context: TransportContext, input: {
|
|
3394
|
+
readonly bearer?: string;
|
|
3395
|
+
readonly slug: string;
|
|
3396
|
+
readonly updateId: string;
|
|
3397
|
+
readonly limit?: number;
|
|
3398
|
+
readonly offset?: number;
|
|
3399
|
+
}): Promise<BipUpdateCommentListResponse>;
|
|
3400
|
+
declare function getMyBipUpdateReactions(context: TransportContext, input: {
|
|
3401
|
+
readonly bearer: string;
|
|
3402
|
+
readonly slug: string;
|
|
3403
|
+
}): Promise<MyBipUpdateReactionsResponse>;
|
|
3404
|
+
declare function setBipUpdateReaction(context: TransportContext, input: {
|
|
3405
|
+
readonly bearer: string;
|
|
3406
|
+
readonly slug: string;
|
|
3407
|
+
readonly updateId: string;
|
|
3408
|
+
readonly body: SetBipUpdateReactionRequest;
|
|
3409
|
+
}): Promise<SetBipUpdateReactionResponse>;
|
|
3410
|
+
declare function commentOnBipUpdate(context: TransportContext, input: {
|
|
3411
|
+
readonly bearer: string;
|
|
3412
|
+
readonly slug: string;
|
|
3413
|
+
readonly updateId: string;
|
|
3414
|
+
readonly body: string;
|
|
3415
|
+
}): Promise<CreateBipUpdateCommentResponse>;
|
|
3416
|
+
declare function deleteBipUpdateComment(context: TransportContext, input: {
|
|
3417
|
+
readonly bearer: string;
|
|
3418
|
+
readonly slug: string;
|
|
3419
|
+
readonly commentId: string;
|
|
3420
|
+
}): Promise<DeleteBipUpdateCommentResponse>;
|
|
3421
|
+
declare function listDeveloperBipUpdates(context: TransportContext, input: {
|
|
3422
|
+
readonly bearer: string;
|
|
3423
|
+
readonly appId: string;
|
|
3424
|
+
readonly limit?: number;
|
|
3425
|
+
readonly offset?: number;
|
|
3426
|
+
}): Promise<BipUpdateListResponse>;
|
|
3427
|
+
declare function createBipUpdate(context: TransportContext, input: {
|
|
3428
|
+
readonly bearer: string;
|
|
3429
|
+
readonly appId: string;
|
|
3430
|
+
readonly body: CreateBipUpdateRequest;
|
|
3431
|
+
}): Promise<BipUpdate>;
|
|
3432
|
+
declare function updateBipUpdate(context: TransportContext, input: {
|
|
3433
|
+
readonly bearer: string;
|
|
3434
|
+
readonly appId: string;
|
|
3435
|
+
readonly updateId: string;
|
|
3436
|
+
readonly body: UpdateBipUpdateRequest;
|
|
3437
|
+
}): Promise<BipUpdate>;
|
|
3438
|
+
declare function deleteBipUpdate(context: TransportContext, input: {
|
|
3439
|
+
readonly bearer: string;
|
|
3440
|
+
readonly appId: string;
|
|
3441
|
+
readonly updateId: string;
|
|
3442
|
+
}): Promise<DeleteBipUpdateResponse>;
|
|
3443
|
+
declare function uploadBipUpdateMedia(context: TransportContext, input: {
|
|
3444
|
+
readonly bearer: string;
|
|
3445
|
+
readonly appId: string;
|
|
3446
|
+
readonly file: Blob;
|
|
3447
|
+
readonly filename: string;
|
|
3448
|
+
readonly contentType: string;
|
|
3449
|
+
}): Promise<BipUpdateMediaUploadResponse>;
|
|
3450
|
+
declare function getBipInterestCount(context: TransportContext, input: {
|
|
3451
|
+
readonly bearer?: string;
|
|
3452
|
+
readonly slug: string;
|
|
3453
|
+
}): Promise<BipInterestCountResponse>;
|
|
3454
|
+
declare function getMyBipEngagement(context: TransportContext, input: {
|
|
3455
|
+
readonly bearer: string;
|
|
3456
|
+
readonly slug: string;
|
|
3457
|
+
}): Promise<BipEngagementResponse>;
|
|
3458
|
+
declare function registerBipInterest(context: TransportContext, input: {
|
|
3459
|
+
readonly bearer: string;
|
|
3460
|
+
readonly slug: string;
|
|
3461
|
+
readonly interested: boolean;
|
|
3462
|
+
}): Promise<BipEngagementResponse>;
|
|
3463
|
+
declare function subscribeBipUpdates(context: TransportContext, input: {
|
|
3464
|
+
readonly bearer: string;
|
|
3465
|
+
readonly slug: string;
|
|
3466
|
+
readonly subscribed: boolean;
|
|
3467
|
+
}): Promise<BipEngagementResponse>;
|
|
3468
|
+
//#endregion
|
|
3469
|
+
//#region src/catalog/build-in-public.d.ts
|
|
3470
|
+
declare function getBipDirectory(context: TransportContext, input: {
|
|
3471
|
+
readonly bearer?: string;
|
|
3472
|
+
readonly genre?: string;
|
|
3473
|
+
readonly q?: string;
|
|
3474
|
+
readonly before?: string;
|
|
3475
|
+
readonly limit?: number;
|
|
3476
|
+
}): Promise<LibraryListResponse>;
|
|
3477
|
+
declare function getBipPage(context: TransportContext, input: {
|
|
3478
|
+
readonly bearer?: string;
|
|
3479
|
+
readonly slug: string;
|
|
3480
|
+
}): Promise<PublicBipPage>;
|
|
3481
|
+
//#endregion
|
|
3159
3482
|
//#region src/catalog/content-reports.d.ts
|
|
3160
3483
|
declare function submitAppContentReport(context: TransportContext, input: {
|
|
3161
3484
|
readonly appId: string;
|
|
@@ -3326,6 +3649,9 @@ declare function getPaymentHistory(context: TransportContext, input: {
|
|
|
3326
3649
|
readonly before?: string;
|
|
3327
3650
|
}): Promise<PaymentHistoryResponse>;
|
|
3328
3651
|
//#endregion
|
|
3652
|
+
//#region src/dashboard/rates.d.ts
|
|
3653
|
+
declare function getPaymentRates(context: TransportContext): Promise<PaymentRatesResponse>;
|
|
3654
|
+
//#endregion
|
|
3329
3655
|
//#region src/developer/api-keys.d.ts
|
|
3330
3656
|
declare function createDeveloperApiKey(context: TransportContext, input: {
|
|
3331
3657
|
readonly bearer: string;
|
|
@@ -3568,6 +3894,19 @@ declare function unpublishAppPage(context: TransportContext, input: {
|
|
|
3568
3894
|
readonly bearer: string;
|
|
3569
3895
|
readonly appId: string;
|
|
3570
3896
|
}): Promise<AppPageDraft>;
|
|
3897
|
+
declare function setAppPageBip(context: TransportContext, input: {
|
|
3898
|
+
readonly bearer: string;
|
|
3899
|
+
readonly appId: string;
|
|
3900
|
+
readonly body: AppPageBipToggle;
|
|
3901
|
+
}): Promise<AppPageDraft>;
|
|
3902
|
+
declare function submitAppPageBipForReview(context: TransportContext, input: {
|
|
3903
|
+
readonly bearer: string;
|
|
3904
|
+
readonly appId: string;
|
|
3905
|
+
}): Promise<AppPageDraft>;
|
|
3906
|
+
declare function unpublishAppPageBip(context: TransportContext, input: {
|
|
3907
|
+
readonly bearer: string;
|
|
3908
|
+
readonly appId: string;
|
|
3909
|
+
}): Promise<AppPageDraft>;
|
|
3571
3910
|
//#endregion
|
|
3572
3911
|
//#region src/developer/participants.d.ts
|
|
3573
3912
|
declare function listDeveloperAppParticipants(context: TransportContext, input: {
|
|
@@ -4100,6 +4439,15 @@ declare function denyPaymentIntent(context: TransportContext, input: {
|
|
|
4100
4439
|
readonly bearer: string;
|
|
4101
4440
|
readonly intentId: string;
|
|
4102
4441
|
}): Promise<OauthPaymentIntentResolveResponse>;
|
|
4442
|
+
declare function preparePaymentIntentSolana(context: TransportContext, input: {
|
|
4443
|
+
readonly bearer: string;
|
|
4444
|
+
readonly intentId: string;
|
|
4445
|
+
}): Promise<OauthPaymentIntentSolanaPrepareResponse>;
|
|
4446
|
+
declare function completePaymentIntentSolana(context: TransportContext, input: {
|
|
4447
|
+
readonly bearer: string;
|
|
4448
|
+
readonly intentId: string;
|
|
4449
|
+
readonly body: OauthPaymentIntentSolanaCompleteRequest;
|
|
4450
|
+
}): Promise<OauthPaymentIntentResolveResponse>;
|
|
4103
4451
|
//#endregion
|
|
4104
4452
|
//#region src/payments/limits.d.ts
|
|
4105
4453
|
declare function getPaymentLimits(context: TransportContext, input: {
|
|
@@ -4610,4 +4958,4 @@ declare class TronNodeClient {
|
|
|
4610
4958
|
};
|
|
4611
4959
|
}
|
|
4612
4960
|
//#endregion
|
|
4613
|
-
export { AppTokenCache, AuthorizeUrl, type BrowserClientConfig, BuildAuthorizeUrlInput, ChargeResult, type FetchLike, GameHalfCredentials, HttpsGuardOptions, InflightDedup, InventoryUpdateEvent, type Logger, MountPresenceWidgetOptions, NOOP_RATE_LIMITER, type NodeClientConfig, OauthErrorCode, OauthInventoryEventsSubscriber, OauthInventoryEventsSubscriberLifecycle, OauthInventoryEventsSubscriberOptions, OauthPaymentEventsSubscriber, OauthPaymentEventsSubscriberLifecycle, OauthPaymentEventsSubscriberOptions, OauthPaymentWebhookBody, type OauthScope, PkcePair, PlaySessionGameStatus, PresenceStatus, PresenceWidgetHandle, RateLimitOptions, RateLimiter, RequestOptions, SERVER_RATE_LIMIT_MAX_MUTATING, SERVER_RATE_LIMIT_MAX_READ, SERVER_RATE_LIMIT_WINDOW_MS, type SdkBaseConfig, TRON_WS_CLOSE_CODES, type TokenSet, type TokenStore, TransportContext, TronError, TronNodeClient, TronOauthError, TronWsCloseCode, TronWsCloseError, VerifyWebhookFailure, VerifyWebhookInput, VerifyWebhookResult, VerifyWebhookSuccess, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, acceptDeveloperInvite, addAdmin, addAppealBlacklist, addReaction, approveTronCashout, assertSecureIssuer, batchThreadDmKeys, bindReferral, buildAuthorizeUrl, cancelFriendRequest, cancelPot, charge, chargeTronDirect, chargeTronPot, commentOnGameReview, completePaymentIntent, confirmPlaySession, consolidateDeveloperAppWallet, createAppTokenCache, createConsoleLogger, createDelegation, createDeveloperApiKey, createDeveloperApp, createDeveloperAppMintPermit, createDeveloperVaultPermit, createDeveloperWithdrawPermit, createDirectThread, createInMemoryTokenStore, createInflightDedup, createNoopLogger, createRateLimiter, createReferralCode, createTronCashout, createTronConnectOnboarding, createTronDeposit, createTronTransfer, createTronTransferChallenge, decideFriendRequest, declineDeveloperInvite, defaultEndpoints, deleteAppPageBanner, deleteAppPageThumbnail, deleteAppPageThumbnailVideo, deleteAvatar, deleteDelegation, deleteDeveloperApp, deleteDeveloperAppLogo, deleteDeveloperProfileLogo, deleteDeveloperRequestLogo, deleteGameReviewComment, deleteGameReviewReply, deleteMessage, deleteMyGameReview, deleteThread, deleteThreadLogo, denyPaymentIntent, distributePot, distributeTronPot, editMessage, endPlaySession, exchangeAuthorizationCode, executeNftTransfer, fetchAuthorizationServerMetadata, fetchUserInfo, fileAppeal, fileAppealPotLeg, followUser, forceWithdrawVaultCustody, generatePkce, generateState, getActivity, getActivityGroup, getAdminAppealRoom, getAppFeeConfig, getAppPage, getAppPageChanges, getAppealRoom, getDelegation, getDeveloperAppActivity, getDeveloperAppBalances, getDeveloperAppEarnings, getDeveloperAppInventoryItemHolders, getDeveloperAppOverview, getDeveloperAppPage, getDeveloperAppPlaytime, getDeveloperAppTronBalance, getDeveloperAppWallets, getDeveloperPaymentAppeals, getDeveloperPaymentPendingDeposits, getDeveloperStatus, getDeveloperTronBalanceSummary, getDmKeyBackupStatus, getIntentStatus, getLibrary, getMoonpayAvailability, getMyDmKey, getMyGameReview, getMyGameReviewReactions, getOutstanding, getPaymentChains, getPaymentHistory, getPaymentIntent, getPaymentLimits, getPaymentPrice, getPlatformFees, getPlaytime, getPlaytimeTimeseries, getPublicProfile, getReferral, getThreadDmKey, getTronBalance, getTronGameBalance, getTronSecurity, heartbeatPlaySession, hideAppPage, hideThread, inventoryUpdateEventSchema, inviteDeveloperAppParticipant, inviteParticipants, leaveThread, listActivePlayers, listAdmins, listAppPages, listAppealBlacklist, listAppealQueue, listAudit, listDeveloperApiKeys, listDeveloperAppContentReports, listDeveloperAppInventoryCollections, listDeveloperAppInventoryItems, listDeveloperAppParticipants, listDeveloperAppReviews, listDeveloperInvites, listDeveloperRequests, listDevelopers, listFriends, listFriendsForApp, listGameReviewComments, listGameReviews, listInventory, listInventoryForApp, listInventoryMintPermits, listInventoryVaultPermits, listInventoryVaulted, listNotifications, listOauthInventoryVaulted, listPaymentAuthorizations, listSocials, listThreadMessages, listThreads, listTronCashoutQueue, listTronCashouts, listTronLedger, listUsers, listWalletManager, listWallets, markAllNotificationsRead, markThreadRead, mintClientCredentialsToken, mintMoonpayBuyUrl, mintMoonpaySellUrl, mountPresenceWidget, oauthPaymentWebhookBodySchema, parseJson, pinThread, postAdminAppealRoomMessage, postAppealRoomMessage, previewReferral, provisionDeveloperAppWallet, publishDmKey, quoteDeveloperAppInventoryRegistration, quoteNftTransfer, quoteRelayedVaultPermit, redeemInventoryMintPermit, refreshAccessToken, registerDeveloperAppInventoryItem, registerOauthClient, rejectTronCashout, removeAdmin, removeAppealBlacklist, removeFriend, removeParticipant, removeReaction, replyToGameReview, requestDeveloperAppProduction, requestMint, requestPayout, resolveAppeal, reviewAppPage, reviewAppPageChanges, reviewDeveloperRequest, revokeDeveloperApiKey, revokeDeveloperAppParticipant, revokePaymentAuthorization, revokeToken, rotateDeveloperAppKey, rotateDeveloperAppPaymentWebhookSecret, rotateProcessorTreasury, searchGiphy, searchUsers, send, sendFriendRequest, sendJson, sendMessage, sendPresenceHeartbeat, setMyGameReviewReaction, setProcessorWhitelist, setTronSecurity, setVaultOperator, setVaultPause, setVaultWithdrawLockDefault, setVaultWithdrawLockOverride, setupDmKeyBackup, sha256Base64Url, signInventoryVaultPermit, signPaymentIntent, startOauthInventoryEventsSubscriber, startOauthPaymentEventsSubscriber, 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 };
|
|
4961
|
+
export { AppTokenCache, AuthorizeUrl, type BrowserClientConfig, BuildAuthorizeUrlInput, ChargeResult, type FetchLike, GameHalfCredentials, HttpsGuardOptions, InflightDedup, InventoryUpdateEvent, type Logger, MountPresenceWidgetOptions, NOOP_RATE_LIMITER, type NodeClientConfig, OauthErrorCode, OauthInventoryEventsSubscriber, OauthInventoryEventsSubscriberLifecycle, OauthInventoryEventsSubscriberOptions, OauthPaymentEventsSubscriber, OauthPaymentEventsSubscriberLifecycle, OauthPaymentEventsSubscriberOptions, OauthPaymentWebhookBody, type OauthScope, PkcePair, PlaySessionGameStatus, PresenceStatus, PresenceWidgetHandle, RateLimitOptions, RateLimiter, RequestOptions, SERVER_RATE_LIMIT_MAX_MUTATING, SERVER_RATE_LIMIT_MAX_READ, SERVER_RATE_LIMIT_WINDOW_MS, type SdkBaseConfig, TRON_WS_CLOSE_CODES, type TokenSet, type TokenStore, TransportContext, TronError, TronNodeClient, TronOauthError, TronWsCloseCode, TronWsCloseError, VerifyWebhookFailure, VerifyWebhookInput, VerifyWebhookResult, VerifyWebhookSuccess, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, acceptDeveloperInvite, addAdmin, addAppealBlacklist, addReaction, approveTronCashout, assertSecureIssuer, batchThreadDmKeys, bindReferral, buildAuthorizeUrl, cancelFriendRequest, cancelPot, charge, chargeTronDirect, chargeTronPot, commentOnBipUpdate, commentOnGameReview, completePaymentIntent, completePaymentIntentSolana, confirmPlaySession, consolidateDeveloperAppWallet, createAppTokenCache, createBipUpdate, createConsoleLogger, createDelegation, createDeveloperApiKey, createDeveloperApp, createDeveloperAppMintPermit, createDeveloperVaultPermit, createDeveloperWithdrawPermit, createDirectThread, createInMemoryTokenStore, createInflightDedup, createNoopLogger, createRateLimiter, createReferralCode, createTronCashout, createTronConnectOnboarding, createTronDeposit, createTronTransfer, createTronTransferChallenge, decideFriendRequest, declineDeveloperInvite, defaultEndpoints, deleteAppPageBanner, deleteAppPageThumbnail, deleteAppPageThumbnailVideo, deleteAvatar, deleteBipUpdate, deleteBipUpdateComment, deleteDelegation, deleteDeveloperApp, deleteDeveloperAppLogo, deleteDeveloperProfileLogo, deleteDeveloperRequestLogo, deleteGameReviewComment, deleteGameReviewReply, deleteMessage, deleteMyGameReview, deleteThread, deleteThreadLogo, denyPaymentIntent, distributePot, distributeTronPot, editMessage, endPlaySession, exchangeAuthorizationCode, executeNftTransfer, fetchAuthorizationServerMetadata, fetchUserInfo, fileAppeal, fileAppealPotLeg, followUser, forceWithdrawVaultCustody, generatePkce, generateState, getActivity, getActivityGroup, getAdminAppealRoom, getAppFeeConfig, getAppPage, getAppPageChanges, getAppealRoom, getBipDirectory, getBipInterestCount, getBipPage, getDelegation, getDeveloperAppActivity, getDeveloperAppBalances, getDeveloperAppEarnings, getDeveloperAppInventoryItemHolders, getDeveloperAppOverview, getDeveloperAppPage, getDeveloperAppPlaytime, getDeveloperAppTronBalance, getDeveloperAppWallets, getDeveloperPaymentAppeals, getDeveloperPaymentPendingDeposits, getDeveloperStatus, getDeveloperTronBalanceSummary, getDmKeyBackupStatus, getIntentStatus, getLibrary, getMoonpayAvailability, getMyBipEngagement, getMyBipUpdateReactions, getMyDmKey, getMyGameReview, getMyGameReviewReactions, getOutstanding, getPaymentChains, getPaymentHistory, getPaymentIntent, getPaymentLimits, getPaymentPrice, getPaymentRates, getPlatformFees, getPlaytime, getPlaytimeTimeseries, getPublicProfile, getReferral, getThreadDmKey, getTronBalance, getTronGameBalance, getTronSecurity, heartbeatPlaySession, hideAppPage, hideAppPageBip, hideThread, inventoryUpdateEventSchema, inviteDeveloperAppParticipant, inviteParticipants, leaveThread, listActivePlayers, listAdminContentReports, listAdmins, listAppPages, listAppealBlacklist, listAppealQueue, listAudit, listBipUpdateComments, listBipUpdates, listDeveloperApiKeys, listDeveloperAppContentReports, listDeveloperAppInventoryCollections, listDeveloperAppInventoryItems, listDeveloperAppParticipants, listDeveloperAppReviews, listDeveloperBipUpdates, listDeveloperInvites, listDeveloperRequests, listDevelopers, listFriends, listFriendsForApp, listGameReviewComments, listGameReviews, listInventory, listInventoryForApp, listInventoryMintPermits, listInventoryVaultPermits, listInventoryVaulted, listNotifications, listOauthInventoryVaulted, listPaymentAuthorizations, listSocials, listThreadMessages, listThreads, listTronCashoutQueue, listTronCashouts, listTronLedger, listUsers, listWalletManager, listWallets, markAllNotificationsRead, markThreadRead, mintClientCredentialsToken, mintMoonpayBuyUrl, mintMoonpaySellUrl, mountPresenceWidget, oauthPaymentWebhookBodySchema, parseJson, pinThread, postAdminAppealRoomMessage, postAppealRoomMessage, preparePaymentIntentSolana, previewReferral, provisionDeveloperAppWallet, publishDmKey, quoteDeveloperAppInventoryRegistration, quoteNftTransfer, quoteRelayedVaultPermit, redeemInventoryMintPermit, refreshAccessToken, registerBipInterest, registerDeveloperAppInventoryItem, registerOauthClient, rejectTronCashout, removeAdmin, removeAppealBlacklist, removeFriend, removeParticipant, removeReaction, replyToGameReview, requestDeveloperAppProduction, requestMint, requestPayout, resolveAppeal, reviewAppPage, reviewAppPageBip, reviewAppPageChanges, reviewDeveloperRequest, revokeDeveloperApiKey, revokeDeveloperAppParticipant, revokePaymentAuthorization, revokeToken, rotateDeveloperAppKey, rotateDeveloperAppPaymentWebhookSecret, rotateProcessorTreasury, searchGiphy, searchUsers, send, sendFriendRequest, sendJson, sendMessage, sendPresenceHeartbeat, setAppPageBip, setBipUpdateReaction, setMyGameReviewReaction, setProcessorWhitelist, setTronSecurity, setVaultOperator, setVaultPause, setVaultWithdrawLockDefault, setVaultWithdrawLockOverride, setupDmKeyBackup, sha256Base64Url, signInventoryVaultPermit, signPaymentIntent, startOauthInventoryEventsSubscriber, startOauthPaymentEventsSubscriber, submitAppContentReport, submitAppPageBipForReview, submitAppPageForReview, submitDeveloperRequest, submitRelayedVaultPermit, subscribeBipUpdates, tipGameReview, toTokenSet, triageAdminContentReport, unfollowUser, unhideAppPage, unhideAppPageBip, unlockDmKeyBackup, unpinThread, unpublishAppPage, unpublishAppPageBip, updateAdminRole, updateAppFeeConfig, updateAppPage, updateBipUpdate, updateDeveloperApp, updateDeveloperAppAutoSweep, updateDeveloperAppContentReportStatus, updateDeveloperProfile, updateNotification, updateParticipantRole, updatePaymentAuthorization, updatePlatformFees, updateProfile, updateThreadSettings, updateUserBan, updateWalletLabel, uploadAdminAppealRoomAttachment, uploadAppPageBanner, uploadAppPageGallery, uploadAppPageThumbnail, uploadAppPageThumbnailVideo, uploadAppealRoomAttachment, uploadAttachment, uploadAvatar, uploadBipUpdateMedia, uploadDeveloperAppInventoryItemBanner, uploadDeveloperAppInventoryItemImage, uploadDeveloperAppLogo, uploadDeveloperProfileLogo, uploadDeveloperRequestLogo, uploadMultipart, uploadThreadLogo, upsertMyGameReview, verifyWebhook, withdrawDeveloperAppWallet };
|