@metatrongg/sdk 0.8.0-dev.e9ef082 → 0.8.0-dev.edb8e7e

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;
@@ -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
  };
@@ -387,6 +402,7 @@ type PublicAppPage = {
387
402
  paymentsMode: AppPagePaymentsMode;
388
403
  oauthScopes: Array<string>;
389
404
  chains: Array<string>;
405
+ devlog: boolean;
390
406
  publishedAt: string;
391
407
  updatedAt: string;
392
408
  };
@@ -424,6 +440,121 @@ type AppPageAgeRating = "everyone" | "13_plus" | "16_plus" | "18_plus" | null;
424
440
  type AppPageLanguages = Array<"en" | "es" | "fr" | "de" | "pt" | "it" | "ru" | "ja" | "ko" | "zh" | "hi" | "ar" | "tr" | "vi" | "id" | "th" | "pl" | "nl">;
425
441
  type AppPageReleaseStatus = "live" | "open_beta" | "coming_soon";
426
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
+ };
427
558
  type ReviewListResponse = {
428
559
  aggregate: ReviewAggregate;
429
560
  reviews: Array<Review>;
@@ -457,12 +588,6 @@ type ReviewReactionCounts = {
457
588
  unhelpful: number;
458
589
  funny: number;
459
590
  };
460
- type ReviewAuthor = {
461
- userId: string;
462
- handle: string | null;
463
- name: string | null;
464
- avatarUrl: string | null;
465
- };
466
591
  type ReviewerStats = {
467
592
  playtimeSecondsThisGame: number;
468
593
  gamesPlayed: number;
@@ -653,7 +778,11 @@ type ActivityRow = ({
653
778
  kind: "referral_earning";
654
779
  } & ActivityRowReferralEarning) | ({
655
780
  kind: "nft_charge";
656
- } & ActivityRowNftCharge);
781
+ } & ActivityRowNftCharge) | ({
782
+ kind: "solana_stake";
783
+ } & ActivityRowSolanaStake) | ({
784
+ kind: "solana_pot_leg";
785
+ } & ActivityRowSolanaPotLeg);
657
786
  type ActivityRowPayment = {
658
787
  kind: "payment";
659
788
  groupId: string | null;
@@ -981,6 +1110,56 @@ type ActivityRowNftCharge = {
981
1110
  counterpartyHandle: string | null;
982
1111
  counterpartyDisplayName: string | null;
983
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
+ };
984
1163
  type OutstandingResponse = {
985
1164
  rows: Array<OutstandingByToken>;
986
1165
  };
@@ -1216,12 +1395,15 @@ type WalletListResponse = {
1216
1395
  wallets: Array<WalletItem>;
1217
1396
  };
1218
1397
  type WalletChainList = Array<{
1219
- id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia";
1398
+ id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia" | "base-sepolia" | "solana-mainnet" | "solana-devnet";
1220
1399
  displayName: string;
1221
- chainId: number;
1400
+ family: "evm" | "solana";
1401
+ nativeSymbol: string;
1402
+ chainId?: number;
1222
1403
  }>;
1223
1404
  type WalletItem = {
1224
- address: string;
1405
+ address: string | string;
1406
+ family: "evm" | "solana";
1225
1407
  label: WalletLabel;
1226
1408
  kind: "personal" | "app";
1227
1409
  app: WalletAppLink;
@@ -1238,6 +1420,9 @@ type WalletBalances = {
1238
1420
  "ethereum-mainnet"?: WalletChainBalance;
1239
1421
  "base-mainnet"?: WalletChainBalance;
1240
1422
  "ethereum-sepolia"?: WalletChainBalance;
1423
+ "base-sepolia"?: WalletChainBalance;
1424
+ "solana-mainnet"?: WalletChainBalance;
1425
+ "solana-devnet"?: WalletChainBalance;
1241
1426
  };
1242
1427
  type WalletChainBalance = {
1243
1428
  native: string;
@@ -1247,12 +1432,14 @@ type WalletDelegationStatus = {
1247
1432
  mode: WalletDelegationMode;
1248
1433
  caps: WalletDelegationCaps;
1249
1434
  policyId: string | null;
1435
+ slippageBps: DelegationSlippageBps;
1250
1436
  };
1251
1437
  type WalletDelegationMode = "infinite" | "custom" | "scoped" | null;
1252
1438
  type WalletDelegationCaps = {
1253
1439
  native: string;
1254
1440
  usdc: string;
1255
1441
  } | null;
1442
+ type DelegationSlippageBps = number | null;
1256
1443
  type WalletLabelUpdateResponse = {
1257
1444
  address: string;
1258
1445
  label: WalletLabel;
@@ -1350,6 +1537,7 @@ type MessageTransactionNftTransfer = {
1350
1537
  tokenId: string;
1351
1538
  amount: string;
1352
1539
  itemName: string | null;
1540
+ imageAssetId?: string | null;
1353
1541
  };
1354
1542
  type GroupThreadSummary = {
1355
1543
  kind: "group";
@@ -1911,6 +2099,18 @@ type NotificationItem = {
1911
2099
  payload: AppPageRejectedNotificationPayload;
1912
2100
  read: boolean;
1913
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;
1914
2114
  } | {
1915
2115
  id: string;
1916
2116
  kind: "app_participant_invite";
@@ -1941,14 +2141,25 @@ type FriendAcceptedNotificationPayload = {
1941
2141
  type AppPageApprovedNotificationPayload = {
1942
2142
  appId: string;
1943
2143
  appName: string;
1944
- scope: "publish" | "changes";
2144
+ scope: "publish" | "changes" | "bip_publish";
1945
2145
  };
1946
2146
  type AppPageRejectedNotificationPayload = {
1947
2147
  appId: string;
1948
2148
  appName: string;
1949
- scope: "publish" | "changes";
2149
+ scope: "publish" | "changes" | "bip_publish";
1950
2150
  notes: string;
1951
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
+ };
1952
2163
  type AppParticipantInviteNotificationPayload = {
1953
2164
  appId: string;
1954
2165
  appName: string;
@@ -1978,6 +2189,9 @@ type FriendListItem = {
1978
2189
  onlineStatus: OnlineStatus;
1979
2190
  };
1980
2191
  type OnlineStatus = "online" | "offline";
2192
+ type AppFriendListResponse = {
2193
+ friends: Array<ThreadParticipant>;
2194
+ };
1981
2195
  type FriendRequestDecision = {
1982
2196
  decision: "accept" | "reject";
1983
2197
  };
@@ -2113,12 +2327,14 @@ type UpdateDeveloperApp = {
2113
2327
  redirectUris?: Array<string>;
2114
2328
  embedOrigins?: Array<EmbedOrigin>;
2115
2329
  acceptedCurrencies?: AcceptedCurrencies;
2330
+ acceptedNetworks?: AcceptedNetworks;
2116
2331
  paymentStatusWebhookUrl?: string | null;
2117
2332
  paymentStatusWebhookUrlTest?: string | null;
2118
2333
  };
2119
2334
  type EmbedOrigin = string;
2120
2335
  type AcceptedCurrencies = Array<PlatformCurrency>;
2121
2336
  type PlatformCurrency = "eth" | "tron";
2337
+ type AcceptedNetworks = Array<PaymentNetwork> | null;
2122
2338
  type DeveloperLogoUploadResponse = {
2123
2339
  logoUrl: string | null;
2124
2340
  };
@@ -2181,7 +2397,7 @@ type DeveloperAppWalletsResponse = {
2181
2397
  };
2182
2398
  type DeveloperAppWalletItem = {
2183
2399
  chain: string;
2184
- address: string;
2400
+ address: string | string;
2185
2401
  custody: "server" | null;
2186
2402
  walletId: string | null;
2187
2403
  autoSweepEnabled: boolean;
@@ -2202,7 +2418,7 @@ type DeveloperAppProvisionWalletResponse = {
2202
2418
  chain: string;
2203
2419
  custody: "server";
2204
2420
  walletId: string;
2205
- address: string;
2421
+ address: string | string;
2206
2422
  };
2207
2423
  type DeveloperAppWithdrawResponse = {
2208
2424
  appId: string;
@@ -2365,6 +2581,7 @@ type DeveloperAppItem = {
2365
2581
  redirectUris: Array<string>;
2366
2582
  embedOrigins: Array<EmbedOrigin>;
2367
2583
  acceptedCurrencies: AcceptedCurrencies;
2584
+ acceptedNetworks: AcceptedNetworks;
2368
2585
  payoutAddresses: Array<DeveloperAppPayoutAddressItem>;
2369
2586
  keys: Array<DeveloperAppKeyItem>;
2370
2587
  pendingProductionRequestId: string | null;
@@ -2419,6 +2636,16 @@ type AppPageDraft = {
2419
2636
  hiddenAt: string | null;
2420
2637
  hiddenReasonPublic: string | null;
2421
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;
2422
2649
  };
2423
2650
  type UpdateAppPage = {
2424
2651
  categories?: AppPageCategories;
@@ -2443,6 +2670,9 @@ type UpdateAppPage = {
2443
2670
  type AppPageGalleryUploadResponse = {
2444
2671
  url: string;
2445
2672
  };
2673
+ type AppPageBipToggle = {
2674
+ enabled: boolean;
2675
+ };
2446
2676
  type AdminActivePlayersResponse = {
2447
2677
  players: Array<AdminActivePlayer>;
2448
2678
  total: number;
@@ -2514,6 +2744,7 @@ type AdminAuditListResponse = {
2514
2744
  total: number;
2515
2745
  offset: number;
2516
2746
  limit: number;
2747
+ nextCursor: string | null;
2517
2748
  };
2518
2749
  type AdminAuditListItem = {
2519
2750
  id: string;
@@ -2581,6 +2812,11 @@ type AdminAppPageItem = {
2581
2812
  hiddenAt: string | null;
2582
2813
  hiddenReasonInternal: string | null;
2583
2814
  pendingChangesSubmittedAt: string | null;
2815
+ bipEnabled: boolean;
2816
+ bipStatus: "draft" | "pending_review" | "published" | "hidden";
2817
+ bipFirstPublishedAt: string | null;
2818
+ bipHiddenAt: string | null;
2819
+ openReportCount: number;
2584
2820
  };
2585
2821
  type AdminAppPageStatusResponse = {
2586
2822
  status: "draft" | "pending_review" | "published" | "hidden";
@@ -2606,6 +2842,25 @@ type AdminAppPageDiffField = {
2606
2842
  from: string;
2607
2843
  to: string;
2608
2844
  };
2845
+ type AdminAppPageBipStatusResponse = {
2846
+ bipStatus: "draft" | "pending_review" | "published" | "hidden";
2847
+ };
2848
+ type AdminAppContentReportListResponse = {
2849
+ reports: Array<AdminAppContentReportItem>;
2850
+ total: number;
2851
+ hasMore: boolean;
2852
+ };
2853
+ type AdminAppContentReportItem = {
2854
+ id: string;
2855
+ category: AppContentReportCategory;
2856
+ details: string | null;
2857
+ status: AppContentReportStatus;
2858
+ acknowledgedAt: string | null;
2859
+ createdAt: string;
2860
+ appId: string;
2861
+ appName: string;
2862
+ appSlug: string | null;
2863
+ };
2609
2864
  type PlatformFeesResponse = {
2610
2865
  purchaseFeeBps: number;
2611
2866
  stakeFeeBps: number;
@@ -2786,6 +3041,13 @@ type AppealResolveRequest = {
2786
3041
  decision: "refund" | "dismiss";
2787
3042
  notes?: string;
2788
3043
  };
3044
+ type PaymentRatesResponse = {
3045
+ asOf: string;
3046
+ ethUsd: number | null;
3047
+ solUsd: number | null;
3048
+ solLamportsPerCent: number | null;
3049
+ tronUsdPerToken: number;
3050
+ };
2789
3051
  type AppealFileResponse = {
2790
3052
  appealId: string;
2791
3053
  paymentId: string;
@@ -2834,7 +3096,7 @@ type OauthPaymentPayoutRequest = {
2834
3096
  metadata?: PaymentMetadata;
2835
3097
  };
2836
3098
  type OauthPaymentDistributeResponse = {
2837
- distributionId: string;
3099
+ distributionId?: string;
2838
3100
  txHash: string;
2839
3101
  blockNumber: string;
2840
3102
  potId: string;
@@ -2957,7 +3219,7 @@ declare function listActivePlayers(context: TransportContext, input: {
2957
3219
  //#region src/admin/app-pages.d.ts
2958
3220
  declare function listAppPages(context: TransportContext, input: {
2959
3221
  readonly bearer: string;
2960
- readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes";
3222
+ readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes" | "bip_pending_review";
2961
3223
  }): Promise<AdminAppPageListResponse>;
2962
3224
  declare function getAppPageChanges(context: TransportContext, input: {
2963
3225
  readonly bearer: string;
@@ -2982,6 +3244,20 @@ declare function reviewAppPage(context: TransportContext, input: {
2982
3244
  readonly appId: string;
2983
3245
  readonly body: ReviewAppPage;
2984
3246
  }): Promise<AdminAppPageStatusResponse>;
3247
+ declare function reviewAppPageBip(context: TransportContext, input: {
3248
+ readonly bearer: string;
3249
+ readonly appId: string;
3250
+ readonly body: ReviewAppPage;
3251
+ }): Promise<AdminAppPageBipStatusResponse>;
3252
+ declare function hideAppPageBip(context: TransportContext, input: {
3253
+ readonly bearer: string;
3254
+ readonly appId: string;
3255
+ readonly body: HideAppPage;
3256
+ }): Promise<AdminAppPageBipStatusResponse>;
3257
+ declare function unhideAppPageBip(context: TransportContext, input: {
3258
+ readonly bearer: string;
3259
+ readonly appId: string;
3260
+ }): Promise<AdminAppPageBipStatusResponse>;
2985
3261
  //#endregion
2986
3262
  //#region src/admin/appeals.d.ts
2987
3263
  declare function listAppealQueue(context: TransportContext, input: {
@@ -3013,6 +3289,19 @@ declare function resolveAppeal(context: TransportContext, input: {
3013
3289
  readonly body: AppealResolveRequest;
3014
3290
  }): Promise<AppealResolveSignedResponse>;
3015
3291
  //#endregion
3292
+ //#region src/admin/content-reports.d.ts
3293
+ declare function listAdminContentReports(context: TransportContext, input: {
3294
+ readonly bearer: string;
3295
+ readonly status?: "open" | "acknowledged" | "dismissed" | "all";
3296
+ readonly limit?: number;
3297
+ readonly offset?: number;
3298
+ }): Promise<AdminAppContentReportListResponse>;
3299
+ declare function triageAdminContentReport(context: TransportContext, input: {
3300
+ readonly bearer: string;
3301
+ readonly reportId: string;
3302
+ readonly status: "acknowledged" | "dismissed";
3303
+ }): Promise<AppContentReport>;
3304
+ //#endregion
3016
3305
  //#region src/admin/developers.d.ts
3017
3306
  declare function listDeveloperRequests(context: TransportContext, input: {
3018
3307
  readonly bearer: string;
@@ -3142,6 +3431,7 @@ declare function listAudit(context: TransportContext, input: {
3142
3431
  readonly actorId?: string;
3143
3432
  readonly targetType?: string;
3144
3433
  readonly targetId?: string;
3434
+ readonly cursor?: string;
3145
3435
  readonly offset?: number;
3146
3436
  readonly limit?: number;
3147
3437
  }): Promise<AdminAuditListResponse>;
@@ -3152,6 +3442,113 @@ declare function getAppPage(context: TransportContext, input: {
3152
3442
  readonly slug: string;
3153
3443
  }): Promise<PublicAppPage>;
3154
3444
  //#endregion
3445
+ //#region src/catalog/bip-updates.d.ts
3446
+ declare function listBipUpdates(context: TransportContext, input: {
3447
+ readonly bearer?: string;
3448
+ readonly slug: string;
3449
+ readonly limit?: number;
3450
+ readonly offset?: number;
3451
+ }): Promise<BipUpdateListResponse>;
3452
+ declare function listBipUpdateComments(context: TransportContext, input: {
3453
+ readonly bearer?: string;
3454
+ readonly slug: string;
3455
+ readonly updateId: string;
3456
+ readonly limit?: number;
3457
+ readonly offset?: number;
3458
+ }): Promise<BipUpdateCommentListResponse>;
3459
+ declare function getMyBipUpdateReactions(context: TransportContext, input: {
3460
+ readonly bearer: string;
3461
+ readonly slug: string;
3462
+ }): Promise<MyBipUpdateReactionsResponse>;
3463
+ declare function setBipUpdateReaction(context: TransportContext, input: {
3464
+ readonly bearer: string;
3465
+ readonly slug: string;
3466
+ readonly updateId: string;
3467
+ readonly body: SetBipUpdateReactionRequest;
3468
+ }): Promise<SetBipUpdateReactionResponse>;
3469
+ declare function commentOnBipUpdate(context: TransportContext, input: {
3470
+ readonly bearer: string;
3471
+ readonly slug: string;
3472
+ readonly updateId: string;
3473
+ readonly body: string;
3474
+ }): Promise<CreateBipUpdateCommentResponse>;
3475
+ declare function deleteBipUpdateComment(context: TransportContext, input: {
3476
+ readonly bearer: string;
3477
+ readonly slug: string;
3478
+ readonly commentId: string;
3479
+ }): Promise<DeleteBipUpdateCommentResponse>;
3480
+ declare function listDeveloperBipUpdates(context: TransportContext, input: {
3481
+ readonly bearer: string;
3482
+ readonly appId: string;
3483
+ readonly limit?: number;
3484
+ readonly offset?: number;
3485
+ }): Promise<BipUpdateListResponse>;
3486
+ declare function createBipUpdate(context: TransportContext, input: {
3487
+ readonly bearer: string;
3488
+ readonly appId: string;
3489
+ readonly body: CreateBipUpdateRequest;
3490
+ }): Promise<BipUpdate>;
3491
+ declare function updateBipUpdate(context: TransportContext, input: {
3492
+ readonly bearer: string;
3493
+ readonly appId: string;
3494
+ readonly updateId: string;
3495
+ readonly body: UpdateBipUpdateRequest;
3496
+ }): Promise<BipUpdate>;
3497
+ declare function deleteBipUpdate(context: TransportContext, input: {
3498
+ readonly bearer: string;
3499
+ readonly appId: string;
3500
+ readonly updateId: string;
3501
+ }): Promise<DeleteBipUpdateResponse>;
3502
+ declare function pinBipUpdate(context: TransportContext, input: {
3503
+ readonly bearer: string;
3504
+ readonly appId: string;
3505
+ readonly updateId: string;
3506
+ }): Promise<BipUpdate>;
3507
+ declare function unpinBipUpdate(context: TransportContext, input: {
3508
+ readonly bearer: string;
3509
+ readonly appId: string;
3510
+ readonly updateId: string;
3511
+ }): Promise<BipUpdate>;
3512
+ declare function uploadBipUpdateMedia(context: TransportContext, input: {
3513
+ readonly bearer: string;
3514
+ readonly appId: string;
3515
+ readonly file: Blob;
3516
+ readonly filename: string;
3517
+ readonly contentType: string;
3518
+ }): Promise<BipUpdateMediaUploadResponse>;
3519
+ declare function getBipInterestCount(context: TransportContext, input: {
3520
+ readonly bearer?: string;
3521
+ readonly slug: string;
3522
+ }): Promise<BipInterestCountResponse>;
3523
+ declare function getMyBipEngagement(context: TransportContext, input: {
3524
+ readonly bearer: string;
3525
+ readonly slug: string;
3526
+ }): Promise<BipEngagementResponse>;
3527
+ declare function registerBipInterest(context: TransportContext, input: {
3528
+ readonly bearer: string;
3529
+ readonly slug: string;
3530
+ readonly interested: boolean;
3531
+ }): Promise<BipEngagementResponse>;
3532
+ declare function subscribeBipUpdates(context: TransportContext, input: {
3533
+ readonly bearer: string;
3534
+ readonly slug: string;
3535
+ readonly subscribed: boolean;
3536
+ }): Promise<BipEngagementResponse>;
3537
+ //#endregion
3538
+ //#region src/catalog/build-in-public.d.ts
3539
+ declare function getBipDirectory(context: TransportContext, input: {
3540
+ readonly bearer?: string;
3541
+ readonly genre?: string;
3542
+ readonly q?: string;
3543
+ readonly sort?: "newest" | "top";
3544
+ readonly before?: string;
3545
+ readonly limit?: number;
3546
+ }): Promise<LibraryListResponse>;
3547
+ declare function getBipPage(context: TransportContext, input: {
3548
+ readonly bearer?: string;
3549
+ readonly slug: string;
3550
+ }): Promise<PublicBipPage>;
3551
+ //#endregion
3155
3552
  //#region src/catalog/content-reports.d.ts
3156
3553
  declare function submitAppContentReport(context: TransportContext, input: {
3157
3554
  readonly appId: string;
@@ -3164,6 +3561,7 @@ declare function getLibrary(context: TransportContext, input: {
3164
3561
  readonly bearer?: string;
3165
3562
  readonly genre?: string;
3166
3563
  readonly q?: string;
3564
+ readonly sort?: "newest" | "top";
3167
3565
  readonly before?: string;
3168
3566
  readonly limit?: number;
3169
3567
  }): Promise<LibraryListResponse>;
@@ -3322,6 +3720,9 @@ declare function getPaymentHistory(context: TransportContext, input: {
3322
3720
  readonly before?: string;
3323
3721
  }): Promise<PaymentHistoryResponse>;
3324
3722
  //#endregion
3723
+ //#region src/dashboard/rates.d.ts
3724
+ declare function getPaymentRates(context: TransportContext): Promise<PaymentRatesResponse>;
3725
+ //#endregion
3325
3726
  //#region src/developer/api-keys.d.ts
3326
3727
  declare function createDeveloperApiKey(context: TransportContext, input: {
3327
3728
  readonly bearer: string;
@@ -3564,6 +3965,19 @@ declare function unpublishAppPage(context: TransportContext, input: {
3564
3965
  readonly bearer: string;
3565
3966
  readonly appId: string;
3566
3967
  }): Promise<AppPageDraft>;
3968
+ declare function setAppPageBip(context: TransportContext, input: {
3969
+ readonly bearer: string;
3970
+ readonly appId: string;
3971
+ readonly body: AppPageBipToggle;
3972
+ }): Promise<AppPageDraft>;
3973
+ declare function submitAppPageBipForReview(context: TransportContext, input: {
3974
+ readonly bearer: string;
3975
+ readonly appId: string;
3976
+ }): Promise<AppPageDraft>;
3977
+ declare function unpublishAppPageBip(context: TransportContext, input: {
3978
+ readonly bearer: string;
3979
+ readonly appId: string;
3980
+ }): Promise<AppPageDraft>;
3567
3981
  //#endregion
3568
3982
  //#region src/developer/participants.d.ts
3569
3983
  declare function listDeveloperAppParticipants(context: TransportContext, input: {
@@ -4096,6 +4510,15 @@ declare function denyPaymentIntent(context: TransportContext, input: {
4096
4510
  readonly bearer: string;
4097
4511
  readonly intentId: string;
4098
4512
  }): Promise<OauthPaymentIntentResolveResponse>;
4513
+ declare function preparePaymentIntentSolana(context: TransportContext, input: {
4514
+ readonly bearer: string;
4515
+ readonly intentId: string;
4516
+ }): Promise<OauthPaymentIntentSolanaPrepareResponse>;
4517
+ declare function completePaymentIntentSolana(context: TransportContext, input: {
4518
+ readonly bearer: string;
4519
+ readonly intentId: string;
4520
+ readonly body: OauthPaymentIntentSolanaCompleteRequest;
4521
+ }): Promise<OauthPaymentIntentResolveResponse>;
4099
4522
  //#endregion
4100
4523
  //#region src/payments/limits.d.ts
4101
4524
  declare function getPaymentLimits(context: TransportContext, input: {
@@ -4350,6 +4773,9 @@ declare function cancelFriendRequest(context: TransportContext, input: {
4350
4773
  declare function listFriends(context: TransportContext, input: {
4351
4774
  readonly bearer: string;
4352
4775
  }): Promise<FriendListResponse>;
4776
+ declare function listFriendsForApp(context: TransportContext, input: {
4777
+ readonly bearer: string;
4778
+ }): Promise<AppFriendListResponse>;
4353
4779
  //#endregion
4354
4780
  //#region src/reads/socials.d.ts
4355
4781
  declare function listSocials(context: TransportContext, input: {
@@ -4577,6 +5003,11 @@ declare class TronNodeClient {
4577
5003
  body: MintRequestInput;
4578
5004
  }) => Promise<MintRequestResult>;
4579
5005
  };
5006
+ get friends(): {
5007
+ list: (input: {
5008
+ bearer: string;
5009
+ }) => Promise<AppFriendListResponse>;
5010
+ };
4580
5011
  get socials(): {
4581
5012
  list: (input: {
4582
5013
  bearer: string;
@@ -4598,4 +5029,4 @@ declare class TronNodeClient {
4598
5029
  };
4599
5030
  }
4600
5031
  //#endregion
4601
- 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 };
5032
+ 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 };