@metatrongg/sdk 0.8.0-dev.65a4da4 → 0.8.0-dev.731f2ff

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.
@@ -2,7 +2,7 @@ import * as z from "zod";
2
2
 
3
3
  //#region src/core/dedup.d.ts
4
4
  type InflightDedup = {
5
- readonly run: <T>(key: string, fn: () => Promise<T>) => Promise<T>;
5
+ readonly run: <T>(key: string, function_: () => Promise<T>) => Promise<T>;
6
6
  };
7
7
  declare function createInflightDedup(): InflightDedup;
8
8
  //#endregion
@@ -89,8 +89,8 @@ type TransportContext = {
89
89
  readonly rateLimiter?: RateLimiter | undefined;
90
90
  readonly dedupe?: InflightDedup | undefined;
91
91
  };
92
- declare function sendJson<T>(ctx: TransportContext, options: RequestOptions): Promise<T>;
93
- declare function send(ctx: TransportContext, options: RequestOptions): Promise<Response>;
92
+ declare function sendJson<T>(context: TransportContext, options: RequestOptions): Promise<T>;
93
+ declare function send(context: TransportContext, options: RequestOptions): Promise<Response>;
94
94
  declare function parseJson<T>(response: Response): Promise<T>;
95
95
  //#endregion
96
96
  //#region src/generated/types.gen.d.ts
@@ -376,9 +376,16 @@ type PublicAppPage = {
376
376
  chapters: AppPageChapters;
377
377
  links: AppPageLinks;
378
378
  studio: PublicAppPageStudio;
379
+ platforms: AppPagePlatforms;
380
+ gameType: AppPageGameType;
381
+ ageRating: AppPageAgeRating;
382
+ languages: AppPageLanguages;
383
+ releaseStatus: AppPageReleaseStatus;
384
+ paymentsMode: AppPagePaymentsMode;
379
385
  oauthScopes: Array<string>;
380
386
  chains: Array<string>;
381
387
  publishedAt: string;
388
+ updatedAt: string;
382
389
  };
383
390
  type AppPageCategories = Array<"adventure" | "battle_royale" | "board" | "cards" | "casino" | "casual" | "fighting" | "idle" | "mmo" | "moba" | "platformer" | "prediction" | "puzzle" | "racing" | "rhythm" | "roguelike" | "rpg" | "rts" | "sandbox" | "shooter" | "simulation" | "sports" | "strategy" | "survival" | "tools" | "tower_defense" | "visual_novel" | "other">;
384
391
  type AppPageTagline = string;
@@ -401,12 +408,19 @@ type AppPageLink = {
401
408
  order: number;
402
409
  };
403
410
  type PublicAppPageStudio = {
411
+ ownerUserId: string | null;
404
412
  name: string | null;
405
413
  logoUrl: string | null;
406
414
  websiteUrl: string | null;
407
415
  xHandle: string | null;
408
416
  githubUrl: string | null;
409
417
  };
418
+ type AppPagePlatforms = Array<"web" | "ios" | "android" | "pc" | "playstation" | "xbox" | "switch">;
419
+ type AppPageGameType = "single_player" | "multiplayer" | "both" | null;
420
+ type AppPageAgeRating = "everyone" | "13_plus" | "16_plus" | "18_plus" | null;
421
+ type AppPageLanguages = Array<"en" | "es" | "fr" | "de" | "pt" | "it" | "ru" | "ja" | "ko" | "zh" | "hi" | "ar" | "tr" | "vi" | "id" | "th" | "pl" | "nl">;
422
+ type AppPageReleaseStatus = "live" | "open_beta" | "coming_soon";
423
+ type AppPagePaymentsMode = "tron" | "onchain" | "both" | null;
410
424
  type ReviewListResponse = {
411
425
  aggregate: ReviewAggregate;
412
426
  reviews: Array<Review>;
@@ -414,38 +428,49 @@ type ReviewListResponse = {
414
428
  hasMore: boolean;
415
429
  };
416
430
  type ReviewAggregate = {
417
- average: number | null;
418
431
  count: number;
419
- distribution: ReviewDistribution;
420
- };
421
- type ReviewDistribution = {
422
- 1: number;
423
- 2: number;
424
- 3: number;
425
- 4: number;
426
- 5: number;
432
+ recommendedCount: number;
433
+ recommendedPct: number | null;
434
+ summaryLabel: ReviewSummaryLabel;
427
435
  };
436
+ type ReviewSummaryLabel = "overwhelmingly_positive" | "very_positive" | "positive" | "mostly_positive" | "mixed" | "mostly_negative" | "negative" | "overwhelmingly_negative" | null;
428
437
  type Review = {
429
438
  id: string;
430
- rating: ReviewRating;
439
+ recommended: ReviewRecommended;
431
440
  body: ReviewBody;
441
+ reactions: ReviewReactionCounts;
442
+ tippedCents: number;
443
+ commentCount: number;
432
444
  author: ReviewAuthor;
445
+ authorStats: ReviewerStats;
433
446
  developerReply: ReviewReply;
434
447
  createdAt: string;
435
448
  updatedAt: string;
436
449
  };
437
- type ReviewRating = number;
450
+ type ReviewRecommended = boolean;
438
451
  type ReviewBody = string;
452
+ type ReviewReactionCounts = {
453
+ helpful: number;
454
+ unhelpful: number;
455
+ funny: number;
456
+ };
439
457
  type ReviewAuthor = {
458
+ userId: string;
459
+ handle: string | null;
440
460
  name: string | null;
441
461
  avatarUrl: string | null;
442
462
  };
463
+ type ReviewerStats = {
464
+ playtimeSecondsThisGame: number;
465
+ gamesPlayed: number;
466
+ reviewsWritten: number;
467
+ };
443
468
  type ReviewReply = {
444
469
  body: ReviewReplyBody;
445
470
  repliedAt: string;
446
471
  } | null;
447
472
  type ReviewReplyBody = string;
448
- type ReviewSort = "newest" | "oldest" | "highest" | "lowest";
473
+ type ReviewSort = "newest" | "oldest" | "helpful";
449
474
  type MyReviewResponse = {
450
475
  eligible: boolean;
451
476
  eligibleVia: ReviewEligibilityReason;
@@ -455,15 +480,67 @@ type MyReviewResponse = {
455
480
  type ReviewEligibilityReason = "payment" | "reward" | null;
456
481
  type OwnReview = {
457
482
  id: string;
458
- rating: ReviewRating;
483
+ recommended: ReviewRecommended;
459
484
  body: ReviewBody;
460
485
  createdAt: string;
461
486
  updatedAt: string;
462
487
  } | null;
463
488
  type UpsertReviewRequest = {
464
- rating: ReviewRating;
489
+ recommended: ReviewRecommended;
465
490
  body: ReviewBody;
466
491
  };
492
+ type MyReviewReactionsResponse = {
493
+ reactions: Array<MyReviewReaction>;
494
+ };
495
+ type MyReviewReaction = {
496
+ reviewId: string;
497
+ vote: ReviewVote;
498
+ funny: boolean;
499
+ };
500
+ type ReviewVote = "helpful" | "unhelpful" | null;
501
+ type SetReviewReactionResponse = {
502
+ reactions: ReviewReactionCounts;
503
+ vote: ReviewVote;
504
+ funny: boolean;
505
+ };
506
+ type SetReviewReactionRequest = {
507
+ vote: ReviewVote;
508
+ funny: boolean;
509
+ };
510
+ type TipReviewResponse = {
511
+ status: "completed";
512
+ amountCents: number;
513
+ balanceCents: number;
514
+ tippedCents: number;
515
+ };
516
+ type TipReviewRequest = {
517
+ amountCents: number;
518
+ note?: string;
519
+ challengeId?: string;
520
+ signature?: string;
521
+ };
522
+ type ReviewCommentListResponse = {
523
+ comments: Array<ReviewComment>;
524
+ total: number;
525
+ hasMore: boolean;
526
+ };
527
+ type ReviewComment = {
528
+ id: string;
529
+ body: ReviewCommentBody;
530
+ author: ReviewAuthor;
531
+ createdAt: string;
532
+ };
533
+ type ReviewCommentBody = string;
534
+ type CreateReviewCommentResponse = {
535
+ comment: ReviewComment;
536
+ commentCount: number;
537
+ };
538
+ type CreateReviewCommentRequest = {
539
+ body: ReviewCommentBody;
540
+ };
541
+ type DeleteReviewCommentResponse = {
542
+ commentCount: number;
543
+ };
467
544
  type ReviewReplyResponse = {
468
545
  developerReply: ReviewReply;
469
546
  };
@@ -568,6 +645,8 @@ type ActivityRow = ({
568
645
  } & ActivityRowTronPot) | ({
569
646
  kind: "tron_cashout";
570
647
  } & ActivityRowTronCashout) | ({
648
+ kind: "tron_transfer";
649
+ } & ActivityRowTronTransfer) | ({
571
650
  kind: "referral_earning";
572
651
  } & ActivityRowReferralEarning);
573
652
  type ActivityRowPayment = {
@@ -815,6 +894,8 @@ type ActivityRowTronPot = {
815
894
  role: "incoming" | "outgoing";
816
895
  leg: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
817
896
  amountCents: number;
897
+ usdCents: number;
898
+ status: "settled";
818
899
  app: {
819
900
  id: string;
820
901
  name: string;
@@ -822,8 +903,16 @@ type ActivityRowTronPot = {
822
903
  slug: string | null;
823
904
  bannerUrl: string | null;
824
905
  } | null;
906
+ involvedUsers?: Array<ActivityTronInvolvedUser> | null;
825
907
  metadata?: PaymentMetadata | null;
826
908
  };
909
+ type ActivityTronInvolvedUser = {
910
+ userId: string;
911
+ handle: string | null;
912
+ displayName: string | null;
913
+ role: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
914
+ amountCents: number;
915
+ };
827
916
  type ActivityRowTronCashout = {
828
917
  kind: "tron_cashout";
829
918
  groupId: string | null;
@@ -841,6 +930,20 @@ type ActivityRowTronCashout = {
841
930
  rejectionReason: string | null;
842
931
  settledAt: string | null;
843
932
  };
933
+ type ActivityRowTronTransfer = {
934
+ kind: "tron_transfer";
935
+ groupId: string | null;
936
+ id: string;
937
+ occurredAt: string;
938
+ role: "incoming" | "outgoing";
939
+ amountCents: number;
940
+ usdCents: number;
941
+ status: "settled";
942
+ counterpartyUserId: string | null;
943
+ counterpartyHandle: string | null;
944
+ counterpartyDisplayName: string | null;
945
+ note: string | null;
946
+ };
844
947
  type ActivityRowReferralEarning = {
845
948
  kind: "referral_earning";
846
949
  groupId: string | null;
@@ -906,7 +1009,7 @@ type TronLedgerResponse = {
906
1009
  };
907
1010
  type TronLedgerEntry = {
908
1011
  id: string;
909
- kind: "deposit" | "pot_stake" | "pot_payout" | "dev_earning" | "cashout_hold" | "cashout_release" | "dispute_freeze" | "dispute_unfreeze" | "hosted_billing" | "store_purchase" | "referral_earning";
1012
+ kind: "deposit" | "pot_stake" | "pot_payout" | "dev_earning" | "cashout_hold" | "cashout_release" | "dispute_freeze" | "dispute_unfreeze" | "hosted_billing" | "store_purchase" | "referral_earning" | "peer_transfer";
910
1013
  amountCents: number;
911
1014
  currency: string;
912
1015
  createdAt: string;
@@ -921,6 +1024,45 @@ type TronDepositResponse = {
921
1024
  type TronDepositRequest = {
922
1025
  amountCents: number;
923
1026
  };
1027
+ type TronTransferResponse = {
1028
+ status: "completed";
1029
+ amountCents: number;
1030
+ balanceCents: number;
1031
+ recipient: {
1032
+ userId: string;
1033
+ handle: string | null;
1034
+ displayName: string | null;
1035
+ };
1036
+ };
1037
+ type TronTransferRequest = {
1038
+ recipientUserId: string;
1039
+ amountCents: number;
1040
+ note?: string;
1041
+ challengeId?: string;
1042
+ signature?: string;
1043
+ threadId?: string;
1044
+ };
1045
+ type TronSecuritySetting = {
1046
+ requireSignature: boolean;
1047
+ };
1048
+ type TronTransferChallengeResponse = ({
1049
+ required: false;
1050
+ } & TronTransferChallengeNotRequired) | ({
1051
+ required: true;
1052
+ } & TronTransferChallengeRequired);
1053
+ type TronTransferChallengeNotRequired = {
1054
+ required: false;
1055
+ };
1056
+ type TronTransferChallengeRequired = {
1057
+ required: true;
1058
+ challengeId: string;
1059
+ message: string;
1060
+ expiresAt: string;
1061
+ };
1062
+ type TronTransferChallengeRequest = {
1063
+ recipientUserId: string;
1064
+ amountCents: number;
1065
+ };
924
1066
  type TronGameBalanceResponse = {
925
1067
  balanceCents: number;
926
1068
  rakeBps: number;
@@ -1163,6 +1305,7 @@ type ThreadLastMessagePreview = {
1163
1305
  url: string;
1164
1306
  count: number;
1165
1307
  } | null;
1308
+ transaction?: MessageTransaction;
1166
1309
  sentAt: string;
1167
1310
  } | null;
1168
1311
  type MessageEnvelope = {
@@ -1174,6 +1317,11 @@ type MessageEnvelope = {
1174
1317
  iv: string;
1175
1318
  ct: string;
1176
1319
  } | null;
1320
+ type MessageTransaction = {
1321
+ kind: "tron_transfer";
1322
+ amountCents: number;
1323
+ recipientUserId: string;
1324
+ } | null;
1177
1325
  type GroupThreadSummary = {
1178
1326
  kind: "group";
1179
1327
  id: string;
@@ -1220,6 +1368,7 @@ type MessageItem = {
1220
1368
  id: string;
1221
1369
  threadId: string;
1222
1370
  senderUserId: string;
1371
+ transaction?: MessageTransaction;
1223
1372
  body: string;
1224
1373
  envelope?: MessageEnvelope;
1225
1374
  sentAt: string;
@@ -1597,7 +1746,7 @@ type ProfileRecentReview = {
1597
1746
  appId: string;
1598
1747
  appName: string;
1599
1748
  appLogoUrl: string | null;
1600
- rating: number;
1749
+ recommended: boolean;
1601
1750
  body: string;
1602
1751
  createdAt: string;
1603
1752
  };
@@ -1953,6 +2102,11 @@ type AppPageDraft = {
1953
2102
  gallery: AppPageGallery;
1954
2103
  chapters: AppPageChapters;
1955
2104
  links: AppPageLinks;
2105
+ platforms: AppPagePlatforms;
2106
+ gameType: AppPageGameType;
2107
+ ageRating: AppPageAgeRating;
2108
+ languages: AppPageLanguages;
2109
+ releaseStatus: AppPageReleaseStatus;
1956
2110
  firstPublishedAt: string | null;
1957
2111
  reviewedAt: string | null;
1958
2112
  reviewNotes: string | null;
@@ -1975,6 +2129,11 @@ type UpdateAppPage = {
1975
2129
  gallery?: AppPageGallery;
1976
2130
  chapters?: AppPageChapters;
1977
2131
  links?: AppPageLinks;
2132
+ platforms?: AppPagePlatforms;
2133
+ gameType?: AppPageGameType;
2134
+ ageRating?: AppPageAgeRating;
2135
+ languages?: AppPageLanguages;
2136
+ releaseStatus?: AppPageReleaseStatus;
1978
2137
  };
1979
2138
  type AppPageGalleryUploadResponse = {
1980
2139
  url: string;
@@ -2444,229 +2603,229 @@ type PostMeDeveloperAppsByAppIdPageThumbnailVideoResponses = {
2444
2603
  type PostMeDeveloperAppsByAppIdPageThumbnailVideoResponse = PostMeDeveloperAppsByAppIdPageThumbnailVideoResponses[keyof PostMeDeveloperAppsByAppIdPageThumbnailVideoResponses];
2445
2604
  //#endregion
2446
2605
  //#region src/account/avatar.d.ts
2447
- declare function uploadAvatar(ctx: TransportContext, input: {
2606
+ declare function uploadAvatar(context: TransportContext, input: {
2448
2607
  readonly bearer: string;
2449
2608
  readonly file: Blob | ArrayBufferView | ArrayBuffer;
2450
2609
  readonly filename: string;
2451
2610
  readonly contentType: string;
2452
2611
  }): Promise<AuthUser>;
2453
- declare function deleteAvatar(ctx: TransportContext, input: {
2612
+ declare function deleteAvatar(context: TransportContext, input: {
2454
2613
  readonly bearer: string;
2455
2614
  }): Promise<AuthUser>;
2456
2615
  //#endregion
2457
2616
  //#region src/account/giphy.d.ts
2458
- declare function searchGiphy(ctx: TransportContext, input: {
2617
+ declare function searchGiphy(context: TransportContext, input: {
2459
2618
  readonly bearer: string;
2460
2619
  readonly q: string;
2461
2620
  }): Promise<GiphySearchResponse>;
2462
2621
  //#endregion
2463
2622
  //#region src/account/payment-authorizations.d.ts
2464
- declare function listPaymentAuthorizations(ctx: TransportContext, input: {
2623
+ declare function listPaymentAuthorizations(context: TransportContext, input: {
2465
2624
  readonly bearer: string;
2466
2625
  }): Promise<ListAppPaymentAuthorizationsResponse>;
2467
- declare function updatePaymentAuthorization(ctx: TransportContext, input: {
2626
+ declare function updatePaymentAuthorization(context: TransportContext, input: {
2468
2627
  readonly bearer: string;
2469
2628
  readonly consentId: string;
2470
2629
  readonly body: UpdateAppPaymentAuthorization;
2471
2630
  }): Promise<void>;
2472
- declare function revokePaymentAuthorization(ctx: TransportContext, input: {
2631
+ declare function revokePaymentAuthorization(context: TransportContext, input: {
2473
2632
  readonly bearer: string;
2474
2633
  readonly consentId: string;
2475
2634
  }): Promise<void>;
2476
2635
  //#endregion
2477
2636
  //#region src/account/presence-heartbeat.d.ts
2478
- declare function sendPresenceHeartbeat(ctx: TransportContext, input: {
2637
+ declare function sendPresenceHeartbeat(context: TransportContext, input: {
2479
2638
  readonly bearer: string;
2480
2639
  }): Promise<WebPresenceHeartbeatAck>;
2481
2640
  //#endregion
2482
2641
  //#region src/account/profile.d.ts
2483
- declare function updateProfile(ctx: TransportContext, input: {
2642
+ declare function updateProfile(context: TransportContext, input: {
2484
2643
  readonly bearer: string;
2485
2644
  readonly body: ProfileUpdate;
2486
2645
  }): Promise<AuthUser>;
2487
2646
  //#endregion
2488
2647
  //#region src/admin/active-players.d.ts
2489
- declare function listActivePlayers(ctx: TransportContext, input: {
2648
+ declare function listActivePlayers(context: TransportContext, input: {
2490
2649
  readonly bearer: string;
2491
2650
  }): Promise<AdminActivePlayersResponse>;
2492
2651
  //#endregion
2493
2652
  //#region src/admin/app-pages.d.ts
2494
- declare function listAppPages(ctx: TransportContext, input: {
2653
+ declare function listAppPages(context: TransportContext, input: {
2495
2654
  readonly bearer: string;
2496
2655
  readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes";
2497
2656
  }): Promise<AdminAppPageListResponse>;
2498
- declare function getAppPageChanges(ctx: TransportContext, input: {
2657
+ declare function getAppPageChanges(context: TransportContext, input: {
2499
2658
  readonly bearer: string;
2500
2659
  readonly appId: string;
2501
2660
  }): Promise<AdminAppPageDiffResponse>;
2502
- declare function reviewAppPageChanges(ctx: TransportContext, input: {
2661
+ declare function reviewAppPageChanges(context: TransportContext, input: {
2503
2662
  readonly bearer: string;
2504
2663
  readonly appId: string;
2505
2664
  readonly body: ReviewAppPage;
2506
2665
  }): Promise<AdminAppPageStatusResponse>;
2507
- declare function hideAppPage(ctx: TransportContext, input: {
2666
+ declare function hideAppPage(context: TransportContext, input: {
2508
2667
  readonly bearer: string;
2509
2668
  readonly appId: string;
2510
2669
  readonly body: HideAppPage;
2511
2670
  }): Promise<AdminAppPageStatusResponse>;
2512
- declare function unhideAppPage(ctx: TransportContext, input: {
2671
+ declare function unhideAppPage(context: TransportContext, input: {
2513
2672
  readonly bearer: string;
2514
2673
  readonly appId: string;
2515
2674
  }): Promise<AdminAppPageStatusResponse>;
2516
- declare function reviewAppPage(ctx: TransportContext, input: {
2675
+ declare function reviewAppPage(context: TransportContext, input: {
2517
2676
  readonly bearer: string;
2518
2677
  readonly appId: string;
2519
2678
  readonly body: ReviewAppPage;
2520
2679
  }): Promise<AdminAppPageStatusResponse>;
2521
2680
  //#endregion
2522
2681
  //#region src/admin/appeals.d.ts
2523
- declare function listAppealQueue(ctx: TransportContext, input: {
2682
+ declare function listAppealQueue(context: TransportContext, input: {
2524
2683
  readonly bearer: string;
2525
2684
  readonly statuses?: readonly AppealStatusRow["status"][];
2526
2685
  readonly chain?: string;
2527
2686
  readonly cursorFiledAt?: string;
2528
2687
  readonly limit?: number;
2529
2688
  }): Promise<ListAppealsResponse>;
2530
- declare function getAdminAppealRoom(ctx: TransportContext, input: {
2689
+ declare function getAdminAppealRoom(context: TransportContext, input: {
2531
2690
  readonly bearer: string;
2532
2691
  readonly appealId: string;
2533
2692
  }): Promise<AppealRoomView>;
2534
- declare function postAdminAppealRoomMessage(ctx: TransportContext, input: {
2693
+ declare function postAdminAppealRoomMessage(context: TransportContext, input: {
2535
2694
  readonly bearer: string;
2536
2695
  readonly appealId: string;
2537
2696
  readonly body: AppealRoomPostRequest;
2538
2697
  }): Promise<AppealRoomPostResponse>;
2539
- declare function uploadAdminAppealRoomAttachment(ctx: TransportContext, input: {
2698
+ declare function uploadAdminAppealRoomAttachment(context: TransportContext, input: {
2540
2699
  readonly bearer: string;
2541
2700
  readonly appealId: string;
2542
2701
  readonly file: Blob | ArrayBufferView | ArrayBuffer;
2543
2702
  readonly filename: string;
2544
2703
  readonly contentType: string;
2545
2704
  }): Promise<UploadAttachmentResponse>;
2546
- declare function resolveAppeal(ctx: TransportContext, input: {
2705
+ declare function resolveAppeal(context: TransportContext, input: {
2547
2706
  readonly bearer: string;
2548
2707
  readonly appealId: string;
2549
2708
  readonly body: AppealResolveRequest;
2550
2709
  }): Promise<AppealResolveSignedResponse>;
2551
2710
  //#endregion
2552
2711
  //#region src/admin/developers.d.ts
2553
- declare function listDeveloperRequests(ctx: TransportContext, input: {
2712
+ declare function listDeveloperRequests(context: TransportContext, input: {
2554
2713
  readonly bearer: string;
2555
2714
  readonly status?: "pending" | "approved" | "rejected" | "cancelled";
2556
2715
  readonly kind?: "role" | "production";
2557
2716
  }): Promise<ListDeveloperRequestsResponse>;
2558
- declare function reviewDeveloperRequest(ctx: TransportContext, input: {
2717
+ declare function reviewDeveloperRequest(context: TransportContext, input: {
2559
2718
  readonly bearer: string;
2560
2719
  readonly id: string;
2561
2720
  readonly body: ReviewDeveloperRequest;
2562
2721
  }): Promise<ReviewDeveloperRequestResponse>;
2563
- declare function listDevelopers(ctx: TransportContext, input: {
2722
+ declare function listDevelopers(context: TransportContext, input: {
2564
2723
  readonly bearer: string;
2565
2724
  }): Promise<AdminDeveloperListResponse>;
2566
2725
  //#endregion
2567
2726
  //#region src/admin/payments.d.ts
2568
- declare function getPlatformFees(ctx: TransportContext, input: {
2727
+ declare function getPlatformFees(context: TransportContext, input: {
2569
2728
  readonly bearer: string;
2570
2729
  }): Promise<PlatformFeesResponse>;
2571
- declare function updatePlatformFees(ctx: TransportContext, input: {
2730
+ declare function updatePlatformFees(context: TransportContext, input: {
2572
2731
  readonly bearer: string;
2573
2732
  readonly body: UpdatePlatformFeesRequest;
2574
2733
  }): Promise<UpdatePlatformFeesResponse>;
2575
- declare function getAppFeeConfig(ctx: TransportContext, input: {
2734
+ declare function getAppFeeConfig(context: TransportContext, input: {
2576
2735
  readonly bearer: string;
2577
2736
  readonly appId: string;
2578
2737
  }): Promise<AppFeeConfigResponse>;
2579
- declare function updateAppFeeConfig(ctx: TransportContext, input: {
2738
+ declare function updateAppFeeConfig(context: TransportContext, input: {
2580
2739
  readonly bearer: string;
2581
2740
  readonly appId: string;
2582
2741
  readonly body: UpdateAppFeeConfigRequest;
2583
2742
  }): Promise<AppFeeConfigResponse>;
2584
- declare function setProcessorWhitelist(ctx: TransportContext, input: {
2743
+ declare function setProcessorWhitelist(context: TransportContext, input: {
2585
2744
  readonly bearer: string;
2586
2745
  readonly body: SetProcessorWhitelistRequest;
2587
2746
  }): Promise<CalldataEnvelope>;
2588
- declare function rotateProcessorTreasury(ctx: TransportContext, input: {
2747
+ declare function rotateProcessorTreasury(context: TransportContext, input: {
2589
2748
  readonly bearer: string;
2590
2749
  readonly processorId: string;
2591
2750
  readonly body: RotateProcessorTreasuryRequest;
2592
2751
  }): Promise<CalldataEnvelope>;
2593
- declare function setVaultOperator(ctx: TransportContext, input: {
2752
+ declare function setVaultOperator(context: TransportContext, input: {
2594
2753
  readonly bearer: string;
2595
2754
  readonly vaultAddress: string;
2596
2755
  readonly body: SetOperatorRequest;
2597
2756
  }): Promise<CalldataEnvelope>;
2598
- declare function setVaultPause(ctx: TransportContext, input: {
2757
+ declare function setVaultPause(context: TransportContext, input: {
2599
2758
  readonly bearer: string;
2600
2759
  readonly vaultAddress: string;
2601
2760
  readonly body: PauseRequest;
2602
2761
  }): Promise<CalldataEnvelope>;
2603
- declare function setVaultWithdrawLockDefault(ctx: TransportContext, input: {
2762
+ declare function setVaultWithdrawLockDefault(context: TransportContext, input: {
2604
2763
  readonly bearer: string;
2605
2764
  readonly vaultAddress: string;
2606
2765
  readonly body: SetDefaultWithdrawLockRequest;
2607
2766
  }): Promise<CalldataEnvelope>;
2608
- declare function setVaultWithdrawLockOverride(ctx: TransportContext, input: {
2767
+ declare function setVaultWithdrawLockOverride(context: TransportContext, input: {
2609
2768
  readonly bearer: string;
2610
2769
  readonly vaultAddress: string;
2611
2770
  readonly body: SetWithdrawLockOverrideRequest;
2612
2771
  }): Promise<CalldataEnvelope>;
2613
- declare function addAppealBlacklist(ctx: TransportContext, input: {
2772
+ declare function addAppealBlacklist(context: TransportContext, input: {
2614
2773
  readonly bearer: string;
2615
2774
  readonly body: AppealBlacklistAddRequest;
2616
2775
  }): Promise<AppealBlacklistEntry>;
2617
- declare function removeAppealBlacklist(ctx: TransportContext, input: {
2776
+ declare function removeAppealBlacklist(context: TransportContext, input: {
2618
2777
  readonly bearer: string;
2619
2778
  readonly body: AppealBlacklistRemoveRequest;
2620
2779
  }): Promise<AppealBlacklistRemoveResponse>;
2621
- declare function listAppealBlacklist(ctx: TransportContext, input: {
2780
+ declare function listAppealBlacklist(context: TransportContext, input: {
2622
2781
  readonly bearer: string;
2623
2782
  readonly chain?: string;
2624
2783
  }): Promise<AppealBlacklistListResponse>;
2625
2784
  //#endregion
2626
2785
  //#region src/admin/tron-cashouts.d.ts
2627
- declare function listTronCashoutQueue(ctx: TransportContext, input: {
2786
+ declare function listTronCashoutQueue(context: TransportContext, input: {
2628
2787
  readonly bearer: string;
2629
2788
  readonly status?: AdminTronCashoutItem["status"];
2630
2789
  }): Promise<AdminTronCashoutListResponse>;
2631
- declare function approveTronCashout(ctx: TransportContext, input: {
2790
+ declare function approveTronCashout(context: TransportContext, input: {
2632
2791
  readonly bearer: string;
2633
2792
  readonly id: string;
2634
2793
  }): Promise<AdminTronCashoutItem>;
2635
- declare function rejectTronCashout(ctx: TransportContext, input: {
2794
+ declare function rejectTronCashout(context: TransportContext, input: {
2636
2795
  readonly bearer: string;
2637
2796
  readonly id: string;
2638
2797
  readonly body: AdminTronCashoutRejectRequest;
2639
2798
  }): Promise<AdminTronCashoutItem>;
2640
2799
  //#endregion
2641
2800
  //#region src/admin/users.d.ts
2642
- declare function listAdmins(ctx: TransportContext, input: {
2801
+ declare function listAdmins(context: TransportContext, input: {
2643
2802
  readonly bearer: string;
2644
2803
  }): Promise<ListAdminsResponse>;
2645
- declare function addAdmin(ctx: TransportContext, input: {
2804
+ declare function addAdmin(context: TransportContext, input: {
2646
2805
  readonly bearer: string;
2647
2806
  readonly body: AddAdminRequest;
2648
2807
  }): Promise<AdminMutationResponse>;
2649
- declare function updateAdminRole(ctx: TransportContext, input: {
2808
+ declare function updateAdminRole(context: TransportContext, input: {
2650
2809
  readonly bearer: string;
2651
2810
  readonly id: string;
2652
2811
  readonly body: UpdateAdminRoleRequest;
2653
2812
  }): Promise<AdminRoleChangeResponse>;
2654
- declare function removeAdmin(ctx: TransportContext, input: {
2813
+ declare function removeAdmin(context: TransportContext, input: {
2655
2814
  readonly bearer: string;
2656
2815
  readonly id: string;
2657
2816
  }): Promise<AdminMutationResponse>;
2658
- declare function listUsers(ctx: TransportContext, input: {
2817
+ declare function listUsers(context: TransportContext, input: {
2659
2818
  readonly bearer: string;
2660
2819
  readonly search?: string;
2661
2820
  readonly offset?: number;
2662
2821
  readonly limit?: number;
2663
2822
  }): Promise<AdminUserListResponse>;
2664
- declare function updateUserBan(ctx: TransportContext, input: {
2823
+ declare function updateUserBan(context: TransportContext, input: {
2665
2824
  readonly bearer: string;
2666
2825
  readonly id: string;
2667
2826
  readonly body: AdminUserBanRequest;
2668
2827
  }): Promise<AdminUserBanResponse>;
2669
- declare function listAudit(ctx: TransportContext, input: {
2828
+ declare function listAudit(context: TransportContext, input: {
2670
2829
  readonly bearer: string;
2671
2830
  readonly action?: string;
2672
2831
  readonly actorId?: string;
@@ -2677,20 +2836,20 @@ declare function listAudit(ctx: TransportContext, input: {
2677
2836
  }): Promise<AdminAuditListResponse>;
2678
2837
  //#endregion
2679
2838
  //#region src/catalog/app-page.d.ts
2680
- declare function getAppPage(ctx: TransportContext, input: {
2839
+ declare function getAppPage(context: TransportContext, input: {
2681
2840
  readonly bearer?: string;
2682
2841
  readonly slug: string;
2683
2842
  }): Promise<PublicAppPage>;
2684
2843
  //#endregion
2685
2844
  //#region src/catalog/content-reports.d.ts
2686
- declare function submitAppContentReport(ctx: TransportContext, input: {
2845
+ declare function submitAppContentReport(context: TransportContext, input: {
2687
2846
  readonly appId: string;
2688
2847
  readonly bearer: string;
2689
2848
  readonly report: SubmitAppContentReportRequest;
2690
2849
  }): Promise<SubmitAppContentReportResponse>;
2691
2850
  //#endregion
2692
2851
  //#region src/catalog/library.d.ts
2693
- declare function getLibrary(ctx: TransportContext, input: {
2852
+ declare function getLibrary(context: TransportContext, input: {
2694
2853
  readonly bearer?: string;
2695
2854
  readonly genre?: string;
2696
2855
  readonly q?: string;
@@ -2699,40 +2858,75 @@ declare function getLibrary(ctx: TransportContext, input: {
2699
2858
  }): Promise<LibraryListResponse>;
2700
2859
  //#endregion
2701
2860
  //#region src/catalog/reviews.d.ts
2702
- declare function listGameReviews(ctx: TransportContext, input: {
2861
+ declare function listGameReviews(context: TransportContext, input: {
2703
2862
  readonly slug: string;
2704
2863
  readonly bearer?: string;
2705
2864
  readonly sort?: ReviewSort;
2706
2865
  readonly limit?: number;
2707
2866
  readonly offset?: number;
2708
2867
  }): Promise<ReviewListResponse>;
2709
- declare function listDeveloperAppReviews(ctx: TransportContext, input: {
2868
+ declare function listDeveloperAppReviews(context: TransportContext, input: {
2710
2869
  readonly appId: string;
2711
2870
  readonly bearer: string;
2712
2871
  readonly sort?: ReviewSort;
2713
2872
  readonly limit?: number;
2714
2873
  readonly offset?: number;
2715
2874
  }): Promise<ReviewListResponse>;
2716
- declare function getMyGameReview(ctx: TransportContext, input: {
2875
+ declare function getMyGameReview(context: TransportContext, input: {
2717
2876
  readonly slug: string;
2718
2877
  readonly bearer: string;
2719
2878
  }): Promise<MyReviewResponse>;
2720
- declare function upsertMyGameReview(ctx: TransportContext, input: {
2879
+ declare function upsertMyGameReview(context: TransportContext, input: {
2721
2880
  readonly slug: string;
2722
2881
  readonly bearer: string;
2723
2882
  readonly review: UpsertReviewRequest;
2724
2883
  }): Promise<MyReviewResponse>;
2725
- declare function deleteMyGameReview(ctx: TransportContext, input: {
2884
+ declare function deleteMyGameReview(context: TransportContext, input: {
2726
2885
  readonly slug: string;
2727
2886
  readonly bearer: string;
2728
2887
  }): Promise<MyReviewResponse>;
2729
- declare function replyToGameReview(ctx: TransportContext, input: {
2888
+ declare function getMyGameReviewReactions(context: TransportContext, input: {
2889
+ readonly slug: string;
2890
+ readonly bearer: string;
2891
+ }): Promise<MyReviewReactionsResponse>;
2892
+ declare function setMyGameReviewReaction(context: TransportContext, input: {
2893
+ readonly slug: string;
2894
+ readonly reviewId: string;
2895
+ readonly bearer: string;
2896
+ readonly reaction: SetReviewReactionRequest;
2897
+ }): Promise<SetReviewReactionResponse>;
2898
+ declare function tipGameReview(context: TransportContext, input: {
2899
+ readonly slug: string;
2900
+ readonly reviewId: string;
2901
+ readonly bearer: string;
2902
+ readonly tip: TipReviewRequest;
2903
+ readonly idempotencyKey?: string;
2904
+ }): Promise<TipReviewResponse>;
2905
+ declare function listGameReviewComments(context: TransportContext, input: {
2906
+ readonly slug: string;
2907
+ readonly reviewId: string;
2908
+ readonly bearer?: string;
2909
+ readonly limit?: number;
2910
+ readonly offset?: number;
2911
+ }): Promise<ReviewCommentListResponse>;
2912
+ declare function commentOnGameReview(context: TransportContext, input: {
2913
+ readonly slug: string;
2914
+ readonly reviewId: string;
2915
+ readonly bearer: string;
2916
+ readonly comment: CreateReviewCommentRequest;
2917
+ }): Promise<CreateReviewCommentResponse>;
2918
+ declare function deleteGameReviewComment(context: TransportContext, input: {
2919
+ readonly slug: string;
2920
+ readonly commentId: string;
2921
+ readonly bearer: string;
2922
+ }): Promise<DeleteReviewCommentResponse>;
2923
+ declare function replyToGameReview(context: TransportContext, input: {
2730
2924
  readonly appId: string;
2731
2925
  readonly reviewId: string;
2732
2926
  readonly bearer: string;
2733
2927
  readonly reply: UpsertReviewReplyRequest;
2734
2928
  }): Promise<ReviewReplyResponse>;
2735
- declare function deleteGameReviewReply(ctx: TransportContext, input: {
2929
+ declare function deleteGameReviewReply(context: TransportContext, input: {
2736
2930
  readonly appId: string;
2737
2931
  readonly reviewId: string;
2738
2932
  readonly bearer: string;
@@ -2782,7 +2976,7 @@ declare function createConsoleLogger(prefix?: string): Logger;
2782
2976
  declare function createInMemoryTokenStore(): TokenStore;
2783
2977
  //#endregion
2784
2978
  //#region src/dashboard/activity.d.ts
2785
- declare function getActivity(ctx: TransportContext, input: {
2979
+ declare function getActivity(context: TransportContext, input: {
2786
2980
  readonly bearer: string;
2787
2981
  readonly kind?: string;
2788
2982
  readonly direction?: "outgoing" | "incoming";
@@ -2793,24 +2987,24 @@ declare function getActivity(ctx: TransportContext, input: {
2793
2987
  readonly before?: string;
2794
2988
  readonly includeInactive?: boolean;
2795
2989
  }): Promise<ActivityResponse>;
2796
- declare function getActivityGroup(ctx: TransportContext, input: {
2990
+ declare function getActivityGroup(context: TransportContext, input: {
2797
2991
  readonly bearer: string;
2798
2992
  readonly groupId: string;
2799
2993
  }): Promise<ActivityResponse>;
2800
2994
  //#endregion
2801
2995
  //#region src/dashboard/chains.d.ts
2802
- declare function getPaymentChains(ctx: TransportContext, input: {
2996
+ declare function getPaymentChains(context: TransportContext, input: {
2803
2997
  readonly bearer: string;
2804
2998
  }): Promise<PaymentChainsResponse>;
2805
2999
  //#endregion
2806
3000
  //#region src/dashboard/outstanding.d.ts
2807
- declare function getOutstanding(ctx: TransportContext, input: {
3001
+ declare function getOutstanding(context: TransportContext, input: {
2808
3002
  readonly bearer: string;
2809
3003
  readonly chain?: string;
2810
3004
  }): Promise<OutstandingResponse>;
2811
3005
  //#endregion
2812
3006
  //#region src/dashboard/payment-history.d.ts
2813
- declare function getPaymentHistory(ctx: TransportContext, input: {
3007
+ declare function getPaymentHistory(context: TransportContext, input: {
2814
3008
  readonly bearer: string;
2815
3009
  readonly status?: "pending" | "completed" | "expired" | "all";
2816
3010
  readonly limit?: number;
@@ -2818,52 +3012,52 @@ declare function getPaymentHistory(ctx: TransportContext, input: {
2818
3012
  }): Promise<PaymentHistoryResponse>;
2819
3013
  //#endregion
2820
3014
  //#region src/developer/api-keys.d.ts
2821
- declare function createDeveloperApiKey(ctx: TransportContext, input: {
3015
+ declare function createDeveloperApiKey(context: TransportContext, input: {
2822
3016
  readonly bearer: string;
2823
3017
  readonly body: CreateDeveloperApiKey;
2824
3018
  }): Promise<CreateDeveloperApiKeyResponse>;
2825
- declare function listDeveloperApiKeys(ctx: TransportContext, input: {
3019
+ declare function listDeveloperApiKeys(context: TransportContext, input: {
2826
3020
  readonly bearer: string;
2827
3021
  }): Promise<DeveloperApiKeysResponse>;
2828
- declare function revokeDeveloperApiKey(ctx: TransportContext, input: {
3022
+ declare function revokeDeveloperApiKey(context: TransportContext, input: {
2829
3023
  readonly bearer: string;
2830
3024
  readonly id: string;
2831
3025
  }): Promise<DeveloperOkResponse>;
2832
3026
  //#endregion
2833
3027
  //#region src/developer/apps.d.ts
2834
- declare function createDeveloperApp(ctx: TransportContext, input: {
3028
+ declare function createDeveloperApp(context: TransportContext, input: {
2835
3029
  readonly bearer: string;
2836
3030
  readonly body: CreateDeveloperApp;
2837
3031
  }): Promise<DeveloperAppIdResponse>;
2838
- declare function updateDeveloperApp(ctx: TransportContext, input: {
3032
+ declare function updateDeveloperApp(context: TransportContext, input: {
2839
3033
  readonly bearer: string;
2840
3034
  readonly id: string;
2841
3035
  readonly body: UpdateDeveloperApp;
2842
3036
  }): Promise<DeveloperAppIdResponse>;
2843
- declare function deleteDeveloperApp(ctx: TransportContext, input: {
3037
+ declare function deleteDeveloperApp(context: TransportContext, input: {
2844
3038
  readonly bearer: string;
2845
3039
  readonly id: string;
2846
3040
  }): Promise<DeveloperAppIdResponse>;
2847
- declare function uploadDeveloperAppLogo(ctx: TransportContext, input: {
3041
+ declare function uploadDeveloperAppLogo(context: TransportContext, input: {
2848
3042
  readonly bearer: string;
2849
3043
  readonly id: string;
2850
3044
  readonly file: Blob | ArrayBufferView | ArrayBuffer;
2851
3045
  readonly filename: string;
2852
3046
  readonly contentType: string;
2853
3047
  }): Promise<DeveloperLogoUploadResponse>;
2854
- declare function deleteDeveloperAppLogo(ctx: TransportContext, input: {
3048
+ declare function deleteDeveloperAppLogo(context: TransportContext, input: {
2855
3049
  readonly bearer: string;
2856
3050
  readonly id: string;
2857
3051
  }): Promise<DeveloperLogoUploadResponse>;
2858
- declare function getDeveloperAppBalances(ctx: TransportContext, input: {
3052
+ declare function getDeveloperAppBalances(context: TransportContext, input: {
2859
3053
  readonly bearer: string;
2860
3054
  readonly id: string;
2861
3055
  }): Promise<DeveloperAppBalancesResponse>;
2862
- declare function getDeveloperAppTronBalance(ctx: TransportContext, input: {
3056
+ declare function getDeveloperAppTronBalance(context: TransportContext, input: {
2863
3057
  readonly bearer: string;
2864
3058
  readonly id: string;
2865
3059
  }): Promise<DeveloperAppTronBalanceResponse>;
2866
- declare function getDeveloperAppActivity(ctx: TransportContext, input: {
3060
+ declare function getDeveloperAppActivity(context: TransportContext, input: {
2867
3061
  readonly bearer: string;
2868
3062
  readonly id: string;
2869
3063
  readonly kind?: string;
@@ -2874,80 +3068,80 @@ declare function getDeveloperAppActivity(ctx: TransportContext, input: {
2874
3068
  readonly cursor?: string;
2875
3069
  readonly before?: string;
2876
3070
  }): Promise<ActivityResponse>;
2877
- declare function getDeveloperAppEarnings(ctx: TransportContext, input: {
3071
+ declare function getDeveloperAppEarnings(context: TransportContext, input: {
2878
3072
  readonly bearer: string;
2879
3073
  readonly id: string;
2880
3074
  readonly range?: string;
2881
3075
  readonly chain?: string;
2882
3076
  }): Promise<DeveloperAppEarningsResponse>;
2883
- declare function getDeveloperAppPlaytime(ctx: TransportContext, input: {
3077
+ declare function getDeveloperAppPlaytime(context: TransportContext, input: {
2884
3078
  readonly bearer: string;
2885
3079
  readonly id: string;
2886
3080
  readonly range?: string;
2887
3081
  }): Promise<DeveloperAppPlaytimeResponse>;
2888
- declare function getDeveloperAppOverview(ctx: TransportContext, input: {
3082
+ declare function getDeveloperAppOverview(context: TransportContext, input: {
2889
3083
  readonly bearer: string;
2890
3084
  readonly id: string;
2891
3085
  }): Promise<DeveloperAppOverviewResponse>;
2892
- declare function getDeveloperAppWallets(ctx: TransportContext, input: {
3086
+ declare function getDeveloperAppWallets(context: TransportContext, input: {
2893
3087
  readonly bearer: string;
2894
3088
  readonly id: string;
2895
3089
  }): Promise<DeveloperAppWalletsResponse>;
2896
- declare function updateDeveloperAppAutoSweep(ctx: TransportContext, input: {
3090
+ declare function updateDeveloperAppAutoSweep(context: TransportContext, input: {
2897
3091
  readonly bearer: string;
2898
3092
  readonly id: string;
2899
3093
  readonly chain: string;
2900
3094
  readonly body: DeveloperAppAutoSweepRequest;
2901
3095
  }): Promise<DeveloperAppAutoSweepResponse>;
2902
- declare function provisionDeveloperAppWallet(ctx: TransportContext, input: {
3096
+ declare function provisionDeveloperAppWallet(context: TransportContext, input: {
2903
3097
  readonly bearer: string;
2904
3098
  readonly id: string;
2905
3099
  readonly chain: string;
2906
3100
  }): Promise<DeveloperAppProvisionWalletResponse>;
2907
- declare function withdrawDeveloperAppWallet(ctx: TransportContext, input: {
3101
+ declare function withdrawDeveloperAppWallet(context: TransportContext, input: {
2908
3102
  readonly bearer: string;
2909
3103
  readonly id: string;
2910
3104
  readonly chain: string;
2911
3105
  readonly token?: string;
2912
3106
  }): Promise<DeveloperAppWithdrawResponse>;
2913
- declare function consolidateDeveloperAppWallet(ctx: TransportContext, input: {
3107
+ declare function consolidateDeveloperAppWallet(context: TransportContext, input: {
2914
3108
  readonly bearer: string;
2915
3109
  readonly id: string;
2916
3110
  readonly chain: string;
2917
3111
  }): Promise<DeveloperAppConsolidateResponse>;
2918
- declare function rotateDeveloperAppKey(ctx: TransportContext, input: {
3112
+ declare function rotateDeveloperAppKey(context: TransportContext, input: {
2919
3113
  readonly bearer: string;
2920
3114
  readonly id: string;
2921
3115
  readonly env: "development" | "production";
2922
3116
  }): Promise<RegenerateDeveloperAppKeyResponse>;
2923
- declare function requestDeveloperAppProduction(ctx: TransportContext, input: {
3117
+ declare function requestDeveloperAppProduction(context: TransportContext, input: {
2924
3118
  readonly bearer: string;
2925
3119
  readonly id: string;
2926
3120
  readonly body: CreateDeveloperProductionRequest;
2927
3121
  }): Promise<CreateDeveloperProductionRequestResponse>;
2928
- declare function rotateDeveloperAppPaymentWebhookSecret(ctx: TransportContext, input: {
3122
+ declare function rotateDeveloperAppPaymentWebhookSecret(context: TransportContext, input: {
2929
3123
  readonly bearer: string;
2930
3124
  readonly id: string;
2931
3125
  }): Promise<RegenerateDeveloperAppWebhookSecretResponse>;
2932
- declare function getDeveloperPaymentAppeals(ctx: TransportContext, input: {
3126
+ declare function getDeveloperPaymentAppeals(context: TransportContext, input: {
2933
3127
  readonly bearer: string;
2934
3128
  readonly chain?: string;
2935
3129
  }): Promise<DevAppealsResponse>;
2936
- declare function getDeveloperPaymentPendingDeposits(ctx: TransportContext, input: {
3130
+ declare function getDeveloperPaymentPendingDeposits(context: TransportContext, input: {
2937
3131
  readonly bearer: string;
2938
3132
  readonly chain?: string;
2939
3133
  }): Promise<DevPendingDepositsResponse>;
2940
- declare function getDeveloperTronBalanceSummary(ctx: TransportContext, input: {
3134
+ declare function getDeveloperTronBalanceSummary(context: TransportContext, input: {
2941
3135
  readonly bearer: string;
2942
3136
  }): Promise<DeveloperTronBalanceSummaryResponse>;
2943
- declare function listDeveloperAppContentReports(ctx: TransportContext, input: {
3137
+ declare function listDeveloperAppContentReports(context: TransportContext, input: {
2944
3138
  readonly bearer: string;
2945
3139
  readonly id: string;
2946
3140
  readonly status?: AppContentReportStatus;
2947
3141
  readonly limit?: number;
2948
3142
  readonly offset?: number;
2949
3143
  }): Promise<AppContentReportListResponse>;
2950
- declare function updateDeveloperAppContentReportStatus(ctx: TransportContext, input: {
3144
+ declare function updateDeveloperAppContentReportStatus(context: TransportContext, input: {
2951
3145
  readonly bearer: string;
2952
3146
  readonly id: string;
2953
3147
  readonly reportId: string;
@@ -2955,122 +3149,122 @@ declare function updateDeveloperAppContentReportStatus(ctx: TransportContext, in
2955
3149
  }): Promise<AppContentReport>;
2956
3150
  //#endregion
2957
3151
  //#region src/developer/pages.d.ts
2958
- declare function getDeveloperAppPage(ctx: TransportContext, input: {
3152
+ declare function getDeveloperAppPage(context: TransportContext, input: {
2959
3153
  readonly bearer: string;
2960
3154
  readonly appId: string;
2961
3155
  }): Promise<AppPageDraft>;
2962
- declare function updateAppPage(ctx: TransportContext, input: {
3156
+ declare function updateAppPage(context: TransportContext, input: {
2963
3157
  readonly bearer: string;
2964
3158
  readonly appId: string;
2965
3159
  readonly body: UpdateAppPage;
2966
3160
  }): Promise<AppPageDraft>;
2967
- declare function uploadAppPageBanner(ctx: TransportContext, input: {
3161
+ declare function uploadAppPageBanner(context: TransportContext, input: {
2968
3162
  readonly bearer: string;
2969
3163
  readonly appId: string;
2970
3164
  readonly file: Blob | ArrayBufferView | ArrayBuffer;
2971
3165
  readonly filename: string;
2972
3166
  readonly contentType: string;
2973
3167
  }): Promise<PostMeDeveloperAppsByAppIdPageBannerResponse>;
2974
- declare function deleteAppPageBanner(ctx: TransportContext, input: {
3168
+ declare function deleteAppPageBanner(context: TransportContext, input: {
2975
3169
  readonly bearer: string;
2976
3170
  readonly appId: string;
2977
3171
  }): Promise<void>;
2978
- declare function uploadAppPageThumbnail(ctx: TransportContext, input: {
3172
+ declare function uploadAppPageThumbnail(context: TransportContext, input: {
2979
3173
  readonly bearer: string;
2980
3174
  readonly appId: string;
2981
3175
  readonly file: Blob | ArrayBufferView | ArrayBuffer;
2982
3176
  readonly filename: string;
2983
3177
  readonly contentType: string;
2984
3178
  }): Promise<PostMeDeveloperAppsByAppIdPageThumbnailResponse>;
2985
- declare function deleteAppPageThumbnail(ctx: TransportContext, input: {
3179
+ declare function deleteAppPageThumbnail(context: TransportContext, input: {
2986
3180
  readonly bearer: string;
2987
3181
  readonly appId: string;
2988
3182
  }): Promise<void>;
2989
- declare function uploadAppPageThumbnailVideo(ctx: TransportContext, input: {
3183
+ declare function uploadAppPageThumbnailVideo(context: TransportContext, input: {
2990
3184
  readonly bearer: string;
2991
3185
  readonly appId: string;
2992
3186
  readonly file: Blob | ArrayBufferView | ArrayBuffer;
2993
3187
  readonly filename: string;
2994
3188
  readonly contentType: string;
2995
3189
  }): Promise<PostMeDeveloperAppsByAppIdPageThumbnailVideoResponse>;
2996
- declare function deleteAppPageThumbnailVideo(ctx: TransportContext, input: {
3190
+ declare function deleteAppPageThumbnailVideo(context: TransportContext, input: {
2997
3191
  readonly bearer: string;
2998
3192
  readonly appId: string;
2999
3193
  }): Promise<void>;
3000
- declare function uploadAppPageGallery(ctx: TransportContext, input: {
3194
+ declare function uploadAppPageGallery(context: TransportContext, input: {
3001
3195
  readonly bearer: string;
3002
3196
  readonly appId: string;
3003
3197
  readonly file: Blob | ArrayBufferView | ArrayBuffer;
3004
3198
  readonly filename: string;
3005
3199
  readonly contentType: string;
3006
3200
  }): Promise<AppPageGalleryUploadResponse>;
3007
- declare function submitAppPageForReview(ctx: TransportContext, input: {
3201
+ declare function submitAppPageForReview(context: TransportContext, input: {
3008
3202
  readonly bearer: string;
3009
3203
  readonly appId: string;
3010
3204
  }): Promise<AppPageDraft>;
3011
- declare function unpublishAppPage(ctx: TransportContext, input: {
3205
+ declare function unpublishAppPage(context: TransportContext, input: {
3012
3206
  readonly bearer: string;
3013
3207
  readonly appId: string;
3014
3208
  }): Promise<AppPageDraft>;
3015
3209
  //#endregion
3016
3210
  //#region src/developer/participants.d.ts
3017
- declare function listDeveloperAppParticipants(ctx: TransportContext, input: {
3211
+ declare function listDeveloperAppParticipants(context: TransportContext, input: {
3018
3212
  readonly bearer: string;
3019
3213
  readonly id: string;
3020
3214
  }): Promise<DeveloperAppParticipantsResponse>;
3021
- declare function inviteDeveloperAppParticipant(ctx: TransportContext, input: {
3215
+ declare function inviteDeveloperAppParticipant(context: TransportContext, input: {
3022
3216
  readonly bearer: string;
3023
3217
  readonly id: string;
3024
3218
  readonly body: InviteDeveloperAppParticipant;
3025
3219
  }): Promise<DeveloperAppParticipantsResponse>;
3026
- declare function revokeDeveloperAppParticipant(ctx: TransportContext, input: {
3220
+ declare function revokeDeveloperAppParticipant(context: TransportContext, input: {
3027
3221
  readonly bearer: string;
3028
3222
  readonly id: string;
3029
3223
  readonly userId: string;
3030
3224
  }): Promise<DeveloperOkResponse>;
3031
- declare function listDeveloperInvites(ctx: TransportContext, input: {
3225
+ declare function listDeveloperInvites(context: TransportContext, input: {
3032
3226
  readonly bearer: string;
3033
3227
  }): Promise<DeveloperInvitesResponse>;
3034
- declare function acceptDeveloperInvite(ctx: TransportContext, input: {
3228
+ declare function acceptDeveloperInvite(context: TransportContext, input: {
3035
3229
  readonly bearer: string;
3036
3230
  readonly appId: string;
3037
3231
  }): Promise<DeveloperOkResponse>;
3038
- declare function declineDeveloperInvite(ctx: TransportContext, input: {
3232
+ declare function declineDeveloperInvite(context: TransportContext, input: {
3039
3233
  readonly bearer: string;
3040
3234
  readonly appId: string;
3041
3235
  }): Promise<DeveloperOkResponse>;
3042
3236
  //#endregion
3043
3237
  //#region src/developer/profile.d.ts
3044
- declare function getDeveloperStatus(ctx: TransportContext, input: {
3238
+ declare function getDeveloperStatus(context: TransportContext, input: {
3045
3239
  readonly bearer: string;
3046
3240
  }): Promise<DeveloperMeStatus>;
3047
- declare function updateDeveloperProfile(ctx: TransportContext, input: {
3241
+ declare function updateDeveloperProfile(context: TransportContext, input: {
3048
3242
  readonly bearer: string;
3049
3243
  readonly body: UpdateDeveloperProfile;
3050
3244
  }): Promise<DeveloperOkResponse>;
3051
- declare function uploadDeveloperProfileLogo(ctx: TransportContext, input: {
3245
+ declare function uploadDeveloperProfileLogo(context: TransportContext, input: {
3052
3246
  readonly bearer: string;
3053
3247
  readonly file: Blob | ArrayBufferView | ArrayBuffer;
3054
3248
  readonly filename: string;
3055
3249
  readonly contentType: string;
3056
3250
  }): Promise<DeveloperLogoUploadResponse>;
3057
- declare function deleteDeveloperProfileLogo(ctx: TransportContext, input: {
3251
+ declare function deleteDeveloperProfileLogo(context: TransportContext, input: {
3058
3252
  readonly bearer: string;
3059
3253
  }): Promise<DeveloperLogoUploadResponse>;
3060
- declare function submitDeveloperRequest(ctx: TransportContext, input: {
3254
+ declare function submitDeveloperRequest(context: TransportContext, input: {
3061
3255
  readonly bearer: string;
3062
3256
  readonly body: CreateDeveloperRoleRequest;
3063
3257
  }): Promise<DeveloperOkResponse>;
3064
- declare function uploadDeveloperRequestLogo(ctx: TransportContext, input: {
3258
+ declare function uploadDeveloperRequestLogo(context: TransportContext, input: {
3065
3259
  readonly bearer: string;
3066
3260
  readonly file: Blob | ArrayBufferView | ArrayBuffer;
3067
3261
  readonly filename: string;
3068
3262
  readonly contentType: string;
3069
3263
  }): Promise<DeveloperLogoUploadResponse>;
3070
- declare function deleteDeveloperRequestLogo(ctx: TransportContext, input: {
3264
+ declare function deleteDeveloperRequestLogo(context: TransportContext, input: {
3071
3265
  readonly bearer: string;
3072
3266
  }): Promise<DeveloperLogoUploadResponse>;
3073
- declare function uploadMultipart(ctx: TransportContext, input: {
3267
+ declare function uploadMultipart(context: TransportContext, input: {
3074
3268
  readonly path: string;
3075
3269
  readonly bearer: string;
3076
3270
  readonly file: Blob | ArrayBufferView | ArrayBuffer;
@@ -3159,81 +3353,81 @@ type OauthPaymentEventsSubscriber = {
3159
3353
  declare function startOauthPaymentEventsSubscriber(options: OauthPaymentEventsSubscriberOptions): OauthPaymentEventsSubscriber;
3160
3354
  //#endregion
3161
3355
  //#region src/inventory/list.d.ts
3162
- declare function listInventory(ctx: TransportContext, input: {
3356
+ declare function listInventory(context: TransportContext, input: {
3163
3357
  readonly bearer: string;
3164
3358
  }): Promise<InventoryListResponse>;
3165
- declare function listInventoryForApp(ctx: TransportContext, input: {
3359
+ declare function listInventoryForApp(context: TransportContext, input: {
3166
3360
  readonly bearer: string;
3167
3361
  }): Promise<InventoryListResponse>;
3168
3362
  //#endregion
3169
3363
  //#region src/inventory/request-mint.d.ts
3170
- declare function requestMint(ctx: TransportContext, input: {
3364
+ declare function requestMint(context: TransportContext, input: {
3171
3365
  readonly appBearer: string;
3172
3366
  readonly body: MintRequestInput;
3173
3367
  }): Promise<MintRequestResult>;
3174
3368
  //#endregion
3175
3369
  //#region src/messaging/dm-key-backup.d.ts
3176
- declare function getDmKeyBackupStatus(ctx: TransportContext, input: {
3370
+ declare function getDmKeyBackupStatus(context: TransportContext, input: {
3177
3371
  readonly bearer: string;
3178
3372
  }): Promise<DmKeyBackupStatusResponse>;
3179
- declare function setupDmKeyBackup(ctx: TransportContext, input: {
3373
+ declare function setupDmKeyBackup(context: TransportContext, input: {
3180
3374
  readonly bearer: string;
3181
3375
  readonly body: DmKeyBackupSetupBody;
3182
3376
  }): Promise<DmKeyBackupOkResponse>;
3183
- declare function unlockDmKeyBackup(ctx: TransportContext, input: {
3377
+ declare function unlockDmKeyBackup(context: TransportContext, input: {
3184
3378
  readonly bearer: string;
3185
3379
  readonly body: DmKeyBackupUnlockBody;
3186
3380
  }): Promise<DmKeyBackupUnlockResponse>;
3187
3381
  //#endregion
3188
3382
  //#region src/messaging/dm-keys.d.ts
3189
- declare function publishDmKey(ctx: TransportContext, input: {
3383
+ declare function publishDmKey(context: TransportContext, input: {
3190
3384
  readonly bearer: string;
3191
3385
  readonly body: PublishDmKeyBody;
3192
3386
  }): Promise<DmKeyResponse>;
3193
- declare function getMyDmKey(ctx: TransportContext, input: {
3387
+ declare function getMyDmKey(context: TransportContext, input: {
3194
3388
  readonly bearer: string;
3195
3389
  }): Promise<DmKeyResponse | null>;
3196
- declare function getThreadDmKey(ctx: TransportContext, input: {
3390
+ declare function getThreadDmKey(context: TransportContext, input: {
3197
3391
  readonly bearer: string;
3198
3392
  readonly threadId: string;
3199
3393
  }): Promise<DmKeyResponse>;
3200
- declare function batchThreadDmKeys(ctx: TransportContext, input: {
3394
+ declare function batchThreadDmKeys(context: TransportContext, input: {
3201
3395
  readonly bearer: string;
3202
3396
  readonly threadIds: readonly string[];
3203
3397
  }): Promise<BatchThreadDmKeysResponse>;
3204
3398
  //#endregion
3205
3399
  //#region src/messaging/logo.d.ts
3206
- declare function uploadThreadLogo(ctx: TransportContext, input: {
3400
+ declare function uploadThreadLogo(context: TransportContext, input: {
3207
3401
  readonly bearer: string;
3208
3402
  readonly threadId: string;
3209
3403
  readonly file: Blob | ArrayBufferView | ArrayBuffer;
3210
3404
  readonly filename: string;
3211
3405
  readonly contentType: string;
3212
3406
  }): Promise<GroupThreadMutationResponse>;
3213
- declare function deleteThreadLogo(ctx: TransportContext, input: {
3407
+ declare function deleteThreadLogo(context: TransportContext, input: {
3214
3408
  readonly bearer: string;
3215
3409
  readonly threadId: string;
3216
3410
  }): Promise<GroupThreadMutationResponse>;
3217
3411
  //#endregion
3218
3412
  //#region src/messaging/messages.d.ts
3219
- declare function deleteMessage(ctx: TransportContext, input: {
3413
+ declare function deleteMessage(context: TransportContext, input: {
3220
3414
  readonly bearer: string;
3221
3415
  readonly threadId: string;
3222
3416
  readonly messageId: string;
3223
3417
  }): Promise<MessagingOkResponse>;
3224
- declare function editMessage(ctx: TransportContext, input: {
3418
+ declare function editMessage(context: TransportContext, input: {
3225
3419
  readonly bearer: string;
3226
3420
  readonly threadId: string;
3227
3421
  readonly messageId: string;
3228
3422
  readonly body: EditMessageBody;
3229
3423
  }): Promise<MessageItem>;
3230
- declare function addReaction(ctx: TransportContext, input: {
3424
+ declare function addReaction(context: TransportContext, input: {
3231
3425
  readonly bearer: string;
3232
3426
  readonly threadId: string;
3233
3427
  readonly messageId: string;
3234
3428
  readonly emoji: ReactionEmoji;
3235
3429
  }): Promise<ReactionMutationResponse>;
3236
- declare function removeReaction(ctx: TransportContext, input: {
3430
+ declare function removeReaction(context: TransportContext, input: {
3237
3431
  readonly bearer: string;
3238
3432
  readonly threadId: string;
3239
3433
  readonly messageId: string;
@@ -3241,12 +3435,12 @@ declare function removeReaction(ctx: TransportContext, input: {
3241
3435
  }): Promise<ReactionMutationResponse>;
3242
3436
  //#endregion
3243
3437
  //#region src/messaging/participants.d.ts
3244
- declare function removeParticipant(ctx: TransportContext, input: {
3438
+ declare function removeParticipant(context: TransportContext, input: {
3245
3439
  readonly bearer: string;
3246
3440
  readonly threadId: string;
3247
3441
  readonly userId: string;
3248
3442
  }): Promise<GroupThreadMutationResponse>;
3249
- declare function updateParticipantRole(ctx: TransportContext, input: {
3443
+ declare function updateParticipantRole(context: TransportContext, input: {
3250
3444
  readonly bearer: string;
3251
3445
  readonly threadId: string;
3252
3446
  readonly userId: string;
@@ -3254,33 +3448,33 @@ declare function updateParticipantRole(ctx: TransportContext, input: {
3254
3448
  }): Promise<GroupThreadMutationResponse>;
3255
3449
  //#endregion
3256
3450
  //#region src/messaging/threads.d.ts
3257
- declare function deleteThread(ctx: TransportContext, input: {
3451
+ declare function deleteThread(context: TransportContext, input: {
3258
3452
  readonly bearer: string;
3259
3453
  readonly threadId: string;
3260
3454
  }): Promise<MessagingOkResponse>;
3261
- declare function updateThreadSettings(ctx: TransportContext, input: {
3455
+ declare function updateThreadSettings(context: TransportContext, input: {
3262
3456
  readonly bearer: string;
3263
3457
  readonly threadId: string;
3264
3458
  readonly body: UpdateThreadSettingsBody;
3265
3459
  }): Promise<GroupThreadMutationResponse>;
3266
- declare function hideThread(ctx: TransportContext, input: {
3460
+ declare function hideThread(context: TransportContext, input: {
3267
3461
  readonly bearer: string;
3268
3462
  readonly threadId: string;
3269
3463
  }): Promise<MessagingOkResponse>;
3270
- declare function inviteParticipants(ctx: TransportContext, input: {
3464
+ declare function inviteParticipants(context: TransportContext, input: {
3271
3465
  readonly bearer: string;
3272
3466
  readonly threadId: string;
3273
3467
  readonly body: InviteParticipantsBody;
3274
3468
  }): Promise<GroupThreadMutationResponse>;
3275
- declare function leaveThread(ctx: TransportContext, input: {
3469
+ declare function leaveThread(context: TransportContext, input: {
3276
3470
  readonly bearer: string;
3277
3471
  readonly threadId: string;
3278
3472
  }): Promise<MessagingOkResponse>;
3279
- declare function pinThread(ctx: TransportContext, input: {
3473
+ declare function pinThread(context: TransportContext, input: {
3280
3474
  readonly bearer: string;
3281
3475
  readonly threadId: string;
3282
3476
  }): Promise<PinThreadResponse>;
3283
- declare function unpinThread(ctx: TransportContext, input: {
3477
+ declare function unpinThread(context: TransportContext, input: {
3284
3478
  readonly bearer: string;
3285
3479
  readonly threadId: string;
3286
3480
  }): Promise<MessagingOkResponse>;
@@ -3313,7 +3507,7 @@ type AuthorizeUrl = {
3313
3507
  declare function buildAuthorizeUrl(input: BuildAuthorizeUrlInput): Promise<AuthorizeUrl>;
3314
3508
  //#endregion
3315
3509
  //#region src/oauth/client-credentials.d.ts
3316
- declare function mintClientCredentialsToken(ctx: TransportContext, input: {
3510
+ declare function mintClientCredentialsToken(context: TransportContext, input: {
3317
3511
  readonly clientId: string;
3318
3512
  readonly clientSecret: string;
3319
3513
  readonly scope?: readonly OauthScope[] | undefined;
@@ -3330,7 +3524,7 @@ declare function createAppTokenCache(options: {
3330
3524
  }): AppTokenCache;
3331
3525
  //#endregion
3332
3526
  //#region src/oauth/discovery.d.ts
3333
- declare function fetchAuthorizationServerMetadata(ctx: TransportContext): Promise<OauthAuthorizationServerMetadata>;
3527
+ declare function fetchAuthorizationServerMetadata(context: TransportContext): Promise<OauthAuthorizationServerMetadata>;
3334
3528
  declare function defaultEndpoints(issuer: string): {
3335
3529
  authorize: string;
3336
3530
  token: string;
@@ -3339,10 +3533,10 @@ declare function defaultEndpoints(issuer: string): {
3339
3533
  };
3340
3534
  //#endregion
3341
3535
  //#region src/oauth/registration.d.ts
3342
- declare function registerOauthClient(ctx: TransportContext, input: OauthClientRegistrationRequest): Promise<OauthClientRegistrationResponse>;
3536
+ declare function registerOauthClient(context: TransportContext, input: OauthClientRegistrationRequest): Promise<OauthClientRegistrationResponse>;
3343
3537
  //#endregion
3344
3538
  //#region src/oauth/revoke.d.ts
3345
- declare function revokeToken(ctx: TransportContext, input: {
3539
+ declare function revokeToken(context: TransportContext, input: {
3346
3540
  readonly token: string;
3347
3541
  readonly tokenTypeHint?: "access_token" | "refresh_token" | undefined;
3348
3542
  readonly clientId: string;
@@ -3350,14 +3544,14 @@ declare function revokeToken(ctx: TransportContext, input: {
3350
3544
  }): Promise<void>;
3351
3545
  //#endregion
3352
3546
  //#region src/oauth/token.d.ts
3353
- declare function exchangeAuthorizationCode(ctx: TransportContext, input: {
3547
+ declare function exchangeAuthorizationCode(context: TransportContext, input: {
3354
3548
  readonly code: string;
3355
3549
  readonly redirectUri: string;
3356
3550
  readonly codeVerifier: string;
3357
3551
  readonly clientId: string;
3358
3552
  readonly clientSecret?: string | undefined;
3359
3553
  }): Promise<OauthTokenResponse>;
3360
- declare function refreshAccessToken(ctx: TransportContext, input: {
3554
+ declare function refreshAccessToken(context: TransportContext, input: {
3361
3555
  readonly refreshToken: string;
3362
3556
  readonly clientId: string;
3363
3557
  readonly clientSecret?: string | undefined;
@@ -3366,31 +3560,31 @@ declare function refreshAccessToken(ctx: TransportContext, input: {
3366
3560
  declare function toTokenSet(now: number, response: OauthTokenResponse): TokenSet;
3367
3561
  //#endregion
3368
3562
  //#region src/oauth/userinfo.d.ts
3369
- declare function fetchUserInfo(ctx: TransportContext, input: {
3563
+ declare function fetchUserInfo(context: TransportContext, input: {
3370
3564
  readonly bearer: string;
3371
3565
  }): Promise<OauthUserInfoResponse>;
3372
3566
  //#endregion
3373
3567
  //#region src/payments/appeal.d.ts
3374
- declare function fileAppeal(ctx: TransportContext, input: {
3568
+ declare function fileAppeal(context: TransportContext, input: {
3375
3569
  readonly bearer: string;
3376
3570
  readonly body: AppealFileRequest;
3377
3571
  }): Promise<AppealFileResponse>;
3378
- declare function fileAppealPotLeg(ctx: TransportContext, input: {
3572
+ declare function fileAppealPotLeg(context: TransportContext, input: {
3379
3573
  readonly bearer: string;
3380
3574
  readonly body: AppealPotLegFileRequest;
3381
3575
  }): Promise<AppealFileResponse>;
3382
3576
  //#endregion
3383
3577
  //#region src/payments/appeal-room.d.ts
3384
- declare function getAppealRoom(ctx: TransportContext, input: {
3578
+ declare function getAppealRoom(context: TransportContext, input: {
3385
3579
  readonly bearer: string;
3386
3580
  readonly appealId: string;
3387
3581
  }): Promise<AppealRoomView>;
3388
- declare function postAppealRoomMessage(ctx: TransportContext, input: {
3582
+ declare function postAppealRoomMessage(context: TransportContext, input: {
3389
3583
  readonly bearer: string;
3390
3584
  readonly appealId: string;
3391
3585
  readonly body: AppealRoomPostRequest;
3392
3586
  }): Promise<AppealRoomPostResponse>;
3393
- declare function uploadAppealRoomAttachment(ctx: TransportContext, input: {
3587
+ declare function uploadAppealRoomAttachment(context: TransportContext, input: {
3394
3588
  readonly bearer: string;
3395
3589
  readonly appealId: string;
3396
3590
  readonly file: Blob | ArrayBufferView | ArrayBuffer;
@@ -3399,7 +3593,7 @@ declare function uploadAppealRoomAttachment(ctx: TransportContext, input: {
3399
3593
  }): Promise<UploadAttachmentResponse>;
3400
3594
  //#endregion
3401
3595
  //#region src/payments/cancel-pot.d.ts
3402
- declare function cancelPot(ctx: TransportContext, input: {
3596
+ declare function cancelPot(context: TransportContext, input: {
3403
3597
  readonly appBearer: string;
3404
3598
  readonly body: OauthPaymentCancelPotRequest;
3405
3599
  }): Promise<OauthPaymentCancelPotResponse>;
@@ -3408,112 +3602,128 @@ declare function cancelPot(ctx: TransportContext, input: {
3408
3602
  type ChargeResult = OauthPaymentChargeResponse | ({
3409
3603
  status: "monthly_limit_exceeded";
3410
3604
  } & Omit<OauthPaymentChargeLimitExceeded, "error">);
3411
- declare function charge(ctx: TransportContext, input: {
3605
+ declare function charge(context: TransportContext, input: {
3412
3606
  readonly bearer: string;
3413
3607
  readonly body: OauthPaymentChargeRequest;
3414
3608
  readonly idempotencyKey?: string;
3415
3609
  }): Promise<ChargeResult>;
3416
3610
  //#endregion
3417
3611
  //#region src/payments/distribute.d.ts
3418
- declare function distributePot(ctx: TransportContext, input: {
3612
+ declare function distributePot(context: TransportContext, input: {
3419
3613
  readonly appBearer: string;
3420
3614
  readonly body: OauthPaymentDistributeRequest;
3421
3615
  }): Promise<OauthPaymentDistributeResponse>;
3422
3616
  //#endregion
3423
3617
  //#region src/payments/intent.d.ts
3424
- declare function getPaymentIntent(ctx: TransportContext, input: {
3618
+ declare function getPaymentIntent(context: TransportContext, input: {
3425
3619
  readonly bearer: string;
3426
3620
  readonly intentId: string;
3427
3621
  }): Promise<OauthPaymentIntentContext>;
3428
- declare function signPaymentIntent(ctx: TransportContext, input: {
3622
+ declare function signPaymentIntent(context: TransportContext, input: {
3429
3623
  readonly bearer: string;
3430
3624
  readonly intentId: string;
3431
3625
  }): Promise<OauthPaymentIntentSignResponse>;
3432
- declare function completePaymentIntent(ctx: TransportContext, input: {
3626
+ declare function completePaymentIntent(context: TransportContext, input: {
3433
3627
  readonly bearer: string;
3434
3628
  readonly intentId: string;
3435
3629
  readonly body: OauthPaymentIntentComplete;
3436
3630
  }): Promise<OauthPaymentIntentResolveResponse>;
3437
- declare function denyPaymentIntent(ctx: TransportContext, input: {
3631
+ declare function denyPaymentIntent(context: TransportContext, input: {
3438
3632
  readonly bearer: string;
3439
3633
  readonly intentId: string;
3440
3634
  }): Promise<OauthPaymentIntentResolveResponse>;
3441
3635
  //#endregion
3442
3636
  //#region src/payments/limits.d.ts
3443
- declare function getPaymentLimits(ctx: TransportContext, input: {
3637
+ declare function getPaymentLimits(context: TransportContext, input: {
3444
3638
  readonly bearer: string;
3445
3639
  }): Promise<OauthPaymentLimitsResponse>;
3446
3640
  //#endregion
3447
3641
  //#region src/payments/moonpay.d.ts
3448
- declare function getMoonpayAvailability(ctx: TransportContext, input: {
3642
+ declare function getMoonpayAvailability(context: TransportContext, input: {
3449
3643
  readonly bearer: string;
3450
3644
  }): Promise<MoonpayAvailabilityResponse>;
3451
- declare function mintMoonpayBuyUrl(ctx: TransportContext, input: {
3645
+ declare function mintMoonpayBuyUrl(context: TransportContext, input: {
3452
3646
  readonly bearer: string;
3453
3647
  readonly body: MoonpayBuyUrlRequest;
3454
3648
  }): Promise<MoonpayBuyUrlResponse>;
3455
- declare function mintMoonpaySellUrl(ctx: TransportContext, input: {
3649
+ declare function mintMoonpaySellUrl(context: TransportContext, input: {
3456
3650
  readonly bearer: string;
3457
3651
  readonly body: MoonpaySellUrlRequest;
3458
3652
  }): Promise<MoonpaySellUrlResponse>;
3459
3653
  //#endregion
3460
3654
  //#region src/payments/payout.d.ts
3461
- declare function requestPayout(ctx: TransportContext, input: {
3655
+ declare function requestPayout(context: TransportContext, input: {
3462
3656
  readonly appBearer: string;
3463
3657
  readonly body: OauthPaymentPayoutRequest;
3464
3658
  }): Promise<OauthPaymentPayoutResponse>;
3465
3659
  //#endregion
3466
3660
  //#region src/payments/price.d.ts
3467
- declare function getPaymentPrice(ctx: TransportContext, input: {
3661
+ declare function getPaymentPrice(context: TransportContext, input: {
3468
3662
  readonly bearer: string;
3469
3663
  } & GetOauthPaymentsPriceData["query"]): Promise<OauthPaymentPriceResponse>;
3470
3664
  //#endregion
3471
3665
  //#region src/payments/status.d.ts
3472
- declare function getIntentStatus(ctx: TransportContext, input: {
3666
+ declare function getIntentStatus(context: TransportContext, input: {
3473
3667
  readonly bearer: string;
3474
3668
  readonly intentId: string;
3475
3669
  }): Promise<OauthPaymentIntentStatus>;
3476
3670
  //#endregion
3477
3671
  //#region src/payments/tron.d.ts
3478
- declare function getTronBalance(ctx: TransportContext, input: {
3672
+ declare function getTronBalance(context: TransportContext, input: {
3479
3673
  readonly bearer: string;
3480
3674
  }): Promise<TronBalanceResponse>;
3481
- declare function listTronLedger(ctx: TransportContext, input: {
3675
+ declare function listTronLedger(context: TransportContext, input: {
3482
3676
  readonly bearer: string;
3483
3677
  readonly before?: string;
3484
3678
  }): Promise<TronLedgerResponse>;
3485
- declare function createTronDeposit(ctx: TransportContext, input: {
3679
+ declare function createTronDeposit(context: TransportContext, input: {
3486
3680
  readonly bearer: string;
3487
3681
  readonly body: TronDepositRequest;
3488
3682
  }): Promise<TronDepositResponse>;
3489
- declare function createTronConnectOnboarding(ctx: TransportContext, input: {
3683
+ declare function createTronTransfer(context: TransportContext, input: {
3684
+ readonly bearer: string;
3685
+ readonly body: TronTransferRequest;
3686
+ readonly idempotencyKey?: string;
3687
+ }): Promise<TronTransferResponse>;
3688
+ declare function getTronSecurity(context: TransportContext, input: {
3689
+ readonly bearer: string;
3690
+ }): Promise<TronSecuritySetting>;
3691
+ declare function setTronSecurity(context: TransportContext, input: {
3692
+ readonly bearer: string;
3693
+ readonly setting: TronSecuritySetting;
3694
+ }): Promise<TronSecuritySetting>;
3695
+ declare function createTronTransferChallenge(context: TransportContext, input: {
3696
+ readonly bearer: string;
3697
+ readonly body: TronTransferChallengeRequest;
3698
+ }): Promise<TronTransferChallengeResponse>;
3699
+ declare function createTronConnectOnboarding(context: TransportContext, input: {
3490
3700
  readonly bearer: string;
3491
3701
  }): Promise<TronConnectOnboardingResponse>;
3492
- declare function createTronCashout(ctx: TransportContext, input: {
3702
+ declare function createTronCashout(context: TransportContext, input: {
3493
3703
  readonly bearer: string;
3494
3704
  readonly body: TronCashoutCreateRequest;
3495
3705
  }): Promise<TronCashoutItem>;
3496
- declare function listTronCashouts(ctx: TransportContext, input: {
3706
+ declare function listTronCashouts(context: TransportContext, input: {
3497
3707
  readonly bearer: string;
3498
3708
  }): Promise<TronCashoutListResponse>;
3499
3709
  //#endregion
3500
3710
  //#region src/payments/tron-game.d.ts
3501
- declare function chargeTronPot(ctx: TransportContext, input: {
3711
+ declare function chargeTronPot(context: TransportContext, input: {
3502
3712
  readonly bearer: string;
3503
3713
  readonly idempotencyKey: string;
3504
3714
  readonly body: TronChargeRequest;
3505
3715
  }): Promise<TronChargeResponse>;
3506
- declare function chargeTronDirect(ctx: TransportContext, input: {
3716
+ declare function chargeTronDirect(context: TransportContext, input: {
3507
3717
  readonly bearer: string;
3508
3718
  readonly idempotencyKey: string;
3509
3719
  readonly body: TronDirectChargeRequest;
3510
3720
  }): Promise<TronDirectChargeResponse>;
3511
- declare function distributeTronPot(ctx: TransportContext, input: {
3721
+ declare function distributeTronPot(context: TransportContext, input: {
3512
3722
  readonly bearer: string;
3513
3723
  readonly idempotencyKey: string;
3514
3724
  readonly body: TronDistributeRequest;
3515
3725
  }): Promise<TronDistributeResponse>;
3516
- declare function getTronGameBalance(ctx: TransportContext, input: {
3726
+ declare function getTronGameBalance(context: TransportContext, input: {
3517
3727
  readonly bearer: string;
3518
3728
  }): Promise<TronGameBalanceResponse>;
3519
3729
  //#endregion
@@ -3526,7 +3736,7 @@ type MountPresenceWidgetOptions = {
3526
3736
  readonly container?: HTMLElement;
3527
3737
  readonly onPlaySessionId?: (playSessionId: string | null) => void;
3528
3738
  readonly onStatus?: (status: PresenceStatus) => void;
3529
- readonly onAuthChange?: (authenticated: boolean) => void;
3739
+ readonly onAuthChange?: (isAuthenticated: boolean) => void;
3530
3740
  readonly styleIframe?: (iframe: HTMLIFrameElement) => void;
3531
3741
  readonly onPresentationChange?: (mode: "chip" | "overlay") => void;
3532
3742
  readonly background?: string;
@@ -3549,46 +3759,46 @@ type ConfirmResponse = {
3549
3759
  type StatusResponse = {
3550
3760
  readonly status: PlaySessionGameStatus;
3551
3761
  };
3552
- declare function confirmPlaySession(ctx: TransportContext, input: {
3762
+ declare function confirmPlaySession(context: TransportContext, input: {
3553
3763
  readonly credentials: GameHalfCredentials;
3554
3764
  readonly playSessionId: string;
3555
3765
  readonly userId: string;
3556
3766
  }): Promise<ConfirmResponse>;
3557
- declare function heartbeatPlaySession(ctx: TransportContext, input: {
3767
+ declare function heartbeatPlaySession(context: TransportContext, input: {
3558
3768
  readonly credentials: GameHalfCredentials;
3559
3769
  readonly playSessionId: string;
3560
3770
  }): Promise<StatusResponse>;
3561
- declare function endPlaySession(ctx: TransportContext, input: {
3771
+ declare function endPlaySession(context: TransportContext, input: {
3562
3772
  readonly credentials: GameHalfCredentials;
3563
3773
  readonly playSessionId: string;
3564
3774
  }): Promise<StatusResponse>;
3565
3775
  //#endregion
3566
3776
  //#region src/reads/messaging.d.ts
3567
- declare function listThreads(ctx: TransportContext, input: {
3777
+ declare function listThreads(context: TransportContext, input: {
3568
3778
  readonly bearer: string;
3569
3779
  readonly limit?: number;
3570
3780
  readonly cursor?: string;
3571
3781
  }): Promise<ThreadListResponse>;
3572
- declare function createDirectThread(ctx: TransportContext, input: {
3782
+ declare function createDirectThread(context: TransportContext, input: {
3573
3783
  readonly bearer: string;
3574
3784
  readonly body: CreateDirectThreadBody;
3575
3785
  }): Promise<ThreadSummary>;
3576
- declare function listThreadMessages(ctx: TransportContext, input: {
3786
+ declare function listThreadMessages(context: TransportContext, input: {
3577
3787
  readonly bearer: string;
3578
3788
  readonly threadId: string;
3579
3789
  readonly limit?: number;
3580
3790
  readonly cursor?: string;
3581
3791
  }): Promise<MessagesPageResponse>;
3582
- declare function sendMessage(ctx: TransportContext, input: {
3792
+ declare function sendMessage(context: TransportContext, input: {
3583
3793
  readonly bearer: string;
3584
3794
  readonly threadId: string;
3585
3795
  readonly body: SendMessageBody;
3586
3796
  }): Promise<void>;
3587
- declare function markThreadRead(ctx: TransportContext, input: {
3797
+ declare function markThreadRead(context: TransportContext, input: {
3588
3798
  readonly bearer: string;
3589
3799
  readonly threadId: string;
3590
3800
  }): Promise<void>;
3591
- declare function uploadAttachment(ctx: TransportContext, input: {
3801
+ declare function uploadAttachment(context: TransportContext, input: {
3592
3802
  readonly bearer: string;
3593
3803
  readonly threadId: string;
3594
3804
  readonly file: Blob | ArrayBufferView | ArrayBuffer;
@@ -3597,116 +3807,116 @@ declare function uploadAttachment(ctx: TransportContext, input: {
3597
3807
  }): Promise<UploadAttachmentResponse>;
3598
3808
  //#endregion
3599
3809
  //#region src/reads/notifications.d.ts
3600
- declare function listNotifications(ctx: TransportContext, input: {
3810
+ declare function listNotifications(context: TransportContext, input: {
3601
3811
  readonly bearer: string;
3602
3812
  readonly limit?: number;
3603
3813
  readonly cursor?: string;
3604
3814
  }): Promise<NotificationListResponse>;
3605
- declare function updateNotification(ctx: TransportContext, input: {
3815
+ declare function updateNotification(context: TransportContext, input: {
3606
3816
  readonly bearer: string;
3607
3817
  readonly notificationId: string;
3608
3818
  readonly body: NotificationUpdate;
3609
3819
  }): Promise<void>;
3610
- declare function markAllNotificationsRead(ctx: TransportContext, input: {
3820
+ declare function markAllNotificationsRead(context: TransportContext, input: {
3611
3821
  readonly bearer: string;
3612
3822
  }): Promise<void>;
3613
3823
  //#endregion
3614
3824
  //#region src/reads/playtime.d.ts
3615
- declare function getPlaytime(ctx: TransportContext, input: {
3825
+ declare function getPlaytime(context: TransportContext, input: {
3616
3826
  readonly bearer: string;
3617
3827
  }): Promise<PlaytimeOverview>;
3618
- declare function getPlaytimeTimeseries(ctx: TransportContext, input: {
3828
+ declare function getPlaytimeTimeseries(context: TransportContext, input: {
3619
3829
  readonly bearer: string;
3620
3830
  readonly days?: number;
3621
3831
  }): Promise<PlaytimeTimeseries>;
3622
3832
  //#endregion
3623
3833
  //#region src/reads/profile.d.ts
3624
- declare function getPublicProfile(ctx: TransportContext, input: {
3834
+ declare function getPublicProfile(context: TransportContext, input: {
3625
3835
  readonly bearer?: string;
3626
3836
  readonly handle: string;
3627
3837
  }): Promise<PublicProfile>;
3628
- declare function searchUsers(ctx: TransportContext, input: {
3838
+ declare function searchUsers(context: TransportContext, input: {
3629
3839
  readonly bearer: string;
3630
3840
  readonly q: string;
3631
3841
  readonly limit?: number;
3632
3842
  }): Promise<UserSearchResponse>;
3633
3843
  //#endregion
3634
3844
  //#region src/reads/referral.d.ts
3635
- declare function getReferral(ctx: TransportContext, input: {
3845
+ declare function getReferral(context: TransportContext, input: {
3636
3846
  readonly bearer: string;
3637
3847
  }): Promise<ReferralOverview>;
3638
- declare function createReferralCode(ctx: TransportContext, input: {
3848
+ declare function createReferralCode(context: TransportContext, input: {
3639
3849
  readonly bearer: string;
3640
3850
  readonly regenerate?: boolean;
3641
3851
  }): Promise<ReferralCodeResponse>;
3642
- declare function previewReferral(ctx: TransportContext, input: {
3852
+ declare function previewReferral(context: TransportContext, input: {
3643
3853
  readonly bearer: string;
3644
3854
  readonly code: string;
3645
3855
  }): Promise<ReferralPreviewResponse>;
3646
- declare function bindReferral(ctx: TransportContext, input: {
3856
+ declare function bindReferral(context: TransportContext, input: {
3647
3857
  readonly bearer: string;
3648
3858
  } & ReferralBindRequest): Promise<ReferralBindResponse>;
3649
3859
  //#endregion
3650
3860
  //#region src/reads/social-graph.d.ts
3651
- declare function followUser(ctx: TransportContext, input: {
3861
+ declare function followUser(context: TransportContext, input: {
3652
3862
  readonly bearer: string;
3653
3863
  readonly userId: string;
3654
3864
  }): Promise<void>;
3655
- declare function unfollowUser(ctx: TransportContext, input: {
3865
+ declare function unfollowUser(context: TransportContext, input: {
3656
3866
  readonly bearer: string;
3657
3867
  readonly userId: string;
3658
3868
  }): Promise<void>;
3659
- declare function sendFriendRequest(ctx: TransportContext, input: {
3869
+ declare function sendFriendRequest(context: TransportContext, input: {
3660
3870
  readonly bearer: string;
3661
3871
  readonly userId: string;
3662
3872
  }): Promise<void>;
3663
- declare function decideFriendRequest(ctx: TransportContext, input: {
3873
+ declare function decideFriendRequest(context: TransportContext, input: {
3664
3874
  readonly bearer: string;
3665
3875
  readonly requestId: string;
3666
3876
  readonly decision: FriendRequestDecision["decision"];
3667
3877
  }): Promise<void>;
3668
- declare function cancelFriendRequest(ctx: TransportContext, input: {
3878
+ declare function cancelFriendRequest(context: TransportContext, input: {
3669
3879
  readonly bearer: string;
3670
3880
  readonly requestId: string;
3671
3881
  }): Promise<void>;
3672
- declare function listFriends(ctx: TransportContext, input: {
3882
+ declare function listFriends(context: TransportContext, input: {
3673
3883
  readonly bearer: string;
3674
3884
  }): Promise<FriendListResponse>;
3675
3885
  //#endregion
3676
3886
  //#region src/reads/socials.d.ts
3677
- declare function listSocials(ctx: TransportContext, input: {
3887
+ declare function listSocials(context: TransportContext, input: {
3678
3888
  readonly bearer: string;
3679
3889
  }): Promise<SocialListResponse>;
3680
3890
  //#endregion
3681
3891
  //#region src/reads/wallets.d.ts
3682
- declare function listWallets(ctx: TransportContext, input: {
3892
+ declare function listWallets(context: TransportContext, input: {
3683
3893
  readonly bearer: string;
3684
3894
  }): Promise<WalletListResponse>;
3685
3895
  //#endregion
3686
3896
  //#region src/wallets-mgmt/delegation.d.ts
3687
- declare function getDelegation(ctx: TransportContext, input: {
3897
+ declare function getDelegation(context: TransportContext, input: {
3688
3898
  readonly bearer: string;
3689
3899
  readonly address: string;
3690
3900
  }): Promise<WalletDelegationStatus>;
3691
- declare function createDelegation(ctx: TransportContext, input: {
3901
+ declare function createDelegation(context: TransportContext, input: {
3692
3902
  readonly bearer: string;
3693
3903
  readonly address: string;
3694
3904
  readonly body: CreateWalletDelegation;
3695
3905
  }): Promise<CreateWalletDelegationResponse>;
3696
- declare function deleteDelegation(ctx: TransportContext, input: {
3906
+ declare function deleteDelegation(context: TransportContext, input: {
3697
3907
  readonly bearer: string;
3698
3908
  readonly address: string;
3699
3909
  }): Promise<DeleteWalletDelegationResponse>;
3700
3910
  //#endregion
3701
3911
  //#region src/wallets-mgmt/label.d.ts
3702
- declare function updateWalletLabel(ctx: TransportContext, input: {
3912
+ declare function updateWalletLabel(context: TransportContext, input: {
3703
3913
  readonly bearer: string;
3704
3914
  readonly address: string;
3705
3915
  readonly body: WalletLabelUpdate;
3706
3916
  }): Promise<WalletLabelUpdateResponse>;
3707
3917
  //#endregion
3708
3918
  //#region src/wallets-mgmt/list.d.ts
3709
- declare function listWalletManager(ctx: TransportContext, input: {
3919
+ declare function listWalletManager(context: TransportContext, input: {
3710
3920
  readonly bearer: string;
3711
3921
  }): Promise<WalletListResponse>;
3712
3922
  //#endregion
@@ -3919,4 +4129,4 @@ declare class TronNodeClient {
3919
4129
  };
3920
4130
  }
3921
4131
  //#endregion
3922
- export { AppTokenCache, AuthorizeUrl, type BrowserClientConfig, BuildAuthorizeUrlInput, ChargeResult, type FetchLike, GameHalfCredentials, HttpsGuardOptions, InflightDedup, type Logger, MountPresenceWidgetOptions, NOOP_RATE_LIMITER, type NodeClientConfig, OauthErrorCode, 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, completePaymentIntent, confirmPlaySession, consolidateDeveloperAppWallet, createAppTokenCache, createConsoleLogger, createDelegation, createDeveloperApiKey, createDeveloperApp, createDirectThread, createInMemoryTokenStore, createInflightDedup, createNoopLogger, createRateLimiter, createReferralCode, createTronCashout, createTronConnectOnboarding, createTronDeposit, decideFriendRequest, declineDeveloperInvite, defaultEndpoints, deleteAppPageBanner, deleteAppPageThumbnail, deleteAppPageThumbnailVideo, deleteAvatar, deleteDelegation, deleteDeveloperApp, deleteDeveloperAppLogo, deleteDeveloperProfileLogo, deleteDeveloperRequestLogo, deleteGameReviewReply, deleteMessage, deleteMyGameReview, deleteThread, deleteThreadLogo, denyPaymentIntent, distributePot, distributeTronPot, editMessage, endPlaySession, exchangeAuthorizationCode, fetchAuthorizationServerMetadata, fetchUserInfo, fileAppeal, fileAppealPotLeg, followUser, generatePkce, generateState, getActivity, getActivityGroup, getAdminAppealRoom, getAppFeeConfig, getAppPage, getAppPageChanges, getAppealRoom, getDelegation, getDeveloperAppActivity, getDeveloperAppBalances, getDeveloperAppEarnings, getDeveloperAppOverview, getDeveloperAppPage, getDeveloperAppPlaytime, getDeveloperAppTronBalance, getDeveloperAppWallets, getDeveloperPaymentAppeals, getDeveloperPaymentPendingDeposits, getDeveloperStatus, getDeveloperTronBalanceSummary, getDmKeyBackupStatus, getIntentStatus, getLibrary, getMoonpayAvailability, getMyDmKey, getMyGameReview, getOutstanding, getPaymentChains, getPaymentHistory, getPaymentIntent, getPaymentLimits, getPaymentPrice, getPlatformFees, getPlaytime, getPlaytimeTimeseries, getPublicProfile, getReferral, getThreadDmKey, getTronBalance, getTronGameBalance, heartbeatPlaySession, hideAppPage, hideThread, inviteDeveloperAppParticipant, inviteParticipants, leaveThread, listActivePlayers, listAdmins, listAppPages, listAppealBlacklist, listAppealQueue, listAudit, listDeveloperApiKeys, listDeveloperAppContentReports, listDeveloperAppParticipants, listDeveloperAppReviews, listDeveloperInvites, listDeveloperRequests, listDevelopers, listFriends, listGameReviews, listInventory, listInventoryForApp, listNotifications, listPaymentAuthorizations, listSocials, listThreadMessages, listThreads, listTronCashoutQueue, listTronCashouts, listTronLedger, listUsers, listWalletManager, listWallets, markAllNotificationsRead, markThreadRead, mintClientCredentialsToken, mintMoonpayBuyUrl, mintMoonpaySellUrl, mountPresenceWidget, oauthPaymentWebhookBodySchema, parseJson, pinThread, postAdminAppealRoomMessage, postAppealRoomMessage, previewReferral, provisionDeveloperAppWallet, publishDmKey, refreshAccessToken, registerOauthClient, rejectTronCashout, removeAdmin, removeAppealBlacklist, removeParticipant, removeReaction, replyToGameReview, requestDeveloperAppProduction, requestMint, requestPayout, resolveAppeal, reviewAppPage, reviewAppPageChanges, reviewDeveloperRequest, revokeDeveloperApiKey, revokeDeveloperAppParticipant, revokePaymentAuthorization, revokeToken, rotateDeveloperAppKey, rotateDeveloperAppPaymentWebhookSecret, rotateProcessorTreasury, searchGiphy, searchUsers, send, sendFriendRequest, sendJson, sendMessage, sendPresenceHeartbeat, setProcessorWhitelist, setVaultOperator, setVaultPause, setVaultWithdrawLockDefault, setVaultWithdrawLockOverride, setupDmKeyBackup, sha256Base64Url, signPaymentIntent, startOauthPaymentEventsSubscriber, submitAppContentReport, submitAppPageForReview, submitDeveloperRequest, 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, uploadDeveloperAppLogo, uploadDeveloperProfileLogo, uploadDeveloperRequestLogo, uploadMultipart, uploadThreadLogo, upsertMyGameReview, verifyWebhook, withdrawDeveloperAppWallet };
4132
+ export { AppTokenCache, AuthorizeUrl, type BrowserClientConfig, BuildAuthorizeUrlInput, ChargeResult, type FetchLike, GameHalfCredentials, HttpsGuardOptions, InflightDedup, type Logger, MountPresenceWidgetOptions, NOOP_RATE_LIMITER, type NodeClientConfig, OauthErrorCode, 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, 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, fetchAuthorizationServerMetadata, fetchUserInfo, fileAppeal, fileAppealPotLeg, followUser, generatePkce, generateState, getActivity, getActivityGroup, getAdminAppealRoom, getAppFeeConfig, getAppPage, getAppPageChanges, getAppealRoom, getDelegation, getDeveloperAppActivity, getDeveloperAppBalances, getDeveloperAppEarnings, 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, inviteDeveloperAppParticipant, inviteParticipants, leaveThread, listActivePlayers, listAdmins, listAppPages, listAppealBlacklist, listAppealQueue, listAudit, listDeveloperApiKeys, listDeveloperAppContentReports, listDeveloperAppParticipants, listDeveloperAppReviews, listDeveloperInvites, listDeveloperRequests, listDevelopers, listFriends, listGameReviewComments, listGameReviews, listInventory, listInventoryForApp, listNotifications, listPaymentAuthorizations, listSocials, listThreadMessages, listThreads, listTronCashoutQueue, listTronCashouts, listTronLedger, listUsers, listWalletManager, listWallets, markAllNotificationsRead, markThreadRead, mintClientCredentialsToken, mintMoonpayBuyUrl, mintMoonpaySellUrl, mountPresenceWidget, oauthPaymentWebhookBodySchema, parseJson, pinThread, postAdminAppealRoomMessage, postAppealRoomMessage, previewReferral, provisionDeveloperAppWallet, publishDmKey, refreshAccessToken, registerOauthClient, rejectTronCashout, removeAdmin, removeAppealBlacklist, 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, signPaymentIntent, startOauthPaymentEventsSubscriber, submitAppContentReport, submitAppPageForReview, submitDeveloperRequest, 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, uploadDeveloperAppLogo, uploadDeveloperProfileLogo, uploadDeveloperRequestLogo, uploadMultipart, uploadThreadLogo, upsertMyGameReview, verifyWebhook, withdrawDeveloperAppWallet };