@metatrongg/sdk 0.8.0-dev.35a45fe → 0.8.0-dev.3d788a0

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.
@@ -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";
@@ -129,7 +129,7 @@ type OauthAuthorizationServerMetadata = {
129
129
  grant_types_supported: Array<"authorization_code" | "refresh_token" | "client_credentials">;
130
130
  code_challenge_methods_supported: Array<"S256">;
131
131
  token_endpoint_auth_methods_supported: Array<"client_secret_basic" | "client_secret_post" | "none">;
132
- scopes_supported: Array<"openid" | "profile" | "payments:charge" | "inventory:read" | "developer:read" | "developer:apps" | "developer:pages">;
132
+ scopes_supported: Array<"openid" | "profile" | "payments:charge" | "inventory:read" | "social:read" | "developer:read" | "developer:apps" | "developer:pages">;
133
133
  };
134
134
  type OauthClientRegistrationResponse = {
135
135
  client_id: string;
@@ -169,7 +169,9 @@ type OauthErrorResponse = {
169
169
  type OauthUserInfoResponse = {
170
170
  sub: string;
171
171
  name: string | null;
172
+ preferred_username: string | null;
172
173
  picture: string | null;
174
+ wallet_address: string | null;
173
175
  };
174
176
  type OauthPaymentChargeResponse = ({
175
177
  status: "completed";
@@ -289,7 +291,15 @@ type OauthPaymentIntentContext = {
289
291
  };
290
292
  } | null;
291
293
  environment: "development" | "production";
294
+ onramp?: {
295
+ kind: "bridge";
296
+ from: PaymentNetwork;
297
+ to: PaymentNetwork;
298
+ } | {
299
+ kind: "insufficient";
300
+ };
292
301
  };
302
+ type PaymentNetwork = "ethereum" | "base" | "solana";
293
303
  type OauthPaymentIntentSignResponse = {
294
304
  chain: string;
295
305
  chainId: number;
@@ -319,6 +329,13 @@ type OauthPaymentIntentCompleteSigned = {
319
329
  type OauthPaymentIntentCompleteOffline = {
320
330
  method: "offline";
321
331
  };
332
+ type OauthPaymentIntentSolanaPrepareResponse = {
333
+ transaction: string;
334
+ payer: string;
335
+ };
336
+ type OauthPaymentIntentSolanaCompleteRequest = {
337
+ signedTransaction: string;
338
+ };
322
339
  type ListAppPaymentAuthorizationsResponse = {
323
340
  authorizations: Array<AppPaymentAuthorizationItem>;
324
341
  };
@@ -385,6 +402,7 @@ type PublicAppPage = {
385
402
  paymentsMode: AppPagePaymentsMode;
386
403
  oauthScopes: Array<string>;
387
404
  chains: Array<string>;
405
+ devlog: boolean;
388
406
  publishedAt: string;
389
407
  updatedAt: string;
390
408
  };
@@ -422,6 +440,121 @@ type AppPageAgeRating = "everyone" | "13_plus" | "16_plus" | "18_plus" | null;
422
440
  type AppPageLanguages = Array<"en" | "es" | "fr" | "de" | "pt" | "it" | "ru" | "ja" | "ko" | "zh" | "hi" | "ar" | "tr" | "vi" | "id" | "th" | "pl" | "nl">;
423
441
  type AppPageReleaseStatus = "live" | "open_beta" | "coming_soon";
424
442
  type AppPagePaymentsMode = "tron" | "onchain" | "both" | null;
443
+ type PublicBipPage = {
444
+ appId: string;
445
+ slug: AppPageSlug;
446
+ appName: string;
447
+ appLogoUrl: string | null;
448
+ categories: AppPageCategories;
449
+ tagline: AppPageTagline;
450
+ bannerUrl: string | null;
451
+ discordUrl: string | null;
452
+ twitterUrl: string | null;
453
+ redditUrl: string | null;
454
+ telegramUrl: string | null;
455
+ gallery: AppPageGallery;
456
+ chapters: AppPageChapters;
457
+ links: AppPageLinks;
458
+ studio: PublicAppPageStudio;
459
+ platforms: AppPagePlatforms;
460
+ gameType: AppPageGameType;
461
+ ageRating: AppPageAgeRating;
462
+ languages: AppPageLanguages;
463
+ releaseStatus: AppPageReleaseStatus;
464
+ publishedAt: string;
465
+ updatedAt: string;
466
+ };
467
+ type BipUpdateListResponse = {
468
+ updates: Array<BipUpdate>;
469
+ total: number;
470
+ hasMore: boolean;
471
+ pinned: BipUpdate | null;
472
+ };
473
+ type BipUpdate = {
474
+ id: string;
475
+ appId: string;
476
+ body: BipUpdateBody;
477
+ attachments: BipUpdateAttachments;
478
+ reactions: BipUpdateReactionCounts;
479
+ commentCount: number;
480
+ createdAt: string;
481
+ updatedAt: string;
482
+ pinnedAt: string | null;
483
+ };
484
+ type BipUpdateBody = string;
485
+ type BipUpdateAttachments = Array<BipUpdateAttachment>;
486
+ type BipUpdateAttachment = {
487
+ url: string;
488
+ kind: "image" | "video";
489
+ order: number;
490
+ };
491
+ type BipUpdateReactionCounts = {
492
+ up: number;
493
+ down: number;
494
+ };
495
+ type BipUpdateCommentListResponse = {
496
+ comments: Array<BipUpdateComment>;
497
+ total: number;
498
+ hasMore: boolean;
499
+ };
500
+ type BipUpdateComment = {
501
+ id: string;
502
+ body: BipUpdateCommentBody;
503
+ author: ReviewAuthor;
504
+ createdAt: string;
505
+ };
506
+ type BipUpdateCommentBody = string;
507
+ type ReviewAuthor = {
508
+ userId: string;
509
+ handle: string | null;
510
+ name: string | null;
511
+ avatarUrl: string | null;
512
+ };
513
+ type BipInterestCountResponse = {
514
+ interestCount: number;
515
+ };
516
+ type BipEngagementResponse = {
517
+ interested: boolean;
518
+ subscribed: boolean;
519
+ interestCount: number;
520
+ };
521
+ type MyBipUpdateReactionsResponse = {
522
+ reactions: Array<MyBipUpdateReaction>;
523
+ };
524
+ type MyBipUpdateReaction = {
525
+ updateId: string;
526
+ vote: "up" | "down";
527
+ };
528
+ type SetBipUpdateReactionResponse = {
529
+ reactions: BipUpdateReactionCounts;
530
+ vote: BipUpdateVote;
531
+ };
532
+ type BipUpdateVote = "up" | "down" | null;
533
+ type SetBipUpdateReactionRequest = {
534
+ vote: BipUpdateVote;
535
+ };
536
+ type CreateBipUpdateCommentResponse = {
537
+ comment: BipUpdateComment;
538
+ commentCount: number;
539
+ };
540
+ type DeleteBipUpdateCommentResponse = {
541
+ commentCount: number;
542
+ };
543
+ type CreateBipUpdateRequest = {
544
+ body: BipUpdateBody;
545
+ attachments?: BipUpdateAttachments;
546
+ };
547
+ type UpdateBipUpdateRequest = {
548
+ body?: BipUpdateBody;
549
+ attachments?: BipUpdateAttachments;
550
+ };
551
+ type DeleteBipUpdateResponse = {
552
+ deleted: true;
553
+ };
554
+ type BipUpdateMediaUploadResponse = {
555
+ url: string;
556
+ kind: "image" | "video";
557
+ };
425
558
  type ReviewListResponse = {
426
559
  aggregate: ReviewAggregate;
427
560
  reviews: Array<Review>;
@@ -455,12 +588,6 @@ type ReviewReactionCounts = {
455
588
  unhelpful: number;
456
589
  funny: number;
457
590
  };
458
- type ReviewAuthor = {
459
- userId: string;
460
- handle: string | null;
461
- name: string | null;
462
- avatarUrl: string | null;
463
- };
464
591
  type ReviewerStats = {
465
592
  playtimeSecondsThisGame: number;
466
593
  gamesPlayed: number;
@@ -651,7 +778,11 @@ type ActivityRow = ({
651
778
  kind: "referral_earning";
652
779
  } & ActivityRowReferralEarning) | ({
653
780
  kind: "nft_charge";
654
- } & ActivityRowNftCharge);
781
+ } & ActivityRowNftCharge) | ({
782
+ kind: "solana_stake";
783
+ } & ActivityRowSolanaStake) | ({
784
+ kind: "solana_pot_leg";
785
+ } & ActivityRowSolanaPotLeg);
655
786
  type ActivityRowPayment = {
656
787
  kind: "payment";
657
788
  groupId: string | null;
@@ -979,6 +1110,56 @@ type ActivityRowNftCharge = {
979
1110
  counterpartyHandle: string | null;
980
1111
  counterpartyDisplayName: string | null;
981
1112
  };
1113
+ type ActivityRowSolanaStake = {
1114
+ kind: "solana_stake";
1115
+ groupId: string | null;
1116
+ id: string;
1117
+ chain: string;
1118
+ occurredAt: string;
1119
+ role: "outgoing" | "incoming";
1120
+ amount: string;
1121
+ token: string;
1122
+ potId: string | null;
1123
+ usdCents: number;
1124
+ status: "completed";
1125
+ txHash: string | null;
1126
+ app: {
1127
+ id: string;
1128
+ name: string;
1129
+ logoUrl: string | null;
1130
+ slug: string | null;
1131
+ bannerUrl: string | null;
1132
+ } | null;
1133
+ stakerUserId?: string | null;
1134
+ stakerHandle?: string | null;
1135
+ stakerDisplayName?: string | null;
1136
+ metadata?: PaymentMetadata | null;
1137
+ };
1138
+ type ActivityRowSolanaPotLeg = {
1139
+ kind: "solana_pot_leg";
1140
+ groupId: string | null;
1141
+ id: string;
1142
+ chain: string;
1143
+ occurredAt: string;
1144
+ role: "outgoing" | "incoming";
1145
+ beneficiary: string;
1146
+ potId: string | null;
1147
+ amount: string;
1148
+ token: string;
1149
+ usdCents: number | null;
1150
+ status: "settled";
1151
+ app: {
1152
+ id: string;
1153
+ name: string;
1154
+ logoUrl: string | null;
1155
+ slug: string | null;
1156
+ bannerUrl: string | null;
1157
+ } | null;
1158
+ txHash: string | null;
1159
+ recipientUserId?: string | null;
1160
+ recipientHandle?: string | null;
1161
+ recipientDisplayName?: string | null;
1162
+ };
982
1163
  type OutstandingResponse = {
983
1164
  rows: Array<OutstandingByToken>;
984
1165
  };
@@ -1214,12 +1395,15 @@ type WalletListResponse = {
1214
1395
  wallets: Array<WalletItem>;
1215
1396
  };
1216
1397
  type WalletChainList = Array<{
1217
- id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia";
1398
+ id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia" | "base-sepolia" | "solana-mainnet" | "solana-devnet";
1218
1399
  displayName: string;
1219
- chainId: number;
1400
+ family: "evm" | "solana";
1401
+ nativeSymbol: string;
1402
+ chainId?: number;
1220
1403
  }>;
1221
1404
  type WalletItem = {
1222
- address: string;
1405
+ address: string | string;
1406
+ family: "evm" | "solana";
1223
1407
  label: WalletLabel;
1224
1408
  kind: "personal" | "app";
1225
1409
  app: WalletAppLink;
@@ -1236,6 +1420,9 @@ type WalletBalances = {
1236
1420
  "ethereum-mainnet"?: WalletChainBalance;
1237
1421
  "base-mainnet"?: WalletChainBalance;
1238
1422
  "ethereum-sepolia"?: WalletChainBalance;
1423
+ "base-sepolia"?: WalletChainBalance;
1424
+ "solana-mainnet"?: WalletChainBalance;
1425
+ "solana-devnet"?: WalletChainBalance;
1239
1426
  };
1240
1427
  type WalletChainBalance = {
1241
1428
  native: string;
@@ -1245,12 +1432,14 @@ type WalletDelegationStatus = {
1245
1432
  mode: WalletDelegationMode;
1246
1433
  caps: WalletDelegationCaps;
1247
1434
  policyId: string | null;
1435
+ slippageBps: DelegationSlippageBps;
1248
1436
  };
1249
1437
  type WalletDelegationMode = "infinite" | "custom" | "scoped" | null;
1250
1438
  type WalletDelegationCaps = {
1251
1439
  native: string;
1252
1440
  usdc: string;
1253
1441
  } | null;
1442
+ type DelegationSlippageBps = number | null;
1254
1443
  type WalletLabelUpdateResponse = {
1255
1444
  address: string;
1256
1445
  label: WalletLabel;
@@ -1348,6 +1537,7 @@ type MessageTransactionNftTransfer = {
1348
1537
  tokenId: string;
1349
1538
  amount: string;
1350
1539
  itemName: string | null;
1540
+ imageAssetId?: string | null;
1351
1541
  };
1352
1542
  type GroupThreadSummary = {
1353
1543
  kind: "group";
@@ -1909,6 +2099,18 @@ type NotificationItem = {
1909
2099
  payload: AppPageRejectedNotificationPayload;
1910
2100
  read: boolean;
1911
2101
  createdAt: string;
2102
+ } | {
2103
+ id: string;
2104
+ kind: "bip_update_published";
2105
+ payload: BipUpdatePublishedNotificationPayload;
2106
+ read: boolean;
2107
+ createdAt: string;
2108
+ } | {
2109
+ id: string;
2110
+ kind: "bip_now_playable";
2111
+ payload: BipNowPlayableNotificationPayload;
2112
+ read: boolean;
2113
+ createdAt: string;
1912
2114
  } | {
1913
2115
  id: string;
1914
2116
  kind: "app_participant_invite";
@@ -1939,14 +2141,25 @@ type FriendAcceptedNotificationPayload = {
1939
2141
  type AppPageApprovedNotificationPayload = {
1940
2142
  appId: string;
1941
2143
  appName: string;
1942
- scope: "publish" | "changes";
2144
+ scope: "publish" | "changes" | "bip_publish";
1943
2145
  };
1944
2146
  type AppPageRejectedNotificationPayload = {
1945
2147
  appId: string;
1946
2148
  appName: string;
1947
- scope: "publish" | "changes";
2149
+ scope: "publish" | "changes" | "bip_publish";
1948
2150
  notes: string;
1949
2151
  };
2152
+ type BipUpdatePublishedNotificationPayload = {
2153
+ appId: string;
2154
+ appName: string;
2155
+ appSlug: string | null;
2156
+ updateId: string;
2157
+ };
2158
+ type BipNowPlayableNotificationPayload = {
2159
+ appId: string;
2160
+ appName: string;
2161
+ appSlug: string | null;
2162
+ };
1950
2163
  type AppParticipantInviteNotificationPayload = {
1951
2164
  appId: string;
1952
2165
  appName: string;
@@ -1976,6 +2189,9 @@ type FriendListItem = {
1976
2189
  onlineStatus: OnlineStatus;
1977
2190
  };
1978
2191
  type OnlineStatus = "online" | "offline";
2192
+ type AppFriendListResponse = {
2193
+ friends: Array<ThreadParticipant>;
2194
+ };
1979
2195
  type FriendRequestDecision = {
1980
2196
  decision: "accept" | "reject";
1981
2197
  };
@@ -2105,17 +2321,20 @@ type CreateDeveloperAppChain = {
2105
2321
  };
2106
2322
  type UpdateDeveloperApp = {
2107
2323
  name?: DeveloperAppName;
2324
+ slug?: AppPageSlug | null;
2108
2325
  logoUrl?: string | null;
2109
2326
  testAccess?: "private" | "public";
2110
2327
  redirectUris?: Array<string>;
2111
2328
  embedOrigins?: Array<EmbedOrigin>;
2112
2329
  acceptedCurrencies?: AcceptedCurrencies;
2330
+ acceptedNetworks?: AcceptedNetworks;
2113
2331
  paymentStatusWebhookUrl?: string | null;
2114
2332
  paymentStatusWebhookUrlTest?: string | null;
2115
2333
  };
2116
2334
  type EmbedOrigin = string;
2117
2335
  type AcceptedCurrencies = Array<PlatformCurrency>;
2118
2336
  type PlatformCurrency = "eth" | "tron";
2337
+ type AcceptedNetworks = Array<PaymentNetwork> | null;
2119
2338
  type DeveloperLogoUploadResponse = {
2120
2339
  logoUrl: string | null;
2121
2340
  };
@@ -2178,7 +2397,7 @@ type DeveloperAppWalletsResponse = {
2178
2397
  };
2179
2398
  type DeveloperAppWalletItem = {
2180
2399
  chain: string;
2181
- address: string;
2400
+ address: string | string;
2182
2401
  custody: "server" | null;
2183
2402
  walletId: string | null;
2184
2403
  autoSweepEnabled: boolean;
@@ -2199,7 +2418,7 @@ type DeveloperAppProvisionWalletResponse = {
2199
2418
  chain: string;
2200
2419
  custody: "server";
2201
2420
  walletId: string;
2202
- address: string;
2421
+ address: string | string;
2203
2422
  };
2204
2423
  type DeveloperAppWithdrawResponse = {
2205
2424
  appId: string;
@@ -2353,6 +2572,7 @@ type DeveloperProductionRequestPayload = {
2353
2572
  type DeveloperAppItem = {
2354
2573
  id: string;
2355
2574
  name: DeveloperAppName;
2575
+ slug: AppPageSlug | null;
2356
2576
  logoUrl: string | null;
2357
2577
  environment: "development" | "production";
2358
2578
  productionApprovedAt: string | null;
@@ -2361,6 +2581,7 @@ type DeveloperAppItem = {
2361
2581
  redirectUris: Array<string>;
2362
2582
  embedOrigins: Array<EmbedOrigin>;
2363
2583
  acceptedCurrencies: AcceptedCurrencies;
2584
+ acceptedNetworks: AcceptedNetworks;
2364
2585
  payoutAddresses: Array<DeveloperAppPayoutAddressItem>;
2365
2586
  keys: Array<DeveloperAppKeyItem>;
2366
2587
  pendingProductionRequestId: string | null;
@@ -2415,9 +2636,18 @@ type AppPageDraft = {
2415
2636
  hiddenAt: string | null;
2416
2637
  hiddenReasonPublic: string | null;
2417
2638
  pendingReview: boolean;
2639
+ bip: AppPageBipState;
2640
+ };
2641
+ type AppPageBipState = {
2642
+ enabled: boolean;
2643
+ status: "draft" | "pending_review" | "published" | "hidden";
2644
+ firstPublishedAt: string | null;
2645
+ reviewedAt: string | null;
2646
+ reviewNotes: string | null;
2647
+ hiddenAt: string | null;
2648
+ hiddenReasonPublic: string | null;
2418
2649
  };
2419
2650
  type UpdateAppPage = {
2420
- slug?: AppPageSlug | null;
2421
2651
  categories?: AppPageCategories;
2422
2652
  tagline?: AppPageTagline | null;
2423
2653
  bannerUrl?: string | null;
@@ -2440,6 +2670,9 @@ type UpdateAppPage = {
2440
2670
  type AppPageGalleryUploadResponse = {
2441
2671
  url: string;
2442
2672
  };
2673
+ type AppPageBipToggle = {
2674
+ enabled: boolean;
2675
+ };
2443
2676
  type AdminActivePlayersResponse = {
2444
2677
  players: Array<AdminActivePlayer>;
2445
2678
  total: number;
@@ -2578,6 +2811,11 @@ type AdminAppPageItem = {
2578
2811
  hiddenAt: string | null;
2579
2812
  hiddenReasonInternal: string | null;
2580
2813
  pendingChangesSubmittedAt: string | null;
2814
+ bipEnabled: boolean;
2815
+ bipStatus: "draft" | "pending_review" | "published" | "hidden";
2816
+ bipFirstPublishedAt: string | null;
2817
+ bipHiddenAt: string | null;
2818
+ openReportCount: number;
2581
2819
  };
2582
2820
  type AdminAppPageStatusResponse = {
2583
2821
  status: "draft" | "pending_review" | "published" | "hidden";
@@ -2603,6 +2841,25 @@ type AdminAppPageDiffField = {
2603
2841
  from: string;
2604
2842
  to: string;
2605
2843
  };
2844
+ type AdminAppPageBipStatusResponse = {
2845
+ bipStatus: "draft" | "pending_review" | "published" | "hidden";
2846
+ };
2847
+ type AdminAppContentReportListResponse = {
2848
+ reports: Array<AdminAppContentReportItem>;
2849
+ total: number;
2850
+ hasMore: boolean;
2851
+ };
2852
+ type AdminAppContentReportItem = {
2853
+ id: string;
2854
+ category: AppContentReportCategory;
2855
+ details: string | null;
2856
+ status: AppContentReportStatus;
2857
+ acknowledgedAt: string | null;
2858
+ createdAt: string;
2859
+ appId: string;
2860
+ appName: string;
2861
+ appSlug: string | null;
2862
+ };
2606
2863
  type PlatformFeesResponse = {
2607
2864
  purchaseFeeBps: number;
2608
2865
  stakeFeeBps: number;
@@ -2783,6 +3040,13 @@ type AppealResolveRequest = {
2783
3040
  decision: "refund" | "dismiss";
2784
3041
  notes?: string;
2785
3042
  };
3043
+ type PaymentRatesResponse = {
3044
+ asOf: string;
3045
+ ethUsd: number | null;
3046
+ solUsd: number | null;
3047
+ solLamportsPerCent: number | null;
3048
+ tronUsdPerToken: number;
3049
+ };
2786
3050
  type AppealFileResponse = {
2787
3051
  appealId: string;
2788
3052
  paymentId: string;
@@ -2831,7 +3095,7 @@ type OauthPaymentPayoutRequest = {
2831
3095
  metadata?: PaymentMetadata;
2832
3096
  };
2833
3097
  type OauthPaymentDistributeResponse = {
2834
- distributionId: string;
3098
+ distributionId?: string;
2835
3099
  txHash: string;
2836
3100
  blockNumber: string;
2837
3101
  potId: string;
@@ -2954,7 +3218,7 @@ declare function listActivePlayers(context: TransportContext, input: {
2954
3218
  //#region src/admin/app-pages.d.ts
2955
3219
  declare function listAppPages(context: TransportContext, input: {
2956
3220
  readonly bearer: string;
2957
- readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes";
3221
+ readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes" | "bip_pending_review";
2958
3222
  }): Promise<AdminAppPageListResponse>;
2959
3223
  declare function getAppPageChanges(context: TransportContext, input: {
2960
3224
  readonly bearer: string;
@@ -2979,6 +3243,20 @@ declare function reviewAppPage(context: TransportContext, input: {
2979
3243
  readonly appId: string;
2980
3244
  readonly body: ReviewAppPage;
2981
3245
  }): Promise<AdminAppPageStatusResponse>;
3246
+ declare function reviewAppPageBip(context: TransportContext, input: {
3247
+ readonly bearer: string;
3248
+ readonly appId: string;
3249
+ readonly body: ReviewAppPage;
3250
+ }): Promise<AdminAppPageBipStatusResponse>;
3251
+ declare function hideAppPageBip(context: TransportContext, input: {
3252
+ readonly bearer: string;
3253
+ readonly appId: string;
3254
+ readonly body: HideAppPage;
3255
+ }): Promise<AdminAppPageBipStatusResponse>;
3256
+ declare function unhideAppPageBip(context: TransportContext, input: {
3257
+ readonly bearer: string;
3258
+ readonly appId: string;
3259
+ }): Promise<AdminAppPageBipStatusResponse>;
2982
3260
  //#endregion
2983
3261
  //#region src/admin/appeals.d.ts
2984
3262
  declare function listAppealQueue(context: TransportContext, input: {
@@ -3010,6 +3288,19 @@ declare function resolveAppeal(context: TransportContext, input: {
3010
3288
  readonly body: AppealResolveRequest;
3011
3289
  }): Promise<AppealResolveSignedResponse>;
3012
3290
  //#endregion
3291
+ //#region src/admin/content-reports.d.ts
3292
+ declare function listAdminContentReports(context: TransportContext, input: {
3293
+ readonly bearer: string;
3294
+ readonly status?: "open" | "acknowledged" | "dismissed" | "all";
3295
+ readonly limit?: number;
3296
+ readonly offset?: number;
3297
+ }): Promise<AdminAppContentReportListResponse>;
3298
+ declare function triageAdminContentReport(context: TransportContext, input: {
3299
+ readonly bearer: string;
3300
+ readonly reportId: string;
3301
+ readonly status: "acknowledged" | "dismissed";
3302
+ }): Promise<AppContentReport>;
3303
+ //#endregion
3013
3304
  //#region src/admin/developers.d.ts
3014
3305
  declare function listDeveloperRequests(context: TransportContext, input: {
3015
3306
  readonly bearer: string;
@@ -3149,6 +3440,113 @@ declare function getAppPage(context: TransportContext, input: {
3149
3440
  readonly slug: string;
3150
3441
  }): Promise<PublicAppPage>;
3151
3442
  //#endregion
3443
+ //#region src/catalog/bip-updates.d.ts
3444
+ declare function listBipUpdates(context: TransportContext, input: {
3445
+ readonly bearer?: string;
3446
+ readonly slug: string;
3447
+ readonly limit?: number;
3448
+ readonly offset?: number;
3449
+ }): Promise<BipUpdateListResponse>;
3450
+ declare function listBipUpdateComments(context: TransportContext, input: {
3451
+ readonly bearer?: string;
3452
+ readonly slug: string;
3453
+ readonly updateId: string;
3454
+ readonly limit?: number;
3455
+ readonly offset?: number;
3456
+ }): Promise<BipUpdateCommentListResponse>;
3457
+ declare function getMyBipUpdateReactions(context: TransportContext, input: {
3458
+ readonly bearer: string;
3459
+ readonly slug: string;
3460
+ }): Promise<MyBipUpdateReactionsResponse>;
3461
+ declare function setBipUpdateReaction(context: TransportContext, input: {
3462
+ readonly bearer: string;
3463
+ readonly slug: string;
3464
+ readonly updateId: string;
3465
+ readonly body: SetBipUpdateReactionRequest;
3466
+ }): Promise<SetBipUpdateReactionResponse>;
3467
+ declare function commentOnBipUpdate(context: TransportContext, input: {
3468
+ readonly bearer: string;
3469
+ readonly slug: string;
3470
+ readonly updateId: string;
3471
+ readonly body: string;
3472
+ }): Promise<CreateBipUpdateCommentResponse>;
3473
+ declare function deleteBipUpdateComment(context: TransportContext, input: {
3474
+ readonly bearer: string;
3475
+ readonly slug: string;
3476
+ readonly commentId: string;
3477
+ }): Promise<DeleteBipUpdateCommentResponse>;
3478
+ declare function listDeveloperBipUpdates(context: TransportContext, input: {
3479
+ readonly bearer: string;
3480
+ readonly appId: string;
3481
+ readonly limit?: number;
3482
+ readonly offset?: number;
3483
+ }): Promise<BipUpdateListResponse>;
3484
+ declare function createBipUpdate(context: TransportContext, input: {
3485
+ readonly bearer: string;
3486
+ readonly appId: string;
3487
+ readonly body: CreateBipUpdateRequest;
3488
+ }): Promise<BipUpdate>;
3489
+ declare function updateBipUpdate(context: TransportContext, input: {
3490
+ readonly bearer: string;
3491
+ readonly appId: string;
3492
+ readonly updateId: string;
3493
+ readonly body: UpdateBipUpdateRequest;
3494
+ }): Promise<BipUpdate>;
3495
+ declare function deleteBipUpdate(context: TransportContext, input: {
3496
+ readonly bearer: string;
3497
+ readonly appId: string;
3498
+ readonly updateId: string;
3499
+ }): Promise<DeleteBipUpdateResponse>;
3500
+ declare function pinBipUpdate(context: TransportContext, input: {
3501
+ readonly bearer: string;
3502
+ readonly appId: string;
3503
+ readonly updateId: string;
3504
+ }): Promise<BipUpdate>;
3505
+ declare function unpinBipUpdate(context: TransportContext, input: {
3506
+ readonly bearer: string;
3507
+ readonly appId: string;
3508
+ readonly updateId: string;
3509
+ }): Promise<BipUpdate>;
3510
+ declare function uploadBipUpdateMedia(context: TransportContext, input: {
3511
+ readonly bearer: string;
3512
+ readonly appId: string;
3513
+ readonly file: Blob;
3514
+ readonly filename: string;
3515
+ readonly contentType: string;
3516
+ }): Promise<BipUpdateMediaUploadResponse>;
3517
+ declare function getBipInterestCount(context: TransportContext, input: {
3518
+ readonly bearer?: string;
3519
+ readonly slug: string;
3520
+ }): Promise<BipInterestCountResponse>;
3521
+ declare function getMyBipEngagement(context: TransportContext, input: {
3522
+ readonly bearer: string;
3523
+ readonly slug: string;
3524
+ }): Promise<BipEngagementResponse>;
3525
+ declare function registerBipInterest(context: TransportContext, input: {
3526
+ readonly bearer: string;
3527
+ readonly slug: string;
3528
+ readonly interested: boolean;
3529
+ }): Promise<BipEngagementResponse>;
3530
+ declare function subscribeBipUpdates(context: TransportContext, input: {
3531
+ readonly bearer: string;
3532
+ readonly slug: string;
3533
+ readonly subscribed: boolean;
3534
+ }): Promise<BipEngagementResponse>;
3535
+ //#endregion
3536
+ //#region src/catalog/build-in-public.d.ts
3537
+ declare function getBipDirectory(context: TransportContext, input: {
3538
+ readonly bearer?: string;
3539
+ readonly genre?: string;
3540
+ readonly q?: string;
3541
+ readonly sort?: "newest" | "top";
3542
+ readonly before?: string;
3543
+ readonly limit?: number;
3544
+ }): Promise<LibraryListResponse>;
3545
+ declare function getBipPage(context: TransportContext, input: {
3546
+ readonly bearer?: string;
3547
+ readonly slug: string;
3548
+ }): Promise<PublicBipPage>;
3549
+ //#endregion
3152
3550
  //#region src/catalog/content-reports.d.ts
3153
3551
  declare function submitAppContentReport(context: TransportContext, input: {
3154
3552
  readonly appId: string;
@@ -3161,6 +3559,7 @@ declare function getLibrary(context: TransportContext, input: {
3161
3559
  readonly bearer?: string;
3162
3560
  readonly genre?: string;
3163
3561
  readonly q?: string;
3562
+ readonly sort?: "newest" | "top";
3164
3563
  readonly before?: string;
3165
3564
  readonly limit?: number;
3166
3565
  }): Promise<LibraryListResponse>;
@@ -3319,6 +3718,9 @@ declare function getPaymentHistory(context: TransportContext, input: {
3319
3718
  readonly before?: string;
3320
3719
  }): Promise<PaymentHistoryResponse>;
3321
3720
  //#endregion
3721
+ //#region src/dashboard/rates.d.ts
3722
+ declare function getPaymentRates(context: TransportContext): Promise<PaymentRatesResponse>;
3723
+ //#endregion
3322
3724
  //#region src/developer/api-keys.d.ts
3323
3725
  declare function createDeveloperApiKey(context: TransportContext, input: {
3324
3726
  readonly bearer: string;
@@ -3561,6 +3963,19 @@ declare function unpublishAppPage(context: TransportContext, input: {
3561
3963
  readonly bearer: string;
3562
3964
  readonly appId: string;
3563
3965
  }): Promise<AppPageDraft>;
3966
+ declare function setAppPageBip(context: TransportContext, input: {
3967
+ readonly bearer: string;
3968
+ readonly appId: string;
3969
+ readonly body: AppPageBipToggle;
3970
+ }): Promise<AppPageDraft>;
3971
+ declare function submitAppPageBipForReview(context: TransportContext, input: {
3972
+ readonly bearer: string;
3973
+ readonly appId: string;
3974
+ }): Promise<AppPageDraft>;
3975
+ declare function unpublishAppPageBip(context: TransportContext, input: {
3976
+ readonly bearer: string;
3977
+ readonly appId: string;
3978
+ }): Promise<AppPageDraft>;
3564
3979
  //#endregion
3565
3980
  //#region src/developer/participants.d.ts
3566
3981
  declare function listDeveloperAppParticipants(context: TransportContext, input: {
@@ -4093,6 +4508,15 @@ declare function denyPaymentIntent(context: TransportContext, input: {
4093
4508
  readonly bearer: string;
4094
4509
  readonly intentId: string;
4095
4510
  }): Promise<OauthPaymentIntentResolveResponse>;
4511
+ declare function preparePaymentIntentSolana(context: TransportContext, input: {
4512
+ readonly bearer: string;
4513
+ readonly intentId: string;
4514
+ }): Promise<OauthPaymentIntentSolanaPrepareResponse>;
4515
+ declare function completePaymentIntentSolana(context: TransportContext, input: {
4516
+ readonly bearer: string;
4517
+ readonly intentId: string;
4518
+ readonly body: OauthPaymentIntentSolanaCompleteRequest;
4519
+ }): Promise<OauthPaymentIntentResolveResponse>;
4096
4520
  //#endregion
4097
4521
  //#region src/payments/limits.d.ts
4098
4522
  declare function getPaymentLimits(context: TransportContext, input: {
@@ -4347,6 +4771,9 @@ declare function cancelFriendRequest(context: TransportContext, input: {
4347
4771
  declare function listFriends(context: TransportContext, input: {
4348
4772
  readonly bearer: string;
4349
4773
  }): Promise<FriendListResponse>;
4774
+ declare function listFriendsForApp(context: TransportContext, input: {
4775
+ readonly bearer: string;
4776
+ }): Promise<AppFriendListResponse>;
4350
4777
  //#endregion
4351
4778
  //#region src/reads/socials.d.ts
4352
4779
  declare function listSocials(context: TransportContext, input: {
@@ -4574,6 +5001,11 @@ declare class TronNodeClient {
4574
5001
  body: MintRequestInput;
4575
5002
  }) => Promise<MintRequestResult>;
4576
5003
  };
5004
+ get friends(): {
5005
+ list: (input: {
5006
+ bearer: string;
5007
+ }) => Promise<AppFriendListResponse>;
5008
+ };
4577
5009
  get socials(): {
4578
5010
  list: (input: {
4579
5011
  bearer: string;
@@ -4595,4 +5027,4 @@ declare class TronNodeClient {
4595
5027
  };
4596
5028
  }
4597
5029
  //#endregion
4598
- 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, 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 };
5030
+ 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, pinBipUpdate, 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, 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 };