@metatrongg/sdk 0.8.0-dev.3dc9fcb → 0.8.0-dev.40e1ce9

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.
@@ -423,6 +423,13 @@ type OauthPaymentIntentCompleteSigned = {
423
423
  type OauthPaymentIntentCompleteOffline = {
424
424
  method: "offline";
425
425
  };
426
+ type OauthPaymentIntentSolanaPrepareResponse = {
427
+ transaction: string;
428
+ payer: string;
429
+ };
430
+ type OauthPaymentIntentSolanaCompleteRequest = {
431
+ signedTransaction: string;
432
+ };
426
433
  type ListAppPaymentAuthorizationsResponse = {
427
434
  authorizations: Array<AppPaymentAuthorizationItem>;
428
435
  };
@@ -489,6 +496,7 @@ type LibraryItem = {
489
496
  firstPublishedAt: string;
490
497
  };
491
498
  type AppPageSlug = string;
499
+ type LibrarySort = "newest" | "top";
492
500
  type PublicAppPage = {
493
501
  appId: string;
494
502
  slug: AppPageSlug;
@@ -514,6 +522,7 @@ type PublicAppPage = {
514
522
  paymentsMode: AppPagePaymentsMode;
515
523
  oauthScopes: Array<string>;
516
524
  chains: Array<string>;
525
+ devlog: boolean;
517
526
  publishedAt: string;
518
527
  updatedAt: string;
519
528
  };
@@ -579,6 +588,7 @@ type BipUpdateListResponse = {
579
588
  updates: Array<BipUpdate>;
580
589
  total: number;
581
590
  hasMore: boolean;
591
+ pinned: BipUpdate | null;
582
592
  };
583
593
  type BipUpdate = {
584
594
  id: string;
@@ -589,6 +599,7 @@ type BipUpdate = {
589
599
  commentCount: number;
590
600
  createdAt: string;
591
601
  updatedAt: string;
602
+ pinnedAt: string | null;
592
603
  };
593
604
  type BipUpdateBody = string;
594
605
  type BipUpdateAttachments = Array<BipUpdateAttachment>;
@@ -899,7 +910,11 @@ type ActivityRow = ({
899
910
  kind: "referral_earning";
900
911
  } & ActivityRowReferralEarning) | ({
901
912
  kind: "nft_charge";
902
- } & ActivityRowNftCharge);
913
+ } & ActivityRowNftCharge) | ({
914
+ kind: "solana_stake";
915
+ } & ActivityRowSolanaStake) | ({
916
+ kind: "solana_pot_leg";
917
+ } & ActivityRowSolanaPotLeg);
903
918
  type ActivityRowPayment = {
904
919
  kind: "payment";
905
920
  groupId: string | null;
@@ -1227,6 +1242,56 @@ type ActivityRowNftCharge = {
1227
1242
  counterpartyHandle: string | null;
1228
1243
  counterpartyDisplayName: string | null;
1229
1244
  };
1245
+ type ActivityRowSolanaStake = {
1246
+ kind: "solana_stake";
1247
+ groupId: string | null;
1248
+ id: string;
1249
+ chain: string;
1250
+ occurredAt: string;
1251
+ role: "outgoing" | "incoming";
1252
+ amount: string;
1253
+ token: string;
1254
+ potId: string | null;
1255
+ usdCents: number;
1256
+ status: "completed";
1257
+ txHash: string | null;
1258
+ app: {
1259
+ id: string;
1260
+ name: string;
1261
+ logoUrl: string | null;
1262
+ slug: string | null;
1263
+ bannerUrl: string | null;
1264
+ } | null;
1265
+ stakerUserId?: string | null;
1266
+ stakerHandle?: string | null;
1267
+ stakerDisplayName?: string | null;
1268
+ metadata?: PaymentMetadata | null;
1269
+ };
1270
+ type ActivityRowSolanaPotLeg = {
1271
+ kind: "solana_pot_leg";
1272
+ groupId: string | null;
1273
+ id: string;
1274
+ chain: string;
1275
+ occurredAt: string;
1276
+ role: "outgoing" | "incoming";
1277
+ beneficiary: string;
1278
+ potId: string | null;
1279
+ amount: string;
1280
+ token: string;
1281
+ usdCents: number | null;
1282
+ status: "settled";
1283
+ app: {
1284
+ id: string;
1285
+ name: string;
1286
+ logoUrl: string | null;
1287
+ slug: string | null;
1288
+ bannerUrl: string | null;
1289
+ } | null;
1290
+ txHash: string | null;
1291
+ recipientUserId?: string | null;
1292
+ recipientHandle?: string | null;
1293
+ recipientDisplayName?: string | null;
1294
+ };
1230
1295
  type OutstandingResponse = {
1231
1296
  rows: Array<OutstandingByToken>;
1232
1297
  };
@@ -2595,7 +2660,7 @@ type DeveloperAppWalletsResponse = {
2595
2660
  };
2596
2661
  type DeveloperAppWalletItem = {
2597
2662
  chain: string;
2598
- address: string;
2663
+ address: string | string;
2599
2664
  custody: "server" | null;
2600
2665
  walletId: string | null;
2601
2666
  autoSweepEnabled: boolean;
@@ -2616,7 +2681,7 @@ type DeveloperAppProvisionWalletResponse = {
2616
2681
  chain: string;
2617
2682
  custody: "server";
2618
2683
  walletId: string;
2619
- address: string;
2684
+ address: string | string;
2620
2685
  };
2621
2686
  type DeveloperAppWithdrawResponse = {
2622
2687
  appId: string;
@@ -3238,6 +3303,13 @@ type AppealResolveRequest = {
3238
3303
  decision: "refund" | "dismiss";
3239
3304
  notes?: string;
3240
3305
  };
3306
+ type PaymentRatesResponse = {
3307
+ asOf: string;
3308
+ ethUsd: number | null;
3309
+ solUsd: number | null;
3310
+ solLamportsPerCent: number | null;
3311
+ tronUsdPerToken: number;
3312
+ };
3241
3313
  type AppealFileResponse = {
3242
3314
  appealId: string;
3243
3315
  paymentId: string;
@@ -4001,6 +4073,90 @@ type PostOauthPaymentsIntentByIdCompleteResponses = {
4001
4073
  200: OauthPaymentIntentResolveResponse;
4002
4074
  };
4003
4075
  type PostOauthPaymentsIntentByIdCompleteResponse = PostOauthPaymentsIntentByIdCompleteResponses[keyof PostOauthPaymentsIntentByIdCompleteResponses];
4076
+ type PostOauthPaymentsIntentByIdSolanaPrepareData = {
4077
+ body?: never;
4078
+ path?: never;
4079
+ query?: never;
4080
+ url: "/oauth/payments/intent/{id}/solana-prepare";
4081
+ };
4082
+ type PostOauthPaymentsIntentByIdSolanaPrepareErrors = {
4083
+ /**
4084
+ * Request error
4085
+ */
4086
+ 400: ErrorResponse;
4087
+ /**
4088
+ * Request error
4089
+ */
4090
+ 401: ErrorResponse;
4091
+ /**
4092
+ * Request error
4093
+ */
4094
+ 403: ErrorResponse;
4095
+ /**
4096
+ * Request error
4097
+ */
4098
+ 404: ErrorResponse;
4099
+ /**
4100
+ * Request error
4101
+ */
4102
+ 410: ErrorResponse;
4103
+ /**
4104
+ * Request error
4105
+ */
4106
+ 503: ErrorResponse;
4107
+ };
4108
+ type PostOauthPaymentsIntentByIdSolanaPrepareError = PostOauthPaymentsIntentByIdSolanaPrepareErrors[keyof PostOauthPaymentsIntentByIdSolanaPrepareErrors];
4109
+ type PostOauthPaymentsIntentByIdSolanaPrepareResponses = {
4110
+ /**
4111
+ * Platform-partial-signed deposit_pot tx (base64) + the payer to sign with
4112
+ */
4113
+ 200: OauthPaymentIntentSolanaPrepareResponse;
4114
+ };
4115
+ type PostOauthPaymentsIntentByIdSolanaPrepareResponse = PostOauthPaymentsIntentByIdSolanaPrepareResponses[keyof PostOauthPaymentsIntentByIdSolanaPrepareResponses];
4116
+ type PostOauthPaymentsIntentByIdSolanaCompleteData = {
4117
+ body: OauthPaymentIntentSolanaCompleteRequest;
4118
+ path?: never;
4119
+ query?: never;
4120
+ url: "/oauth/payments/intent/{id}/solana-complete";
4121
+ };
4122
+ type PostOauthPaymentsIntentByIdSolanaCompleteErrors = {
4123
+ /**
4124
+ * Request error
4125
+ */
4126
+ 400: ErrorResponse;
4127
+ /**
4128
+ * Request error
4129
+ */
4130
+ 401: ErrorResponse;
4131
+ /**
4132
+ * Request error
4133
+ */
4134
+ 403: ErrorResponse;
4135
+ /**
4136
+ * Request error
4137
+ */
4138
+ 404: ErrorResponse;
4139
+ /**
4140
+ * Request error
4141
+ */
4142
+ 410: ErrorResponse;
4143
+ /**
4144
+ * Request error
4145
+ */
4146
+ 502: ErrorResponse;
4147
+ /**
4148
+ * Request error
4149
+ */
4150
+ 503: ErrorResponse;
4151
+ };
4152
+ type PostOauthPaymentsIntentByIdSolanaCompleteError = PostOauthPaymentsIntentByIdSolanaCompleteErrors[keyof PostOauthPaymentsIntentByIdSolanaCompleteErrors];
4153
+ type PostOauthPaymentsIntentByIdSolanaCompleteResponses = {
4154
+ /**
4155
+ * Redirect target the SPA navigates to
4156
+ */
4157
+ 200: OauthPaymentIntentResolveResponse;
4158
+ };
4159
+ type PostOauthPaymentsIntentByIdSolanaCompleteResponse = PostOauthPaymentsIntentByIdSolanaCompleteResponses[keyof PostOauthPaymentsIntentByIdSolanaCompleteResponses];
4004
4160
  type PostOauthPaymentsIntentByIdDenyData = {
4005
4161
  body?: never;
4006
4162
  path?: never;
@@ -4171,6 +4327,7 @@ type GetPublicLibraryData = {
4171
4327
  query?: {
4172
4328
  genre?: "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";
4173
4329
  q?: string;
4330
+ sort?: LibrarySort;
4174
4331
  before?: string;
4175
4332
  limit?: number;
4176
4333
  };
@@ -4218,6 +4375,7 @@ type GetPublicBuildInPublicData = {
4218
4375
  query?: {
4219
4376
  genre?: "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";
4220
4377
  q?: string;
4378
+ sort?: LibrarySort;
4221
4379
  before?: string;
4222
4380
  limit?: number;
4223
4381
  };
@@ -4686,6 +4844,68 @@ type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponses = {
4686
4844
  200: BipUpdate;
4687
4845
  };
4688
4846
  type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse = PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponses[keyof PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponses];
4847
+ type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinData = {
4848
+ body?: never;
4849
+ path: {
4850
+ appId: string;
4851
+ updateId: string;
4852
+ };
4853
+ query?: never;
4854
+ url: "/me/developer/apps/{appId}/bip-updates/{updateId}/pin";
4855
+ };
4856
+ type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors = {
4857
+ /**
4858
+ * Request error
4859
+ */
4860
+ 401: ErrorResponse;
4861
+ /**
4862
+ * Request error
4863
+ */
4864
+ 403: ErrorResponse;
4865
+ /**
4866
+ * Request error
4867
+ */
4868
+ 404: ErrorResponse;
4869
+ };
4870
+ type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinError = DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors[keyof DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors];
4871
+ type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponses = {
4872
+ /**
4873
+ * The fresh (no longer pinned) update
4874
+ */
4875
+ 200: BipUpdate;
4876
+ };
4877
+ type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponse = DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponses[keyof DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponses];
4878
+ type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinData = {
4879
+ body?: never;
4880
+ path: {
4881
+ appId: string;
4882
+ updateId: string;
4883
+ };
4884
+ query?: never;
4885
+ url: "/me/developer/apps/{appId}/bip-updates/{updateId}/pin";
4886
+ };
4887
+ type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors = {
4888
+ /**
4889
+ * Request error
4890
+ */
4891
+ 401: ErrorResponse;
4892
+ /**
4893
+ * Request error
4894
+ */
4895
+ 403: ErrorResponse;
4896
+ /**
4897
+ * Request error
4898
+ */
4899
+ 404: ErrorResponse;
4900
+ };
4901
+ type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinError = PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors[keyof PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors];
4902
+ type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponses = {
4903
+ /**
4904
+ * The freshly pinned update
4905
+ */
4906
+ 200: BipUpdate;
4907
+ };
4908
+ type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponse = PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponses[keyof PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponses];
4689
4909
  type PostMeDeveloperAppsByAppIdBipUpdatesMediaData = {
4690
4910
  body: {
4691
4911
  file: string;
@@ -11890,6 +12110,19 @@ type PostAdminPaymentsAppealsByAppealIdResolveResponses = {
11890
12110
  200: AppealResolveSignedResponse;
11891
12111
  };
11892
12112
  type PostAdminPaymentsAppealsByAppealIdResolveResponse = PostAdminPaymentsAppealsByAppealIdResolveResponses[keyof PostAdminPaymentsAppealsByAppealIdResolveResponses];
12113
+ type GetPaymentsRatesData = {
12114
+ body?: never;
12115
+ path?: never;
12116
+ query?: never;
12117
+ url: "/payments/rates";
12118
+ };
12119
+ type GetPaymentsRatesResponses = {
12120
+ /**
12121
+ * Current exchange rates + the cache-fill timestamp (asOf)
12122
+ */
12123
+ 200: PaymentRatesResponse;
12124
+ };
12125
+ type GetPaymentsRatesResponse = GetPaymentsRatesResponses[keyof GetPaymentsRatesResponses];
11893
12126
  type PostPaymentsAppealsData = {
11894
12127
  body: AppealFileRequest;
11895
12128
  path?: never;
@@ -13068,6 +13301,13 @@ declare const zOauthPaymentIntentComplete: z$1.ZodDiscriminatedUnion<[z$1.ZodObj
13068
13301
  }, z$1.core.$strip>, z$1.ZodObject<{
13069
13302
  method: z$1.ZodLiteral<"offline">;
13070
13303
  }, z$1.core.$strip>], "method">;
13304
+ declare const zOauthPaymentIntentSolanaPrepareResponse: z$1.ZodObject<{
13305
+ transaction: z$1.ZodString;
13306
+ payer: z$1.ZodString;
13307
+ }, z$1.core.$strip>;
13308
+ declare const zOauthPaymentIntentSolanaCompleteRequest: z$1.ZodObject<{
13309
+ signedTransaction: z$1.ZodString;
13310
+ }, z$1.core.$strip>;
13071
13311
  declare const zAppPaymentAuthorizationItem: z$1.ZodObject<{
13072
13312
  consentId: z$1.ZodString;
13073
13313
  app: z$1.ZodObject<{
@@ -13230,6 +13470,10 @@ declare const zLibraryListResponse: z$1.ZodObject<{
13230
13470
  }, z$1.core.$strip>>;
13231
13471
  nextBefore: z$1.ZodNullable<z$1.ZodISODateTime>;
13232
13472
  }, z$1.core.$strip>;
13473
+ declare const zLibrarySort: z$1.ZodDefault<z$1.ZodEnum<{
13474
+ newest: "newest";
13475
+ top: "top";
13476
+ }>>;
13233
13477
  declare const zAppPageCategories: z$1.ZodArray<z$1.ZodEnum<{
13234
13478
  adventure: "adventure";
13235
13479
  battle_royale: "battle_royale";
@@ -13466,6 +13710,7 @@ declare const zPublicAppPage: z$1.ZodObject<{
13466
13710
  }>>;
13467
13711
  oauthScopes: z$1.ZodArray<z$1.ZodString>;
13468
13712
  chains: z$1.ZodArray<z$1.ZodString>;
13713
+ devlog: z$1.ZodBoolean;
13469
13714
  publishedAt: z$1.ZodISODateTime;
13470
13715
  updatedAt: z$1.ZodISODateTime;
13471
13716
  }, z$1.core.$strip>;
@@ -13621,6 +13866,7 @@ declare const zBipUpdate: z$1.ZodObject<{
13621
13866
  commentCount: z$1.ZodInt;
13622
13867
  createdAt: z$1.ZodISODateTime;
13623
13868
  updatedAt: z$1.ZodISODateTime;
13869
+ pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
13624
13870
  }, z$1.core.$strip>;
13625
13871
  declare const zBipUpdateListResponse: z$1.ZodObject<{
13626
13872
  updates: z$1.ZodArray<z$1.ZodObject<{
@@ -13642,9 +13888,31 @@ declare const zBipUpdateListResponse: z$1.ZodObject<{
13642
13888
  commentCount: z$1.ZodInt;
13643
13889
  createdAt: z$1.ZodISODateTime;
13644
13890
  updatedAt: z$1.ZodISODateTime;
13891
+ pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
13645
13892
  }, z$1.core.$strip>>;
13646
13893
  total: z$1.ZodInt;
13647
13894
  hasMore: z$1.ZodBoolean;
13895
+ pinned: z$1.ZodNullable<z$1.ZodObject<{
13896
+ id: z$1.ZodUUID;
13897
+ appId: z$1.ZodUUID;
13898
+ body: z$1.ZodString;
13899
+ attachments: z$1.ZodArray<z$1.ZodObject<{
13900
+ url: z$1.ZodURL;
13901
+ kind: z$1.ZodEnum<{
13902
+ image: "image";
13903
+ video: "video";
13904
+ }>;
13905
+ order: z$1.ZodInt;
13906
+ }, z$1.core.$strip>>;
13907
+ reactions: z$1.ZodObject<{
13908
+ up: z$1.ZodInt;
13909
+ down: z$1.ZodInt;
13910
+ }, z$1.core.$strip>;
13911
+ commentCount: z$1.ZodInt;
13912
+ createdAt: z$1.ZodISODateTime;
13913
+ updatedAt: z$1.ZodISODateTime;
13914
+ pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
13915
+ }, z$1.core.$strip>>;
13648
13916
  }, z$1.core.$strip>;
13649
13917
  declare const zBipUpdateCommentBody: z$1.ZodString;
13650
13918
  declare const zReviewAuthor: z$1.ZodObject<{
@@ -13901,8 +14169,8 @@ declare const zReviewListResponse: z$1.ZodObject<{
13901
14169
  hasMore: z$1.ZodBoolean;
13902
14170
  }, z$1.core.$strip>;
13903
14171
  declare const zReviewSort: z$1.ZodDefault<z$1.ZodEnum<{
13904
- helpful: "helpful";
13905
14172
  newest: "newest";
14173
+ helpful: "helpful";
13906
14174
  oldest: "oldest";
13907
14175
  }>>;
13908
14176
  declare const zReviewEligibilityReason: z$1.ZodNullable<z$1.ZodEnum<{
@@ -14742,19 +15010,26 @@ declare const zActivityRowNftCharge: z$1.ZodObject<{
14742
15010
  counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
14743
15011
  counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
14744
15012
  }, z$1.core.$strip>;
14745
- declare const zActivityRow: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
15013
+ declare const zActivityRowSolanaStake: z$1.ZodObject<{
15014
+ kind: z$1.ZodEnum<{
15015
+ solana_stake: "solana_stake";
15016
+ }>;
14746
15017
  groupId: z$1.ZodNullable<z$1.ZodString>;
14747
15018
  id: z$1.ZodString;
14748
15019
  chain: z$1.ZodString;
14749
- chainId: z$1.ZodInt;
14750
15020
  occurredAt: z$1.ZodISODateTime;
14751
15021
  role: z$1.ZodEnum<{
14752
15022
  outgoing: "outgoing";
14753
15023
  incoming: "incoming";
14754
15024
  }>;
14755
- payer: z$1.ZodString;
14756
- beneficiary: z$1.ZodNullable<z$1.ZodString>;
14757
- counterparty: z$1.ZodNullable<z$1.ZodString>;
15025
+ amount: z$1.ZodString;
15026
+ token: z$1.ZodString;
15027
+ potId: z$1.ZodNullable<z$1.ZodString>;
15028
+ usdCents: z$1.ZodInt;
15029
+ status: z$1.ZodEnum<{
15030
+ completed: "completed";
15031
+ }>;
15032
+ txHash: z$1.ZodNullable<z$1.ZodString>;
14758
15033
  app: z$1.ZodNullable<z$1.ZodObject<{
14759
15034
  id: z$1.ZodString;
14760
15035
  name: z$1.ZodString;
@@ -14762,43 +15037,9 @@ declare const zActivityRow: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
14762
15037
  slug: z$1.ZodNullable<z$1.ZodString>;
14763
15038
  bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
14764
15039
  }, z$1.core.$strip>>;
14765
- beneficiaryApp: z$1.ZodNullable<z$1.ZodObject<{
14766
- id: z$1.ZodString;
14767
- name: z$1.ZodString;
14768
- logoUrl: z$1.ZodNullable<z$1.ZodURL>;
14769
- slug: z$1.ZodNullable<z$1.ZodString>;
14770
- bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
14771
- }, z$1.core.$strip>>;
14772
- amount: z$1.ZodString;
14773
- token: z$1.ZodString;
14774
- vault: z$1.ZodString;
14775
- vaultKind: z$1.ZodEnum<{
14776
- credit: "credit";
14777
- platform: "platform";
14778
- }>;
14779
- targetKind: z$1.ZodEnum<{
14780
- credit: "credit";
14781
- pot: "pot";
14782
- }>;
14783
- processorAddress: z$1.ZodNullable<z$1.ZodString>;
14784
- grossAmount: z$1.ZodString;
14785
- creditedAmount: z$1.ZodString;
14786
- settlement: z$1.ZodNullable<z$1.ZodEnum<{
14787
- instant: "instant";
14788
- locked: "locked";
14789
- }>>;
14790
- appealable: z$1.ZodBoolean;
14791
- disputableLegId: z$1.ZodNullable<z$1.ZodString>;
14792
- vaultReleaseAt: z$1.ZodNullable<z$1.ZodISODateTime>;
14793
- consolidatedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
14794
- status: z$1.ZodEnum<{
14795
- completed: "completed";
14796
- pending: "pending";
14797
- expired: "expired";
14798
- }>;
14799
- txHash: z$1.ZodNullable<z$1.ZodString>;
14800
- blockNumber: z$1.ZodNullable<z$1.ZodString>;
14801
- logIndex: z$1.ZodNullable<z$1.ZodInt>;
15040
+ stakerUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
15041
+ stakerHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
15042
+ stakerDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
14802
15043
  metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
14803
15044
  purpose: z$1.ZodOptional<z$1.ZodString>;
14804
15045
  title: z$1.ZodOptional<z$1.ZodString>;
@@ -14810,8 +15051,109 @@ declare const zActivityRow: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
14810
15051
  image: z$1.ZodOptional<z$1.ZodURL>;
14811
15052
  extra: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodNumber, z$1.ZodBoolean]>>>;
14812
15053
  }, z$1.core.$strip>>>;
14813
- usdCents: z$1.ZodNullable<z$1.ZodInt>;
14814
- kind: z$1.ZodLiteral<"payment">;
15054
+ }, z$1.core.$strip>;
15055
+ declare const zActivityRowSolanaPotLeg: z$1.ZodObject<{
15056
+ kind: z$1.ZodEnum<{
15057
+ solana_pot_leg: "solana_pot_leg";
15058
+ }>;
15059
+ groupId: z$1.ZodNullable<z$1.ZodString>;
15060
+ id: z$1.ZodString;
15061
+ chain: z$1.ZodString;
15062
+ occurredAt: z$1.ZodISODateTime;
15063
+ role: z$1.ZodEnum<{
15064
+ outgoing: "outgoing";
15065
+ incoming: "incoming";
15066
+ }>;
15067
+ beneficiary: z$1.ZodString;
15068
+ potId: z$1.ZodNullable<z$1.ZodString>;
15069
+ amount: z$1.ZodString;
15070
+ token: z$1.ZodString;
15071
+ usdCents: z$1.ZodNullable<z$1.ZodInt>;
15072
+ status: z$1.ZodEnum<{
15073
+ settled: "settled";
15074
+ }>;
15075
+ app: z$1.ZodNullable<z$1.ZodObject<{
15076
+ id: z$1.ZodString;
15077
+ name: z$1.ZodString;
15078
+ logoUrl: z$1.ZodNullable<z$1.ZodURL>;
15079
+ slug: z$1.ZodNullable<z$1.ZodString>;
15080
+ bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
15081
+ }, z$1.core.$strip>>;
15082
+ txHash: z$1.ZodNullable<z$1.ZodString>;
15083
+ recipientUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
15084
+ recipientHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
15085
+ recipientDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
15086
+ }, z$1.core.$strip>;
15087
+ declare const zActivityRow: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
15088
+ groupId: z$1.ZodNullable<z$1.ZodString>;
15089
+ id: z$1.ZodString;
15090
+ chain: z$1.ZodString;
15091
+ chainId: z$1.ZodInt;
15092
+ occurredAt: z$1.ZodISODateTime;
15093
+ role: z$1.ZodEnum<{
15094
+ outgoing: "outgoing";
15095
+ incoming: "incoming";
15096
+ }>;
15097
+ payer: z$1.ZodString;
15098
+ beneficiary: z$1.ZodNullable<z$1.ZodString>;
15099
+ counterparty: z$1.ZodNullable<z$1.ZodString>;
15100
+ app: z$1.ZodNullable<z$1.ZodObject<{
15101
+ id: z$1.ZodString;
15102
+ name: z$1.ZodString;
15103
+ logoUrl: z$1.ZodNullable<z$1.ZodURL>;
15104
+ slug: z$1.ZodNullable<z$1.ZodString>;
15105
+ bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
15106
+ }, z$1.core.$strip>>;
15107
+ beneficiaryApp: z$1.ZodNullable<z$1.ZodObject<{
15108
+ id: z$1.ZodString;
15109
+ name: z$1.ZodString;
15110
+ logoUrl: z$1.ZodNullable<z$1.ZodURL>;
15111
+ slug: z$1.ZodNullable<z$1.ZodString>;
15112
+ bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
15113
+ }, z$1.core.$strip>>;
15114
+ amount: z$1.ZodString;
15115
+ token: z$1.ZodString;
15116
+ vault: z$1.ZodString;
15117
+ vaultKind: z$1.ZodEnum<{
15118
+ credit: "credit";
15119
+ platform: "platform";
15120
+ }>;
15121
+ targetKind: z$1.ZodEnum<{
15122
+ credit: "credit";
15123
+ pot: "pot";
15124
+ }>;
15125
+ processorAddress: z$1.ZodNullable<z$1.ZodString>;
15126
+ grossAmount: z$1.ZodString;
15127
+ creditedAmount: z$1.ZodString;
15128
+ settlement: z$1.ZodNullable<z$1.ZodEnum<{
15129
+ instant: "instant";
15130
+ locked: "locked";
15131
+ }>>;
15132
+ appealable: z$1.ZodBoolean;
15133
+ disputableLegId: z$1.ZodNullable<z$1.ZodString>;
15134
+ vaultReleaseAt: z$1.ZodNullable<z$1.ZodISODateTime>;
15135
+ consolidatedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
15136
+ status: z$1.ZodEnum<{
15137
+ completed: "completed";
15138
+ pending: "pending";
15139
+ expired: "expired";
15140
+ }>;
15141
+ txHash: z$1.ZodNullable<z$1.ZodString>;
15142
+ blockNumber: z$1.ZodNullable<z$1.ZodString>;
15143
+ logIndex: z$1.ZodNullable<z$1.ZodInt>;
15144
+ metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
15145
+ purpose: z$1.ZodOptional<z$1.ZodString>;
15146
+ title: z$1.ZodOptional<z$1.ZodString>;
15147
+ note: z$1.ZodOptional<z$1.ZodString>;
15148
+ quantity: z$1.ZodOptional<z$1.ZodInt>;
15149
+ category: z$1.ZodOptional<z$1.ZodString>;
15150
+ sessionId: z$1.ZodOptional<z$1.ZodString>;
15151
+ groupId: z$1.ZodOptional<z$1.ZodString>;
15152
+ image: z$1.ZodOptional<z$1.ZodURL>;
15153
+ extra: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodNumber, z$1.ZodBoolean]>>>;
15154
+ }, z$1.core.$strip>>>;
15155
+ usdCents: z$1.ZodNullable<z$1.ZodInt>;
15156
+ kind: z$1.ZodLiteral<"payment">;
14815
15157
  }, z$1.core.$strip>, z$1.ZodObject<{
14816
15158
  groupId: z$1.ZodNullable<z$1.ZodString>;
14817
15159
  id: z$1.ZodString;
@@ -15203,6 +15545,74 @@ declare const zActivityRow: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
15203
15545
  counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
15204
15546
  counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
15205
15547
  kind: z$1.ZodLiteral<"nft_charge">;
15548
+ }, z$1.core.$strip>, z$1.ZodObject<{
15549
+ groupId: z$1.ZodNullable<z$1.ZodString>;
15550
+ id: z$1.ZodString;
15551
+ chain: z$1.ZodString;
15552
+ occurredAt: z$1.ZodISODateTime;
15553
+ role: z$1.ZodEnum<{
15554
+ outgoing: "outgoing";
15555
+ incoming: "incoming";
15556
+ }>;
15557
+ amount: z$1.ZodString;
15558
+ token: z$1.ZodString;
15559
+ potId: z$1.ZodNullable<z$1.ZodString>;
15560
+ usdCents: z$1.ZodInt;
15561
+ status: z$1.ZodEnum<{
15562
+ completed: "completed";
15563
+ }>;
15564
+ txHash: z$1.ZodNullable<z$1.ZodString>;
15565
+ app: z$1.ZodNullable<z$1.ZodObject<{
15566
+ id: z$1.ZodString;
15567
+ name: z$1.ZodString;
15568
+ logoUrl: z$1.ZodNullable<z$1.ZodURL>;
15569
+ slug: z$1.ZodNullable<z$1.ZodString>;
15570
+ bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
15571
+ }, z$1.core.$strip>>;
15572
+ stakerUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
15573
+ stakerHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
15574
+ stakerDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
15575
+ metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
15576
+ purpose: z$1.ZodOptional<z$1.ZodString>;
15577
+ title: z$1.ZodOptional<z$1.ZodString>;
15578
+ note: z$1.ZodOptional<z$1.ZodString>;
15579
+ quantity: z$1.ZodOptional<z$1.ZodInt>;
15580
+ category: z$1.ZodOptional<z$1.ZodString>;
15581
+ sessionId: z$1.ZodOptional<z$1.ZodString>;
15582
+ groupId: z$1.ZodOptional<z$1.ZodString>;
15583
+ image: z$1.ZodOptional<z$1.ZodURL>;
15584
+ extra: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodNumber, z$1.ZodBoolean]>>>;
15585
+ }, z$1.core.$strip>>>;
15586
+ kind: z$1.ZodLiteral<"solana_stake">;
15587
+ }, z$1.core.$strip>, z$1.ZodObject<{
15588
+ groupId: z$1.ZodNullable<z$1.ZodString>;
15589
+ id: z$1.ZodString;
15590
+ chain: z$1.ZodString;
15591
+ occurredAt: z$1.ZodISODateTime;
15592
+ role: z$1.ZodEnum<{
15593
+ outgoing: "outgoing";
15594
+ incoming: "incoming";
15595
+ }>;
15596
+ beneficiary: z$1.ZodString;
15597
+ potId: z$1.ZodNullable<z$1.ZodString>;
15598
+ amount: z$1.ZodString;
15599
+ token: z$1.ZodString;
15600
+ usdCents: z$1.ZodNullable<z$1.ZodInt>;
15601
+ status: z$1.ZodEnum<{
15602
+ settled: "settled";
15603
+ }>;
15604
+ app: z$1.ZodNullable<z$1.ZodObject<{
15605
+ id: z$1.ZodString;
15606
+ name: z$1.ZodString;
15607
+ logoUrl: z$1.ZodNullable<z$1.ZodURL>;
15608
+ slug: z$1.ZodNullable<z$1.ZodString>;
15609
+ bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
15610
+ }, z$1.core.$strip>>;
15611
+ txHash: z$1.ZodNullable<z$1.ZodString>;
15612
+ recipientUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
15613
+ recipientHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
15614
+ recipientDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
15615
+ kind: z$1.ZodLiteral<"solana_pot_leg">;
15206
15616
  }, z$1.core.$strip>], "kind">;
15207
15617
  declare const zActivityResponse: z$1.ZodObject<{
15208
15618
  rows: z$1.ZodArray<z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
@@ -15666,6 +16076,74 @@ declare const zActivityResponse: z$1.ZodObject<{
15666
16076
  counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
15667
16077
  counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
15668
16078
  kind: z$1.ZodLiteral<"nft_charge">;
16079
+ }, z$1.core.$strip>, z$1.ZodObject<{
16080
+ groupId: z$1.ZodNullable<z$1.ZodString>;
16081
+ id: z$1.ZodString;
16082
+ chain: z$1.ZodString;
16083
+ occurredAt: z$1.ZodISODateTime;
16084
+ role: z$1.ZodEnum<{
16085
+ outgoing: "outgoing";
16086
+ incoming: "incoming";
16087
+ }>;
16088
+ amount: z$1.ZodString;
16089
+ token: z$1.ZodString;
16090
+ potId: z$1.ZodNullable<z$1.ZodString>;
16091
+ usdCents: z$1.ZodInt;
16092
+ status: z$1.ZodEnum<{
16093
+ completed: "completed";
16094
+ }>;
16095
+ txHash: z$1.ZodNullable<z$1.ZodString>;
16096
+ app: z$1.ZodNullable<z$1.ZodObject<{
16097
+ id: z$1.ZodString;
16098
+ name: z$1.ZodString;
16099
+ logoUrl: z$1.ZodNullable<z$1.ZodURL>;
16100
+ slug: z$1.ZodNullable<z$1.ZodString>;
16101
+ bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
16102
+ }, z$1.core.$strip>>;
16103
+ stakerUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
16104
+ stakerHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
16105
+ stakerDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
16106
+ metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
16107
+ purpose: z$1.ZodOptional<z$1.ZodString>;
16108
+ title: z$1.ZodOptional<z$1.ZodString>;
16109
+ note: z$1.ZodOptional<z$1.ZodString>;
16110
+ quantity: z$1.ZodOptional<z$1.ZodInt>;
16111
+ category: z$1.ZodOptional<z$1.ZodString>;
16112
+ sessionId: z$1.ZodOptional<z$1.ZodString>;
16113
+ groupId: z$1.ZodOptional<z$1.ZodString>;
16114
+ image: z$1.ZodOptional<z$1.ZodURL>;
16115
+ extra: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodNumber, z$1.ZodBoolean]>>>;
16116
+ }, z$1.core.$strip>>>;
16117
+ kind: z$1.ZodLiteral<"solana_stake">;
16118
+ }, z$1.core.$strip>, z$1.ZodObject<{
16119
+ groupId: z$1.ZodNullable<z$1.ZodString>;
16120
+ id: z$1.ZodString;
16121
+ chain: z$1.ZodString;
16122
+ occurredAt: z$1.ZodISODateTime;
16123
+ role: z$1.ZodEnum<{
16124
+ outgoing: "outgoing";
16125
+ incoming: "incoming";
16126
+ }>;
16127
+ beneficiary: z$1.ZodString;
16128
+ potId: z$1.ZodNullable<z$1.ZodString>;
16129
+ amount: z$1.ZodString;
16130
+ token: z$1.ZodString;
16131
+ usdCents: z$1.ZodNullable<z$1.ZodInt>;
16132
+ status: z$1.ZodEnum<{
16133
+ settled: "settled";
16134
+ }>;
16135
+ app: z$1.ZodNullable<z$1.ZodObject<{
16136
+ id: z$1.ZodString;
16137
+ name: z$1.ZodString;
16138
+ logoUrl: z$1.ZodNullable<z$1.ZodURL>;
16139
+ slug: z$1.ZodNullable<z$1.ZodString>;
16140
+ bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
16141
+ }, z$1.core.$strip>>;
16142
+ txHash: z$1.ZodNullable<z$1.ZodString>;
16143
+ recipientUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
16144
+ recipientHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
16145
+ recipientDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
16146
+ kind: z$1.ZodLiteral<"solana_pot_leg">;
15669
16147
  }, z$1.core.$strip>], "kind">>;
15670
16148
  nextBefore: z$1.ZodNullable<z$1.ZodISODateTime>;
15671
16149
  nextCursor: z$1.ZodNullable<z$1.ZodString>;
@@ -18988,7 +19466,7 @@ declare const zDeveloperAppOverviewResponse: z$1.ZodObject<{
18988
19466
  }, z$1.core.$strip>;
18989
19467
  declare const zDeveloperAppWalletItem: z$1.ZodObject<{
18990
19468
  chain: z$1.ZodString;
18991
- address: z$1.ZodString;
19469
+ address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
18992
19470
  custody: z$1.ZodNullable<z$1.ZodEnum<{
18993
19471
  server: "server";
18994
19472
  }>>;
@@ -19000,7 +19478,7 @@ declare const zDeveloperAppWalletsResponse: z$1.ZodObject<{
19000
19478
  appId: z$1.ZodString;
19001
19479
  wallets: z$1.ZodArray<z$1.ZodObject<{
19002
19480
  chain: z$1.ZodString;
19003
- address: z$1.ZodString;
19481
+ address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
19004
19482
  custody: z$1.ZodNullable<z$1.ZodEnum<{
19005
19483
  server: "server";
19006
19484
  }>>;
@@ -19026,7 +19504,7 @@ declare const zDeveloperAppProvisionWalletResponse: z$1.ZodObject<{
19026
19504
  server: "server";
19027
19505
  }>;
19028
19506
  walletId: z$1.ZodString;
19029
- address: z$1.ZodString;
19507
+ address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
19030
19508
  }, z$1.core.$strip>;
19031
19509
  declare const zDeveloperAppWithdrawResponse: z$1.ZodObject<{
19032
19510
  appId: z$1.ZodString;
@@ -20580,6 +21058,13 @@ declare const zAppealResolveRequest: z$1.ZodObject<{
20580
21058
  }>;
20581
21059
  notes: z$1.ZodOptional<z$1.ZodString>;
20582
21060
  }, z$1.core.$strip>;
21061
+ declare const zPaymentRatesResponse: z$1.ZodObject<{
21062
+ asOf: z$1.ZodString;
21063
+ ethUsd: z$1.ZodNullable<z$1.ZodNumber>;
21064
+ solUsd: z$1.ZodNullable<z$1.ZodNumber>;
21065
+ solLamportsPerCent: z$1.ZodNullable<z$1.ZodInt>;
21066
+ tronUsdPerToken: z$1.ZodNumber;
21067
+ }, z$1.core.$strip>;
20583
21068
  declare const zAppealFileResponse: z$1.ZodObject<{
20584
21069
  appealId: z$1.ZodString;
20585
21070
  paymentId: z$1.ZodString;
@@ -21492,6 +21977,22 @@ declare const zPostOauthPaymentsIntentByIdCompleteBody: z$1.ZodDiscriminatedUnio
21492
21977
  declare const zPostOauthPaymentsIntentByIdCompleteResponse: z$1.ZodObject<{
21493
21978
  redirect: z$1.ZodURL;
21494
21979
  }, z$1.core.$strip>;
21980
+ /**
21981
+ * Platform-partial-signed deposit_pot tx (base64) + the payer to sign with
21982
+ */
21983
+ declare const zPostOauthPaymentsIntentByIdSolanaPrepareResponse: z$1.ZodObject<{
21984
+ transaction: z$1.ZodString;
21985
+ payer: z$1.ZodString;
21986
+ }, z$1.core.$strip>;
21987
+ declare const zPostOauthPaymentsIntentByIdSolanaCompleteBody: z$1.ZodObject<{
21988
+ signedTransaction: z$1.ZodString;
21989
+ }, z$1.core.$strip>;
21990
+ /**
21991
+ * Redirect target the SPA navigates to
21992
+ */
21993
+ declare const zPostOauthPaymentsIntentByIdSolanaCompleteResponse: z$1.ZodObject<{
21994
+ redirect: z$1.ZodURL;
21995
+ }, z$1.core.$strip>;
21495
21996
  /**
21496
21997
  * Redirect target the SPA navigates to
21497
21998
  */
@@ -21594,6 +22095,10 @@ declare const zGetPublicLibraryQuery: z$1.ZodObject<{
21594
22095
  other: "other";
21595
22096
  }>>;
21596
22097
  q: z$1.ZodOptional<z$1.ZodString>;
22098
+ sort: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodEnum<{
22099
+ newest: "newest";
22100
+ top: "top";
22101
+ }>>>;
21597
22102
  before: z$1.ZodOptional<z$1.ZodISODateTime>;
21598
22103
  limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodInt>>;
21599
22104
  }, z$1.core.$strip>;
@@ -21769,6 +22274,7 @@ declare const zGetPublicAppsBySlugResponse: z$1.ZodObject<{
21769
22274
  }>>;
21770
22275
  oauthScopes: z$1.ZodArray<z$1.ZodString>;
21771
22276
  chains: z$1.ZodArray<z$1.ZodString>;
22277
+ devlog: z$1.ZodBoolean;
21772
22278
  publishedAt: z$1.ZodISODateTime;
21773
22279
  updatedAt: z$1.ZodISODateTime;
21774
22280
  }, z$1.core.$strip>;
@@ -21804,6 +22310,10 @@ declare const zGetPublicBuildInPublicQuery: z$1.ZodObject<{
21804
22310
  other: "other";
21805
22311
  }>>;
21806
22312
  q: z$1.ZodOptional<z$1.ZodString>;
22313
+ sort: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodEnum<{
22314
+ newest: "newest";
22315
+ top: "top";
22316
+ }>>>;
21807
22317
  before: z$1.ZodOptional<z$1.ZodISODateTime>;
21808
22318
  limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodInt>>;
21809
22319
  }, z$1.core.$strip>;
@@ -22004,9 +22514,31 @@ declare const zGetPublicBuildInPublicBySlugUpdatesResponse: z$1.ZodObject<{
22004
22514
  commentCount: z$1.ZodInt;
22005
22515
  createdAt: z$1.ZodISODateTime;
22006
22516
  updatedAt: z$1.ZodISODateTime;
22517
+ pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
22007
22518
  }, z$1.core.$strip>>;
22008
22519
  total: z$1.ZodInt;
22009
22520
  hasMore: z$1.ZodBoolean;
22521
+ pinned: z$1.ZodNullable<z$1.ZodObject<{
22522
+ id: z$1.ZodUUID;
22523
+ appId: z$1.ZodUUID;
22524
+ body: z$1.ZodString;
22525
+ attachments: z$1.ZodArray<z$1.ZodObject<{
22526
+ url: z$1.ZodURL;
22527
+ kind: z$1.ZodEnum<{
22528
+ image: "image";
22529
+ video: "video";
22530
+ }>;
22531
+ order: z$1.ZodInt;
22532
+ }, z$1.core.$strip>>;
22533
+ reactions: z$1.ZodObject<{
22534
+ up: z$1.ZodInt;
22535
+ down: z$1.ZodInt;
22536
+ }, z$1.core.$strip>;
22537
+ commentCount: z$1.ZodInt;
22538
+ createdAt: z$1.ZodISODateTime;
22539
+ updatedAt: z$1.ZodISODateTime;
22540
+ pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
22541
+ }, z$1.core.$strip>>;
22010
22542
  }, z$1.core.$strip>;
22011
22543
  declare const zGetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsPath: z$1.ZodObject<{
22012
22544
  slug: z$1.ZodString;
@@ -22184,9 +22716,31 @@ declare const zGetMeDeveloperAppsByAppIdBipUpdatesResponse: z$1.ZodObject<{
22184
22716
  commentCount: z$1.ZodInt;
22185
22717
  createdAt: z$1.ZodISODateTime;
22186
22718
  updatedAt: z$1.ZodISODateTime;
22719
+ pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
22720
+ }, z$1.core.$strip>>;
22721
+ total: z$1.ZodInt;
22722
+ hasMore: z$1.ZodBoolean;
22723
+ pinned: z$1.ZodNullable<z$1.ZodObject<{
22724
+ id: z$1.ZodUUID;
22725
+ appId: z$1.ZodUUID;
22726
+ body: z$1.ZodString;
22727
+ attachments: z$1.ZodArray<z$1.ZodObject<{
22728
+ url: z$1.ZodURL;
22729
+ kind: z$1.ZodEnum<{
22730
+ image: "image";
22731
+ video: "video";
22732
+ }>;
22733
+ order: z$1.ZodInt;
22734
+ }, z$1.core.$strip>>;
22735
+ reactions: z$1.ZodObject<{
22736
+ up: z$1.ZodInt;
22737
+ down: z$1.ZodInt;
22738
+ }, z$1.core.$strip>;
22739
+ commentCount: z$1.ZodInt;
22740
+ createdAt: z$1.ZodISODateTime;
22741
+ updatedAt: z$1.ZodISODateTime;
22742
+ pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
22187
22743
  }, z$1.core.$strip>>;
22188
- total: z$1.ZodInt;
22189
- hasMore: z$1.ZodBoolean;
22190
22744
  }, z$1.core.$strip>;
22191
22745
  declare const zPostMeDeveloperAppsByAppIdBipUpdatesBody: z$1.ZodObject<{
22192
22746
  body: z$1.ZodString;
@@ -22224,6 +22778,7 @@ declare const zPostMeDeveloperAppsByAppIdBipUpdatesResponse: z$1.ZodObject<{
22224
22778
  commentCount: z$1.ZodInt;
22225
22779
  createdAt: z$1.ZodISODateTime;
22226
22780
  updatedAt: z$1.ZodISODateTime;
22781
+ pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
22227
22782
  }, z$1.core.$strip>;
22228
22783
  declare const zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPath: z$1.ZodObject<{
22229
22784
  appId: z$1.ZodString;
@@ -22272,6 +22827,63 @@ declare const zPatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse: z$1.ZodO
22272
22827
  commentCount: z$1.ZodInt;
22273
22828
  createdAt: z$1.ZodISODateTime;
22274
22829
  updatedAt: z$1.ZodISODateTime;
22830
+ pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
22831
+ }, z$1.core.$strip>;
22832
+ declare const zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinPath: z$1.ZodObject<{
22833
+ appId: z$1.ZodString;
22834
+ updateId: z$1.ZodUUID;
22835
+ }, z$1.core.$strip>;
22836
+ /**
22837
+ * The fresh (no longer pinned) update
22838
+ */
22839
+ declare const zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponse: z$1.ZodObject<{
22840
+ id: z$1.ZodUUID;
22841
+ appId: z$1.ZodUUID;
22842
+ body: z$1.ZodString;
22843
+ attachments: z$1.ZodArray<z$1.ZodObject<{
22844
+ url: z$1.ZodURL;
22845
+ kind: z$1.ZodEnum<{
22846
+ image: "image";
22847
+ video: "video";
22848
+ }>;
22849
+ order: z$1.ZodInt;
22850
+ }, z$1.core.$strip>>;
22851
+ reactions: z$1.ZodObject<{
22852
+ up: z$1.ZodInt;
22853
+ down: z$1.ZodInt;
22854
+ }, z$1.core.$strip>;
22855
+ commentCount: z$1.ZodInt;
22856
+ createdAt: z$1.ZodISODateTime;
22857
+ updatedAt: z$1.ZodISODateTime;
22858
+ pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
22859
+ }, z$1.core.$strip>;
22860
+ declare const zPostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinPath: z$1.ZodObject<{
22861
+ appId: z$1.ZodString;
22862
+ updateId: z$1.ZodUUID;
22863
+ }, z$1.core.$strip>;
22864
+ /**
22865
+ * The freshly pinned update
22866
+ */
22867
+ declare const zPostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponse: z$1.ZodObject<{
22868
+ id: z$1.ZodUUID;
22869
+ appId: z$1.ZodUUID;
22870
+ body: z$1.ZodString;
22871
+ attachments: z$1.ZodArray<z$1.ZodObject<{
22872
+ url: z$1.ZodURL;
22873
+ kind: z$1.ZodEnum<{
22874
+ image: "image";
22875
+ video: "video";
22876
+ }>;
22877
+ order: z$1.ZodInt;
22878
+ }, z$1.core.$strip>>;
22879
+ reactions: z$1.ZodObject<{
22880
+ up: z$1.ZodInt;
22881
+ down: z$1.ZodInt;
22882
+ }, z$1.core.$strip>;
22883
+ commentCount: z$1.ZodInt;
22884
+ createdAt: z$1.ZodISODateTime;
22885
+ updatedAt: z$1.ZodISODateTime;
22886
+ pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
22275
22887
  }, z$1.core.$strip>;
22276
22888
  declare const zPostMeDeveloperAppsByAppIdBipUpdatesMediaBody: z$1.ZodObject<{
22277
22889
  file: z$1.ZodString;
@@ -22294,8 +22906,8 @@ declare const zGetPublicAppsBySlugReviewsPath: z$1.ZodObject<{
22294
22906
  }, z$1.core.$strip>;
22295
22907
  declare const zGetPublicAppsBySlugReviewsQuery: z$1.ZodObject<{
22296
22908
  sort: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodEnum<{
22297
- helpful: "helpful";
22298
22909
  newest: "newest";
22910
+ helpful: "helpful";
22299
22911
  oldest: "oldest";
22300
22912
  }>>>;
22301
22913
  limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodInt>>;
@@ -22547,8 +23159,8 @@ declare const zGetMeDeveloperAppsByAppIdReviewsPath: z$1.ZodObject<{
22547
23159
  }, z$1.core.$strip>;
22548
23160
  declare const zGetMeDeveloperAppsByAppIdReviewsQuery: z$1.ZodObject<{
22549
23161
  sort: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodEnum<{
22550
- helpful: "helpful";
22551
23162
  newest: "newest";
23163
+ helpful: "helpful";
22552
23164
  oldest: "oldest";
22553
23165
  }>>>;
22554
23166
  limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodInt>>;
@@ -23277,6 +23889,74 @@ declare const zGetPaymentsMeActivityResponse: z$1.ZodObject<{
23277
23889
  counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
23278
23890
  counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
23279
23891
  kind: z$1.ZodLiteral<"nft_charge">;
23892
+ }, z$1.core.$strip>, z$1.ZodObject<{
23893
+ groupId: z$1.ZodNullable<z$1.ZodString>;
23894
+ id: z$1.ZodString;
23895
+ chain: z$1.ZodString;
23896
+ occurredAt: z$1.ZodISODateTime;
23897
+ role: z$1.ZodEnum<{
23898
+ outgoing: "outgoing";
23899
+ incoming: "incoming";
23900
+ }>;
23901
+ amount: z$1.ZodString;
23902
+ token: z$1.ZodString;
23903
+ potId: z$1.ZodNullable<z$1.ZodString>;
23904
+ usdCents: z$1.ZodInt;
23905
+ status: z$1.ZodEnum<{
23906
+ completed: "completed";
23907
+ }>;
23908
+ txHash: z$1.ZodNullable<z$1.ZodString>;
23909
+ app: z$1.ZodNullable<z$1.ZodObject<{
23910
+ id: z$1.ZodString;
23911
+ name: z$1.ZodString;
23912
+ logoUrl: z$1.ZodNullable<z$1.ZodURL>;
23913
+ slug: z$1.ZodNullable<z$1.ZodString>;
23914
+ bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
23915
+ }, z$1.core.$strip>>;
23916
+ stakerUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
23917
+ stakerHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
23918
+ stakerDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
23919
+ metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
23920
+ purpose: z$1.ZodOptional<z$1.ZodString>;
23921
+ title: z$1.ZodOptional<z$1.ZodString>;
23922
+ note: z$1.ZodOptional<z$1.ZodString>;
23923
+ quantity: z$1.ZodOptional<z$1.ZodInt>;
23924
+ category: z$1.ZodOptional<z$1.ZodString>;
23925
+ sessionId: z$1.ZodOptional<z$1.ZodString>;
23926
+ groupId: z$1.ZodOptional<z$1.ZodString>;
23927
+ image: z$1.ZodOptional<z$1.ZodURL>;
23928
+ extra: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodNumber, z$1.ZodBoolean]>>>;
23929
+ }, z$1.core.$strip>>>;
23930
+ kind: z$1.ZodLiteral<"solana_stake">;
23931
+ }, z$1.core.$strip>, z$1.ZodObject<{
23932
+ groupId: z$1.ZodNullable<z$1.ZodString>;
23933
+ id: z$1.ZodString;
23934
+ chain: z$1.ZodString;
23935
+ occurredAt: z$1.ZodISODateTime;
23936
+ role: z$1.ZodEnum<{
23937
+ outgoing: "outgoing";
23938
+ incoming: "incoming";
23939
+ }>;
23940
+ beneficiary: z$1.ZodString;
23941
+ potId: z$1.ZodNullable<z$1.ZodString>;
23942
+ amount: z$1.ZodString;
23943
+ token: z$1.ZodString;
23944
+ usdCents: z$1.ZodNullable<z$1.ZodInt>;
23945
+ status: z$1.ZodEnum<{
23946
+ settled: "settled";
23947
+ }>;
23948
+ app: z$1.ZodNullable<z$1.ZodObject<{
23949
+ id: z$1.ZodString;
23950
+ name: z$1.ZodString;
23951
+ logoUrl: z$1.ZodNullable<z$1.ZodURL>;
23952
+ slug: z$1.ZodNullable<z$1.ZodString>;
23953
+ bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
23954
+ }, z$1.core.$strip>>;
23955
+ txHash: z$1.ZodNullable<z$1.ZodString>;
23956
+ recipientUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
23957
+ recipientHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
23958
+ recipientDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
23959
+ kind: z$1.ZodLiteral<"solana_pot_leg">;
23280
23960
  }, z$1.core.$strip>], "kind">>;
23281
23961
  nextBefore: z$1.ZodNullable<z$1.ZodISODateTime>;
23282
23962
  nextCursor: z$1.ZodNullable<z$1.ZodString>;
@@ -23750,6 +24430,74 @@ declare const zGetPaymentsMeActivityGroupByGroupIdResponse: z$1.ZodObject<{
23750
24430
  counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
23751
24431
  counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
23752
24432
  kind: z$1.ZodLiteral<"nft_charge">;
24433
+ }, z$1.core.$strip>, z$1.ZodObject<{
24434
+ groupId: z$1.ZodNullable<z$1.ZodString>;
24435
+ id: z$1.ZodString;
24436
+ chain: z$1.ZodString;
24437
+ occurredAt: z$1.ZodISODateTime;
24438
+ role: z$1.ZodEnum<{
24439
+ outgoing: "outgoing";
24440
+ incoming: "incoming";
24441
+ }>;
24442
+ amount: z$1.ZodString;
24443
+ token: z$1.ZodString;
24444
+ potId: z$1.ZodNullable<z$1.ZodString>;
24445
+ usdCents: z$1.ZodInt;
24446
+ status: z$1.ZodEnum<{
24447
+ completed: "completed";
24448
+ }>;
24449
+ txHash: z$1.ZodNullable<z$1.ZodString>;
24450
+ app: z$1.ZodNullable<z$1.ZodObject<{
24451
+ id: z$1.ZodString;
24452
+ name: z$1.ZodString;
24453
+ logoUrl: z$1.ZodNullable<z$1.ZodURL>;
24454
+ slug: z$1.ZodNullable<z$1.ZodString>;
24455
+ bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
24456
+ }, z$1.core.$strip>>;
24457
+ stakerUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
24458
+ stakerHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
24459
+ stakerDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
24460
+ metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
24461
+ purpose: z$1.ZodOptional<z$1.ZodString>;
24462
+ title: z$1.ZodOptional<z$1.ZodString>;
24463
+ note: z$1.ZodOptional<z$1.ZodString>;
24464
+ quantity: z$1.ZodOptional<z$1.ZodInt>;
24465
+ category: z$1.ZodOptional<z$1.ZodString>;
24466
+ sessionId: z$1.ZodOptional<z$1.ZodString>;
24467
+ groupId: z$1.ZodOptional<z$1.ZodString>;
24468
+ image: z$1.ZodOptional<z$1.ZodURL>;
24469
+ extra: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodNumber, z$1.ZodBoolean]>>>;
24470
+ }, z$1.core.$strip>>>;
24471
+ kind: z$1.ZodLiteral<"solana_stake">;
24472
+ }, z$1.core.$strip>, z$1.ZodObject<{
24473
+ groupId: z$1.ZodNullable<z$1.ZodString>;
24474
+ id: z$1.ZodString;
24475
+ chain: z$1.ZodString;
24476
+ occurredAt: z$1.ZodISODateTime;
24477
+ role: z$1.ZodEnum<{
24478
+ outgoing: "outgoing";
24479
+ incoming: "incoming";
24480
+ }>;
24481
+ beneficiary: z$1.ZodString;
24482
+ potId: z$1.ZodNullable<z$1.ZodString>;
24483
+ amount: z$1.ZodString;
24484
+ token: z$1.ZodString;
24485
+ usdCents: z$1.ZodNullable<z$1.ZodInt>;
24486
+ status: z$1.ZodEnum<{
24487
+ settled: "settled";
24488
+ }>;
24489
+ app: z$1.ZodNullable<z$1.ZodObject<{
24490
+ id: z$1.ZodString;
24491
+ name: z$1.ZodString;
24492
+ logoUrl: z$1.ZodNullable<z$1.ZodURL>;
24493
+ slug: z$1.ZodNullable<z$1.ZodString>;
24494
+ bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
24495
+ }, z$1.core.$strip>>;
24496
+ txHash: z$1.ZodNullable<z$1.ZodString>;
24497
+ recipientUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
24498
+ recipientHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
24499
+ recipientDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
24500
+ kind: z$1.ZodLiteral<"solana_pot_leg">;
23753
24501
  }, z$1.core.$strip>], "kind">>;
23754
24502
  nextBefore: z$1.ZodNullable<z$1.ZodISODateTime>;
23755
24503
  nextCursor: z$1.ZodNullable<z$1.ZodString>;
@@ -27836,6 +28584,74 @@ declare const zGetMeDeveloperAppsByIdActivityResponse: z$1.ZodObject<{
27836
28584
  counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
27837
28585
  counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
27838
28586
  kind: z$1.ZodLiteral<"nft_charge">;
28587
+ }, z$1.core.$strip>, z$1.ZodObject<{
28588
+ groupId: z$1.ZodNullable<z$1.ZodString>;
28589
+ id: z$1.ZodString;
28590
+ chain: z$1.ZodString;
28591
+ occurredAt: z$1.ZodISODateTime;
28592
+ role: z$1.ZodEnum<{
28593
+ outgoing: "outgoing";
28594
+ incoming: "incoming";
28595
+ }>;
28596
+ amount: z$1.ZodString;
28597
+ token: z$1.ZodString;
28598
+ potId: z$1.ZodNullable<z$1.ZodString>;
28599
+ usdCents: z$1.ZodInt;
28600
+ status: z$1.ZodEnum<{
28601
+ completed: "completed";
28602
+ }>;
28603
+ txHash: z$1.ZodNullable<z$1.ZodString>;
28604
+ app: z$1.ZodNullable<z$1.ZodObject<{
28605
+ id: z$1.ZodString;
28606
+ name: z$1.ZodString;
28607
+ logoUrl: z$1.ZodNullable<z$1.ZodURL>;
28608
+ slug: z$1.ZodNullable<z$1.ZodString>;
28609
+ bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
28610
+ }, z$1.core.$strip>>;
28611
+ stakerUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
28612
+ stakerHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
28613
+ stakerDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
28614
+ metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
28615
+ purpose: z$1.ZodOptional<z$1.ZodString>;
28616
+ title: z$1.ZodOptional<z$1.ZodString>;
28617
+ note: z$1.ZodOptional<z$1.ZodString>;
28618
+ quantity: z$1.ZodOptional<z$1.ZodInt>;
28619
+ category: z$1.ZodOptional<z$1.ZodString>;
28620
+ sessionId: z$1.ZodOptional<z$1.ZodString>;
28621
+ groupId: z$1.ZodOptional<z$1.ZodString>;
28622
+ image: z$1.ZodOptional<z$1.ZodURL>;
28623
+ extra: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodNumber, z$1.ZodBoolean]>>>;
28624
+ }, z$1.core.$strip>>>;
28625
+ kind: z$1.ZodLiteral<"solana_stake">;
28626
+ }, z$1.core.$strip>, z$1.ZodObject<{
28627
+ groupId: z$1.ZodNullable<z$1.ZodString>;
28628
+ id: z$1.ZodString;
28629
+ chain: z$1.ZodString;
28630
+ occurredAt: z$1.ZodISODateTime;
28631
+ role: z$1.ZodEnum<{
28632
+ outgoing: "outgoing";
28633
+ incoming: "incoming";
28634
+ }>;
28635
+ beneficiary: z$1.ZodString;
28636
+ potId: z$1.ZodNullable<z$1.ZodString>;
28637
+ amount: z$1.ZodString;
28638
+ token: z$1.ZodString;
28639
+ usdCents: z$1.ZodNullable<z$1.ZodInt>;
28640
+ status: z$1.ZodEnum<{
28641
+ settled: "settled";
28642
+ }>;
28643
+ app: z$1.ZodNullable<z$1.ZodObject<{
28644
+ id: z$1.ZodString;
28645
+ name: z$1.ZodString;
28646
+ logoUrl: z$1.ZodNullable<z$1.ZodURL>;
28647
+ slug: z$1.ZodNullable<z$1.ZodString>;
28648
+ bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
28649
+ }, z$1.core.$strip>>;
28650
+ txHash: z$1.ZodNullable<z$1.ZodString>;
28651
+ recipientUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
28652
+ recipientHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
28653
+ recipientDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
28654
+ kind: z$1.ZodLiteral<"solana_pot_leg">;
27839
28655
  }, z$1.core.$strip>], "kind">>;
27840
28656
  nextBefore: z$1.ZodNullable<z$1.ZodISODateTime>;
27841
28657
  nextCursor: z$1.ZodNullable<z$1.ZodString>;
@@ -27851,7 +28667,7 @@ declare const zGetMeDeveloperAppsByIdWalletsResponse: z$1.ZodObject<{
27851
28667
  appId: z$1.ZodString;
27852
28668
  wallets: z$1.ZodArray<z$1.ZodObject<{
27853
28669
  chain: z$1.ZodString;
27854
- address: z$1.ZodString;
28670
+ address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
27855
28671
  custody: z$1.ZodNullable<z$1.ZodEnum<{
27856
28672
  server: "server";
27857
28673
  }>>;
@@ -27891,7 +28707,7 @@ declare const zPostMeDeveloperAppsByIdWalletsByChainProvisionResponse: z$1.ZodOb
27891
28707
  server: "server";
27892
28708
  }>;
27893
28709
  walletId: z$1.ZodString;
27894
- address: z$1.ZodString;
28710
+ address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
27895
28711
  }, z$1.core.$strip>;
27896
28712
  declare const zPostMeDeveloperAppsByIdWalletsByChainWithdrawPath: z$1.ZodObject<{
27897
28713
  id: z$1.ZodString;
@@ -30406,6 +31222,16 @@ declare const zPostAdminPaymentsAppealsByAppealIdResolveResponse: z$1.ZodObject<
30406
31222
  resolved_dismiss: "resolved_dismiss";
30407
31223
  }>;
30408
31224
  }, z$1.core.$strip>;
31225
+ /**
31226
+ * Current exchange rates + the cache-fill timestamp (asOf)
31227
+ */
31228
+ declare const zGetPaymentsRatesResponse: z$1.ZodObject<{
31229
+ asOf: z$1.ZodString;
31230
+ ethUsd: z$1.ZodNullable<z$1.ZodNumber>;
31231
+ solUsd: z$1.ZodNullable<z$1.ZodNumber>;
31232
+ solLamportsPerCent: z$1.ZodNullable<z$1.ZodInt>;
31233
+ tronUsdPerToken: z$1.ZodNumber;
31234
+ }, z$1.core.$strip>;
30409
31235
  declare const zPostPaymentsAppealsBody: z$1.ZodObject<{
30410
31236
  paymentId: z$1.ZodString;
30411
31237
  amount: z$1.ZodString;
@@ -30826,4 +31652,4 @@ declare const zPostMeConsentBody: z$1.ZodObject<{
30826
31652
  */
30827
31653
  declare const zPostMeConsentResponse: z$1.ZodVoid;
30828
31654
  //#endregion
30829
- export { type AcceptedCurrencies, type AcceptedNetworks, type ActivityResponse, type ActivityRow, type ActivityRowAppeal, type ActivityRowCreditTransferred, type ActivityRowMaturedWithdrawal, type ActivityRowMoonpayBuy, type ActivityRowMoonpaySell, type ActivityRowNftCharge, type ActivityRowPayment, type ActivityRowPaymentAutoclaim, type ActivityRowPaymentWithdrawal, type ActivityRowPayoutSent, type ActivityRowPotLeg, type ActivityRowReferralEarning, type ActivityRowTronCashout, type ActivityRowTronDeposit, type ActivityRowTronPot, type ActivityRowTronTransfer, type ActivityTronInvolvedUser, type AddAdminRequest, type AdminActivePlayer, type AdminActivePlayersResponse, type AdminAppContentReportItem, type AdminAppContentReportListResponse, type AdminAppPageBipStatusResponse, type AdminAppPageDiffField, type AdminAppPageDiffResponse, type AdminAppPageItem, type AdminAppPageListResponse, type AdminAppPageStatusResponse, type AdminAuditListItem, type AdminAuditListResponse, type AdminDeveloperAppItem, type AdminDeveloperListItem, type AdminDeveloperListResponse, type AdminMutationResponse, type AdminRole, type AdminRoleChangeResponse, type AdminTronCashoutItem, type AdminTronCashoutListResponse, type AdminTronCashoutRejectRequest, type AdminUser, type AdminUserBanRequest, type AdminUserBanResponse, type AdminUserListItem, type AdminUserListResponse, type AppContentReport, type AppContentReportCategory, type AppContentReportListResponse, type AppContentReportStatus, type AppFeeConfigResponse, type AppFriendListResponse, type AppPageAgeRating, type AppPageApprovedNotificationPayload, type AppPageBipState, type AppPageBipToggle, type AppPageCategories, type AppPageChapter, type AppPageChapters, type AppPageDraft, type AppPageGallery, type AppPageGalleryItem, type AppPageGalleryUploadResponse, type AppPageGameType, type AppPageLanguages, type AppPageLink, type AppPageLinks, type AppPagePaymentsMode, type AppPagePlatforms, type AppPageRejectedNotificationPayload, type AppPageReleaseStatus, type AppPageSlug, type AppPageTagline, type AppParticipantAcceptedNotificationPayload, type AppParticipantInviteNotificationPayload, type AppPaymentAuthorizationItem, type AppPlaytime, type AppealBlacklistAddRequest, type AppealBlacklistEntry, type AppealBlacklistListResponse, type AppealBlacklistRemoveRequest, type AppealBlacklistRemoveResponse, type AppealFileRequest, type AppealFileResponse, type AppealPotLegFileRequest, type AppealResolveRequest, type AppealResolveSignedResponse, type AppealRoomDetail, type AppealRoomMessage, type AppealRoomPostRequest, type AppealRoomPostResponse, type AppealRoomSenderRole, type AppealRoomSource, type AppealRoomStatus, type AppealRoomView, type AppealStatusRow, type AuthSession, type AuthUser, type BannerVariant, type BatchThreadDmKeysBody, type BatchThreadDmKeysResponse, type BearerToken, type Bio, type BipEngagementResponse, type BipInterestCountResponse, type BipInterestRequest, type BipNowPlayableNotificationPayload, type BipSubscriptionRequest, type BipUpdate, type BipUpdateAttachment, type BipUpdateAttachments, type BipUpdateBody, type BipUpdateComment, type BipUpdateCommentBody, type BipUpdateCommentListResponse, type BipUpdateListResponse, type BipUpdateMediaUploadResponse, type BipUpdatePublishedNotificationPayload, type BipUpdateReactionCounts, type BipUpdateVote, type CalldataEnvelope, type ClientOptions, type ConsentListResponse, type ConsentRecordRequest, type ConsentRow, type CreateBipUpdateCommentRequest, type CreateBipUpdateCommentResponse, type CreateBipUpdateRequest, type CreateDeveloperApiKey, type CreateDeveloperApiKeyResponse, type CreateDeveloperApp, type CreateDeveloperAppChain, type CreateDeveloperProductionRequest, type CreateDeveloperProductionRequestResponse, type CreateDeveloperRoleRequest, type CreateDirectThreadBody, type CreateGroupThreadBody, type CreateReviewCommentRequest, type CreateReviewCommentResponse, type CreateThreadResponse, type CreateWalletDelegation, type CreateWalletDelegationResponse, type DelegationSlippageBps, type DeleteAdminAdminsByIdData, type DeleteAdminAdminsByIdError, type DeleteAdminAdminsByIdErrors, type DeleteAdminAdminsByIdResponse, type DeleteAdminAdminsByIdResponses, type DeleteAdminPaymentsAppealBlacklistData, type DeleteAdminPaymentsAppealBlacklistError, type DeleteAdminPaymentsAppealBlacklistErrors, type DeleteAdminPaymentsAppealBlacklistResponse, type DeleteAdminPaymentsAppealBlacklistResponses, type DeleteBipUpdateCommentResponse, type DeleteBipUpdateResponse, type DeleteMeAvatarData, type DeleteMeAvatarError, type DeleteMeAvatarErrors, type DeleteMeAvatarResponse, type DeleteMeAvatarResponses, type DeleteMeBuildInPublicBySlugCommentsByCommentIdData, type DeleteMeBuildInPublicBySlugCommentsByCommentIdError, type DeleteMeBuildInPublicBySlugCommentsByCommentIdErrors, type DeleteMeBuildInPublicBySlugCommentsByCommentIdResponse, type DeleteMeBuildInPublicBySlugCommentsByCommentIdResponses, type DeleteMeData, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdData, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdError, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdErrors, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponses, type DeleteMeDeveloperAppsByAppIdPageBannerData, type DeleteMeDeveloperAppsByAppIdPageBannerError, type DeleteMeDeveloperAppsByAppIdPageBannerErrors, type DeleteMeDeveloperAppsByAppIdPageBannerResponse, type DeleteMeDeveloperAppsByAppIdPageBannerResponses, type DeleteMeDeveloperAppsByAppIdPageThumbnailData, type DeleteMeDeveloperAppsByAppIdPageThumbnailError, type DeleteMeDeveloperAppsByAppIdPageThumbnailErrors, type DeleteMeDeveloperAppsByAppIdPageThumbnailResponse, type DeleteMeDeveloperAppsByAppIdPageThumbnailResponses, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoData, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoError, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoErrors, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoResponse, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoResponses, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyData, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyError, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyErrors, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponses, type DeleteMeDeveloperAppsByIdData, type DeleteMeDeveloperAppsByIdError, type DeleteMeDeveloperAppsByIdErrors, type DeleteMeDeveloperAppsByIdLogoData, type DeleteMeDeveloperAppsByIdLogoError, type DeleteMeDeveloperAppsByIdLogoErrors, type DeleteMeDeveloperAppsByIdLogoResponse, type DeleteMeDeveloperAppsByIdLogoResponses, type DeleteMeDeveloperAppsByIdParticipantsByUserIdData, type DeleteMeDeveloperAppsByIdParticipantsByUserIdError, type DeleteMeDeveloperAppsByIdParticipantsByUserIdErrors, type DeleteMeDeveloperAppsByIdParticipantsByUserIdResponse, type DeleteMeDeveloperAppsByIdParticipantsByUserIdResponses, type DeleteMeDeveloperAppsByIdResponse, type DeleteMeDeveloperAppsByIdResponses, type DeleteMeDeveloperKeysByIdData, type DeleteMeDeveloperKeysByIdError, type DeleteMeDeveloperKeysByIdErrors, type DeleteMeDeveloperKeysByIdResponse, type DeleteMeDeveloperKeysByIdResponses, type DeleteMeDeveloperProfileLogoData, type DeleteMeDeveloperProfileLogoError, type DeleteMeDeveloperProfileLogoErrors, type DeleteMeDeveloperProfileLogoResponse, type DeleteMeDeveloperProfileLogoResponses, type DeleteMeDeveloperRequestLogoData, type DeleteMeDeveloperRequestLogoError, type DeleteMeDeveloperRequestLogoErrors, type DeleteMeDeveloperRequestLogoResponse, type DeleteMeDeveloperRequestLogoResponses, type DeleteMeError, type DeleteMeErrors, type DeleteMeFriendRequestsByIdData, type DeleteMeFriendRequestsByIdError, type DeleteMeFriendRequestsByIdErrors, type DeleteMeFriendRequestsByIdResponse, type DeleteMeFriendRequestsByIdResponses, type DeleteMeOauthPaymentAuthorizationsByConsentIdData, type DeleteMeOauthPaymentAuthorizationsByConsentIdError, type DeleteMeOauthPaymentAuthorizationsByConsentIdErrors, type DeleteMeOauthPaymentAuthorizationsByConsentIdResponse, type DeleteMeOauthPaymentAuthorizationsByConsentIdResponses, type DeleteMeResponse, type DeleteMeResponses, type DeleteMeReviewsBySlugCommentsByCommentIdData, type DeleteMeReviewsBySlugCommentsByCommentIdError, type DeleteMeReviewsBySlugCommentsByCommentIdErrors, type DeleteMeReviewsBySlugCommentsByCommentIdResponse, type DeleteMeReviewsBySlugCommentsByCommentIdResponses, type DeleteMeReviewsBySlugData, type DeleteMeReviewsBySlugError, type DeleteMeReviewsBySlugErrors, type DeleteMeReviewsBySlugResponse, type DeleteMeReviewsBySlugResponses, type DeleteMeThreadsByIdData, type DeleteMeThreadsByIdError, type DeleteMeThreadsByIdErrors, type DeleteMeThreadsByIdLogoData, type DeleteMeThreadsByIdLogoError, type DeleteMeThreadsByIdLogoErrors, type DeleteMeThreadsByIdLogoResponse, type DeleteMeThreadsByIdLogoResponses, type DeleteMeThreadsByIdMessagesByMsgIdData, type DeleteMeThreadsByIdMessagesByMsgIdError, type DeleteMeThreadsByIdMessagesByMsgIdErrors, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiData, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiError, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiErrors, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponses, type DeleteMeThreadsByIdMessagesByMsgIdResponse, type DeleteMeThreadsByIdMessagesByMsgIdResponses, type DeleteMeThreadsByIdParticipantsByUserIdData, type DeleteMeThreadsByIdParticipantsByUserIdError, type DeleteMeThreadsByIdParticipantsByUserIdErrors, type DeleteMeThreadsByIdParticipantsByUserIdResponse, type DeleteMeThreadsByIdParticipantsByUserIdResponses, type DeleteMeThreadsByIdPinData, type DeleteMeThreadsByIdPinError, type DeleteMeThreadsByIdPinErrors, type DeleteMeThreadsByIdPinResponse, type DeleteMeThreadsByIdPinResponses, type DeleteMeThreadsByIdResponse, type DeleteMeThreadsByIdResponses, type DeleteMeWalletsByAddressDelegateData, type DeleteMeWalletsByAddressDelegateError, type DeleteMeWalletsByAddressDelegateErrors, type DeleteMeWalletsByAddressDelegateResponse, type DeleteMeWalletsByAddressDelegateResponses, type DeleteReviewCommentResponse, type DeleteUsersByIdFollowData, type DeleteUsersByIdFollowError, type DeleteUsersByIdFollowErrors, type DeleteUsersByIdFollowResponse, type DeleteUsersByIdFollowResponses, type DeleteUsersByIdFriendData, type DeleteUsersByIdFriendError, type DeleteUsersByIdFriendErrors, type DeleteUsersByIdFriendResponse, type DeleteUsersByIdFriendResponses, type DeleteWalletDelegationResponse, type DevAppealRow, type DevAppealsResponse, type DevPendingDepositRow, type DevPendingDepositsResponse, type DeveloperApiKeyItem, type DeveloperApiKeysResponse, type DeveloperAppAutoSweepRequest, type DeveloperAppAutoSweepResponse, type DeveloperAppBalanceItem, type DeveloperAppBalancesResponse, type DeveloperAppConsolidateResponse, type DeveloperAppEarningsBucket, type DeveloperAppEarningsResponse, type DeveloperAppIdResponse, type DeveloperAppItem, type DeveloperAppKeyItem, type DeveloperAppName, type DeveloperAppOverviewResponse, type DeveloperAppParticipant, type DeveloperAppParticipantsResponse, type DeveloperAppPayoutAddressItem, type DeveloperAppPlaytimeBucket, type DeveloperAppPlaytimeResponse, type DeveloperAppProvisionWalletResponse, type DeveloperAppTronBalanceResponse, type DeveloperAppWalletItem, type DeveloperAppWalletsResponse, type DeveloperAppWithdrawResponse, type DeveloperInvite, type DeveloperInvitesResponse, type DeveloperLogoUploadResponse, type DeveloperMeStatus, type DeveloperOkResponse, type DeveloperProductionRequestPayload, type DeveloperProfile, type DeveloperRequestItem, type DeveloperRequestSubject, type DeveloperRoleRequestPayload, type DeveloperTronBalanceSummaryResponse, type DirectThreadSummary, type DisplayName, type DmKeyAlgorithm, type DmKeyBackupOkResponse, type DmKeyBackupSetupBody, type DmKeyBackupStatusResponse, type DmKeyBackupUnlockBody, type DmKeyBackupUnlockResponse, type DmKeyResponse, type DmPublicKeyEntry, type DsarAccount, type DsarAuditEvent, type DsarConsent, type DsarExportResponse, type DsarMessage, type DsarRectifyRequest, type EarningsTimeseries, type EarningsTimeseriesBucket, type EditMessageBody, type EmbedOrigin, type ErrorResponse, type FriendAcceptedNotificationPayload, type FriendListItem, type FriendListResponse, type FriendRequestAck, type FriendRequestDecision, type FriendRequestNotificationPayload, type GetAdminActivePlayersData, type GetAdminActivePlayersError, type GetAdminActivePlayersErrors, type GetAdminActivePlayersResponse, type GetAdminActivePlayersResponses, type GetAdminAdminsData, type GetAdminAdminsError, type GetAdminAdminsErrors, type GetAdminAdminsResponse, type GetAdminAdminsResponses, type GetAdminAppPagesByAppIdChangesData, type GetAdminAppPagesByAppIdChangesError, type GetAdminAppPagesByAppIdChangesErrors, type GetAdminAppPagesByAppIdChangesResponse, type GetAdminAppPagesByAppIdChangesResponses, type GetAdminAppPagesData, type GetAdminAppPagesError, type GetAdminAppPagesErrors, type GetAdminAppPagesResponse, type GetAdminAppPagesResponses, type GetAdminAppsByAppIdFeeConfigData, type GetAdminAppsByAppIdFeeConfigError, type GetAdminAppsByAppIdFeeConfigErrors, type GetAdminAppsByAppIdFeeConfigResponse, type GetAdminAppsByAppIdFeeConfigResponses, type GetAdminAuditData, type GetAdminAuditError, type GetAdminAuditErrors, type GetAdminAuditResponse, type GetAdminAuditResponses, type GetAdminContentReportsData, type GetAdminContentReportsError, type GetAdminContentReportsErrors, type GetAdminContentReportsResponse, type GetAdminContentReportsResponses, type GetAdminDeveloperRequestsData, type GetAdminDeveloperRequestsError, type GetAdminDeveloperRequestsErrors, type GetAdminDeveloperRequestsResponse, type GetAdminDeveloperRequestsResponses, type GetAdminDevelopersData, type GetAdminDevelopersError, type GetAdminDevelopersErrors, type GetAdminDevelopersResponse, type GetAdminDevelopersResponses, type GetAdminPaymentsAppealBlacklistData, type GetAdminPaymentsAppealBlacklistError, type GetAdminPaymentsAppealBlacklistErrors, type GetAdminPaymentsAppealBlacklistResponse, type GetAdminPaymentsAppealBlacklistResponses, type GetAdminPaymentsAppealsByAppealIdRoomData, type GetAdminPaymentsAppealsByAppealIdRoomError, type GetAdminPaymentsAppealsByAppealIdRoomErrors, type GetAdminPaymentsAppealsByAppealIdRoomResponse, type GetAdminPaymentsAppealsByAppealIdRoomResponses, type GetAdminPaymentsAppealsData, type GetAdminPaymentsAppealsError, type GetAdminPaymentsAppealsErrors, type GetAdminPaymentsAppealsResponse, type GetAdminPaymentsAppealsResponses, type GetAdminPlatformFeesData, type GetAdminPlatformFeesError, type GetAdminPlatformFeesErrors, type GetAdminPlatformFeesResponse, type GetAdminPlatformFeesResponses, type GetAdminTronCashoutsData, type GetAdminTronCashoutsError, type GetAdminTronCashoutsErrors, type GetAdminTronCashoutsResponse, type GetAdminTronCashoutsResponses, type GetAdminUsersData, type GetAdminUsersError, type GetAdminUsersErrors, type GetAdminUsersResponse, type GetAdminUsersResponses, type GetAuthGetSessionData, type GetAuthGetSessionResponse, type GetAuthGetSessionResponses, type GetAuthVerifyEmailData, type GetAuthVerifyEmailError, type GetAuthVerifyEmailErrors, type GetAuthVerifyEmailResponse, type GetAuthVerifyEmailResponses, type GetHealthData, type GetHealthError, type GetHealthErrors, type GetHealthResponse, type GetHealthResponses, type GetInventoryMetadataErc1155ByTokenIdMetadataJsonData, type GetInventoryMetadataErc1155ByTokenIdMetadataJsonError, type GetInventoryMetadataErc1155ByTokenIdMetadataJsonErrors, type GetInventoryMetadataErc1155ByTokenIdMetadataJsonResponse, type GetInventoryMetadataErc1155ByTokenIdMetadataJsonResponses, type GetInventoryMetadataErc1155ContractJsonData, type GetInventoryMetadataErc1155ContractJsonResponse, type GetInventoryMetadataErc1155ContractJsonResponses, type GetInventoryMetadataErc721ByFileData, type GetInventoryMetadataErc721ByFileError, type GetInventoryMetadataErc721ByFileErrors, type GetInventoryMetadataErc721ByFileResponse, type GetInventoryMetadataErc721ByFileResponses, type GetInventoryMetadataErc721ContractJsonData, type GetInventoryMetadataErc721ContractJsonResponse, type GetInventoryMetadataErc721ContractJsonResponses, type GetMeAppsByAppIdPlaytimeData, type GetMeAppsByAppIdPlaytimeError, type GetMeAppsByAppIdPlaytimeErrors, type GetMeAppsByAppIdPlaytimeResponse, type GetMeAppsByAppIdPlaytimeResponses, type GetMeBuildInPublicBySlugEngagementData, type GetMeBuildInPublicBySlugEngagementError, type GetMeBuildInPublicBySlugEngagementErrors, type GetMeBuildInPublicBySlugEngagementResponse, type GetMeBuildInPublicBySlugEngagementResponses, type GetMeBuildInPublicBySlugReactionsData, type GetMeBuildInPublicBySlugReactionsError, type GetMeBuildInPublicBySlugReactionsErrors, type GetMeBuildInPublicBySlugReactionsResponse, type GetMeBuildInPublicBySlugReactionsResponses, type GetMeConsentData, type GetMeConsentError, type GetMeConsentErrors, type GetMeConsentResponse, type GetMeConsentResponses, type GetMeDataData, type GetMeDataError, type GetMeDataErrors, type GetMeDataResponse, type GetMeDataResponses, type GetMeDeveloperAppsByAppIdBipUpdatesData, type GetMeDeveloperAppsByAppIdBipUpdatesError, type GetMeDeveloperAppsByAppIdBipUpdatesErrors, type GetMeDeveloperAppsByAppIdBipUpdatesResponse, type GetMeDeveloperAppsByAppIdBipUpdatesResponses, type GetMeDeveloperAppsByAppIdInventoryCollectionsData, type GetMeDeveloperAppsByAppIdInventoryCollectionsError, type GetMeDeveloperAppsByAppIdInventoryCollectionsErrors, type GetMeDeveloperAppsByAppIdInventoryCollectionsResponse, type GetMeDeveloperAppsByAppIdInventoryCollectionsResponses, type GetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersData, type GetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersError, type GetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersErrors, type GetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersResponse, type GetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersResponses, type GetMeDeveloperAppsByAppIdInventoryItemsData, type GetMeDeveloperAppsByAppIdInventoryItemsError, type GetMeDeveloperAppsByAppIdInventoryItemsErrors, type GetMeDeveloperAppsByAppIdInventoryItemsResponse, type GetMeDeveloperAppsByAppIdInventoryItemsResponses, type GetMeDeveloperAppsByAppIdPageData, type GetMeDeveloperAppsByAppIdPageError, type GetMeDeveloperAppsByAppIdPageErrors, type GetMeDeveloperAppsByAppIdPageResponse, type GetMeDeveloperAppsByAppIdPageResponses, type GetMeDeveloperAppsByAppIdReviewsData, type GetMeDeveloperAppsByAppIdReviewsError, type GetMeDeveloperAppsByAppIdReviewsErrors, type GetMeDeveloperAppsByAppIdReviewsResponse, type GetMeDeveloperAppsByAppIdReviewsResponses, type GetMeDeveloperAppsByIdActivityData, type GetMeDeveloperAppsByIdActivityError, type GetMeDeveloperAppsByIdActivityErrors, type GetMeDeveloperAppsByIdActivityResponse, type GetMeDeveloperAppsByIdActivityResponses, type GetMeDeveloperAppsByIdBalancesData, type GetMeDeveloperAppsByIdBalancesError, type GetMeDeveloperAppsByIdBalancesErrors, type GetMeDeveloperAppsByIdBalancesResponse, type GetMeDeveloperAppsByIdBalancesResponses, type GetMeDeveloperAppsByIdEarningsData, type GetMeDeveloperAppsByIdEarningsError, type GetMeDeveloperAppsByIdEarningsErrors, type GetMeDeveloperAppsByIdEarningsResponse, type GetMeDeveloperAppsByIdEarningsResponses, type GetMeDeveloperAppsByIdOverviewData, type GetMeDeveloperAppsByIdOverviewError, type GetMeDeveloperAppsByIdOverviewErrors, type GetMeDeveloperAppsByIdOverviewResponse, type GetMeDeveloperAppsByIdOverviewResponses, type GetMeDeveloperAppsByIdParticipantsData, type GetMeDeveloperAppsByIdParticipantsError, type GetMeDeveloperAppsByIdParticipantsErrors, type GetMeDeveloperAppsByIdParticipantsResponse, type GetMeDeveloperAppsByIdParticipantsResponses, type GetMeDeveloperAppsByIdPlaytimeData, type GetMeDeveloperAppsByIdPlaytimeError, type GetMeDeveloperAppsByIdPlaytimeErrors, type GetMeDeveloperAppsByIdPlaytimeResponse, type GetMeDeveloperAppsByIdPlaytimeResponses, type GetMeDeveloperAppsByIdReportsData, type GetMeDeveloperAppsByIdReportsError, type GetMeDeveloperAppsByIdReportsErrors, type GetMeDeveloperAppsByIdReportsResponse, type GetMeDeveloperAppsByIdReportsResponses, type GetMeDeveloperAppsByIdTronBalanceData, type GetMeDeveloperAppsByIdTronBalanceError, type GetMeDeveloperAppsByIdTronBalanceErrors, type GetMeDeveloperAppsByIdTronBalanceResponse, type GetMeDeveloperAppsByIdTronBalanceResponses, type GetMeDeveloperAppsByIdWalletsData, type GetMeDeveloperAppsByIdWalletsError, type GetMeDeveloperAppsByIdWalletsErrors, type GetMeDeveloperAppsByIdWalletsResponse, type GetMeDeveloperAppsByIdWalletsResponses, type GetMeDeveloperData, type GetMeDeveloperError, type GetMeDeveloperErrors, type GetMeDeveloperInvitesData, type GetMeDeveloperInvitesError, type GetMeDeveloperInvitesErrors, type GetMeDeveloperInvitesResponse, type GetMeDeveloperInvitesResponses, type GetMeDeveloperKeysData, type GetMeDeveloperKeysError, type GetMeDeveloperKeysErrors, type GetMeDeveloperKeysResponse, type GetMeDeveloperKeysResponses, type GetMeDeveloperPaymentsAppealsData, type GetMeDeveloperPaymentsAppealsError, type GetMeDeveloperPaymentsAppealsErrors, type GetMeDeveloperPaymentsAppealsResponse, type GetMeDeveloperPaymentsAppealsResponses, type GetMeDeveloperPaymentsPendingDepositsData, type GetMeDeveloperPaymentsPendingDepositsError, type GetMeDeveloperPaymentsPendingDepositsErrors, type GetMeDeveloperPaymentsPendingDepositsResponse, type GetMeDeveloperPaymentsPendingDepositsResponses, type GetMeDeveloperPaymentsTronBalanceData, type GetMeDeveloperPaymentsTronBalanceError, type GetMeDeveloperPaymentsTronBalanceErrors, type GetMeDeveloperPaymentsTronBalanceResponse, type GetMeDeveloperPaymentsTronBalanceResponses, type GetMeDeveloperResponse, type GetMeDeveloperResponses, type GetMeDmKeyBackupData, type GetMeDmKeyBackupError, type GetMeDmKeyBackupErrors, type GetMeDmKeyBackupResponse, type GetMeDmKeyBackupResponses, type GetMeDmKeyData, type GetMeDmKeyError, type GetMeDmKeyErrors, type GetMeDmKeyResponse, type GetMeDmKeyResponses, type GetMeEarningsTimeseriesData, type GetMeEarningsTimeseriesError, type GetMeEarningsTimeseriesErrors, type GetMeEarningsTimeseriesResponse, type GetMeEarningsTimeseriesResponses, type GetMeFriendsData, type GetMeFriendsError, type GetMeFriendsErrors, type GetMeFriendsResponse, type GetMeFriendsResponses, type GetMeGiphySearchData, type GetMeGiphySearchError, type GetMeGiphySearchErrors, type GetMeGiphySearchResponse, type GetMeGiphySearchResponses, type GetMeInventoryData, type GetMeInventoryError, type GetMeInventoryErrors, type GetMeInventoryPermitsData, type GetMeInventoryPermitsError, type GetMeInventoryPermitsErrors, type GetMeInventoryPermitsResponse, type GetMeInventoryPermitsResponses, type GetMeInventoryResponse, type GetMeInventoryResponses, type GetMeInventoryVaultPermitsData, type GetMeInventoryVaultPermitsError, type GetMeInventoryVaultPermitsErrors, type GetMeInventoryVaultPermitsResponse, type GetMeInventoryVaultPermitsResponses, type GetMeInventoryVaultedData, type GetMeInventoryVaultedError, type GetMeInventoryVaultedErrors, type GetMeInventoryVaultedResponse, type GetMeInventoryVaultedResponses, type GetMeNotificationsData, type GetMeNotificationsError, type GetMeNotificationsErrors, type GetMeNotificationsResponse, type GetMeNotificationsResponses, type GetMeOauthConnectionsData, type GetMeOauthConnectionsError, type GetMeOauthConnectionsErrors, type GetMeOauthConnectionsResponse, type GetMeOauthConnectionsResponses, type GetMeOauthPaymentAuthorizationsData, type GetMeOauthPaymentAuthorizationsError, type GetMeOauthPaymentAuthorizationsErrors, type GetMeOauthPaymentAuthorizationsResponse, type GetMeOauthPaymentAuthorizationsResponses, type GetMeOauthTronAuthorizationsData, type GetMeOauthTronAuthorizationsError, type GetMeOauthTronAuthorizationsErrors, type GetMeOauthTronAuthorizationsResponse, type GetMeOauthTronAuthorizationsResponses, type GetMePlaytimeData, type GetMePlaytimeError, type GetMePlaytimeErrors, type GetMePlaytimeResponse, type GetMePlaytimeResponses, type GetMePlaytimeTimeseriesData, type GetMePlaytimeTimeseriesError, type GetMePlaytimeTimeseriesErrors, type GetMePlaytimeTimeseriesResponse, type GetMePlaytimeTimeseriesResponses, type GetMeReferralData, type GetMeReferralError, type GetMeReferralErrors, type GetMeReferralPreviewData, type GetMeReferralPreviewError, type GetMeReferralPreviewErrors, type GetMeReferralPreviewResponse, type GetMeReferralPreviewResponses, type GetMeReferralResponse, type GetMeReferralResponses, type GetMeReviewsBySlugData, type GetMeReviewsBySlugError, type GetMeReviewsBySlugErrors, type GetMeReviewsBySlugReactionsData, type GetMeReviewsBySlugReactionsError, type GetMeReviewsBySlugReactionsErrors, type GetMeReviewsBySlugReactionsResponse, type GetMeReviewsBySlugReactionsResponses, type GetMeReviewsBySlugResponse, type GetMeReviewsBySlugResponses, type GetMeSocialsData, type GetMeSocialsError, type GetMeSocialsErrors, type GetMeSocialsResponse, type GetMeSocialsResponses, type GetMeStatsData, type GetMeStatsError, type GetMeStatsErrors, type GetMeStatsResponse, type GetMeStatsResponses, type GetMeThreadsByIdDmKeyData, type GetMeThreadsByIdDmKeyError, type GetMeThreadsByIdDmKeyErrors, type GetMeThreadsByIdDmKeyResponse, type GetMeThreadsByIdDmKeyResponses, type GetMeThreadsByIdMessagesData, type GetMeThreadsByIdMessagesError, type GetMeThreadsByIdMessagesErrors, type GetMeThreadsByIdMessagesResponse, type GetMeThreadsByIdMessagesResponses, type GetMeThreadsData, type GetMeThreadsError, type GetMeThreadsErrors, type GetMeThreadsResponse, type GetMeThreadsResponses, type GetMeWalletsByAddressDelegateData, type GetMeWalletsByAddressDelegateError, type GetMeWalletsByAddressDelegateErrors, type GetMeWalletsByAddressDelegateResponse, type GetMeWalletsByAddressDelegateResponses, type GetMeWalletsData, type GetMeWalletsError, type GetMeWalletsErrors, type GetMeWalletsResponse, type GetMeWalletsResponses, type GetOauthAuthorizeData, type GetOauthAuthorizeError, type GetOauthAuthorizeErrors, type GetOauthConsentByRequestData, type GetOauthConsentByRequestError, type GetOauthConsentByRequestErrors, type GetOauthConsentByRequestResponse, type GetOauthConsentByRequestResponses, type GetOauthFriendsData, type GetOauthFriendsError, type GetOauthFriendsErrors, type GetOauthFriendsResponse, type GetOauthFriendsResponses, type GetOauthInventoryData, type GetOauthInventoryError, type GetOauthInventoryErrors, type GetOauthInventoryResponse, type GetOauthInventoryResponses, type GetOauthInventoryVaultedData, type GetOauthInventoryVaultedError, type GetOauthInventoryVaultedErrors, type GetOauthInventoryVaultedResponse, type GetOauthInventoryVaultedResponses, type GetOauthPaymentsIntentByIdData, type GetOauthPaymentsIntentByIdError, type GetOauthPaymentsIntentByIdErrors, type GetOauthPaymentsIntentByIdResponse, type GetOauthPaymentsIntentByIdResponses, type GetOauthPaymentsLimitsData, type GetOauthPaymentsLimitsError, type GetOauthPaymentsLimitsErrors, type GetOauthPaymentsLimitsResponse, type GetOauthPaymentsLimitsResponses, type GetOauthPaymentsNotInvitedByClientIdData, type GetOauthPaymentsNotInvitedByClientIdError, type GetOauthPaymentsNotInvitedByClientIdErrors, type GetOauthPaymentsNotInvitedByClientIdResponse, type GetOauthPaymentsNotInvitedByClientIdResponses, type GetOauthPaymentsPriceData, type GetOauthPaymentsPriceError, type GetOauthPaymentsPriceErrors, type GetOauthPaymentsPriceResponse, type GetOauthPaymentsPriceResponses, type GetOauthPaymentsStatusByIdData, type GetOauthPaymentsStatusByIdError, type GetOauthPaymentsStatusByIdErrors, type GetOauthPaymentsStatusByIdResponse, type GetOauthPaymentsStatusByIdResponses, type GetOauthPaymentsTronBalanceData, type GetOauthPaymentsTronBalanceError, type GetOauthPaymentsTronBalanceErrors, type GetOauthPaymentsTronBalanceResponse, type GetOauthPaymentsTronBalanceResponses, type GetOauthPaymentsTronIntentByIdData, type GetOauthPaymentsTronIntentByIdError, type GetOauthPaymentsTronIntentByIdErrors, type GetOauthPaymentsTronIntentByIdResponse, type GetOauthPaymentsTronIntentByIdResponses, type GetOauthRaiseLimitContextData, type GetOauthRaiseLimitContextError, type GetOauthRaiseLimitContextErrors, type GetOauthRaiseLimitContextResponse, type GetOauthRaiseLimitContextResponses, type GetPaymentsAppealsByAppealIdRoomData, type GetPaymentsAppealsByAppealIdRoomError, type GetPaymentsAppealsByAppealIdRoomErrors, type GetPaymentsAppealsByAppealIdRoomResponse, type GetPaymentsAppealsByAppealIdRoomResponses, type GetPaymentsChainsData, type GetPaymentsChainsResponse, type GetPaymentsChainsResponses, type GetPaymentsMeActivityData, type GetPaymentsMeActivityError, type GetPaymentsMeActivityErrors, type GetPaymentsMeActivityGroupByGroupIdData, type GetPaymentsMeActivityGroupByGroupIdError, type GetPaymentsMeActivityGroupByGroupIdErrors, type GetPaymentsMeActivityGroupByGroupIdResponse, type GetPaymentsMeActivityGroupByGroupIdResponses, type GetPaymentsMeActivityResponse, type GetPaymentsMeActivityResponses, type GetPaymentsMeData, type GetPaymentsMeError, type GetPaymentsMeErrors, type GetPaymentsMeMoonpayAvailabilityData, type GetPaymentsMeMoonpayAvailabilityError, type GetPaymentsMeMoonpayAvailabilityErrors, type GetPaymentsMeMoonpayAvailabilityResponse, type GetPaymentsMeMoonpayAvailabilityResponses, type GetPaymentsMeOutstandingData, type GetPaymentsMeOutstandingError, type GetPaymentsMeOutstandingErrors, type GetPaymentsMeOutstandingResponse, type GetPaymentsMeOutstandingResponses, type GetPaymentsMeResponse, type GetPaymentsMeResponses, type GetPaymentsMeTronCashoutsData, type GetPaymentsMeTronCashoutsError, type GetPaymentsMeTronCashoutsErrors, type GetPaymentsMeTronCashoutsResponse, type GetPaymentsMeTronCashoutsResponses, type GetPaymentsMeTronData, type GetPaymentsMeTronError, type GetPaymentsMeTronErrors, type GetPaymentsMeTronLedgerData, type GetPaymentsMeTronLedgerError, type GetPaymentsMeTronLedgerErrors, type GetPaymentsMeTronLedgerResponse, type GetPaymentsMeTronLedgerResponses, type GetPaymentsMeTronResponse, type GetPaymentsMeTronResponses, type GetPaymentsMeTronSecurityData, type GetPaymentsMeTronSecurityError, type GetPaymentsMeTronSecurityErrors, type GetPaymentsMeTronSecurityResponse, type GetPaymentsMeTronSecurityResponses, type GetPublicAppsBySlugData, type GetPublicAppsBySlugError, type GetPublicAppsBySlugErrors, type GetPublicAppsBySlugResponse, type GetPublicAppsBySlugResponses, type GetPublicAppsBySlugReviewsByReviewIdCommentsData, type GetPublicAppsBySlugReviewsByReviewIdCommentsError, type GetPublicAppsBySlugReviewsByReviewIdCommentsErrors, type GetPublicAppsBySlugReviewsByReviewIdCommentsResponse, type GetPublicAppsBySlugReviewsByReviewIdCommentsResponses, type GetPublicAppsBySlugReviewsData, type GetPublicAppsBySlugReviewsError, type GetPublicAppsBySlugReviewsErrors, type GetPublicAppsBySlugReviewsResponse, type GetPublicAppsBySlugReviewsResponses, type GetPublicBuildInPublicBySlugData, type GetPublicBuildInPublicBySlugError, type GetPublicBuildInPublicBySlugErrors, type GetPublicBuildInPublicBySlugInterestData, type GetPublicBuildInPublicBySlugInterestError, type GetPublicBuildInPublicBySlugInterestErrors, type GetPublicBuildInPublicBySlugInterestResponse, type GetPublicBuildInPublicBySlugInterestResponses, type GetPublicBuildInPublicBySlugResponse, type GetPublicBuildInPublicBySlugResponses, type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsData, type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsError, type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsErrors, type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponse, type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponses, type GetPublicBuildInPublicBySlugUpdatesData, type GetPublicBuildInPublicBySlugUpdatesError, type GetPublicBuildInPublicBySlugUpdatesErrors, type GetPublicBuildInPublicBySlugUpdatesResponse, type GetPublicBuildInPublicBySlugUpdatesResponses, type GetPublicBuildInPublicData, type GetPublicBuildInPublicError, type GetPublicBuildInPublicErrors, type GetPublicBuildInPublicResponse, type GetPublicBuildInPublicResponses, type GetPublicLibraryData, type GetPublicLibraryError, type GetPublicLibraryErrors, type GetPublicLibraryResponse, type GetPublicLibraryResponses, type GetSessionResponse, type GetUserinfoData, type GetUserinfoError, type GetUserinfoErrors, type GetUserinfoResponse, type GetUserinfoResponses, type GetUsersByHandleData, type GetUsersByHandleError, type GetUsersByHandleErrors, type GetUsersByHandleResponse, type GetUsersByHandleResponses, type GetUsersSearchData, type GetUsersSearchError, type GetUsersSearchErrors, type GetUsersSearchResponse, type GetUsersSearchResponses, type GetWellKnownOauthAuthorizationServerData, type GetWellKnownOauthAuthorizationServerResponse, type GetWellKnownOauthAuthorizationServerResponses, type GiphySearchResponse, type GiphySearchResult, type GitHubUrl, type GroupParticipant, type GroupThreadMutationResponse, type GroupThreadSummary, type HealthResponse, type HideAppPage, type InventoryCollectionListResponse, type InventoryCollectionSummary, type InventoryContractMetadata, type InventoryHolding, type InventoryItemHolder, type InventoryItemHoldersResponse, type InventoryItemListResponse, type InventoryItemRecord, type InventoryItemRegistrationInput, type InventoryItemRegistrationResult, type InventoryItemRegistrationSpec, type InventoryItemStats, type InventoryListResponse, type InventoryMetadataAttribute, type InventoryMintPermitCreateInput, type InventoryMintPermitRecord, type InventoryNftTransferQuoteRequest, type InventoryNftTransferQuoteResponse, type InventoryNftTransferRequest, type InventoryNftTransferResponse, type InventoryPendingPermit, type InventoryPendingPermitListResponse, type InventoryPendingVaultPermit, type InventoryPendingVaultPermitListResponse, type InventoryPermitRedeemResult, type InventoryRegistrationQuote, type InventoryRelayedVaultQuoteResponse, type InventoryRelayedVaultSubmitRequest, type InventoryRelayedVaultSubmitResponse, type InventorySignedVaultPermit, type InventorySupplyType, type InventoryTokenMetadata, type InventoryVaultCustody, type InventoryVaultCustodyListResponse, type InventoryVaultForceWithdrawResponse, type InventoryVaultPermitCreateInput, type InventoryVaultPermitRecord, type InventoryWithdrawPermitCreateInput, type InviteDeveloperAppParticipant, type InviteParticipantsBody, type LibraryItem, type LibraryListResponse, type ListAdminsResponse, type ListAppPaymentAuthorizationsResponse, type ListAppealsResponse, type ListDeveloperRequestsResponse, type ListOauthConnectionsResponse, type ListTronPaymentAuthorizationsResponse, type MeStats, type MessageAttachment, type MessageAttachmentKind, type MessageBody, type MessageEnvelope, type MessageItem, type MessageLinkPreview, type MessageReplyPreview, type MessageTransactionNftTransfer, type MessageTransactionTronTransfer, type MessagesPageResponse, type MessagingOkResponse, type MintRequestInput, type MintRequestResult, type MoonpayAvailabilityResponse, type MoonpayBuyUrlRequest, type MoonpayBuyUrlResponse, type MoonpaySellUrlRequest, type MoonpaySellUrlResponse, type MyBipUpdateReaction, type MyBipUpdateReactionsResponse, type MyReviewReaction, type MyReviewReactionsResponse, type MyReviewResponse, type NotificationItem, type NotificationListResponse, type NotificationUpdate, type OauthAuthorizationServerMetadata, type OauthAuthorizeConfirm, type OauthAuthorizeConfirmResponse, type OauthClientId, type OauthClientRegistrationError, type OauthClientRegistrationRequest, type OauthClientRegistrationResponse, type OauthClientSecret, type OauthConnectionItem, type OauthConsentContext, type OauthErrorResponse, type OauthNotInvitedContext, type OauthPaymentCancelPotRequest, type OauthPaymentCancelPotResponse, type OauthPaymentChargeCompleted, type OauthPaymentChargeIdempotencyMismatch, type OauthPaymentChargeLimitExceeded, type OauthPaymentChargeRedirect, type OauthPaymentChargeRequest, type OauthPaymentChargeResponse, type OauthPaymentDistributeRequest, type OauthPaymentDistributeResponse, type OauthPaymentIntentComplete, type OauthPaymentIntentCompleteOffline, type OauthPaymentIntentCompleteSigned, type OauthPaymentIntentContext, type OauthPaymentIntentResolveResponse, type OauthPaymentIntentSignResponse, type OauthPaymentIntentStatus, type OauthPaymentLimitsResponse, type OauthPaymentMonthlyLimitCents, type OauthPaymentPayoutDirect, type OauthPaymentPayoutPull, type OauthPaymentPayoutRequest, type OauthPaymentPayoutResponse, type OauthPaymentPerTxLimitCents, type OauthPaymentPriceResponse, type OauthRedirectUri, type OauthRequestHandle, type OauthRevokeRequest, type OauthScopeString, type OauthState, type OauthTokenAuthorizationCodeRequest, type OauthTokenClientCredentialsRequest, type OauthTokenRefreshTokenRequest, type OauthTokenRequest, type OauthTokenResponse, type OauthUserInfoResponse, type OnlineStatus, type OutstandingByToken, type OutstandingResponse, type OwnReview, type ParticipantRole, type PatchAdminAdminsByIdData, type PatchAdminAdminsByIdError, type PatchAdminAdminsByIdErrors, type PatchAdminAdminsByIdResponse, type PatchAdminAdminsByIdResponses, type PatchAdminAppsByAppIdFeeConfigData, type PatchAdminAppsByAppIdFeeConfigError, type PatchAdminAppsByAppIdFeeConfigErrors, type PatchAdminAppsByAppIdFeeConfigResponse, type PatchAdminAppsByAppIdFeeConfigResponses, type PatchAdminContentReportsByReportIdData, type PatchAdminContentReportsByReportIdError, type PatchAdminContentReportsByReportIdErrors, type PatchAdminContentReportsByReportIdResponse, type PatchAdminContentReportsByReportIdResponses, type PatchAdminDeveloperRequestsByIdData, type PatchAdminDeveloperRequestsByIdError, type PatchAdminDeveloperRequestsByIdErrors, type PatchAdminDeveloperRequestsByIdResponse, type PatchAdminDeveloperRequestsByIdResponses, type PatchAdminPlatformFeesData, type PatchAdminPlatformFeesError, type PatchAdminPlatformFeesErrors, type PatchAdminPlatformFeesResponse, type PatchAdminPlatformFeesResponses, type PatchAdminUsersByIdData, type PatchAdminUsersByIdError, type PatchAdminUsersByIdErrors, type PatchAdminUsersByIdResponse, type PatchAdminUsersByIdResponses, type PatchMeData, type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdData, type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdError, type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdErrors, type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse, type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponses, type PatchMeDeveloperAppsByAppIdPageBipData, type PatchMeDeveloperAppsByAppIdPageBipError, type PatchMeDeveloperAppsByAppIdPageBipErrors, type PatchMeDeveloperAppsByAppIdPageBipResponse, type PatchMeDeveloperAppsByAppIdPageBipResponses, type PatchMeDeveloperAppsByAppIdPageData, type PatchMeDeveloperAppsByAppIdPageError, type PatchMeDeveloperAppsByAppIdPageErrors, type PatchMeDeveloperAppsByAppIdPageResponse, type PatchMeDeveloperAppsByAppIdPageResponses, type PatchMeDeveloperAppsByIdData, type PatchMeDeveloperAppsByIdError, type PatchMeDeveloperAppsByIdErrors, type PatchMeDeveloperAppsByIdReportsByReportIdData, type PatchMeDeveloperAppsByIdReportsByReportIdError, type PatchMeDeveloperAppsByIdReportsByReportIdErrors, type PatchMeDeveloperAppsByIdReportsByReportIdResponse, type PatchMeDeveloperAppsByIdReportsByReportIdResponses, type PatchMeDeveloperAppsByIdResponse, type PatchMeDeveloperAppsByIdResponses, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepData, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepError, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepErrors, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepResponse, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepResponses, type PatchMeDeveloperProfileData, type PatchMeDeveloperProfileError, type PatchMeDeveloperProfileErrors, type PatchMeDeveloperProfileResponse, type PatchMeDeveloperProfileResponses, type PatchMeError, type PatchMeErrors, type PatchMeFriendRequestsByIdData, type PatchMeFriendRequestsByIdError, type PatchMeFriendRequestsByIdErrors, type PatchMeFriendRequestsByIdResponse, type PatchMeFriendRequestsByIdResponses, type PatchMeNotificationsByIdData, type PatchMeNotificationsByIdError, type PatchMeNotificationsByIdErrors, type PatchMeNotificationsByIdResponse, type PatchMeNotificationsByIdResponses, type PatchMeOauthPaymentAuthorizationsByConsentIdData, type PatchMeOauthPaymentAuthorizationsByConsentIdError, type PatchMeOauthPaymentAuthorizationsByConsentIdErrors, type PatchMeOauthPaymentAuthorizationsByConsentIdResponse, type PatchMeOauthPaymentAuthorizationsByConsentIdResponses, type PatchMeOauthTronAuthorizationsByConsentIdData, type PatchMeOauthTronAuthorizationsByConsentIdError, type PatchMeOauthTronAuthorizationsByConsentIdErrors, type PatchMeOauthTronAuthorizationsByConsentIdResponse, type PatchMeOauthTronAuthorizationsByConsentIdResponses, type PatchMeProfileData, type PatchMeProfileError, type PatchMeProfileErrors, type PatchMeProfileResponse, type PatchMeProfileResponses, type PatchMeResponse, type PatchMeResponses, type PatchMeThreadsByIdData, type PatchMeThreadsByIdError, type PatchMeThreadsByIdErrors, type PatchMeThreadsByIdMessagesByMsgIdData, type PatchMeThreadsByIdMessagesByMsgIdError, type PatchMeThreadsByIdMessagesByMsgIdErrors, type PatchMeThreadsByIdMessagesByMsgIdResponse, type PatchMeThreadsByIdMessagesByMsgIdResponses, type PatchMeThreadsByIdParticipantsByUserIdRoleData, type PatchMeThreadsByIdParticipantsByUserIdRoleError, type PatchMeThreadsByIdParticipantsByUserIdRoleErrors, type PatchMeThreadsByIdParticipantsByUserIdRoleResponse, type PatchMeThreadsByIdParticipantsByUserIdRoleResponses, type PatchMeThreadsByIdResponse, type PatchMeThreadsByIdResponses, type PatchMeWalletsByAddressData, type PatchMeWalletsByAddressError, type PatchMeWalletsByAddressErrors, type PatchMeWalletsByAddressResponse, type PatchMeWalletsByAddressResponses, type PauseRequest, type PaymentChain, type PaymentChainsResponse, type PaymentHistoryResponse, type PaymentHistoryRow, type PaymentMetadata, type PaymentNetwork, type PinThreadResponse, type PkceCodeChallenge, type PkceCodeVerifier, type PlatformCurrency, type PlatformEnvironment, type PlatformFeeEnvelope, type PlatformFeesResponse, type PlaySessionAppId, type PlaySessionConfirmRequest, type PlaySessionConfirmResponse, type PlaySessionEndRequest, type PlaySessionEndResponse, type PlaySessionHeartbeatRequest, type PlaySessionHeartbeatResponse, type PlaySessionId, type PlaySessionOpenRequest, type PlaySessionOpenResponse, type PlaySessionUserId, type PlaytimeAppEntry, type PlaytimeOverview, type PlaytimeTimeseries, type PlaytimeTimeseriesBucket, type PostAdminAdminsData, type PostAdminAdminsError, type PostAdminAdminsErrors, type PostAdminAdminsResponse, type PostAdminAdminsResponses, type PostAdminAppPagesByAppIdHideBipData, type PostAdminAppPagesByAppIdHideBipError, type PostAdminAppPagesByAppIdHideBipErrors, type PostAdminAppPagesByAppIdHideBipResponse, type PostAdminAppPagesByAppIdHideBipResponses, type PostAdminAppPagesByAppIdHideData, type PostAdminAppPagesByAppIdHideError, type PostAdminAppPagesByAppIdHideErrors, type PostAdminAppPagesByAppIdHideResponse, type PostAdminAppPagesByAppIdHideResponses, type PostAdminAppPagesByAppIdReviewBipData, type PostAdminAppPagesByAppIdReviewBipError, type PostAdminAppPagesByAppIdReviewBipErrors, type PostAdminAppPagesByAppIdReviewBipResponse, type PostAdminAppPagesByAppIdReviewBipResponses, type PostAdminAppPagesByAppIdReviewChangesData, type PostAdminAppPagesByAppIdReviewChangesError, type PostAdminAppPagesByAppIdReviewChangesErrors, type PostAdminAppPagesByAppIdReviewChangesResponse, type PostAdminAppPagesByAppIdReviewChangesResponses, type PostAdminAppPagesByAppIdReviewData, type PostAdminAppPagesByAppIdReviewError, type PostAdminAppPagesByAppIdReviewErrors, type PostAdminAppPagesByAppIdReviewResponse, type PostAdminAppPagesByAppIdReviewResponses, type PostAdminAppPagesByAppIdUnhideBipData, type PostAdminAppPagesByAppIdUnhideBipError, type PostAdminAppPagesByAppIdUnhideBipErrors, type PostAdminAppPagesByAppIdUnhideBipResponse, type PostAdminAppPagesByAppIdUnhideBipResponses, type PostAdminAppPagesByAppIdUnhideData, type PostAdminAppPagesByAppIdUnhideError, type PostAdminAppPagesByAppIdUnhideErrors, type PostAdminAppPagesByAppIdUnhideResponse, type PostAdminAppPagesByAppIdUnhideResponses, type PostAdminInventoryVaultCustodyByCustodyIdForceWithdrawData, type PostAdminInventoryVaultCustodyByCustodyIdForceWithdrawError, type PostAdminInventoryVaultCustodyByCustodyIdForceWithdrawErrors, type PostAdminInventoryVaultCustodyByCustodyIdForceWithdrawResponse, type PostAdminInventoryVaultCustodyByCustodyIdForceWithdrawResponses, type PostAdminPaymentsAppealBlacklistData, type PostAdminPaymentsAppealBlacklistError, type PostAdminPaymentsAppealBlacklistErrors, type PostAdminPaymentsAppealBlacklistResponse, type PostAdminPaymentsAppealBlacklistResponses, type PostAdminPaymentsAppealsByAppealIdResolveData, type PostAdminPaymentsAppealsByAppealIdResolveError, type PostAdminPaymentsAppealsByAppealIdResolveErrors, type PostAdminPaymentsAppealsByAppealIdResolveResponse, type PostAdminPaymentsAppealsByAppealIdResolveResponses, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsData, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsError, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsErrors, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsResponse, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsResponses, type PostAdminPaymentsAppealsByAppealIdRoomMessagesData, type PostAdminPaymentsAppealsByAppealIdRoomMessagesError, type PostAdminPaymentsAppealsByAppealIdRoomMessagesErrors, type PostAdminPaymentsAppealsByAppealIdRoomMessagesResponse, type PostAdminPaymentsAppealsByAppealIdRoomMessagesResponses, type PostAdminPaymentsProcessorsByProcessorIdTreasuryData, type PostAdminPaymentsProcessorsByProcessorIdTreasuryError, type PostAdminPaymentsProcessorsByProcessorIdTreasuryErrors, type PostAdminPaymentsProcessorsByProcessorIdTreasuryResponse, type PostAdminPaymentsProcessorsByProcessorIdTreasuryResponses, type PostAdminPaymentsProcessorsWhitelistData, type PostAdminPaymentsProcessorsWhitelistError, type PostAdminPaymentsProcessorsWhitelistErrors, type PostAdminPaymentsProcessorsWhitelistResponse, type PostAdminPaymentsProcessorsWhitelistResponses, type PostAdminPaymentsVaultsByVaultAddressOperatorData, type PostAdminPaymentsVaultsByVaultAddressOperatorError, type PostAdminPaymentsVaultsByVaultAddressOperatorErrors, type PostAdminPaymentsVaultsByVaultAddressOperatorResponse, type PostAdminPaymentsVaultsByVaultAddressOperatorResponses, type PostAdminPaymentsVaultsByVaultAddressPauseData, type PostAdminPaymentsVaultsByVaultAddressPauseError, type PostAdminPaymentsVaultsByVaultAddressPauseErrors, type PostAdminPaymentsVaultsByVaultAddressPauseResponse, type PostAdminPaymentsVaultsByVaultAddressPauseResponses, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultData, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultError, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultErrors, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultResponse, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultResponses, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideData, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideError, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideErrors, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideResponse, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideResponses, type PostAdminTronCashoutsByIdApproveData, type PostAdminTronCashoutsByIdApproveError, type PostAdminTronCashoutsByIdApproveErrors, type PostAdminTronCashoutsByIdApproveResponse, type PostAdminTronCashoutsByIdApproveResponses, type PostAdminTronCashoutsByIdRejectData, type PostAdminTronCashoutsByIdRejectError, type PostAdminTronCashoutsByIdRejectErrors, type PostAdminTronCashoutsByIdRejectResponse, type PostAdminTronCashoutsByIdRejectResponses, type PostAuthRequestPasswordResetData, type PostAuthRequestPasswordResetError, type PostAuthRequestPasswordResetErrors, type PostAuthRequestPasswordResetResponse, type PostAuthRequestPasswordResetResponses, type PostAuthResetPasswordData, type PostAuthResetPasswordError, type PostAuthResetPasswordErrors, type PostAuthResetPasswordResponse, type PostAuthResetPasswordResponses, type PostAuthSendVerificationEmailData, type PostAuthSendVerificationEmailError, type PostAuthSendVerificationEmailErrors, type PostAuthSendVerificationEmailResponse, type PostAuthSendVerificationEmailResponses, type PostAuthSignInEmailData, type PostAuthSignInEmailError, type PostAuthSignInEmailErrors, type PostAuthSignInEmailResponse, type PostAuthSignInEmailResponses, type PostAuthSignOutData, type PostAuthSignOutResponse, type PostAuthSignOutResponses, type PostAuthSignUpEmailData, type PostAuthSignUpEmailError, type PostAuthSignUpEmailErrors, type PostAuthSignUpEmailResponse, type PostAuthSignUpEmailResponses, type PostMeAppsByAppIdReportData, type PostMeAppsByAppIdReportError, type PostMeAppsByAppIdReportErrors, type PostMeAppsByAppIdReportResponse, type PostMeAppsByAppIdReportResponses, type PostMeAvatarData, type PostMeAvatarError, type PostMeAvatarErrors, type PostMeAvatarResponse, type PostMeAvatarResponses, type PostMeBuildInPublicBySlugCommentsByUpdateIdData, type PostMeBuildInPublicBySlugCommentsByUpdateIdError, type PostMeBuildInPublicBySlugCommentsByUpdateIdErrors, type PostMeBuildInPublicBySlugCommentsByUpdateIdResponse, type PostMeBuildInPublicBySlugCommentsByUpdateIdResponses, type PostMeBuildInPublicBySlugInterestData, type PostMeBuildInPublicBySlugInterestError, type PostMeBuildInPublicBySlugInterestErrors, type PostMeBuildInPublicBySlugInterestResponse, type PostMeBuildInPublicBySlugInterestResponses, type PostMeBuildInPublicBySlugReactionsByUpdateIdData, type PostMeBuildInPublicBySlugReactionsByUpdateIdError, type PostMeBuildInPublicBySlugReactionsByUpdateIdErrors, type PostMeBuildInPublicBySlugReactionsByUpdateIdResponse, type PostMeBuildInPublicBySlugReactionsByUpdateIdResponses, type PostMeBuildInPublicBySlugSubscriptionData, type PostMeBuildInPublicBySlugSubscriptionError, type PostMeBuildInPublicBySlugSubscriptionErrors, type PostMeBuildInPublicBySlugSubscriptionResponse, type PostMeBuildInPublicBySlugSubscriptionResponses, type PostMeConsentData, type PostMeConsentError, type PostMeConsentErrors, type PostMeConsentResponse, type PostMeConsentResponses, type PostMeDeveloperAppsByAppIdBipUpdatesData, type PostMeDeveloperAppsByAppIdBipUpdatesError, type PostMeDeveloperAppsByAppIdBipUpdatesErrors, type PostMeDeveloperAppsByAppIdBipUpdatesMediaData, type PostMeDeveloperAppsByAppIdBipUpdatesMediaError, type PostMeDeveloperAppsByAppIdBipUpdatesMediaErrors, type PostMeDeveloperAppsByAppIdBipUpdatesMediaResponse, type PostMeDeveloperAppsByAppIdBipUpdatesMediaResponses, type PostMeDeveloperAppsByAppIdBipUpdatesResponse, type PostMeDeveloperAppsByAppIdBipUpdatesResponses, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerData, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerError, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerErrors, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerResponse, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerResponses, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageData, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageError, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageErrors, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageResponse, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageResponses, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsData, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsError, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsErrors, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsResponse, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsResponses, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsData, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsError, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsErrors, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsResponse, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsResponses, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsData, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsError, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsErrors, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsResponse, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsResponses, type PostMeDeveloperAppsByAppIdInventoryItemsData, type PostMeDeveloperAppsByAppIdInventoryItemsError, type PostMeDeveloperAppsByAppIdInventoryItemsErrors, type PostMeDeveloperAppsByAppIdInventoryItemsQuoteData, type PostMeDeveloperAppsByAppIdInventoryItemsQuoteError, type PostMeDeveloperAppsByAppIdInventoryItemsQuoteErrors, type PostMeDeveloperAppsByAppIdInventoryItemsQuoteResponse, type PostMeDeveloperAppsByAppIdInventoryItemsQuoteResponses, type PostMeDeveloperAppsByAppIdInventoryItemsResponse, type PostMeDeveloperAppsByAppIdInventoryItemsResponses, type PostMeDeveloperAppsByAppIdPageBannerData, type PostMeDeveloperAppsByAppIdPageBannerError, type PostMeDeveloperAppsByAppIdPageBannerErrors, type PostMeDeveloperAppsByAppIdPageBannerResponse, type PostMeDeveloperAppsByAppIdPageBannerResponses, type PostMeDeveloperAppsByAppIdPageBipSubmitForReviewData, type PostMeDeveloperAppsByAppIdPageBipSubmitForReviewError, type PostMeDeveloperAppsByAppIdPageBipSubmitForReviewErrors, type PostMeDeveloperAppsByAppIdPageBipSubmitForReviewResponse, type PostMeDeveloperAppsByAppIdPageBipSubmitForReviewResponses, type PostMeDeveloperAppsByAppIdPageBipUnpublishData, type PostMeDeveloperAppsByAppIdPageBipUnpublishError, type PostMeDeveloperAppsByAppIdPageBipUnpublishErrors, type PostMeDeveloperAppsByAppIdPageBipUnpublishResponse, type PostMeDeveloperAppsByAppIdPageBipUnpublishResponses, type PostMeDeveloperAppsByAppIdPageGalleryData, type PostMeDeveloperAppsByAppIdPageGalleryError, type PostMeDeveloperAppsByAppIdPageGalleryErrors, type PostMeDeveloperAppsByAppIdPageGalleryResponse, type PostMeDeveloperAppsByAppIdPageGalleryResponses, type PostMeDeveloperAppsByAppIdPageSubmitForReviewData, type PostMeDeveloperAppsByAppIdPageSubmitForReviewError, type PostMeDeveloperAppsByAppIdPageSubmitForReviewErrors, type PostMeDeveloperAppsByAppIdPageSubmitForReviewResponse, type PostMeDeveloperAppsByAppIdPageSubmitForReviewResponses, type PostMeDeveloperAppsByAppIdPageThumbnailData, type PostMeDeveloperAppsByAppIdPageThumbnailError, type PostMeDeveloperAppsByAppIdPageThumbnailErrors, type PostMeDeveloperAppsByAppIdPageThumbnailResponse, type PostMeDeveloperAppsByAppIdPageThumbnailResponses, type PostMeDeveloperAppsByAppIdPageThumbnailVideoData, type PostMeDeveloperAppsByAppIdPageThumbnailVideoError, type PostMeDeveloperAppsByAppIdPageThumbnailVideoErrors, type PostMeDeveloperAppsByAppIdPageThumbnailVideoResponse, type PostMeDeveloperAppsByAppIdPageThumbnailVideoResponses, type PostMeDeveloperAppsByAppIdPageUnpublishData, type PostMeDeveloperAppsByAppIdPageUnpublishError, type PostMeDeveloperAppsByAppIdPageUnpublishErrors, type PostMeDeveloperAppsByAppIdPageUnpublishResponse, type PostMeDeveloperAppsByAppIdPageUnpublishResponses, type PostMeDeveloperAppsByIdLogoData, type PostMeDeveloperAppsByIdLogoError, type PostMeDeveloperAppsByIdLogoErrors, type PostMeDeveloperAppsByIdLogoResponse, type PostMeDeveloperAppsByIdLogoResponses, type PostMeDeveloperAppsByIdParticipantsData, type PostMeDeveloperAppsByIdParticipantsError, type PostMeDeveloperAppsByIdParticipantsErrors, type PostMeDeveloperAppsByIdParticipantsResponse, type PostMeDeveloperAppsByIdParticipantsResponses, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretData, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretError, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretErrors, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretResponse, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretResponses, type PostMeDeveloperAppsByIdProductionRequestData, type PostMeDeveloperAppsByIdProductionRequestError, type PostMeDeveloperAppsByIdProductionRequestErrors, type PostMeDeveloperAppsByIdProductionRequestResponse, type PostMeDeveloperAppsByIdProductionRequestResponses, type PostMeDeveloperAppsByIdWalletsByChainConsolidateData, type PostMeDeveloperAppsByIdWalletsByChainConsolidateError, type PostMeDeveloperAppsByIdWalletsByChainConsolidateErrors, type PostMeDeveloperAppsByIdWalletsByChainConsolidateResponse, type PostMeDeveloperAppsByIdWalletsByChainConsolidateResponses, type PostMeDeveloperAppsByIdWalletsByChainProvisionData, type PostMeDeveloperAppsByIdWalletsByChainProvisionError, type PostMeDeveloperAppsByIdWalletsByChainProvisionErrors, type PostMeDeveloperAppsByIdWalletsByChainProvisionResponse, type PostMeDeveloperAppsByIdWalletsByChainProvisionResponses, type PostMeDeveloperAppsByIdWalletsByChainWithdrawData, type PostMeDeveloperAppsByIdWalletsByChainWithdrawError, type PostMeDeveloperAppsByIdWalletsByChainWithdrawErrors, type PostMeDeveloperAppsByIdWalletsByChainWithdrawResponse, type PostMeDeveloperAppsByIdWalletsByChainWithdrawResponses, type PostMeDeveloperAppsData, type PostMeDeveloperAppsError, type PostMeDeveloperAppsErrors, type PostMeDeveloperAppsResponse, type PostMeDeveloperAppsResponses, type PostMeDeveloperInvitesByAppIdAcceptData, type PostMeDeveloperInvitesByAppIdAcceptError, type PostMeDeveloperInvitesByAppIdAcceptErrors, type PostMeDeveloperInvitesByAppIdAcceptResponse, type PostMeDeveloperInvitesByAppIdAcceptResponses, type PostMeDeveloperInvitesByAppIdDeclineData, type PostMeDeveloperInvitesByAppIdDeclineError, type PostMeDeveloperInvitesByAppIdDeclineErrors, type PostMeDeveloperInvitesByAppIdDeclineResponse, type PostMeDeveloperInvitesByAppIdDeclineResponses, type PostMeDeveloperKeysData, type PostMeDeveloperKeysError, type PostMeDeveloperKeysErrors, type PostMeDeveloperKeysResponse, type PostMeDeveloperKeysResponses, type PostMeDeveloperProfileLogoData, type PostMeDeveloperProfileLogoError, type PostMeDeveloperProfileLogoErrors, type PostMeDeveloperProfileLogoResponse, type PostMeDeveloperProfileLogoResponses, type PostMeDeveloperRequestData, type PostMeDeveloperRequestError, type PostMeDeveloperRequestErrors, type PostMeDeveloperRequestLogoData, type PostMeDeveloperRequestLogoError, type PostMeDeveloperRequestLogoErrors, type PostMeDeveloperRequestLogoResponse, type PostMeDeveloperRequestLogoResponses, type PostMeDeveloperRequestResponse, type PostMeDeveloperRequestResponses, type PostMeDmKeyBackupData, type PostMeDmKeyBackupError, type PostMeDmKeyBackupErrors, type PostMeDmKeyBackupResponse, type PostMeDmKeyBackupResponses, type PostMeDmKeyBackupUnlockData, type PostMeDmKeyBackupUnlockError, type PostMeDmKeyBackupUnlockErrors, type PostMeDmKeyBackupUnlockResponse, type PostMeDmKeyBackupUnlockResponses, type PostMeInventoryNftTransfersData, type PostMeInventoryNftTransfersError, type PostMeInventoryNftTransfersErrors, type PostMeInventoryNftTransfersQuoteData, type PostMeInventoryNftTransfersQuoteError, type PostMeInventoryNftTransfersQuoteErrors, type PostMeInventoryNftTransfersQuoteResponse, type PostMeInventoryNftTransfersQuoteResponses, type PostMeInventoryNftTransfersResponse, type PostMeInventoryNftTransfersResponses, type PostMeInventoryPermitsByPermitIdRedeemData, type PostMeInventoryPermitsByPermitIdRedeemError, type PostMeInventoryPermitsByPermitIdRedeemErrors, type PostMeInventoryPermitsByPermitIdRedeemResponse, type PostMeInventoryPermitsByPermitIdRedeemResponses, type PostMeInventoryVaultPermitsByPermitIdRelayedQuoteData, type PostMeInventoryVaultPermitsByPermitIdRelayedQuoteError, type PostMeInventoryVaultPermitsByPermitIdRelayedQuoteErrors, type PostMeInventoryVaultPermitsByPermitIdRelayedQuoteResponse, type PostMeInventoryVaultPermitsByPermitIdRelayedQuoteResponses, type PostMeInventoryVaultPermitsByPermitIdRelayedSubmitData, type PostMeInventoryVaultPermitsByPermitIdRelayedSubmitError, type PostMeInventoryVaultPermitsByPermitIdRelayedSubmitErrors, type PostMeInventoryVaultPermitsByPermitIdRelayedSubmitResponse, type PostMeInventoryVaultPermitsByPermitIdRelayedSubmitResponses, type PostMeInventoryVaultPermitsByPermitIdSignData, type PostMeInventoryVaultPermitsByPermitIdSignError, type PostMeInventoryVaultPermitsByPermitIdSignErrors, type PostMeInventoryVaultPermitsByPermitIdSignResponse, type PostMeInventoryVaultPermitsByPermitIdSignResponses, type PostMeNotificationsMarkAllReadData, type PostMeNotificationsMarkAllReadError, type PostMeNotificationsMarkAllReadErrors, type PostMeNotificationsMarkAllReadResponse, type PostMeNotificationsMarkAllReadResponses, type PostMePlaySessionsOpenData, type PostMePlaySessionsOpenError, type PostMePlaySessionsOpenErrors, type PostMePlaySessionsOpenResponse, type PostMePlaySessionsOpenResponses, type PostMePresenceHeartbeatData, type PostMePresenceHeartbeatError, type PostMePresenceHeartbeatErrors, type PostMePresenceHeartbeatResponse, type PostMePresenceHeartbeatResponses, type PostMeReferralBindData, type PostMeReferralBindError, type PostMeReferralBindErrors, type PostMeReferralBindResponse, type PostMeReferralBindResponses, type PostMeReferralCodeData, type PostMeReferralCodeError, type PostMeReferralCodeErrors, type PostMeReferralCodeResponse, type PostMeReferralCodeResponses, type PostMeReviewsBySlugCommentsByReviewIdData, type PostMeReviewsBySlugCommentsByReviewIdError, type PostMeReviewsBySlugCommentsByReviewIdErrors, type PostMeReviewsBySlugCommentsByReviewIdResponse, type PostMeReviewsBySlugCommentsByReviewIdResponses, type PostMeReviewsBySlugReactionsByReviewIdData, type PostMeReviewsBySlugReactionsByReviewIdError, type PostMeReviewsBySlugReactionsByReviewIdErrors, type PostMeReviewsBySlugReactionsByReviewIdResponse, type PostMeReviewsBySlugReactionsByReviewIdResponses, type PostMeReviewsBySlugTipsByReviewIdData, type PostMeReviewsBySlugTipsByReviewIdError, type PostMeReviewsBySlugTipsByReviewIdErrors, type PostMeReviewsBySlugTipsByReviewIdResponse, type PostMeReviewsBySlugTipsByReviewIdResponses, type PostMeThreadsByIdAttachmentsData, type PostMeThreadsByIdAttachmentsError, type PostMeThreadsByIdAttachmentsErrors, type PostMeThreadsByIdAttachmentsResponse, type PostMeThreadsByIdAttachmentsResponses, type PostMeThreadsByIdHideData, type PostMeThreadsByIdHideError, type PostMeThreadsByIdHideErrors, type PostMeThreadsByIdHideResponse, type PostMeThreadsByIdHideResponses, type PostMeThreadsByIdInviteData, type PostMeThreadsByIdInviteError, type PostMeThreadsByIdInviteErrors, type PostMeThreadsByIdInviteResponse, type PostMeThreadsByIdInviteResponses, type PostMeThreadsByIdLeaveData, type PostMeThreadsByIdLeaveError, type PostMeThreadsByIdLeaveErrors, type PostMeThreadsByIdLeaveResponse, type PostMeThreadsByIdLeaveResponses, type PostMeThreadsByIdLogoData, type PostMeThreadsByIdLogoError, type PostMeThreadsByIdLogoErrors, type PostMeThreadsByIdLogoResponse, type PostMeThreadsByIdLogoResponses, type PostMeThreadsByIdMessagesData, type PostMeThreadsByIdMessagesError, type PostMeThreadsByIdMessagesErrors, type PostMeThreadsByIdMessagesResponse, type PostMeThreadsByIdMessagesResponses, type PostMeThreadsByIdPinData, type PostMeThreadsByIdPinError, type PostMeThreadsByIdPinErrors, type PostMeThreadsByIdPinResponse, type PostMeThreadsByIdPinResponses, type PostMeThreadsByIdReadData, type PostMeThreadsByIdReadError, type PostMeThreadsByIdReadErrors, type PostMeThreadsByIdReadResponse, type PostMeThreadsByIdReadResponses, type PostMeThreadsData, type PostMeThreadsDmKeysData, type PostMeThreadsDmKeysError, type PostMeThreadsDmKeysErrors, type PostMeThreadsDmKeysResponse, type PostMeThreadsDmKeysResponses, type PostMeThreadsError, type PostMeThreadsErrors, type PostMeThreadsResponse, type PostMeThreadsResponses, type PostMeWalletsByAddressDelegateData, type PostMeWalletsByAddressDelegateError, type PostMeWalletsByAddressDelegateErrors, type PostMeWalletsByAddressDelegateResponse, type PostMeWalletsByAddressDelegateResponses, type PostOauthAuthorizeConfirmData, type PostOauthAuthorizeConfirmError, type PostOauthAuthorizeConfirmErrors, type PostOauthAuthorizeConfirmResponse, type PostOauthAuthorizeConfirmResponses, type PostOauthInventoryMintData, type PostOauthInventoryMintError, type PostOauthInventoryMintErrors, type PostOauthInventoryMintResponse, type PostOauthInventoryMintResponses, type PostOauthPaymentsCancelPotData, type PostOauthPaymentsCancelPotError, type PostOauthPaymentsCancelPotErrors, type PostOauthPaymentsCancelPotResponse, type PostOauthPaymentsCancelPotResponses, type PostOauthPaymentsChargeData, type PostOauthPaymentsChargeError, type PostOauthPaymentsChargeErrors, type PostOauthPaymentsChargeResponse, type PostOauthPaymentsChargeResponses, type PostOauthPaymentsDistributeData, type PostOauthPaymentsDistributeError, type PostOauthPaymentsDistributeErrors, type PostOauthPaymentsDistributeResponse, type PostOauthPaymentsDistributeResponses, type PostOauthPaymentsIntentByIdCompleteData, type PostOauthPaymentsIntentByIdCompleteError, type PostOauthPaymentsIntentByIdCompleteErrors, type PostOauthPaymentsIntentByIdCompleteResponse, type PostOauthPaymentsIntentByIdCompleteResponses, type PostOauthPaymentsIntentByIdDenyData, type PostOauthPaymentsIntentByIdDenyError, type PostOauthPaymentsIntentByIdDenyErrors, type PostOauthPaymentsIntentByIdDenyResponse, type PostOauthPaymentsIntentByIdDenyResponses, type PostOauthPaymentsIntentByIdSignData, type PostOauthPaymentsIntentByIdSignError, type PostOauthPaymentsIntentByIdSignErrors, type PostOauthPaymentsIntentByIdSignResponse, type PostOauthPaymentsIntentByIdSignResponses, type PostOauthPaymentsPayoutData, type PostOauthPaymentsPayoutError, type PostOauthPaymentsPayoutErrors, type PostOauthPaymentsPayoutResponse, type PostOauthPaymentsPayoutResponses, type PostOauthPaymentsTronChargeData, type PostOauthPaymentsTronChargeDirectData, type PostOauthPaymentsTronChargeDirectError, type PostOauthPaymentsTronChargeDirectErrors, type PostOauthPaymentsTronChargeDirectResponse, type PostOauthPaymentsTronChargeDirectResponses, type PostOauthPaymentsTronChargeError, type PostOauthPaymentsTronChargeErrors, type PostOauthPaymentsTronChargeResponse, type PostOauthPaymentsTronChargeResponses, type PostOauthPaymentsTronDistributeData, type PostOauthPaymentsTronDistributeError, type PostOauthPaymentsTronDistributeErrors, type PostOauthPaymentsTronDistributeResponse, type PostOauthPaymentsTronDistributeResponses, type PostOauthPaymentsTronIntentByIdCompleteData, type PostOauthPaymentsTronIntentByIdCompleteError, type PostOauthPaymentsTronIntentByIdCompleteErrors, type PostOauthPaymentsTronIntentByIdCompleteResponse, type PostOauthPaymentsTronIntentByIdCompleteResponses, type PostOauthPaymentsTronIntentByIdDenyData, type PostOauthPaymentsTronIntentByIdDenyError, type PostOauthPaymentsTronIntentByIdDenyErrors, type PostOauthPaymentsTronIntentByIdDenyResponse, type PostOauthPaymentsTronIntentByIdDenyResponses, type PostOauthPlaySessionsConfirmData, type PostOauthPlaySessionsConfirmError, type PostOauthPlaySessionsConfirmErrors, type PostOauthPlaySessionsConfirmResponse, type PostOauthPlaySessionsConfirmResponses, type PostOauthPlaySessionsEndData, type PostOauthPlaySessionsEndError, type PostOauthPlaySessionsEndErrors, type PostOauthPlaySessionsEndResponse, type PostOauthPlaySessionsEndResponses, type PostOauthPlaySessionsHeartbeatData, type PostOauthPlaySessionsHeartbeatError, type PostOauthPlaySessionsHeartbeatErrors, type PostOauthPlaySessionsHeartbeatResponse, type PostOauthPlaySessionsHeartbeatResponses, type PostOauthRegisterData, type PostOauthRegisterError, type PostOauthRegisterErrors, type PostOauthRegisterResponse, type PostOauthRegisterResponses, type PostOauthRevokeData, type PostOauthRevokeError, type PostOauthRevokeErrors, type PostOauthRevokeResponses, type PostOauthTokenData, type PostOauthTokenError, type PostOauthTokenErrors, type PostOauthTokenResponse, type PostOauthTokenResponses, type PostPaymentsAppealsByAppealIdRoomAttachmentsData, type PostPaymentsAppealsByAppealIdRoomAttachmentsError, type PostPaymentsAppealsByAppealIdRoomAttachmentsErrors, type PostPaymentsAppealsByAppealIdRoomAttachmentsResponse, type PostPaymentsAppealsByAppealIdRoomAttachmentsResponses, type PostPaymentsAppealsByAppealIdRoomMessagesData, type PostPaymentsAppealsByAppealIdRoomMessagesError, type PostPaymentsAppealsByAppealIdRoomMessagesErrors, type PostPaymentsAppealsByAppealIdRoomMessagesResponse, type PostPaymentsAppealsByAppealIdRoomMessagesResponses, type PostPaymentsAppealsData, type PostPaymentsAppealsError, type PostPaymentsAppealsErrors, type PostPaymentsAppealsPotLegData, type PostPaymentsAppealsPotLegError, type PostPaymentsAppealsPotLegErrors, type PostPaymentsAppealsPotLegResponse, type PostPaymentsAppealsPotLegResponses, type PostPaymentsAppealsResponse, type PostPaymentsAppealsResponses, type PostPaymentsMeMoonpayBuyUrlData, type PostPaymentsMeMoonpayBuyUrlError, type PostPaymentsMeMoonpayBuyUrlErrors, type PostPaymentsMeMoonpayBuyUrlResponse, type PostPaymentsMeMoonpayBuyUrlResponses, type PostPaymentsMeMoonpaySellUrlData, type PostPaymentsMeMoonpaySellUrlError, type PostPaymentsMeMoonpaySellUrlErrors, type PostPaymentsMeMoonpaySellUrlResponse, type PostPaymentsMeMoonpaySellUrlResponses, type PostPaymentsMeTronCashoutsData, type PostPaymentsMeTronCashoutsError, type PostPaymentsMeTronCashoutsErrors, type PostPaymentsMeTronCashoutsResponse, type PostPaymentsMeTronCashoutsResponses, type PostPaymentsMeTronConnectData, type PostPaymentsMeTronConnectError, type PostPaymentsMeTronConnectErrors, type PostPaymentsMeTronConnectResponse, type PostPaymentsMeTronConnectResponses, type PostPaymentsMeTronDepositData, type PostPaymentsMeTronDepositError, type PostPaymentsMeTronDepositErrors, type PostPaymentsMeTronDepositResponse, type PostPaymentsMeTronDepositResponses, type PostPaymentsMeTronTransferChallengeData, type PostPaymentsMeTronTransferChallengeError, type PostPaymentsMeTronTransferChallengeErrors, type PostPaymentsMeTronTransferChallengeResponse, type PostPaymentsMeTronTransferChallengeResponses, type PostPaymentsMeTronTransferData, type PostPaymentsMeTronTransferError, type PostPaymentsMeTronTransferErrors, type PostPaymentsMeTronTransferResponse, type PostPaymentsMeTronTransferResponses, type PostUsersByIdFollowData, type PostUsersByIdFollowError, type PostUsersByIdFollowErrors, type PostUsersByIdFollowResponse, type PostUsersByIdFollowResponses, type PostUsersByIdFriendData, type PostUsersByIdFriendError, type PostUsersByIdFriendErrors, type PostUsersByIdFriendResponse, type PostUsersByIdFriendResponses, type PresenceStatusMode, type ProfileCounts, type ProfileRecentReview, type ProfileStats, type ProfileTopGame, type ProfileUpdate, type ProjectDescription, type PublicAppPage, type PublicAppPageStudio, type PublicBipPage, type PublicDeveloperApp, type PublicProfile, type PublicProfileDeveloper, type PublishDmKeyBody, type PurposeHeader, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyData, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyError, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyErrors, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponses, type PutMeDeveloperAppsByIdKeysByEnvData, type PutMeDeveloperAppsByIdKeysByEnvError, type PutMeDeveloperAppsByIdKeysByEnvErrors, type PutMeDeveloperAppsByIdKeysByEnvResponse, type PutMeDeveloperAppsByIdKeysByEnvResponses, type PutMeDmKeyData, type PutMeDmKeyError, type PutMeDmKeyErrors, type PutMeDmKeyResponse, type PutMeDmKeyResponses, type PutMeReviewsBySlugData, type PutMeReviewsBySlugError, type PutMeReviewsBySlugErrors, type PutMeReviewsBySlugResponse, type PutMeReviewsBySlugResponses, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiData, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiError, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiErrors, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponses, type PutPaymentsMeTronSecurityData, type PutPaymentsMeTronSecurityError, type PutPaymentsMeTronSecurityErrors, type PutPaymentsMeTronSecurityResponse, type PutPaymentsMeTronSecurityResponses, type RaiseLimitContextResponse, type ReactionAggregate, type ReactionEmoji, type ReactionMutationResponse, type ReferralBindRequest, type ReferralBindResponse, type ReferralCodeResponse, type ReferralEarningTotal, type ReferralOverview, type ReferralPreviewResponse, type ReferralReferrer, type RegenerateDeveloperAppKeyResponse, type RegenerateDeveloperAppWebhookSecretResponse, type Relationship, type RequestPasswordResetRequest, type RequestPasswordResetResponse, type ResetPasswordRequest, type ResetPasswordResponse, type Review, type ReviewAggregate, type ReviewAppPage, type ReviewAuthor, type ReviewBody, type ReviewComment, type ReviewCommentBody, type ReviewCommentListResponse, type ReviewDeveloperRequest, type ReviewDeveloperRequestResponse, type ReviewEligibilityReason, type ReviewListResponse, type ReviewReactionCounts, type ReviewRecommended, type ReviewReply, type ReviewReplyBody, type ReviewReplyResponse, type ReviewSort, type ReviewSummaryLabel, type ReviewVote, type ReviewerStats, type RotateProcessorTreasuryRequest, type SendMessageBody, type SendMessageText, type SendVerificationEmailRequest, type SendVerificationEmailResponse, type SetBipUpdateReactionRequest, type SetBipUpdateReactionResponse, type SetDefaultWithdrawLockRequest, type SetOperatorRequest, type SetProcessorWhitelistRequest, type SetReviewReactionRequest, type SetReviewReactionResponse, type SetWithdrawLockOverrideRequest, type SignInEmailRequest, type SignInEmailResponse, type SignOutResponse, type SignUpEmailRequest, type SignUpEmailResponse, type SocialAccount, type SocialActionAck, type SocialListResponse, type SubmitAppContentReportRequest, type SubmitAppContentReportResponse, type TeamName, type ThreadDescription, type ThreadDmKeyEntry, type ThreadLastMessagePreview, type ThreadListResponse, type ThreadLogoUrl, type ThreadParticipant, type ThreadSummary, type ThreadTitle, type TipReviewRequest, type TipReviewResponse, type TronBalanceResponse, type TronCapCents, type TronCashoutCreateRequest, type TronCashoutItem, type TronCashoutListResponse, type TronChargeCompleted, type TronChargeInsufficient, type TronChargeRedirect, type TronChargeRequest, type TronChargeResponse, type TronConnectOnboardingResponse, type TronDepositRequest, type TronDepositResponse, type TronDirectChargeCompleted, type TronDirectChargeInsufficient, type TronDirectChargeRedirect, type TronDirectChargeRequest, type TronDirectChargeResponse, type TronDistributeRequest, type TronDistributeResponse, type TronGameBalanceResponse, type TronLedgerEntry, type TronLedgerResponse, type TronPaymentAuthorizationItem, type TronPaymentIntentContext, type TronPaymentIntentResolveInsufficient, type TronPaymentIntentResolveRedirect, type TronPaymentIntentResolveResponse, type TronSecuritySetting, type TronTransferChallengeNotRequired, type TronTransferChallengeRequest, type TronTransferChallengeRequired, type TronTransferChallengeResponse, type TronTransferRequest, type TronTransferResponse, type UpdateAdminRoleRequest, type UpdateAppContentReportStatusRequest, type UpdateAppFeeConfigRequest, type UpdateAppPage, type UpdateAppPaymentAuthorization, type UpdateBipUpdateRequest, type UpdateDeveloperApp, type UpdateDeveloperProfile, type UpdateParticipantRoleBody, type UpdatePlatformFeesRequest, type UpdatePlatformFeesResponse, type UpdateThreadSettingsBody, type UpdateTronPaymentAuthorization, type UploadAttachmentResponse, type UpsertReviewReplyRequest, type UpsertReviewRequest, type UserSearchResponse, type UserSearchResult, type Username, type VerifyEmailResponse, type WalletAppLink, type WalletBalances, type WalletChainBalance, type WalletChainList, type WalletDelegationCaps, type WalletDelegationMode, type WalletDelegationStatus, type WalletItem, type WalletLabel, type WalletLabelUpdate, type WalletLabelUpdateResponse, type WalletListResponse, type WebPresenceHeartbeatAck, type WebsiteUrl, type XHandle, ZodError, z, zAcceptedCurrencies, zAcceptedNetworks, zActivityResponse, zActivityRow, zActivityRowAppeal, zActivityRowCreditTransferred, zActivityRowMaturedWithdrawal, zActivityRowMoonpayBuy, zActivityRowMoonpaySell, zActivityRowNftCharge, zActivityRowPayment, zActivityRowPaymentAutoclaim, zActivityRowPaymentWithdrawal, zActivityRowPayoutSent, zActivityRowPotLeg, zActivityRowReferralEarning, zActivityRowTronCashout, zActivityRowTronDeposit, zActivityRowTronPot, zActivityRowTronTransfer, zActivityTronInvolvedUser, zAddAdminRequest, zAdminActivePlayer, zAdminActivePlayersResponse, zAdminAppContentReportItem, zAdminAppContentReportListResponse, zAdminAppPageBipStatusResponse, zAdminAppPageDiffField, zAdminAppPageDiffResponse, zAdminAppPageItem, zAdminAppPageListResponse, zAdminAppPageStatusResponse, zAdminAuditListItem, zAdminAuditListResponse, zAdminDeveloperAppItem, zAdminDeveloperListItem, zAdminDeveloperListResponse, zAdminMutationResponse, zAdminRole, zAdminRoleChangeResponse, zAdminTronCashoutItem, zAdminTronCashoutListResponse, zAdminTronCashoutRejectRequest, zAdminUser, zAdminUserBanRequest, zAdminUserBanResponse, zAdminUserListItem, zAdminUserListResponse, zAppContentReport, zAppContentReportCategory, zAppContentReportListResponse, zAppContentReportStatus, zAppFeeConfigResponse, zAppFriendListResponse, zAppPageAgeRating, zAppPageApprovedNotificationPayload, zAppPageBipState, zAppPageBipToggle, zAppPageCategories, zAppPageChapter, zAppPageChapters, zAppPageDraft, zAppPageGallery, zAppPageGalleryItem, zAppPageGalleryUploadResponse, zAppPageGameType, zAppPageLanguages, zAppPageLink, zAppPageLinks, zAppPagePaymentsMode, zAppPagePlatforms, zAppPageRejectedNotificationPayload, zAppPageReleaseStatus, zAppPageSlug, zAppPageTagline, zAppParticipantAcceptedNotificationPayload, zAppParticipantInviteNotificationPayload, zAppPaymentAuthorizationItem, zAppPlaytime, zAppealBlacklistAddRequest, zAppealBlacklistEntry, zAppealBlacklistListResponse, zAppealBlacklistRemoveRequest, zAppealBlacklistRemoveResponse, zAppealFileRequest, zAppealFileResponse, zAppealPotLegFileRequest, zAppealResolveRequest, zAppealResolveSignedResponse, zAppealRoomDetail, zAppealRoomMessage, zAppealRoomPostRequest, zAppealRoomPostResponse, zAppealRoomSenderRole, zAppealRoomSource, zAppealRoomStatus, zAppealRoomView, zAppealStatusRow, zAuthSession, zAuthUser, zBannerVariant, zBatchThreadDmKeysBody, zBatchThreadDmKeysResponse, zBearerToken, zBio, zBipEngagementResponse, zBipInterestCountResponse, zBipInterestRequest, zBipNowPlayableNotificationPayload, zBipSubscriptionRequest, zBipUpdate, zBipUpdateAttachment, zBipUpdateAttachments, zBipUpdateBody, zBipUpdateComment, zBipUpdateCommentBody, zBipUpdateCommentListResponse, zBipUpdateListResponse, zBipUpdateMediaUploadResponse, zBipUpdatePublishedNotificationPayload, zBipUpdateReactionCounts, zBipUpdateVote, zCalldataEnvelope, zConsentListResponse, zConsentRecordRequest, zConsentRow, zCreateBipUpdateCommentRequest, zCreateBipUpdateCommentResponse, zCreateBipUpdateRequest, zCreateDeveloperApiKey, zCreateDeveloperApiKeyResponse, zCreateDeveloperApp, zCreateDeveloperAppChain, zCreateDeveloperProductionRequest, zCreateDeveloperProductionRequestResponse, zCreateDeveloperRoleRequest, zCreateDirectThreadBody, zCreateGroupThreadBody, zCreateReviewCommentRequest, zCreateReviewCommentResponse, zCreateThreadResponse, zCreateWalletDelegation, zCreateWalletDelegationResponse, zDelegationSlippageBps, zDeleteAdminAdminsByIdPath, zDeleteAdminAdminsByIdResponse, zDeleteAdminPaymentsAppealBlacklistBody, zDeleteAdminPaymentsAppealBlacklistResponse, zDeleteBipUpdateCommentResponse, zDeleteBipUpdateResponse, zDeleteMeAvatarResponse, zDeleteMeBuildInPublicBySlugCommentsByCommentIdPath, zDeleteMeBuildInPublicBySlugCommentsByCommentIdResponse, zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPath, zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse, zDeleteMeDeveloperAppsByAppIdPageBannerPath, zDeleteMeDeveloperAppsByAppIdPageBannerResponse, zDeleteMeDeveloperAppsByAppIdPageThumbnailPath, zDeleteMeDeveloperAppsByAppIdPageThumbnailResponse, zDeleteMeDeveloperAppsByAppIdPageThumbnailVideoPath, zDeleteMeDeveloperAppsByAppIdPageThumbnailVideoResponse, zDeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyPath, zDeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, zDeleteMeDeveloperAppsByIdLogoPath, zDeleteMeDeveloperAppsByIdLogoResponse, zDeleteMeDeveloperAppsByIdParticipantsByUserIdPath, zDeleteMeDeveloperAppsByIdParticipantsByUserIdResponse, zDeleteMeDeveloperAppsByIdPath, zDeleteMeDeveloperAppsByIdResponse, zDeleteMeDeveloperKeysByIdPath, zDeleteMeDeveloperKeysByIdResponse, zDeleteMeDeveloperProfileLogoResponse, zDeleteMeDeveloperRequestLogoResponse, zDeleteMeFriendRequestsByIdPath, zDeleteMeFriendRequestsByIdResponse, zDeleteMeOauthPaymentAuthorizationsByConsentIdResponse, zDeleteMeResponse, zDeleteMeReviewsBySlugCommentsByCommentIdPath, zDeleteMeReviewsBySlugCommentsByCommentIdResponse, zDeleteMeReviewsBySlugPath, zDeleteMeReviewsBySlugResponse, zDeleteMeThreadsByIdLogoPath, zDeleteMeThreadsByIdLogoResponse, zDeleteMeThreadsByIdMessagesByMsgIdPath, zDeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiPath, zDeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, zDeleteMeThreadsByIdMessagesByMsgIdResponse, zDeleteMeThreadsByIdParticipantsByUserIdPath, zDeleteMeThreadsByIdParticipantsByUserIdResponse, zDeleteMeThreadsByIdPath, zDeleteMeThreadsByIdPinPath, zDeleteMeThreadsByIdPinResponse, zDeleteMeThreadsByIdResponse, zDeleteMeWalletsByAddressDelegatePath, zDeleteMeWalletsByAddressDelegateResponse, zDeleteReviewCommentResponse, zDeleteUsersByIdFollowPath, zDeleteUsersByIdFollowResponse, zDeleteUsersByIdFriendPath, zDeleteUsersByIdFriendResponse, zDeleteWalletDelegationResponse, zDevAppealRow, zDevAppealsResponse, zDevPendingDepositRow, zDevPendingDepositsResponse, zDeveloperApiKeyItem, zDeveloperApiKeysResponse, zDeveloperAppAutoSweepRequest, zDeveloperAppAutoSweepResponse, zDeveloperAppBalanceItem, zDeveloperAppBalancesResponse, zDeveloperAppConsolidateResponse, zDeveloperAppEarningsBucket, zDeveloperAppEarningsResponse, zDeveloperAppIdResponse, zDeveloperAppItem, zDeveloperAppKeyItem, zDeveloperAppName, zDeveloperAppOverviewResponse, zDeveloperAppParticipant, zDeveloperAppParticipantsResponse, zDeveloperAppPayoutAddressItem, zDeveloperAppPlaytimeBucket, zDeveloperAppPlaytimeResponse, zDeveloperAppProvisionWalletResponse, zDeveloperAppTronBalanceResponse, zDeveloperAppWalletItem, zDeveloperAppWalletsResponse, zDeveloperAppWithdrawResponse, zDeveloperInvite, zDeveloperInvitesResponse, zDeveloperLogoUploadResponse, zDeveloperMeStatus, zDeveloperOkResponse, zDeveloperProductionRequestPayload, zDeveloperProfile, zDeveloperRequestItem, zDeveloperRequestSubject, zDeveloperRoleRequestPayload, zDeveloperTronBalanceSummaryResponse, zDirectThreadSummary, zDisplayName, zDmKeyAlgorithm, zDmKeyBackupOkResponse, zDmKeyBackupSetupBody, zDmKeyBackupStatusResponse, zDmKeyBackupUnlockBody, zDmKeyBackupUnlockResponse, zDmKeyResponse, zDmPublicKeyEntry, zDsarAccount, zDsarAuditEvent, zDsarConsent, zDsarExportResponse, zDsarMessage, zDsarRectifyRequest, zEarningsTimeseries, zEarningsTimeseriesBucket, zEditMessageBody, zEmbedOrigin, zErrorResponse, zFriendAcceptedNotificationPayload, zFriendListItem, zFriendListResponse, zFriendRequestAck, zFriendRequestDecision, zFriendRequestNotificationPayload, zGetAdminActivePlayersResponse, zGetAdminAdminsResponse, zGetAdminAppPagesByAppIdChangesPath, zGetAdminAppPagesByAppIdChangesResponse, zGetAdminAppPagesQuery, zGetAdminAppPagesResponse, zGetAdminAppsByAppIdFeeConfigPath, zGetAdminAppsByAppIdFeeConfigResponse, zGetAdminAuditQuery, zGetAdminAuditResponse, zGetAdminContentReportsQuery, zGetAdminContentReportsResponse, zGetAdminDeveloperRequestsQuery, zGetAdminDeveloperRequestsResponse, zGetAdminDevelopersResponse, zGetAdminPaymentsAppealBlacklistQuery, zGetAdminPaymentsAppealBlacklistResponse, zGetAdminPaymentsAppealsByAppealIdRoomPath, zGetAdminPaymentsAppealsByAppealIdRoomResponse, zGetAdminPaymentsAppealsQuery, zGetAdminPaymentsAppealsResponse, zGetAdminPlatformFeesResponse, zGetAdminTronCashoutsResponse, zGetAdminUsersQuery, zGetAdminUsersResponse, zGetAuthGetSessionResponse, zGetAuthVerifyEmailQuery, zGetAuthVerifyEmailResponse, zGetHealthResponse, zGetInventoryMetadataErc1155ByTokenIdMetadataJsonPath, zGetInventoryMetadataErc1155ByTokenIdMetadataJsonResponse, zGetInventoryMetadataErc1155ContractJsonResponse, zGetInventoryMetadataErc721ByFilePath, zGetInventoryMetadataErc721ByFileResponse, zGetInventoryMetadataErc721ContractJsonResponse, zGetMeAppsByAppIdPlaytimePath, zGetMeAppsByAppIdPlaytimeResponse, zGetMeBuildInPublicBySlugEngagementPath, zGetMeBuildInPublicBySlugEngagementResponse, zGetMeBuildInPublicBySlugReactionsPath, zGetMeBuildInPublicBySlugReactionsResponse, zGetMeConsentResponse, zGetMeDataResponse, zGetMeDeveloperAppsByAppIdBipUpdatesPath, zGetMeDeveloperAppsByAppIdBipUpdatesQuery, zGetMeDeveloperAppsByAppIdBipUpdatesResponse, zGetMeDeveloperAppsByAppIdInventoryCollectionsPath, zGetMeDeveloperAppsByAppIdInventoryCollectionsResponse, zGetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersPath, zGetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersResponse, zGetMeDeveloperAppsByAppIdInventoryItemsPath, zGetMeDeveloperAppsByAppIdInventoryItemsResponse, zGetMeDeveloperAppsByAppIdPagePath, zGetMeDeveloperAppsByAppIdPageResponse, zGetMeDeveloperAppsByAppIdReviewsPath, zGetMeDeveloperAppsByAppIdReviewsQuery, zGetMeDeveloperAppsByAppIdReviewsResponse, zGetMeDeveloperAppsByIdActivityPath, zGetMeDeveloperAppsByIdActivityQuery, zGetMeDeveloperAppsByIdActivityResponse, zGetMeDeveloperAppsByIdBalancesPath, zGetMeDeveloperAppsByIdBalancesResponse, zGetMeDeveloperAppsByIdEarningsPath, zGetMeDeveloperAppsByIdEarningsQuery, zGetMeDeveloperAppsByIdEarningsResponse, zGetMeDeveloperAppsByIdOverviewPath, zGetMeDeveloperAppsByIdOverviewResponse, zGetMeDeveloperAppsByIdParticipantsPath, zGetMeDeveloperAppsByIdParticipantsResponse, zGetMeDeveloperAppsByIdPlaytimePath, zGetMeDeveloperAppsByIdPlaytimeQuery, zGetMeDeveloperAppsByIdPlaytimeResponse, zGetMeDeveloperAppsByIdReportsPath, zGetMeDeveloperAppsByIdReportsQuery, zGetMeDeveloperAppsByIdReportsResponse, zGetMeDeveloperAppsByIdTronBalancePath, zGetMeDeveloperAppsByIdTronBalanceResponse, zGetMeDeveloperAppsByIdWalletsPath, zGetMeDeveloperAppsByIdWalletsResponse, zGetMeDeveloperInvitesResponse, zGetMeDeveloperKeysResponse, zGetMeDeveloperPaymentsAppealsQuery, zGetMeDeveloperPaymentsAppealsResponse, zGetMeDeveloperPaymentsPendingDepositsQuery, zGetMeDeveloperPaymentsPendingDepositsResponse, zGetMeDeveloperPaymentsTronBalanceResponse, zGetMeDeveloperResponse, zGetMeDmKeyBackupResponse, zGetMeDmKeyResponse, zGetMeEarningsTimeseriesQuery, zGetMeEarningsTimeseriesResponse, zGetMeFriendsResponse, zGetMeGiphySearchQuery, zGetMeGiphySearchResponse, zGetMeInventoryPermitsResponse, zGetMeInventoryResponse, zGetMeInventoryVaultPermitsResponse, zGetMeInventoryVaultedResponse, zGetMeNotificationsResponse, zGetMeOauthConnectionsResponse, zGetMeOauthPaymentAuthorizationsResponse, zGetMeOauthTronAuthorizationsResponse, zGetMePlaytimeResponse, zGetMePlaytimeTimeseriesQuery, zGetMePlaytimeTimeseriesResponse, zGetMeReferralPreviewQuery, zGetMeReferralPreviewResponse, zGetMeReferralResponse, zGetMeReviewsBySlugPath, zGetMeReviewsBySlugReactionsPath, zGetMeReviewsBySlugReactionsResponse, zGetMeReviewsBySlugResponse, zGetMeSocialsResponse, zGetMeStatsResponse, zGetMeThreadsByIdDmKeyPath, zGetMeThreadsByIdDmKeyResponse, zGetMeThreadsByIdMessagesPath, zGetMeThreadsByIdMessagesQuery, zGetMeThreadsByIdMessagesResponse, zGetMeThreadsResponse, zGetMeWalletsByAddressDelegatePath, zGetMeWalletsByAddressDelegateResponse, zGetMeWalletsResponse, zGetOauthAuthorizeQuery, zGetOauthConsentByRequestPath, zGetOauthConsentByRequestResponse, zGetOauthFriendsResponse, zGetOauthInventoryResponse, zGetOauthInventoryVaultedResponse, zGetOauthPaymentsIntentByIdResponse, zGetOauthPaymentsLimitsResponse, zGetOauthPaymentsNotInvitedByClientIdPath, zGetOauthPaymentsNotInvitedByClientIdResponse, zGetOauthPaymentsPriceQuery, zGetOauthPaymentsPriceResponse, zGetOauthPaymentsStatusByIdResponse, zGetOauthPaymentsTronBalanceResponse, zGetOauthPaymentsTronIntentByIdResponse, zGetOauthRaiseLimitContextQuery, zGetOauthRaiseLimitContextResponse, zGetPaymentsAppealsByAppealIdRoomPath, zGetPaymentsAppealsByAppealIdRoomResponse, zGetPaymentsChainsResponse, zGetPaymentsMeActivityGroupByGroupIdPath, zGetPaymentsMeActivityGroupByGroupIdResponse, zGetPaymentsMeActivityQuery, zGetPaymentsMeActivityResponse, zGetPaymentsMeMoonpayAvailabilityResponse, zGetPaymentsMeOutstandingQuery, zGetPaymentsMeOutstandingResponse, zGetPaymentsMeQuery, zGetPaymentsMeResponse, zGetPaymentsMeTronCashoutsResponse, zGetPaymentsMeTronLedgerQuery, zGetPaymentsMeTronLedgerResponse, zGetPaymentsMeTronResponse, zGetPaymentsMeTronSecurityResponse, zGetPublicAppsBySlugPath, zGetPublicAppsBySlugResponse, zGetPublicAppsBySlugReviewsByReviewIdCommentsPath, zGetPublicAppsBySlugReviewsByReviewIdCommentsQuery, zGetPublicAppsBySlugReviewsByReviewIdCommentsResponse, zGetPublicAppsBySlugReviewsPath, zGetPublicAppsBySlugReviewsQuery, zGetPublicAppsBySlugReviewsResponse, zGetPublicBuildInPublicBySlugInterestPath, zGetPublicBuildInPublicBySlugInterestResponse, zGetPublicBuildInPublicBySlugPath, zGetPublicBuildInPublicBySlugResponse, zGetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsPath, zGetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsQuery, zGetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponse, zGetPublicBuildInPublicBySlugUpdatesPath, zGetPublicBuildInPublicBySlugUpdatesQuery, zGetPublicBuildInPublicBySlugUpdatesResponse, zGetPublicBuildInPublicQuery, zGetPublicBuildInPublicResponse, zGetPublicLibraryQuery, zGetPublicLibraryResponse, zGetSessionResponse, zGetUserinfoResponse, zGetUsersByHandlePath, zGetUsersByHandleResponse, zGetUsersSearchQuery, zGetUsersSearchResponse, zGetWellKnownOauthAuthorizationServerResponse, zGiphySearchResponse, zGiphySearchResult, zGitHubUrl, zGroupParticipant, zGroupThreadMutationResponse, zGroupThreadSummary, zHealthResponse, zHideAppPage, zInventoryCollectionListResponse, zInventoryCollectionSummary, zInventoryContractMetadata, zInventoryHolding, zInventoryItemHolder, zInventoryItemHoldersResponse, zInventoryItemListResponse, zInventoryItemRecord, zInventoryItemRegistrationInput, zInventoryItemRegistrationResult, zInventoryItemRegistrationSpec, zInventoryItemStats, zInventoryListResponse, zInventoryMetadataAttribute, zInventoryMintPermitCreateInput, zInventoryMintPermitRecord, zInventoryNftTransferQuoteRequest, zInventoryNftTransferQuoteResponse, zInventoryNftTransferRequest, zInventoryNftTransferResponse, zInventoryPendingPermit, zInventoryPendingPermitListResponse, zInventoryPendingVaultPermit, zInventoryPendingVaultPermitListResponse, zInventoryPermitRedeemResult, zInventoryRegistrationQuote, zInventoryRelayedVaultQuoteResponse, zInventoryRelayedVaultSubmitRequest, zInventoryRelayedVaultSubmitResponse, zInventorySignedVaultPermit, zInventorySupplyType, zInventoryTokenMetadata, zInventoryVaultCustody, zInventoryVaultCustodyListResponse, zInventoryVaultForceWithdrawResponse, zInventoryVaultPermitCreateInput, zInventoryVaultPermitRecord, zInventoryWithdrawPermitCreateInput, zInviteDeveloperAppParticipant, zInviteParticipantsBody, zLibraryItem, zLibraryListResponse, zListAdminsResponse, zListAppPaymentAuthorizationsResponse, zListAppealsResponse, zListDeveloperRequestsResponse, zListOauthConnectionsResponse, zListTronPaymentAuthorizationsResponse, zMeStats, zMessageAttachment, zMessageAttachmentKind, zMessageBody, zMessageEnvelope, zMessageItem, zMessageLinkPreview, zMessageReplyPreview, zMessageTransactionNftTransfer, zMessageTransactionTronTransfer, zMessagesPageResponse, zMessagingOkResponse, zMintRequestInput, zMintRequestResult, zMoonpayAvailabilityResponse, zMoonpayBuyUrlRequest, zMoonpayBuyUrlResponse, zMoonpaySellUrlRequest, zMoonpaySellUrlResponse, zMyBipUpdateReaction, zMyBipUpdateReactionsResponse, zMyReviewReaction, zMyReviewReactionsResponse, zMyReviewResponse, zNotificationItem, zNotificationListResponse, zNotificationUpdate, zOauthAuthorizationServerMetadata, zOauthAuthorizeConfirm, zOauthAuthorizeConfirmResponse, zOauthClientId, zOauthClientRegistrationError, zOauthClientRegistrationRequest, zOauthClientRegistrationResponse, zOauthClientSecret, zOauthConnectionItem, zOauthConsentContext, zOauthErrorResponse, zOauthNotInvitedContext, zOauthPaymentCancelPotRequest, zOauthPaymentCancelPotResponse, zOauthPaymentChargeCompleted, zOauthPaymentChargeIdempotencyMismatch, zOauthPaymentChargeLimitExceeded, zOauthPaymentChargeRedirect, zOauthPaymentChargeRequest, zOauthPaymentChargeResponse, zOauthPaymentDistributeRequest, zOauthPaymentDistributeResponse, zOauthPaymentIntentComplete, zOauthPaymentIntentCompleteOffline, zOauthPaymentIntentCompleteSigned, zOauthPaymentIntentContext, zOauthPaymentIntentResolveResponse, zOauthPaymentIntentSignResponse, zOauthPaymentIntentStatus, zOauthPaymentLimitsResponse, zOauthPaymentMonthlyLimitCents, zOauthPaymentPayoutDirect, zOauthPaymentPayoutPull, zOauthPaymentPayoutRequest, zOauthPaymentPayoutResponse, zOauthPaymentPerTxLimitCents, zOauthPaymentPriceResponse, zOauthRedirectUri, zOauthRequestHandle, zOauthRevokeRequest, zOauthScopeString, zOauthState, zOauthTokenAuthorizationCodeRequest, zOauthTokenClientCredentialsRequest, zOauthTokenRefreshTokenRequest, zOauthTokenRequest, zOauthTokenResponse, zOauthUserInfoResponse, zOnlineStatus, zOutstandingByToken, zOutstandingResponse, zOwnReview, zParticipantRole, zPatchAdminAdminsByIdBody, zPatchAdminAdminsByIdPath, zPatchAdminAdminsByIdResponse, zPatchAdminAppsByAppIdFeeConfigBody, zPatchAdminAppsByAppIdFeeConfigPath, zPatchAdminAppsByAppIdFeeConfigResponse, zPatchAdminContentReportsByReportIdBody, zPatchAdminContentReportsByReportIdPath, zPatchAdminContentReportsByReportIdResponse, zPatchAdminDeveloperRequestsByIdBody, zPatchAdminDeveloperRequestsByIdPath, zPatchAdminDeveloperRequestsByIdResponse, zPatchAdminPlatformFeesBody, zPatchAdminPlatformFeesResponse, zPatchAdminUsersByIdBody, zPatchAdminUsersByIdPath, zPatchAdminUsersByIdResponse, zPatchMeBody, zPatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdBody, zPatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPath, zPatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse, zPatchMeDeveloperAppsByAppIdPageBipBody, zPatchMeDeveloperAppsByAppIdPageBipPath, zPatchMeDeveloperAppsByAppIdPageBipResponse, zPatchMeDeveloperAppsByAppIdPageBody, zPatchMeDeveloperAppsByAppIdPagePath, zPatchMeDeveloperAppsByAppIdPageResponse, zPatchMeDeveloperAppsByIdBody, zPatchMeDeveloperAppsByIdPath, zPatchMeDeveloperAppsByIdReportsByReportIdBody, zPatchMeDeveloperAppsByIdReportsByReportIdPath, zPatchMeDeveloperAppsByIdReportsByReportIdResponse, zPatchMeDeveloperAppsByIdResponse, zPatchMeDeveloperAppsByIdWalletsByChainAutoSweepBody, zPatchMeDeveloperAppsByIdWalletsByChainAutoSweepPath, zPatchMeDeveloperAppsByIdWalletsByChainAutoSweepResponse, zPatchMeDeveloperProfileBody, zPatchMeDeveloperProfileResponse, zPatchMeFriendRequestsByIdBody, zPatchMeFriendRequestsByIdPath, zPatchMeFriendRequestsByIdResponse, zPatchMeNotificationsByIdBody, zPatchMeNotificationsByIdPath, zPatchMeNotificationsByIdResponse, zPatchMeOauthPaymentAuthorizationsByConsentIdBody, zPatchMeOauthPaymentAuthorizationsByConsentIdResponse, zPatchMeOauthTronAuthorizationsByConsentIdBody, zPatchMeOauthTronAuthorizationsByConsentIdResponse, zPatchMeProfileBody, zPatchMeProfileResponse, zPatchMeResponse, zPatchMeThreadsByIdBody, zPatchMeThreadsByIdMessagesByMsgIdBody, zPatchMeThreadsByIdMessagesByMsgIdPath, zPatchMeThreadsByIdMessagesByMsgIdResponse, zPatchMeThreadsByIdParticipantsByUserIdRoleBody, zPatchMeThreadsByIdParticipantsByUserIdRolePath, zPatchMeThreadsByIdParticipantsByUserIdRoleResponse, zPatchMeThreadsByIdPath, zPatchMeThreadsByIdResponse, zPatchMeWalletsByAddressBody, zPatchMeWalletsByAddressPath, zPatchMeWalletsByAddressResponse, zPauseRequest, zPaymentChain, zPaymentChainsResponse, zPaymentHistoryResponse, zPaymentHistoryRow, zPaymentMetadata, zPaymentNetwork, zPinThreadResponse, zPkceCodeChallenge, zPkceCodeVerifier, zPlatformCurrency, zPlatformEnvironment, zPlatformFeeEnvelope, zPlatformFeesResponse, zPlaySessionAppId, zPlaySessionConfirmRequest, zPlaySessionConfirmResponse, zPlaySessionEndRequest, zPlaySessionEndResponse, zPlaySessionHeartbeatRequest, zPlaySessionHeartbeatResponse, zPlaySessionId, zPlaySessionOpenRequest, zPlaySessionOpenResponse, zPlaySessionUserId, zPlaytimeAppEntry, zPlaytimeOverview, zPlaytimeTimeseries, zPlaytimeTimeseriesBucket, zPostAdminAdminsBody, zPostAdminAdminsResponse, zPostAdminAppPagesByAppIdHideBipBody, zPostAdminAppPagesByAppIdHideBipPath, zPostAdminAppPagesByAppIdHideBipResponse, zPostAdminAppPagesByAppIdHideBody, zPostAdminAppPagesByAppIdHidePath, zPostAdminAppPagesByAppIdHideResponse, zPostAdminAppPagesByAppIdReviewBipBody, zPostAdminAppPagesByAppIdReviewBipPath, zPostAdminAppPagesByAppIdReviewBipResponse, zPostAdminAppPagesByAppIdReviewBody, zPostAdminAppPagesByAppIdReviewChangesBody, zPostAdminAppPagesByAppIdReviewChangesPath, zPostAdminAppPagesByAppIdReviewChangesResponse, zPostAdminAppPagesByAppIdReviewPath, zPostAdminAppPagesByAppIdReviewResponse, zPostAdminAppPagesByAppIdUnhideBipPath, zPostAdminAppPagesByAppIdUnhideBipResponse, zPostAdminAppPagesByAppIdUnhidePath, zPostAdminAppPagesByAppIdUnhideResponse, zPostAdminInventoryVaultCustodyByCustodyIdForceWithdrawPath, zPostAdminInventoryVaultCustodyByCustodyIdForceWithdrawResponse, zPostAdminPaymentsAppealBlacklistBody, zPostAdminPaymentsAppealBlacklistResponse, zPostAdminPaymentsAppealsByAppealIdResolveBody, zPostAdminPaymentsAppealsByAppealIdResolvePath, zPostAdminPaymentsAppealsByAppealIdResolveResponse, zPostAdminPaymentsAppealsByAppealIdRoomAttachmentsBody, zPostAdminPaymentsAppealsByAppealIdRoomAttachmentsPath, zPostAdminPaymentsAppealsByAppealIdRoomAttachmentsResponse, zPostAdminPaymentsAppealsByAppealIdRoomMessagesBody, zPostAdminPaymentsAppealsByAppealIdRoomMessagesPath, zPostAdminPaymentsAppealsByAppealIdRoomMessagesResponse, zPostAdminPaymentsProcessorsByProcessorIdTreasuryBody, zPostAdminPaymentsProcessorsByProcessorIdTreasuryPath, zPostAdminPaymentsProcessorsByProcessorIdTreasuryResponse, zPostAdminPaymentsProcessorsWhitelistBody, zPostAdminPaymentsProcessorsWhitelistResponse, zPostAdminPaymentsVaultsByVaultAddressOperatorBody, zPostAdminPaymentsVaultsByVaultAddressOperatorPath, zPostAdminPaymentsVaultsByVaultAddressOperatorResponse, zPostAdminPaymentsVaultsByVaultAddressPauseBody, zPostAdminPaymentsVaultsByVaultAddressPausePath, zPostAdminPaymentsVaultsByVaultAddressPauseResponse, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultBody, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultPath, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultResponse, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideBody, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockOverridePath, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideResponse, zPostAdminTronCashoutsByIdApproveResponse, zPostAdminTronCashoutsByIdRejectBody, zPostAdminTronCashoutsByIdRejectResponse, zPostAuthRequestPasswordResetBody, zPostAuthRequestPasswordResetResponse, zPostAuthResetPasswordBody, zPostAuthResetPasswordResponse, zPostAuthSendVerificationEmailBody, zPostAuthSendVerificationEmailResponse, zPostAuthSignInEmailBody, zPostAuthSignInEmailResponse, zPostAuthSignOutResponse, zPostAuthSignUpEmailBody, zPostAuthSignUpEmailResponse, zPostMeAppsByAppIdReportBody, zPostMeAppsByAppIdReportPath, zPostMeAppsByAppIdReportResponse, zPostMeAvatarBody, zPostMeAvatarResponse, zPostMeBuildInPublicBySlugCommentsByUpdateIdBody, zPostMeBuildInPublicBySlugCommentsByUpdateIdPath, zPostMeBuildInPublicBySlugCommentsByUpdateIdResponse, zPostMeBuildInPublicBySlugInterestBody, zPostMeBuildInPublicBySlugInterestPath, zPostMeBuildInPublicBySlugInterestResponse, zPostMeBuildInPublicBySlugReactionsByUpdateIdBody, zPostMeBuildInPublicBySlugReactionsByUpdateIdPath, zPostMeBuildInPublicBySlugReactionsByUpdateIdResponse, zPostMeBuildInPublicBySlugSubscriptionBody, zPostMeBuildInPublicBySlugSubscriptionPath, zPostMeBuildInPublicBySlugSubscriptionResponse, zPostMeConsentBody, zPostMeConsentResponse, zPostMeDeveloperAppsBody, zPostMeDeveloperAppsByAppIdBipUpdatesBody, zPostMeDeveloperAppsByAppIdBipUpdatesMediaBody, zPostMeDeveloperAppsByAppIdBipUpdatesMediaPath, zPostMeDeveloperAppsByAppIdBipUpdatesMediaResponse, zPostMeDeveloperAppsByAppIdBipUpdatesPath, zPostMeDeveloperAppsByAppIdBipUpdatesResponse, zPostMeDeveloperAppsByAppIdInventoryItemsBody, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerBody, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerPath, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerResponse, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageBody, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdImagePath, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageResponse, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsBody, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsPath, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsResponse, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsBody, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsPath, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsResponse, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsBody, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsPath, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsResponse, zPostMeDeveloperAppsByAppIdInventoryItemsPath, zPostMeDeveloperAppsByAppIdInventoryItemsQuoteBody, zPostMeDeveloperAppsByAppIdInventoryItemsQuotePath, zPostMeDeveloperAppsByAppIdInventoryItemsQuoteResponse, zPostMeDeveloperAppsByAppIdInventoryItemsResponse, zPostMeDeveloperAppsByAppIdPageBannerBody, zPostMeDeveloperAppsByAppIdPageBannerPath, zPostMeDeveloperAppsByAppIdPageBannerResponse, zPostMeDeveloperAppsByAppIdPageBipSubmitForReviewPath, zPostMeDeveloperAppsByAppIdPageBipSubmitForReviewResponse, zPostMeDeveloperAppsByAppIdPageBipUnpublishPath, zPostMeDeveloperAppsByAppIdPageBipUnpublishResponse, zPostMeDeveloperAppsByAppIdPageGalleryBody, zPostMeDeveloperAppsByAppIdPageGalleryPath, zPostMeDeveloperAppsByAppIdPageGalleryResponse, zPostMeDeveloperAppsByAppIdPageSubmitForReviewPath, zPostMeDeveloperAppsByAppIdPageSubmitForReviewResponse, zPostMeDeveloperAppsByAppIdPageThumbnailBody, zPostMeDeveloperAppsByAppIdPageThumbnailPath, zPostMeDeveloperAppsByAppIdPageThumbnailResponse, zPostMeDeveloperAppsByAppIdPageThumbnailVideoBody, zPostMeDeveloperAppsByAppIdPageThumbnailVideoPath, zPostMeDeveloperAppsByAppIdPageThumbnailVideoResponse, zPostMeDeveloperAppsByAppIdPageUnpublishPath, zPostMeDeveloperAppsByAppIdPageUnpublishResponse, zPostMeDeveloperAppsByIdLogoBody, zPostMeDeveloperAppsByIdLogoPath, zPostMeDeveloperAppsByIdLogoResponse, zPostMeDeveloperAppsByIdParticipantsBody, zPostMeDeveloperAppsByIdParticipantsPath, zPostMeDeveloperAppsByIdParticipantsResponse, zPostMeDeveloperAppsByIdPaymentStatusWebhookSecretPath, zPostMeDeveloperAppsByIdPaymentStatusWebhookSecretResponse, zPostMeDeveloperAppsByIdProductionRequestBody, zPostMeDeveloperAppsByIdProductionRequestPath, zPostMeDeveloperAppsByIdProductionRequestResponse, zPostMeDeveloperAppsByIdWalletsByChainConsolidatePath, zPostMeDeveloperAppsByIdWalletsByChainConsolidateResponse, zPostMeDeveloperAppsByIdWalletsByChainProvisionPath, zPostMeDeveloperAppsByIdWalletsByChainProvisionResponse, zPostMeDeveloperAppsByIdWalletsByChainWithdrawPath, zPostMeDeveloperAppsByIdWalletsByChainWithdrawQuery, zPostMeDeveloperAppsByIdWalletsByChainWithdrawResponse, zPostMeDeveloperAppsResponse, zPostMeDeveloperInvitesByAppIdAcceptPath, zPostMeDeveloperInvitesByAppIdAcceptResponse, zPostMeDeveloperInvitesByAppIdDeclinePath, zPostMeDeveloperInvitesByAppIdDeclineResponse, zPostMeDeveloperKeysBody, zPostMeDeveloperKeysResponse, zPostMeDeveloperProfileLogoBody, zPostMeDeveloperProfileLogoResponse, zPostMeDeveloperRequestBody, zPostMeDeveloperRequestLogoBody, zPostMeDeveloperRequestLogoResponse, zPostMeDeveloperRequestResponse, zPostMeDmKeyBackupBody, zPostMeDmKeyBackupResponse, zPostMeDmKeyBackupUnlockBody, zPostMeDmKeyBackupUnlockResponse, zPostMeInventoryNftTransfersBody, zPostMeInventoryNftTransfersQuoteBody, zPostMeInventoryNftTransfersQuoteResponse, zPostMeInventoryNftTransfersResponse, zPostMeInventoryPermitsByPermitIdRedeemPath, zPostMeInventoryPermitsByPermitIdRedeemResponse, zPostMeInventoryVaultPermitsByPermitIdRelayedQuotePath, zPostMeInventoryVaultPermitsByPermitIdRelayedQuoteResponse, zPostMeInventoryVaultPermitsByPermitIdRelayedSubmitBody, zPostMeInventoryVaultPermitsByPermitIdRelayedSubmitPath, zPostMeInventoryVaultPermitsByPermitIdRelayedSubmitResponse, zPostMeInventoryVaultPermitsByPermitIdSignPath, zPostMeInventoryVaultPermitsByPermitIdSignResponse, zPostMeNotificationsMarkAllReadResponse, zPostMePlaySessionsOpenBody, zPostMePlaySessionsOpenResponse, zPostMePresenceHeartbeatResponse, zPostMeReferralBindBody, zPostMeReferralBindResponse, zPostMeReferralCodeBody, zPostMeReferralCodeResponse, zPostMeReviewsBySlugCommentsByReviewIdBody, zPostMeReviewsBySlugCommentsByReviewIdPath, zPostMeReviewsBySlugCommentsByReviewIdResponse, zPostMeReviewsBySlugReactionsByReviewIdBody, zPostMeReviewsBySlugReactionsByReviewIdPath, zPostMeReviewsBySlugReactionsByReviewIdResponse, zPostMeReviewsBySlugTipsByReviewIdBody, zPostMeReviewsBySlugTipsByReviewIdPath, zPostMeReviewsBySlugTipsByReviewIdResponse, zPostMeThreadsBody, zPostMeThreadsByIdAttachmentsBody, zPostMeThreadsByIdAttachmentsPath, zPostMeThreadsByIdAttachmentsResponse, zPostMeThreadsByIdHidePath, zPostMeThreadsByIdHideResponse, zPostMeThreadsByIdInviteBody, zPostMeThreadsByIdInvitePath, zPostMeThreadsByIdInviteResponse, zPostMeThreadsByIdLeavePath, zPostMeThreadsByIdLeaveResponse, zPostMeThreadsByIdLogoBody, zPostMeThreadsByIdLogoPath, zPostMeThreadsByIdLogoResponse, zPostMeThreadsByIdMessagesBody, zPostMeThreadsByIdMessagesPath, zPostMeThreadsByIdMessagesResponse, zPostMeThreadsByIdPinPath, zPostMeThreadsByIdPinResponse, zPostMeThreadsByIdReadPath, zPostMeThreadsByIdReadResponse, zPostMeThreadsDmKeysBody, zPostMeThreadsDmKeysResponse, zPostMeThreadsResponse, zPostMeWalletsByAddressDelegateBody, zPostMeWalletsByAddressDelegatePath, zPostMeWalletsByAddressDelegateResponse, zPostOauthAuthorizeConfirmBody, zPostOauthAuthorizeConfirmResponse, zPostOauthInventoryMintBody, zPostOauthInventoryMintResponse, zPostOauthPaymentsCancelPotBody, zPostOauthPaymentsCancelPotResponse, zPostOauthPaymentsChargeBody, zPostOauthPaymentsChargeResponse, zPostOauthPaymentsDistributeBody, zPostOauthPaymentsDistributeResponse, zPostOauthPaymentsIntentByIdCompleteBody, zPostOauthPaymentsIntentByIdCompleteResponse, zPostOauthPaymentsIntentByIdDenyResponse, zPostOauthPaymentsIntentByIdSignResponse, zPostOauthPaymentsPayoutBody, zPostOauthPaymentsPayoutResponse, zPostOauthPaymentsTronChargeBody, zPostOauthPaymentsTronChargeDirectBody, zPostOauthPaymentsTronChargeDirectResponse, zPostOauthPaymentsTronChargeResponse, zPostOauthPaymentsTronDistributeBody, zPostOauthPaymentsTronDistributeResponse, zPostOauthPaymentsTronIntentByIdCompleteResponse, zPostOauthPaymentsTronIntentByIdDenyResponse, zPostOauthPlaySessionsConfirmBody, zPostOauthPlaySessionsConfirmResponse, zPostOauthPlaySessionsEndBody, zPostOauthPlaySessionsEndResponse, zPostOauthPlaySessionsHeartbeatBody, zPostOauthPlaySessionsHeartbeatResponse, zPostOauthRegisterBody, zPostOauthRegisterResponse, zPostOauthRevokeBody, zPostOauthTokenBody, zPostOauthTokenResponse, zPostPaymentsAppealsBody, zPostPaymentsAppealsByAppealIdRoomAttachmentsBody, zPostPaymentsAppealsByAppealIdRoomAttachmentsPath, zPostPaymentsAppealsByAppealIdRoomAttachmentsResponse, zPostPaymentsAppealsByAppealIdRoomMessagesBody, zPostPaymentsAppealsByAppealIdRoomMessagesPath, zPostPaymentsAppealsByAppealIdRoomMessagesResponse, zPostPaymentsAppealsPotLegBody, zPostPaymentsAppealsPotLegResponse, zPostPaymentsAppealsResponse, zPostPaymentsMeMoonpayBuyUrlBody, zPostPaymentsMeMoonpayBuyUrlResponse, zPostPaymentsMeMoonpaySellUrlBody, zPostPaymentsMeMoonpaySellUrlResponse, zPostPaymentsMeTronCashoutsBody, zPostPaymentsMeTronCashoutsResponse, zPostPaymentsMeTronConnectResponse, zPostPaymentsMeTronDepositBody, zPostPaymentsMeTronDepositResponse, zPostPaymentsMeTronTransferBody, zPostPaymentsMeTronTransferChallengeBody, zPostPaymentsMeTronTransferChallengeResponse, zPostPaymentsMeTronTransferResponse, zPostUsersByIdFollowPath, zPostUsersByIdFollowResponse, zPostUsersByIdFriendPath, zPostUsersByIdFriendResponse, zPresenceStatusMode, zProfileCounts, zProfileRecentReview, zProfileStats, zProfileTopGame, zProfileUpdate, zProjectDescription, zPublicAppPage, zPublicAppPageStudio, zPublicBipPage, zPublicDeveloperApp, zPublicProfile, zPublicProfileDeveloper, zPublishDmKeyBody, zPurposeHeader, zPutMeDeveloperAppsByAppIdReviewsByReviewIdReplyBody, zPutMeDeveloperAppsByAppIdReviewsByReviewIdReplyPath, zPutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, zPutMeDeveloperAppsByIdKeysByEnvPath, zPutMeDeveloperAppsByIdKeysByEnvResponse, zPutMeDmKeyBody, zPutMeDmKeyResponse, zPutMeReviewsBySlugBody, zPutMeReviewsBySlugPath, zPutMeReviewsBySlugResponse, zPutMeThreadsByIdMessagesByMsgIdReactionsByEmojiPath, zPutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, zPutPaymentsMeTronSecurityBody, zPutPaymentsMeTronSecurityResponse, zRaiseLimitContextResponse, zReactionAggregate, zReactionEmoji, zReactionMutationResponse, zReferralBindRequest, zReferralBindResponse, zReferralCodeResponse, zReferralEarningTotal, zReferralOverview, zReferralPreviewResponse, zReferralReferrer, zRegenerateDeveloperAppKeyResponse, zRegenerateDeveloperAppWebhookSecretResponse, zRelationship, zRequestPasswordResetRequest, zRequestPasswordResetResponse, zResetPasswordRequest, zResetPasswordResponse, zReview, zReviewAggregate, zReviewAppPage, zReviewAuthor, zReviewBody, zReviewComment, zReviewCommentBody, zReviewCommentListResponse, zReviewDeveloperRequest, zReviewDeveloperRequestResponse, zReviewEligibilityReason, zReviewListResponse, zReviewReactionCounts, zReviewRecommended, zReviewReply, zReviewReplyBody, zReviewReplyResponse, zReviewSort, zReviewSummaryLabel, zReviewVote, zReviewerStats, zRotateProcessorTreasuryRequest, zSendMessageBody, zSendMessageText, zSendVerificationEmailRequest, zSendVerificationEmailResponse, zSetBipUpdateReactionRequest, zSetBipUpdateReactionResponse, zSetDefaultWithdrawLockRequest, zSetOperatorRequest, zSetProcessorWhitelistRequest, zSetReviewReactionRequest, zSetReviewReactionResponse, zSetWithdrawLockOverrideRequest, zSignInEmailRequest, zSignInEmailResponse, zSignOutResponse, zSignUpEmailRequest, zSignUpEmailResponse, zSocialAccount, zSocialActionAck, zSocialListResponse, zSubmitAppContentReportRequest, zSubmitAppContentReportResponse, zTeamName, zThreadDescription, zThreadDmKeyEntry, zThreadLastMessagePreview, zThreadListResponse, zThreadLogoUrl, zThreadParticipant, zThreadSummary, zThreadTitle, zTipReviewRequest, zTipReviewResponse, zTronBalanceResponse, zTronCapCents, zTronCashoutCreateRequest, zTronCashoutItem, zTronCashoutListResponse, zTronChargeCompleted, zTronChargeInsufficient, zTronChargeRedirect, zTronChargeRequest, zTronChargeResponse, zTronConnectOnboardingResponse, zTronDepositRequest, zTronDepositResponse, zTronDirectChargeCompleted, zTronDirectChargeInsufficient, zTronDirectChargeRedirect, zTronDirectChargeRequest, zTronDirectChargeResponse, zTronDistributeRequest, zTronDistributeResponse, zTronGameBalanceResponse, zTronLedgerEntry, zTronLedgerResponse, zTronPaymentAuthorizationItem, zTronPaymentIntentContext, zTronPaymentIntentResolveInsufficient, zTronPaymentIntentResolveRedirect, zTronPaymentIntentResolveResponse, zTronSecuritySetting, zTronTransferChallengeNotRequired, zTronTransferChallengeRequest, zTronTransferChallengeRequired, zTronTransferChallengeResponse, zTronTransferRequest, zTronTransferResponse, zUpdateAdminRoleRequest, zUpdateAppContentReportStatusRequest, zUpdateAppFeeConfigRequest, zUpdateAppPage, zUpdateAppPaymentAuthorization, zUpdateBipUpdateRequest, zUpdateDeveloperApp, zUpdateDeveloperProfile, zUpdateParticipantRoleBody, zUpdatePlatformFeesRequest, zUpdatePlatformFeesResponse, zUpdateThreadSettingsBody, zUpdateTronPaymentAuthorization, zUploadAttachmentResponse, zUpsertReviewReplyRequest, zUpsertReviewRequest, zUserSearchResponse, zUserSearchResult, zUsername, zVerifyEmailResponse, zWalletAppLink, zWalletBalances, zWalletChainBalance, zWalletChainList, zWalletDelegationCaps, zWalletDelegationMode, zWalletDelegationStatus, zWalletItem, zWalletLabel, zWalletLabelUpdate, zWalletLabelUpdateResponse, zWalletListResponse, zWebPresenceHeartbeatAck, zWebsiteUrl, zXHandle };
31655
+ export { type AcceptedCurrencies, type AcceptedNetworks, type ActivityResponse, type ActivityRow, type ActivityRowAppeal, type ActivityRowCreditTransferred, type ActivityRowMaturedWithdrawal, type ActivityRowMoonpayBuy, type ActivityRowMoonpaySell, type ActivityRowNftCharge, type ActivityRowPayment, type ActivityRowPaymentAutoclaim, type ActivityRowPaymentWithdrawal, type ActivityRowPayoutSent, type ActivityRowPotLeg, type ActivityRowReferralEarning, type ActivityRowSolanaPotLeg, type ActivityRowSolanaStake, type ActivityRowTronCashout, type ActivityRowTronDeposit, type ActivityRowTronPot, type ActivityRowTronTransfer, type ActivityTronInvolvedUser, type AddAdminRequest, type AdminActivePlayer, type AdminActivePlayersResponse, type AdminAppContentReportItem, type AdminAppContentReportListResponse, type AdminAppPageBipStatusResponse, type AdminAppPageDiffField, type AdminAppPageDiffResponse, type AdminAppPageItem, type AdminAppPageListResponse, type AdminAppPageStatusResponse, type AdminAuditListItem, type AdminAuditListResponse, type AdminDeveloperAppItem, type AdminDeveloperListItem, type AdminDeveloperListResponse, type AdminMutationResponse, type AdminRole, type AdminRoleChangeResponse, type AdminTronCashoutItem, type AdminTronCashoutListResponse, type AdminTronCashoutRejectRequest, type AdminUser, type AdminUserBanRequest, type AdminUserBanResponse, type AdminUserListItem, type AdminUserListResponse, type AppContentReport, type AppContentReportCategory, type AppContentReportListResponse, type AppContentReportStatus, type AppFeeConfigResponse, type AppFriendListResponse, type AppPageAgeRating, type AppPageApprovedNotificationPayload, type AppPageBipState, type AppPageBipToggle, type AppPageCategories, type AppPageChapter, type AppPageChapters, type AppPageDraft, type AppPageGallery, type AppPageGalleryItem, type AppPageGalleryUploadResponse, type AppPageGameType, type AppPageLanguages, type AppPageLink, type AppPageLinks, type AppPagePaymentsMode, type AppPagePlatforms, type AppPageRejectedNotificationPayload, type AppPageReleaseStatus, type AppPageSlug, type AppPageTagline, type AppParticipantAcceptedNotificationPayload, type AppParticipantInviteNotificationPayload, type AppPaymentAuthorizationItem, type AppPlaytime, type AppealBlacklistAddRequest, type AppealBlacklistEntry, type AppealBlacklistListResponse, type AppealBlacklistRemoveRequest, type AppealBlacklistRemoveResponse, type AppealFileRequest, type AppealFileResponse, type AppealPotLegFileRequest, type AppealResolveRequest, type AppealResolveSignedResponse, type AppealRoomDetail, type AppealRoomMessage, type AppealRoomPostRequest, type AppealRoomPostResponse, type AppealRoomSenderRole, type AppealRoomSource, type AppealRoomStatus, type AppealRoomView, type AppealStatusRow, type AuthSession, type AuthUser, type BannerVariant, type BatchThreadDmKeysBody, type BatchThreadDmKeysResponse, type BearerToken, type Bio, type BipEngagementResponse, type BipInterestCountResponse, type BipInterestRequest, type BipNowPlayableNotificationPayload, type BipSubscriptionRequest, type BipUpdate, type BipUpdateAttachment, type BipUpdateAttachments, type BipUpdateBody, type BipUpdateComment, type BipUpdateCommentBody, type BipUpdateCommentListResponse, type BipUpdateListResponse, type BipUpdateMediaUploadResponse, type BipUpdatePublishedNotificationPayload, type BipUpdateReactionCounts, type BipUpdateVote, type CalldataEnvelope, type ClientOptions, type ConsentListResponse, type ConsentRecordRequest, type ConsentRow, type CreateBipUpdateCommentRequest, type CreateBipUpdateCommentResponse, type CreateBipUpdateRequest, type CreateDeveloperApiKey, type CreateDeveloperApiKeyResponse, type CreateDeveloperApp, type CreateDeveloperAppChain, type CreateDeveloperProductionRequest, type CreateDeveloperProductionRequestResponse, type CreateDeveloperRoleRequest, type CreateDirectThreadBody, type CreateGroupThreadBody, type CreateReviewCommentRequest, type CreateReviewCommentResponse, type CreateThreadResponse, type CreateWalletDelegation, type CreateWalletDelegationResponse, type DelegationSlippageBps, type DeleteAdminAdminsByIdData, type DeleteAdminAdminsByIdError, type DeleteAdminAdminsByIdErrors, type DeleteAdminAdminsByIdResponse, type DeleteAdminAdminsByIdResponses, type DeleteAdminPaymentsAppealBlacklistData, type DeleteAdminPaymentsAppealBlacklistError, type DeleteAdminPaymentsAppealBlacklistErrors, type DeleteAdminPaymentsAppealBlacklistResponse, type DeleteAdminPaymentsAppealBlacklistResponses, type DeleteBipUpdateCommentResponse, type DeleteBipUpdateResponse, type DeleteMeAvatarData, type DeleteMeAvatarError, type DeleteMeAvatarErrors, type DeleteMeAvatarResponse, type DeleteMeAvatarResponses, type DeleteMeBuildInPublicBySlugCommentsByCommentIdData, type DeleteMeBuildInPublicBySlugCommentsByCommentIdError, type DeleteMeBuildInPublicBySlugCommentsByCommentIdErrors, type DeleteMeBuildInPublicBySlugCommentsByCommentIdResponse, type DeleteMeBuildInPublicBySlugCommentsByCommentIdResponses, type DeleteMeData, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdData, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdError, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdErrors, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinData, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinError, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponse, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponses, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponses, type DeleteMeDeveloperAppsByAppIdPageBannerData, type DeleteMeDeveloperAppsByAppIdPageBannerError, type DeleteMeDeveloperAppsByAppIdPageBannerErrors, type DeleteMeDeveloperAppsByAppIdPageBannerResponse, type DeleteMeDeveloperAppsByAppIdPageBannerResponses, type DeleteMeDeveloperAppsByAppIdPageThumbnailData, type DeleteMeDeveloperAppsByAppIdPageThumbnailError, type DeleteMeDeveloperAppsByAppIdPageThumbnailErrors, type DeleteMeDeveloperAppsByAppIdPageThumbnailResponse, type DeleteMeDeveloperAppsByAppIdPageThumbnailResponses, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoData, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoError, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoErrors, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoResponse, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoResponses, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyData, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyError, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyErrors, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponses, type DeleteMeDeveloperAppsByIdData, type DeleteMeDeveloperAppsByIdError, type DeleteMeDeveloperAppsByIdErrors, type DeleteMeDeveloperAppsByIdLogoData, type DeleteMeDeveloperAppsByIdLogoError, type DeleteMeDeveloperAppsByIdLogoErrors, type DeleteMeDeveloperAppsByIdLogoResponse, type DeleteMeDeveloperAppsByIdLogoResponses, type DeleteMeDeveloperAppsByIdParticipantsByUserIdData, type DeleteMeDeveloperAppsByIdParticipantsByUserIdError, type DeleteMeDeveloperAppsByIdParticipantsByUserIdErrors, type DeleteMeDeveloperAppsByIdParticipantsByUserIdResponse, type DeleteMeDeveloperAppsByIdParticipantsByUserIdResponses, type DeleteMeDeveloperAppsByIdResponse, type DeleteMeDeveloperAppsByIdResponses, type DeleteMeDeveloperKeysByIdData, type DeleteMeDeveloperKeysByIdError, type DeleteMeDeveloperKeysByIdErrors, type DeleteMeDeveloperKeysByIdResponse, type DeleteMeDeveloperKeysByIdResponses, type DeleteMeDeveloperProfileLogoData, type DeleteMeDeveloperProfileLogoError, type DeleteMeDeveloperProfileLogoErrors, type DeleteMeDeveloperProfileLogoResponse, type DeleteMeDeveloperProfileLogoResponses, type DeleteMeDeveloperRequestLogoData, type DeleteMeDeveloperRequestLogoError, type DeleteMeDeveloperRequestLogoErrors, type DeleteMeDeveloperRequestLogoResponse, type DeleteMeDeveloperRequestLogoResponses, type DeleteMeError, type DeleteMeErrors, type DeleteMeFriendRequestsByIdData, type DeleteMeFriendRequestsByIdError, type DeleteMeFriendRequestsByIdErrors, type DeleteMeFriendRequestsByIdResponse, type DeleteMeFriendRequestsByIdResponses, type DeleteMeOauthPaymentAuthorizationsByConsentIdData, type DeleteMeOauthPaymentAuthorizationsByConsentIdError, type DeleteMeOauthPaymentAuthorizationsByConsentIdErrors, type DeleteMeOauthPaymentAuthorizationsByConsentIdResponse, type DeleteMeOauthPaymentAuthorizationsByConsentIdResponses, type DeleteMeResponse, type DeleteMeResponses, type DeleteMeReviewsBySlugCommentsByCommentIdData, type DeleteMeReviewsBySlugCommentsByCommentIdError, type DeleteMeReviewsBySlugCommentsByCommentIdErrors, type DeleteMeReviewsBySlugCommentsByCommentIdResponse, type DeleteMeReviewsBySlugCommentsByCommentIdResponses, type DeleteMeReviewsBySlugData, type DeleteMeReviewsBySlugError, type DeleteMeReviewsBySlugErrors, type DeleteMeReviewsBySlugResponse, type DeleteMeReviewsBySlugResponses, type DeleteMeThreadsByIdData, type DeleteMeThreadsByIdError, type DeleteMeThreadsByIdErrors, type DeleteMeThreadsByIdLogoData, type DeleteMeThreadsByIdLogoError, type DeleteMeThreadsByIdLogoErrors, type DeleteMeThreadsByIdLogoResponse, type DeleteMeThreadsByIdLogoResponses, type DeleteMeThreadsByIdMessagesByMsgIdData, type DeleteMeThreadsByIdMessagesByMsgIdError, type DeleteMeThreadsByIdMessagesByMsgIdErrors, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiData, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiError, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiErrors, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponses, type DeleteMeThreadsByIdMessagesByMsgIdResponse, type DeleteMeThreadsByIdMessagesByMsgIdResponses, type DeleteMeThreadsByIdParticipantsByUserIdData, type DeleteMeThreadsByIdParticipantsByUserIdError, type DeleteMeThreadsByIdParticipantsByUserIdErrors, type DeleteMeThreadsByIdParticipantsByUserIdResponse, type DeleteMeThreadsByIdParticipantsByUserIdResponses, type DeleteMeThreadsByIdPinData, type DeleteMeThreadsByIdPinError, type DeleteMeThreadsByIdPinErrors, type DeleteMeThreadsByIdPinResponse, type DeleteMeThreadsByIdPinResponses, type DeleteMeThreadsByIdResponse, type DeleteMeThreadsByIdResponses, type DeleteMeWalletsByAddressDelegateData, type DeleteMeWalletsByAddressDelegateError, type DeleteMeWalletsByAddressDelegateErrors, type DeleteMeWalletsByAddressDelegateResponse, type DeleteMeWalletsByAddressDelegateResponses, type DeleteReviewCommentResponse, type DeleteUsersByIdFollowData, type DeleteUsersByIdFollowError, type DeleteUsersByIdFollowErrors, type DeleteUsersByIdFollowResponse, type DeleteUsersByIdFollowResponses, type DeleteUsersByIdFriendData, type DeleteUsersByIdFriendError, type DeleteUsersByIdFriendErrors, type DeleteUsersByIdFriendResponse, type DeleteUsersByIdFriendResponses, type DeleteWalletDelegationResponse, type DevAppealRow, type DevAppealsResponse, type DevPendingDepositRow, type DevPendingDepositsResponse, type DeveloperApiKeyItem, type DeveloperApiKeysResponse, type DeveloperAppAutoSweepRequest, type DeveloperAppAutoSweepResponse, type DeveloperAppBalanceItem, type DeveloperAppBalancesResponse, type DeveloperAppConsolidateResponse, type DeveloperAppEarningsBucket, type DeveloperAppEarningsResponse, type DeveloperAppIdResponse, type DeveloperAppItem, type DeveloperAppKeyItem, type DeveloperAppName, type DeveloperAppOverviewResponse, type DeveloperAppParticipant, type DeveloperAppParticipantsResponse, type DeveloperAppPayoutAddressItem, type DeveloperAppPlaytimeBucket, type DeveloperAppPlaytimeResponse, type DeveloperAppProvisionWalletResponse, type DeveloperAppTronBalanceResponse, type DeveloperAppWalletItem, type DeveloperAppWalletsResponse, type DeveloperAppWithdrawResponse, type DeveloperInvite, type DeveloperInvitesResponse, type DeveloperLogoUploadResponse, type DeveloperMeStatus, type DeveloperOkResponse, type DeveloperProductionRequestPayload, type DeveloperProfile, type DeveloperRequestItem, type DeveloperRequestSubject, type DeveloperRoleRequestPayload, type DeveloperTronBalanceSummaryResponse, type DirectThreadSummary, type DisplayName, type DmKeyAlgorithm, type DmKeyBackupOkResponse, type DmKeyBackupSetupBody, type DmKeyBackupStatusResponse, type DmKeyBackupUnlockBody, type DmKeyBackupUnlockResponse, type DmKeyResponse, type DmPublicKeyEntry, type DsarAccount, type DsarAuditEvent, type DsarConsent, type DsarExportResponse, type DsarMessage, type DsarRectifyRequest, type EarningsTimeseries, type EarningsTimeseriesBucket, type EditMessageBody, type EmbedOrigin, type ErrorResponse, type FriendAcceptedNotificationPayload, type FriendListItem, type FriendListResponse, type FriendRequestAck, type FriendRequestDecision, type FriendRequestNotificationPayload, type GetAdminActivePlayersData, type GetAdminActivePlayersError, type GetAdminActivePlayersErrors, type GetAdminActivePlayersResponse, type GetAdminActivePlayersResponses, type GetAdminAdminsData, type GetAdminAdminsError, type GetAdminAdminsErrors, type GetAdminAdminsResponse, type GetAdminAdminsResponses, type GetAdminAppPagesByAppIdChangesData, type GetAdminAppPagesByAppIdChangesError, type GetAdminAppPagesByAppIdChangesErrors, type GetAdminAppPagesByAppIdChangesResponse, type GetAdminAppPagesByAppIdChangesResponses, type GetAdminAppPagesData, type GetAdminAppPagesError, type GetAdminAppPagesErrors, type GetAdminAppPagesResponse, type GetAdminAppPagesResponses, type GetAdminAppsByAppIdFeeConfigData, type GetAdminAppsByAppIdFeeConfigError, type GetAdminAppsByAppIdFeeConfigErrors, type GetAdminAppsByAppIdFeeConfigResponse, type GetAdminAppsByAppIdFeeConfigResponses, type GetAdminAuditData, type GetAdminAuditError, type GetAdminAuditErrors, type GetAdminAuditResponse, type GetAdminAuditResponses, type GetAdminContentReportsData, type GetAdminContentReportsError, type GetAdminContentReportsErrors, type GetAdminContentReportsResponse, type GetAdminContentReportsResponses, type GetAdminDeveloperRequestsData, type GetAdminDeveloperRequestsError, type GetAdminDeveloperRequestsErrors, type GetAdminDeveloperRequestsResponse, type GetAdminDeveloperRequestsResponses, type GetAdminDevelopersData, type GetAdminDevelopersError, type GetAdminDevelopersErrors, type GetAdminDevelopersResponse, type GetAdminDevelopersResponses, type GetAdminPaymentsAppealBlacklistData, type GetAdminPaymentsAppealBlacklistError, type GetAdminPaymentsAppealBlacklistErrors, type GetAdminPaymentsAppealBlacklistResponse, type GetAdminPaymentsAppealBlacklistResponses, type GetAdminPaymentsAppealsByAppealIdRoomData, type GetAdminPaymentsAppealsByAppealIdRoomError, type GetAdminPaymentsAppealsByAppealIdRoomErrors, type GetAdminPaymentsAppealsByAppealIdRoomResponse, type GetAdminPaymentsAppealsByAppealIdRoomResponses, type GetAdminPaymentsAppealsData, type GetAdminPaymentsAppealsError, type GetAdminPaymentsAppealsErrors, type GetAdminPaymentsAppealsResponse, type GetAdminPaymentsAppealsResponses, type GetAdminPlatformFeesData, type GetAdminPlatformFeesError, type GetAdminPlatformFeesErrors, type GetAdminPlatformFeesResponse, type GetAdminPlatformFeesResponses, type GetAdminTronCashoutsData, type GetAdminTronCashoutsError, type GetAdminTronCashoutsErrors, type GetAdminTronCashoutsResponse, type GetAdminTronCashoutsResponses, type GetAdminUsersData, type GetAdminUsersError, type GetAdminUsersErrors, type GetAdminUsersResponse, type GetAdminUsersResponses, type GetAuthGetSessionData, type GetAuthGetSessionResponse, type GetAuthGetSessionResponses, type GetAuthVerifyEmailData, type GetAuthVerifyEmailError, type GetAuthVerifyEmailErrors, type GetAuthVerifyEmailResponse, type GetAuthVerifyEmailResponses, type GetHealthData, type GetHealthError, type GetHealthErrors, type GetHealthResponse, type GetHealthResponses, type GetInventoryMetadataErc1155ByTokenIdMetadataJsonData, type GetInventoryMetadataErc1155ByTokenIdMetadataJsonError, type GetInventoryMetadataErc1155ByTokenIdMetadataJsonErrors, type GetInventoryMetadataErc1155ByTokenIdMetadataJsonResponse, type GetInventoryMetadataErc1155ByTokenIdMetadataJsonResponses, type GetInventoryMetadataErc1155ContractJsonData, type GetInventoryMetadataErc1155ContractJsonResponse, type GetInventoryMetadataErc1155ContractJsonResponses, type GetInventoryMetadataErc721ByFileData, type GetInventoryMetadataErc721ByFileError, type GetInventoryMetadataErc721ByFileErrors, type GetInventoryMetadataErc721ByFileResponse, type GetInventoryMetadataErc721ByFileResponses, type GetInventoryMetadataErc721ContractJsonData, type GetInventoryMetadataErc721ContractJsonResponse, type GetInventoryMetadataErc721ContractJsonResponses, type GetMeAppsByAppIdPlaytimeData, type GetMeAppsByAppIdPlaytimeError, type GetMeAppsByAppIdPlaytimeErrors, type GetMeAppsByAppIdPlaytimeResponse, type GetMeAppsByAppIdPlaytimeResponses, type GetMeBuildInPublicBySlugEngagementData, type GetMeBuildInPublicBySlugEngagementError, type GetMeBuildInPublicBySlugEngagementErrors, type GetMeBuildInPublicBySlugEngagementResponse, type GetMeBuildInPublicBySlugEngagementResponses, type GetMeBuildInPublicBySlugReactionsData, type GetMeBuildInPublicBySlugReactionsError, type GetMeBuildInPublicBySlugReactionsErrors, type GetMeBuildInPublicBySlugReactionsResponse, type GetMeBuildInPublicBySlugReactionsResponses, type GetMeConsentData, type GetMeConsentError, type GetMeConsentErrors, type GetMeConsentResponse, type GetMeConsentResponses, type GetMeDataData, type GetMeDataError, type GetMeDataErrors, type GetMeDataResponse, type GetMeDataResponses, type GetMeDeveloperAppsByAppIdBipUpdatesData, type GetMeDeveloperAppsByAppIdBipUpdatesError, type GetMeDeveloperAppsByAppIdBipUpdatesErrors, type GetMeDeveloperAppsByAppIdBipUpdatesResponse, type GetMeDeveloperAppsByAppIdBipUpdatesResponses, type GetMeDeveloperAppsByAppIdInventoryCollectionsData, type GetMeDeveloperAppsByAppIdInventoryCollectionsError, type GetMeDeveloperAppsByAppIdInventoryCollectionsErrors, type GetMeDeveloperAppsByAppIdInventoryCollectionsResponse, type GetMeDeveloperAppsByAppIdInventoryCollectionsResponses, type GetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersData, type GetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersError, type GetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersErrors, type GetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersResponse, type GetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersResponses, type GetMeDeveloperAppsByAppIdInventoryItemsData, type GetMeDeveloperAppsByAppIdInventoryItemsError, type GetMeDeveloperAppsByAppIdInventoryItemsErrors, type GetMeDeveloperAppsByAppIdInventoryItemsResponse, type GetMeDeveloperAppsByAppIdInventoryItemsResponses, type GetMeDeveloperAppsByAppIdPageData, type GetMeDeveloperAppsByAppIdPageError, type GetMeDeveloperAppsByAppIdPageErrors, type GetMeDeveloperAppsByAppIdPageResponse, type GetMeDeveloperAppsByAppIdPageResponses, type GetMeDeveloperAppsByAppIdReviewsData, type GetMeDeveloperAppsByAppIdReviewsError, type GetMeDeveloperAppsByAppIdReviewsErrors, type GetMeDeveloperAppsByAppIdReviewsResponse, type GetMeDeveloperAppsByAppIdReviewsResponses, type GetMeDeveloperAppsByIdActivityData, type GetMeDeveloperAppsByIdActivityError, type GetMeDeveloperAppsByIdActivityErrors, type GetMeDeveloperAppsByIdActivityResponse, type GetMeDeveloperAppsByIdActivityResponses, type GetMeDeveloperAppsByIdBalancesData, type GetMeDeveloperAppsByIdBalancesError, type GetMeDeveloperAppsByIdBalancesErrors, type GetMeDeveloperAppsByIdBalancesResponse, type GetMeDeveloperAppsByIdBalancesResponses, type GetMeDeveloperAppsByIdEarningsData, type GetMeDeveloperAppsByIdEarningsError, type GetMeDeveloperAppsByIdEarningsErrors, type GetMeDeveloperAppsByIdEarningsResponse, type GetMeDeveloperAppsByIdEarningsResponses, type GetMeDeveloperAppsByIdOverviewData, type GetMeDeveloperAppsByIdOverviewError, type GetMeDeveloperAppsByIdOverviewErrors, type GetMeDeveloperAppsByIdOverviewResponse, type GetMeDeveloperAppsByIdOverviewResponses, type GetMeDeveloperAppsByIdParticipantsData, type GetMeDeveloperAppsByIdParticipantsError, type GetMeDeveloperAppsByIdParticipantsErrors, type GetMeDeveloperAppsByIdParticipantsResponse, type GetMeDeveloperAppsByIdParticipantsResponses, type GetMeDeveloperAppsByIdPlaytimeData, type GetMeDeveloperAppsByIdPlaytimeError, type GetMeDeveloperAppsByIdPlaytimeErrors, type GetMeDeveloperAppsByIdPlaytimeResponse, type GetMeDeveloperAppsByIdPlaytimeResponses, type GetMeDeveloperAppsByIdReportsData, type GetMeDeveloperAppsByIdReportsError, type GetMeDeveloperAppsByIdReportsErrors, type GetMeDeveloperAppsByIdReportsResponse, type GetMeDeveloperAppsByIdReportsResponses, type GetMeDeveloperAppsByIdTronBalanceData, type GetMeDeveloperAppsByIdTronBalanceError, type GetMeDeveloperAppsByIdTronBalanceErrors, type GetMeDeveloperAppsByIdTronBalanceResponse, type GetMeDeveloperAppsByIdTronBalanceResponses, type GetMeDeveloperAppsByIdWalletsData, type GetMeDeveloperAppsByIdWalletsError, type GetMeDeveloperAppsByIdWalletsErrors, type GetMeDeveloperAppsByIdWalletsResponse, type GetMeDeveloperAppsByIdWalletsResponses, type GetMeDeveloperData, type GetMeDeveloperError, type GetMeDeveloperErrors, type GetMeDeveloperInvitesData, type GetMeDeveloperInvitesError, type GetMeDeveloperInvitesErrors, type GetMeDeveloperInvitesResponse, type GetMeDeveloperInvitesResponses, type GetMeDeveloperKeysData, type GetMeDeveloperKeysError, type GetMeDeveloperKeysErrors, type GetMeDeveloperKeysResponse, type GetMeDeveloperKeysResponses, type GetMeDeveloperPaymentsAppealsData, type GetMeDeveloperPaymentsAppealsError, type GetMeDeveloperPaymentsAppealsErrors, type GetMeDeveloperPaymentsAppealsResponse, type GetMeDeveloperPaymentsAppealsResponses, type GetMeDeveloperPaymentsPendingDepositsData, type GetMeDeveloperPaymentsPendingDepositsError, type GetMeDeveloperPaymentsPendingDepositsErrors, type GetMeDeveloperPaymentsPendingDepositsResponse, type GetMeDeveloperPaymentsPendingDepositsResponses, type GetMeDeveloperPaymentsTronBalanceData, type GetMeDeveloperPaymentsTronBalanceError, type GetMeDeveloperPaymentsTronBalanceErrors, type GetMeDeveloperPaymentsTronBalanceResponse, type GetMeDeveloperPaymentsTronBalanceResponses, type GetMeDeveloperResponse, type GetMeDeveloperResponses, type GetMeDmKeyBackupData, type GetMeDmKeyBackupError, type GetMeDmKeyBackupErrors, type GetMeDmKeyBackupResponse, type GetMeDmKeyBackupResponses, type GetMeDmKeyData, type GetMeDmKeyError, type GetMeDmKeyErrors, type GetMeDmKeyResponse, type GetMeDmKeyResponses, type GetMeEarningsTimeseriesData, type GetMeEarningsTimeseriesError, type GetMeEarningsTimeseriesErrors, type GetMeEarningsTimeseriesResponse, type GetMeEarningsTimeseriesResponses, type GetMeFriendsData, type GetMeFriendsError, type GetMeFriendsErrors, type GetMeFriendsResponse, type GetMeFriendsResponses, type GetMeGiphySearchData, type GetMeGiphySearchError, type GetMeGiphySearchErrors, type GetMeGiphySearchResponse, type GetMeGiphySearchResponses, type GetMeInventoryData, type GetMeInventoryError, type GetMeInventoryErrors, type GetMeInventoryPermitsData, type GetMeInventoryPermitsError, type GetMeInventoryPermitsErrors, type GetMeInventoryPermitsResponse, type GetMeInventoryPermitsResponses, type GetMeInventoryResponse, type GetMeInventoryResponses, type GetMeInventoryVaultPermitsData, type GetMeInventoryVaultPermitsError, type GetMeInventoryVaultPermitsErrors, type GetMeInventoryVaultPermitsResponse, type GetMeInventoryVaultPermitsResponses, type GetMeInventoryVaultedData, type GetMeInventoryVaultedError, type GetMeInventoryVaultedErrors, type GetMeInventoryVaultedResponse, type GetMeInventoryVaultedResponses, type GetMeNotificationsData, type GetMeNotificationsError, type GetMeNotificationsErrors, type GetMeNotificationsResponse, type GetMeNotificationsResponses, type GetMeOauthConnectionsData, type GetMeOauthConnectionsError, type GetMeOauthConnectionsErrors, type GetMeOauthConnectionsResponse, type GetMeOauthConnectionsResponses, type GetMeOauthPaymentAuthorizationsData, type GetMeOauthPaymentAuthorizationsError, type GetMeOauthPaymentAuthorizationsErrors, type GetMeOauthPaymentAuthorizationsResponse, type GetMeOauthPaymentAuthorizationsResponses, type GetMeOauthTronAuthorizationsData, type GetMeOauthTronAuthorizationsError, type GetMeOauthTronAuthorizationsErrors, type GetMeOauthTronAuthorizationsResponse, type GetMeOauthTronAuthorizationsResponses, type GetMePlaytimeData, type GetMePlaytimeError, type GetMePlaytimeErrors, type GetMePlaytimeResponse, type GetMePlaytimeResponses, type GetMePlaytimeTimeseriesData, type GetMePlaytimeTimeseriesError, type GetMePlaytimeTimeseriesErrors, type GetMePlaytimeTimeseriesResponse, type GetMePlaytimeTimeseriesResponses, type GetMeReferralData, type GetMeReferralError, type GetMeReferralErrors, type GetMeReferralPreviewData, type GetMeReferralPreviewError, type GetMeReferralPreviewErrors, type GetMeReferralPreviewResponse, type GetMeReferralPreviewResponses, type GetMeReferralResponse, type GetMeReferralResponses, type GetMeReviewsBySlugData, type GetMeReviewsBySlugError, type GetMeReviewsBySlugErrors, type GetMeReviewsBySlugReactionsData, type GetMeReviewsBySlugReactionsError, type GetMeReviewsBySlugReactionsErrors, type GetMeReviewsBySlugReactionsResponse, type GetMeReviewsBySlugReactionsResponses, type GetMeReviewsBySlugResponse, type GetMeReviewsBySlugResponses, type GetMeSocialsData, type GetMeSocialsError, type GetMeSocialsErrors, type GetMeSocialsResponse, type GetMeSocialsResponses, type GetMeStatsData, type GetMeStatsError, type GetMeStatsErrors, type GetMeStatsResponse, type GetMeStatsResponses, type GetMeThreadsByIdDmKeyData, type GetMeThreadsByIdDmKeyError, type GetMeThreadsByIdDmKeyErrors, type GetMeThreadsByIdDmKeyResponse, type GetMeThreadsByIdDmKeyResponses, type GetMeThreadsByIdMessagesData, type GetMeThreadsByIdMessagesError, type GetMeThreadsByIdMessagesErrors, type GetMeThreadsByIdMessagesResponse, type GetMeThreadsByIdMessagesResponses, type GetMeThreadsData, type GetMeThreadsError, type GetMeThreadsErrors, type GetMeThreadsResponse, type GetMeThreadsResponses, type GetMeWalletsByAddressDelegateData, type GetMeWalletsByAddressDelegateError, type GetMeWalletsByAddressDelegateErrors, type GetMeWalletsByAddressDelegateResponse, type GetMeWalletsByAddressDelegateResponses, type GetMeWalletsData, type GetMeWalletsError, type GetMeWalletsErrors, type GetMeWalletsResponse, type GetMeWalletsResponses, type GetOauthAuthorizeData, type GetOauthAuthorizeError, type GetOauthAuthorizeErrors, type GetOauthConsentByRequestData, type GetOauthConsentByRequestError, type GetOauthConsentByRequestErrors, type GetOauthConsentByRequestResponse, type GetOauthConsentByRequestResponses, type GetOauthFriendsData, type GetOauthFriendsError, type GetOauthFriendsErrors, type GetOauthFriendsResponse, type GetOauthFriendsResponses, type GetOauthInventoryData, type GetOauthInventoryError, type GetOauthInventoryErrors, type GetOauthInventoryResponse, type GetOauthInventoryResponses, type GetOauthInventoryVaultedData, type GetOauthInventoryVaultedError, type GetOauthInventoryVaultedErrors, type GetOauthInventoryVaultedResponse, type GetOauthInventoryVaultedResponses, type GetOauthPaymentsIntentByIdData, type GetOauthPaymentsIntentByIdError, type GetOauthPaymentsIntentByIdErrors, type GetOauthPaymentsIntentByIdResponse, type GetOauthPaymentsIntentByIdResponses, type GetOauthPaymentsLimitsData, type GetOauthPaymentsLimitsError, type GetOauthPaymentsLimitsErrors, type GetOauthPaymentsLimitsResponse, type GetOauthPaymentsLimitsResponses, type GetOauthPaymentsNotInvitedByClientIdData, type GetOauthPaymentsNotInvitedByClientIdError, type GetOauthPaymentsNotInvitedByClientIdErrors, type GetOauthPaymentsNotInvitedByClientIdResponse, type GetOauthPaymentsNotInvitedByClientIdResponses, type GetOauthPaymentsPriceData, type GetOauthPaymentsPriceError, type GetOauthPaymentsPriceErrors, type GetOauthPaymentsPriceResponse, type GetOauthPaymentsPriceResponses, type GetOauthPaymentsStatusByIdData, type GetOauthPaymentsStatusByIdError, type GetOauthPaymentsStatusByIdErrors, type GetOauthPaymentsStatusByIdResponse, type GetOauthPaymentsStatusByIdResponses, type GetOauthPaymentsTronBalanceData, type GetOauthPaymentsTronBalanceError, type GetOauthPaymentsTronBalanceErrors, type GetOauthPaymentsTronBalanceResponse, type GetOauthPaymentsTronBalanceResponses, type GetOauthPaymentsTronIntentByIdData, type GetOauthPaymentsTronIntentByIdError, type GetOauthPaymentsTronIntentByIdErrors, type GetOauthPaymentsTronIntentByIdResponse, type GetOauthPaymentsTronIntentByIdResponses, type GetOauthRaiseLimitContextData, type GetOauthRaiseLimitContextError, type GetOauthRaiseLimitContextErrors, type GetOauthRaiseLimitContextResponse, type GetOauthRaiseLimitContextResponses, type GetPaymentsAppealsByAppealIdRoomData, type GetPaymentsAppealsByAppealIdRoomError, type GetPaymentsAppealsByAppealIdRoomErrors, type GetPaymentsAppealsByAppealIdRoomResponse, type GetPaymentsAppealsByAppealIdRoomResponses, type GetPaymentsChainsData, type GetPaymentsChainsResponse, type GetPaymentsChainsResponses, type GetPaymentsMeActivityData, type GetPaymentsMeActivityError, type GetPaymentsMeActivityErrors, type GetPaymentsMeActivityGroupByGroupIdData, type GetPaymentsMeActivityGroupByGroupIdError, type GetPaymentsMeActivityGroupByGroupIdErrors, type GetPaymentsMeActivityGroupByGroupIdResponse, type GetPaymentsMeActivityGroupByGroupIdResponses, type GetPaymentsMeActivityResponse, type GetPaymentsMeActivityResponses, type GetPaymentsMeData, type GetPaymentsMeError, type GetPaymentsMeErrors, type GetPaymentsMeMoonpayAvailabilityData, type GetPaymentsMeMoonpayAvailabilityError, type GetPaymentsMeMoonpayAvailabilityErrors, type GetPaymentsMeMoonpayAvailabilityResponse, type GetPaymentsMeMoonpayAvailabilityResponses, type GetPaymentsMeOutstandingData, type GetPaymentsMeOutstandingError, type GetPaymentsMeOutstandingErrors, type GetPaymentsMeOutstandingResponse, type GetPaymentsMeOutstandingResponses, type GetPaymentsMeResponse, type GetPaymentsMeResponses, type GetPaymentsMeTronCashoutsData, type GetPaymentsMeTronCashoutsError, type GetPaymentsMeTronCashoutsErrors, type GetPaymentsMeTronCashoutsResponse, type GetPaymentsMeTronCashoutsResponses, type GetPaymentsMeTronData, type GetPaymentsMeTronError, type GetPaymentsMeTronErrors, type GetPaymentsMeTronLedgerData, type GetPaymentsMeTronLedgerError, type GetPaymentsMeTronLedgerErrors, type GetPaymentsMeTronLedgerResponse, type GetPaymentsMeTronLedgerResponses, type GetPaymentsMeTronResponse, type GetPaymentsMeTronResponses, type GetPaymentsMeTronSecurityData, type GetPaymentsMeTronSecurityError, type GetPaymentsMeTronSecurityErrors, type GetPaymentsMeTronSecurityResponse, type GetPaymentsMeTronSecurityResponses, type GetPaymentsRatesData, type GetPaymentsRatesResponse, type GetPaymentsRatesResponses, type GetPublicAppsBySlugData, type GetPublicAppsBySlugError, type GetPublicAppsBySlugErrors, type GetPublicAppsBySlugResponse, type GetPublicAppsBySlugResponses, type GetPublicAppsBySlugReviewsByReviewIdCommentsData, type GetPublicAppsBySlugReviewsByReviewIdCommentsError, type GetPublicAppsBySlugReviewsByReviewIdCommentsErrors, type GetPublicAppsBySlugReviewsByReviewIdCommentsResponse, type GetPublicAppsBySlugReviewsByReviewIdCommentsResponses, type GetPublicAppsBySlugReviewsData, type GetPublicAppsBySlugReviewsError, type GetPublicAppsBySlugReviewsErrors, type GetPublicAppsBySlugReviewsResponse, type GetPublicAppsBySlugReviewsResponses, type GetPublicBuildInPublicBySlugData, type GetPublicBuildInPublicBySlugError, type GetPublicBuildInPublicBySlugErrors, type GetPublicBuildInPublicBySlugInterestData, type GetPublicBuildInPublicBySlugInterestError, type GetPublicBuildInPublicBySlugInterestErrors, type GetPublicBuildInPublicBySlugInterestResponse, type GetPublicBuildInPublicBySlugInterestResponses, type GetPublicBuildInPublicBySlugResponse, type GetPublicBuildInPublicBySlugResponses, type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsData, type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsError, type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsErrors, type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponse, type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponses, type GetPublicBuildInPublicBySlugUpdatesData, type GetPublicBuildInPublicBySlugUpdatesError, type GetPublicBuildInPublicBySlugUpdatesErrors, type GetPublicBuildInPublicBySlugUpdatesResponse, type GetPublicBuildInPublicBySlugUpdatesResponses, type GetPublicBuildInPublicData, type GetPublicBuildInPublicError, type GetPublicBuildInPublicErrors, type GetPublicBuildInPublicResponse, type GetPublicBuildInPublicResponses, type GetPublicLibraryData, type GetPublicLibraryError, type GetPublicLibraryErrors, type GetPublicLibraryResponse, type GetPublicLibraryResponses, type GetSessionResponse, type GetUserinfoData, type GetUserinfoError, type GetUserinfoErrors, type GetUserinfoResponse, type GetUserinfoResponses, type GetUsersByHandleData, type GetUsersByHandleError, type GetUsersByHandleErrors, type GetUsersByHandleResponse, type GetUsersByHandleResponses, type GetUsersSearchData, type GetUsersSearchError, type GetUsersSearchErrors, type GetUsersSearchResponse, type GetUsersSearchResponses, type GetWellKnownOauthAuthorizationServerData, type GetWellKnownOauthAuthorizationServerResponse, type GetWellKnownOauthAuthorizationServerResponses, type GiphySearchResponse, type GiphySearchResult, type GitHubUrl, type GroupParticipant, type GroupThreadMutationResponse, type GroupThreadSummary, type HealthResponse, type HideAppPage, type InventoryCollectionListResponse, type InventoryCollectionSummary, type InventoryContractMetadata, type InventoryHolding, type InventoryItemHolder, type InventoryItemHoldersResponse, type InventoryItemListResponse, type InventoryItemRecord, type InventoryItemRegistrationInput, type InventoryItemRegistrationResult, type InventoryItemRegistrationSpec, type InventoryItemStats, type InventoryListResponse, type InventoryMetadataAttribute, type InventoryMintPermitCreateInput, type InventoryMintPermitRecord, type InventoryNftTransferQuoteRequest, type InventoryNftTransferQuoteResponse, type InventoryNftTransferRequest, type InventoryNftTransferResponse, type InventoryPendingPermit, type InventoryPendingPermitListResponse, type InventoryPendingVaultPermit, type InventoryPendingVaultPermitListResponse, type InventoryPermitRedeemResult, type InventoryRegistrationQuote, type InventoryRelayedVaultQuoteResponse, type InventoryRelayedVaultSubmitRequest, type InventoryRelayedVaultSubmitResponse, type InventorySignedVaultPermit, type InventorySupplyType, type InventoryTokenMetadata, type InventoryVaultCustody, type InventoryVaultCustodyListResponse, type InventoryVaultForceWithdrawResponse, type InventoryVaultPermitCreateInput, type InventoryVaultPermitRecord, type InventoryWithdrawPermitCreateInput, type InviteDeveloperAppParticipant, type InviteParticipantsBody, type LibraryItem, type LibraryListResponse, type LibrarySort, type ListAdminsResponse, type ListAppPaymentAuthorizationsResponse, type ListAppealsResponse, type ListDeveloperRequestsResponse, type ListOauthConnectionsResponse, type ListTronPaymentAuthorizationsResponse, type MeStats, type MessageAttachment, type MessageAttachmentKind, type MessageBody, type MessageEnvelope, type MessageItem, type MessageLinkPreview, type MessageReplyPreview, type MessageTransactionNftTransfer, type MessageTransactionTronTransfer, type MessagesPageResponse, type MessagingOkResponse, type MintRequestInput, type MintRequestResult, type MoonpayAvailabilityResponse, type MoonpayBuyUrlRequest, type MoonpayBuyUrlResponse, type MoonpaySellUrlRequest, type MoonpaySellUrlResponse, type MyBipUpdateReaction, type MyBipUpdateReactionsResponse, type MyReviewReaction, type MyReviewReactionsResponse, type MyReviewResponse, type NotificationItem, type NotificationListResponse, type NotificationUpdate, type OauthAuthorizationServerMetadata, type OauthAuthorizeConfirm, type OauthAuthorizeConfirmResponse, type OauthClientId, type OauthClientRegistrationError, type OauthClientRegistrationRequest, type OauthClientRegistrationResponse, type OauthClientSecret, type OauthConnectionItem, type OauthConsentContext, type OauthErrorResponse, type OauthNotInvitedContext, type OauthPaymentCancelPotRequest, type OauthPaymentCancelPotResponse, type OauthPaymentChargeCompleted, type OauthPaymentChargeIdempotencyMismatch, type OauthPaymentChargeLimitExceeded, type OauthPaymentChargeRedirect, type OauthPaymentChargeRequest, type OauthPaymentChargeResponse, type OauthPaymentDistributeRequest, type OauthPaymentDistributeResponse, type OauthPaymentIntentComplete, type OauthPaymentIntentCompleteOffline, type OauthPaymentIntentCompleteSigned, type OauthPaymentIntentContext, type OauthPaymentIntentResolveResponse, type OauthPaymentIntentSignResponse, type OauthPaymentIntentSolanaCompleteRequest, type OauthPaymentIntentSolanaPrepareResponse, type OauthPaymentIntentStatus, type OauthPaymentLimitsResponse, type OauthPaymentMonthlyLimitCents, type OauthPaymentPayoutDirect, type OauthPaymentPayoutPull, type OauthPaymentPayoutRequest, type OauthPaymentPayoutResponse, type OauthPaymentPerTxLimitCents, type OauthPaymentPriceResponse, type OauthRedirectUri, type OauthRequestHandle, type OauthRevokeRequest, type OauthScopeString, type OauthState, type OauthTokenAuthorizationCodeRequest, type OauthTokenClientCredentialsRequest, type OauthTokenRefreshTokenRequest, type OauthTokenRequest, type OauthTokenResponse, type OauthUserInfoResponse, type OnlineStatus, type OutstandingByToken, type OutstandingResponse, type OwnReview, type ParticipantRole, type PatchAdminAdminsByIdData, type PatchAdminAdminsByIdError, type PatchAdminAdminsByIdErrors, type PatchAdminAdminsByIdResponse, type PatchAdminAdminsByIdResponses, type PatchAdminAppsByAppIdFeeConfigData, type PatchAdminAppsByAppIdFeeConfigError, type PatchAdminAppsByAppIdFeeConfigErrors, type PatchAdminAppsByAppIdFeeConfigResponse, type PatchAdminAppsByAppIdFeeConfigResponses, type PatchAdminContentReportsByReportIdData, type PatchAdminContentReportsByReportIdError, type PatchAdminContentReportsByReportIdErrors, type PatchAdminContentReportsByReportIdResponse, type PatchAdminContentReportsByReportIdResponses, type PatchAdminDeveloperRequestsByIdData, type PatchAdminDeveloperRequestsByIdError, type PatchAdminDeveloperRequestsByIdErrors, type PatchAdminDeveloperRequestsByIdResponse, type PatchAdminDeveloperRequestsByIdResponses, type PatchAdminPlatformFeesData, type PatchAdminPlatformFeesError, type PatchAdminPlatformFeesErrors, type PatchAdminPlatformFeesResponse, type PatchAdminPlatformFeesResponses, type PatchAdminUsersByIdData, type PatchAdminUsersByIdError, type PatchAdminUsersByIdErrors, type PatchAdminUsersByIdResponse, type PatchAdminUsersByIdResponses, type PatchMeData, type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdData, type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdError, type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdErrors, type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse, type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponses, type PatchMeDeveloperAppsByAppIdPageBipData, type PatchMeDeveloperAppsByAppIdPageBipError, type PatchMeDeveloperAppsByAppIdPageBipErrors, type PatchMeDeveloperAppsByAppIdPageBipResponse, type PatchMeDeveloperAppsByAppIdPageBipResponses, type PatchMeDeveloperAppsByAppIdPageData, type PatchMeDeveloperAppsByAppIdPageError, type PatchMeDeveloperAppsByAppIdPageErrors, type PatchMeDeveloperAppsByAppIdPageResponse, type PatchMeDeveloperAppsByAppIdPageResponses, type PatchMeDeveloperAppsByIdData, type PatchMeDeveloperAppsByIdError, type PatchMeDeveloperAppsByIdErrors, type PatchMeDeveloperAppsByIdReportsByReportIdData, type PatchMeDeveloperAppsByIdReportsByReportIdError, type PatchMeDeveloperAppsByIdReportsByReportIdErrors, type PatchMeDeveloperAppsByIdReportsByReportIdResponse, type PatchMeDeveloperAppsByIdReportsByReportIdResponses, type PatchMeDeveloperAppsByIdResponse, type PatchMeDeveloperAppsByIdResponses, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepData, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepError, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepErrors, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepResponse, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepResponses, type PatchMeDeveloperProfileData, type PatchMeDeveloperProfileError, type PatchMeDeveloperProfileErrors, type PatchMeDeveloperProfileResponse, type PatchMeDeveloperProfileResponses, type PatchMeError, type PatchMeErrors, type PatchMeFriendRequestsByIdData, type PatchMeFriendRequestsByIdError, type PatchMeFriendRequestsByIdErrors, type PatchMeFriendRequestsByIdResponse, type PatchMeFriendRequestsByIdResponses, type PatchMeNotificationsByIdData, type PatchMeNotificationsByIdError, type PatchMeNotificationsByIdErrors, type PatchMeNotificationsByIdResponse, type PatchMeNotificationsByIdResponses, type PatchMeOauthPaymentAuthorizationsByConsentIdData, type PatchMeOauthPaymentAuthorizationsByConsentIdError, type PatchMeOauthPaymentAuthorizationsByConsentIdErrors, type PatchMeOauthPaymentAuthorizationsByConsentIdResponse, type PatchMeOauthPaymentAuthorizationsByConsentIdResponses, type PatchMeOauthTronAuthorizationsByConsentIdData, type PatchMeOauthTronAuthorizationsByConsentIdError, type PatchMeOauthTronAuthorizationsByConsentIdErrors, type PatchMeOauthTronAuthorizationsByConsentIdResponse, type PatchMeOauthTronAuthorizationsByConsentIdResponses, type PatchMeProfileData, type PatchMeProfileError, type PatchMeProfileErrors, type PatchMeProfileResponse, type PatchMeProfileResponses, type PatchMeResponse, type PatchMeResponses, type PatchMeThreadsByIdData, type PatchMeThreadsByIdError, type PatchMeThreadsByIdErrors, type PatchMeThreadsByIdMessagesByMsgIdData, type PatchMeThreadsByIdMessagesByMsgIdError, type PatchMeThreadsByIdMessagesByMsgIdErrors, type PatchMeThreadsByIdMessagesByMsgIdResponse, type PatchMeThreadsByIdMessagesByMsgIdResponses, type PatchMeThreadsByIdParticipantsByUserIdRoleData, type PatchMeThreadsByIdParticipantsByUserIdRoleError, type PatchMeThreadsByIdParticipantsByUserIdRoleErrors, type PatchMeThreadsByIdParticipantsByUserIdRoleResponse, type PatchMeThreadsByIdParticipantsByUserIdRoleResponses, type PatchMeThreadsByIdResponse, type PatchMeThreadsByIdResponses, type PatchMeWalletsByAddressData, type PatchMeWalletsByAddressError, type PatchMeWalletsByAddressErrors, type PatchMeWalletsByAddressResponse, type PatchMeWalletsByAddressResponses, type PauseRequest, type PaymentChain, type PaymentChainsResponse, type PaymentHistoryResponse, type PaymentHistoryRow, type PaymentMetadata, type PaymentNetwork, type PaymentRatesResponse, type PinThreadResponse, type PkceCodeChallenge, type PkceCodeVerifier, type PlatformCurrency, type PlatformEnvironment, type PlatformFeeEnvelope, type PlatformFeesResponse, type PlaySessionAppId, type PlaySessionConfirmRequest, type PlaySessionConfirmResponse, type PlaySessionEndRequest, type PlaySessionEndResponse, type PlaySessionHeartbeatRequest, type PlaySessionHeartbeatResponse, type PlaySessionId, type PlaySessionOpenRequest, type PlaySessionOpenResponse, type PlaySessionUserId, type PlaytimeAppEntry, type PlaytimeOverview, type PlaytimeTimeseries, type PlaytimeTimeseriesBucket, type PostAdminAdminsData, type PostAdminAdminsError, type PostAdminAdminsErrors, type PostAdminAdminsResponse, type PostAdminAdminsResponses, type PostAdminAppPagesByAppIdHideBipData, type PostAdminAppPagesByAppIdHideBipError, type PostAdminAppPagesByAppIdHideBipErrors, type PostAdminAppPagesByAppIdHideBipResponse, type PostAdminAppPagesByAppIdHideBipResponses, type PostAdminAppPagesByAppIdHideData, type PostAdminAppPagesByAppIdHideError, type PostAdminAppPagesByAppIdHideErrors, type PostAdminAppPagesByAppIdHideResponse, type PostAdminAppPagesByAppIdHideResponses, type PostAdminAppPagesByAppIdReviewBipData, type PostAdminAppPagesByAppIdReviewBipError, type PostAdminAppPagesByAppIdReviewBipErrors, type PostAdminAppPagesByAppIdReviewBipResponse, type PostAdminAppPagesByAppIdReviewBipResponses, type PostAdminAppPagesByAppIdReviewChangesData, type PostAdminAppPagesByAppIdReviewChangesError, type PostAdminAppPagesByAppIdReviewChangesErrors, type PostAdminAppPagesByAppIdReviewChangesResponse, type PostAdminAppPagesByAppIdReviewChangesResponses, type PostAdminAppPagesByAppIdReviewData, type PostAdminAppPagesByAppIdReviewError, type PostAdminAppPagesByAppIdReviewErrors, type PostAdminAppPagesByAppIdReviewResponse, type PostAdminAppPagesByAppIdReviewResponses, type PostAdminAppPagesByAppIdUnhideBipData, type PostAdminAppPagesByAppIdUnhideBipError, type PostAdminAppPagesByAppIdUnhideBipErrors, type PostAdminAppPagesByAppIdUnhideBipResponse, type PostAdminAppPagesByAppIdUnhideBipResponses, type PostAdminAppPagesByAppIdUnhideData, type PostAdminAppPagesByAppIdUnhideError, type PostAdminAppPagesByAppIdUnhideErrors, type PostAdminAppPagesByAppIdUnhideResponse, type PostAdminAppPagesByAppIdUnhideResponses, type PostAdminInventoryVaultCustodyByCustodyIdForceWithdrawData, type PostAdminInventoryVaultCustodyByCustodyIdForceWithdrawError, type PostAdminInventoryVaultCustodyByCustodyIdForceWithdrawErrors, type PostAdminInventoryVaultCustodyByCustodyIdForceWithdrawResponse, type PostAdminInventoryVaultCustodyByCustodyIdForceWithdrawResponses, type PostAdminPaymentsAppealBlacklistData, type PostAdminPaymentsAppealBlacklistError, type PostAdminPaymentsAppealBlacklistErrors, type PostAdminPaymentsAppealBlacklistResponse, type PostAdminPaymentsAppealBlacklistResponses, type PostAdminPaymentsAppealsByAppealIdResolveData, type PostAdminPaymentsAppealsByAppealIdResolveError, type PostAdminPaymentsAppealsByAppealIdResolveErrors, type PostAdminPaymentsAppealsByAppealIdResolveResponse, type PostAdminPaymentsAppealsByAppealIdResolveResponses, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsData, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsError, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsErrors, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsResponse, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsResponses, type PostAdminPaymentsAppealsByAppealIdRoomMessagesData, type PostAdminPaymentsAppealsByAppealIdRoomMessagesError, type PostAdminPaymentsAppealsByAppealIdRoomMessagesErrors, type PostAdminPaymentsAppealsByAppealIdRoomMessagesResponse, type PostAdminPaymentsAppealsByAppealIdRoomMessagesResponses, type PostAdminPaymentsProcessorsByProcessorIdTreasuryData, type PostAdminPaymentsProcessorsByProcessorIdTreasuryError, type PostAdminPaymentsProcessorsByProcessorIdTreasuryErrors, type PostAdminPaymentsProcessorsByProcessorIdTreasuryResponse, type PostAdminPaymentsProcessorsByProcessorIdTreasuryResponses, type PostAdminPaymentsProcessorsWhitelistData, type PostAdminPaymentsProcessorsWhitelistError, type PostAdminPaymentsProcessorsWhitelistErrors, type PostAdminPaymentsProcessorsWhitelistResponse, type PostAdminPaymentsProcessorsWhitelistResponses, type PostAdminPaymentsVaultsByVaultAddressOperatorData, type PostAdminPaymentsVaultsByVaultAddressOperatorError, type PostAdminPaymentsVaultsByVaultAddressOperatorErrors, type PostAdminPaymentsVaultsByVaultAddressOperatorResponse, type PostAdminPaymentsVaultsByVaultAddressOperatorResponses, type PostAdminPaymentsVaultsByVaultAddressPauseData, type PostAdminPaymentsVaultsByVaultAddressPauseError, type PostAdminPaymentsVaultsByVaultAddressPauseErrors, type PostAdminPaymentsVaultsByVaultAddressPauseResponse, type PostAdminPaymentsVaultsByVaultAddressPauseResponses, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultData, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultError, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultErrors, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultResponse, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultResponses, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideData, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideError, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideErrors, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideResponse, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideResponses, type PostAdminTronCashoutsByIdApproveData, type PostAdminTronCashoutsByIdApproveError, type PostAdminTronCashoutsByIdApproveErrors, type PostAdminTronCashoutsByIdApproveResponse, type PostAdminTronCashoutsByIdApproveResponses, type PostAdminTronCashoutsByIdRejectData, type PostAdminTronCashoutsByIdRejectError, type PostAdminTronCashoutsByIdRejectErrors, type PostAdminTronCashoutsByIdRejectResponse, type PostAdminTronCashoutsByIdRejectResponses, type PostAuthRequestPasswordResetData, type PostAuthRequestPasswordResetError, type PostAuthRequestPasswordResetErrors, type PostAuthRequestPasswordResetResponse, type PostAuthRequestPasswordResetResponses, type PostAuthResetPasswordData, type PostAuthResetPasswordError, type PostAuthResetPasswordErrors, type PostAuthResetPasswordResponse, type PostAuthResetPasswordResponses, type PostAuthSendVerificationEmailData, type PostAuthSendVerificationEmailError, type PostAuthSendVerificationEmailErrors, type PostAuthSendVerificationEmailResponse, type PostAuthSendVerificationEmailResponses, type PostAuthSignInEmailData, type PostAuthSignInEmailError, type PostAuthSignInEmailErrors, type PostAuthSignInEmailResponse, type PostAuthSignInEmailResponses, type PostAuthSignOutData, type PostAuthSignOutResponse, type PostAuthSignOutResponses, type PostAuthSignUpEmailData, type PostAuthSignUpEmailError, type PostAuthSignUpEmailErrors, type PostAuthSignUpEmailResponse, type PostAuthSignUpEmailResponses, type PostMeAppsByAppIdReportData, type PostMeAppsByAppIdReportError, type PostMeAppsByAppIdReportErrors, type PostMeAppsByAppIdReportResponse, type PostMeAppsByAppIdReportResponses, type PostMeAvatarData, type PostMeAvatarError, type PostMeAvatarErrors, type PostMeAvatarResponse, type PostMeAvatarResponses, type PostMeBuildInPublicBySlugCommentsByUpdateIdData, type PostMeBuildInPublicBySlugCommentsByUpdateIdError, type PostMeBuildInPublicBySlugCommentsByUpdateIdErrors, type PostMeBuildInPublicBySlugCommentsByUpdateIdResponse, type PostMeBuildInPublicBySlugCommentsByUpdateIdResponses, type PostMeBuildInPublicBySlugInterestData, type PostMeBuildInPublicBySlugInterestError, type PostMeBuildInPublicBySlugInterestErrors, type PostMeBuildInPublicBySlugInterestResponse, type PostMeBuildInPublicBySlugInterestResponses, type PostMeBuildInPublicBySlugReactionsByUpdateIdData, type PostMeBuildInPublicBySlugReactionsByUpdateIdError, type PostMeBuildInPublicBySlugReactionsByUpdateIdErrors, type PostMeBuildInPublicBySlugReactionsByUpdateIdResponse, type PostMeBuildInPublicBySlugReactionsByUpdateIdResponses, type PostMeBuildInPublicBySlugSubscriptionData, type PostMeBuildInPublicBySlugSubscriptionError, type PostMeBuildInPublicBySlugSubscriptionErrors, type PostMeBuildInPublicBySlugSubscriptionResponse, type PostMeBuildInPublicBySlugSubscriptionResponses, type PostMeConsentData, type PostMeConsentError, type PostMeConsentErrors, type PostMeConsentResponse, type PostMeConsentResponses, type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinData, type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinError, type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors, type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponse, type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponses, type PostMeDeveloperAppsByAppIdBipUpdatesData, type PostMeDeveloperAppsByAppIdBipUpdatesError, type PostMeDeveloperAppsByAppIdBipUpdatesErrors, type PostMeDeveloperAppsByAppIdBipUpdatesMediaData, type PostMeDeveloperAppsByAppIdBipUpdatesMediaError, type PostMeDeveloperAppsByAppIdBipUpdatesMediaErrors, type PostMeDeveloperAppsByAppIdBipUpdatesMediaResponse, type PostMeDeveloperAppsByAppIdBipUpdatesMediaResponses, type PostMeDeveloperAppsByAppIdBipUpdatesResponse, type PostMeDeveloperAppsByAppIdBipUpdatesResponses, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerData, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerError, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerErrors, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerResponse, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerResponses, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageData, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageError, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageErrors, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageResponse, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageResponses, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsData, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsError, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsErrors, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsResponse, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsResponses, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsData, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsError, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsErrors, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsResponse, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsResponses, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsData, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsError, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsErrors, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsResponse, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsResponses, type PostMeDeveloperAppsByAppIdInventoryItemsData, type PostMeDeveloperAppsByAppIdInventoryItemsError, type PostMeDeveloperAppsByAppIdInventoryItemsErrors, type PostMeDeveloperAppsByAppIdInventoryItemsQuoteData, type PostMeDeveloperAppsByAppIdInventoryItemsQuoteError, type PostMeDeveloperAppsByAppIdInventoryItemsQuoteErrors, type PostMeDeveloperAppsByAppIdInventoryItemsQuoteResponse, type PostMeDeveloperAppsByAppIdInventoryItemsQuoteResponses, type PostMeDeveloperAppsByAppIdInventoryItemsResponse, type PostMeDeveloperAppsByAppIdInventoryItemsResponses, type PostMeDeveloperAppsByAppIdPageBannerData, type PostMeDeveloperAppsByAppIdPageBannerError, type PostMeDeveloperAppsByAppIdPageBannerErrors, type PostMeDeveloperAppsByAppIdPageBannerResponse, type PostMeDeveloperAppsByAppIdPageBannerResponses, type PostMeDeveloperAppsByAppIdPageBipSubmitForReviewData, type PostMeDeveloperAppsByAppIdPageBipSubmitForReviewError, type PostMeDeveloperAppsByAppIdPageBipSubmitForReviewErrors, type PostMeDeveloperAppsByAppIdPageBipSubmitForReviewResponse, type PostMeDeveloperAppsByAppIdPageBipSubmitForReviewResponses, type PostMeDeveloperAppsByAppIdPageBipUnpublishData, type PostMeDeveloperAppsByAppIdPageBipUnpublishError, type PostMeDeveloperAppsByAppIdPageBipUnpublishErrors, type PostMeDeveloperAppsByAppIdPageBipUnpublishResponse, type PostMeDeveloperAppsByAppIdPageBipUnpublishResponses, type PostMeDeveloperAppsByAppIdPageGalleryData, type PostMeDeveloperAppsByAppIdPageGalleryError, type PostMeDeveloperAppsByAppIdPageGalleryErrors, type PostMeDeveloperAppsByAppIdPageGalleryResponse, type PostMeDeveloperAppsByAppIdPageGalleryResponses, type PostMeDeveloperAppsByAppIdPageSubmitForReviewData, type PostMeDeveloperAppsByAppIdPageSubmitForReviewError, type PostMeDeveloperAppsByAppIdPageSubmitForReviewErrors, type PostMeDeveloperAppsByAppIdPageSubmitForReviewResponse, type PostMeDeveloperAppsByAppIdPageSubmitForReviewResponses, type PostMeDeveloperAppsByAppIdPageThumbnailData, type PostMeDeveloperAppsByAppIdPageThumbnailError, type PostMeDeveloperAppsByAppIdPageThumbnailErrors, type PostMeDeveloperAppsByAppIdPageThumbnailResponse, type PostMeDeveloperAppsByAppIdPageThumbnailResponses, type PostMeDeveloperAppsByAppIdPageThumbnailVideoData, type PostMeDeveloperAppsByAppIdPageThumbnailVideoError, type PostMeDeveloperAppsByAppIdPageThumbnailVideoErrors, type PostMeDeveloperAppsByAppIdPageThumbnailVideoResponse, type PostMeDeveloperAppsByAppIdPageThumbnailVideoResponses, type PostMeDeveloperAppsByAppIdPageUnpublishData, type PostMeDeveloperAppsByAppIdPageUnpublishError, type PostMeDeveloperAppsByAppIdPageUnpublishErrors, type PostMeDeveloperAppsByAppIdPageUnpublishResponse, type PostMeDeveloperAppsByAppIdPageUnpublishResponses, type PostMeDeveloperAppsByIdLogoData, type PostMeDeveloperAppsByIdLogoError, type PostMeDeveloperAppsByIdLogoErrors, type PostMeDeveloperAppsByIdLogoResponse, type PostMeDeveloperAppsByIdLogoResponses, type PostMeDeveloperAppsByIdParticipantsData, type PostMeDeveloperAppsByIdParticipantsError, type PostMeDeveloperAppsByIdParticipantsErrors, type PostMeDeveloperAppsByIdParticipantsResponse, type PostMeDeveloperAppsByIdParticipantsResponses, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretData, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretError, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretErrors, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretResponse, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretResponses, type PostMeDeveloperAppsByIdProductionRequestData, type PostMeDeveloperAppsByIdProductionRequestError, type PostMeDeveloperAppsByIdProductionRequestErrors, type PostMeDeveloperAppsByIdProductionRequestResponse, type PostMeDeveloperAppsByIdProductionRequestResponses, type PostMeDeveloperAppsByIdWalletsByChainConsolidateData, type PostMeDeveloperAppsByIdWalletsByChainConsolidateError, type PostMeDeveloperAppsByIdWalletsByChainConsolidateErrors, type PostMeDeveloperAppsByIdWalletsByChainConsolidateResponse, type PostMeDeveloperAppsByIdWalletsByChainConsolidateResponses, type PostMeDeveloperAppsByIdWalletsByChainProvisionData, type PostMeDeveloperAppsByIdWalletsByChainProvisionError, type PostMeDeveloperAppsByIdWalletsByChainProvisionErrors, type PostMeDeveloperAppsByIdWalletsByChainProvisionResponse, type PostMeDeveloperAppsByIdWalletsByChainProvisionResponses, type PostMeDeveloperAppsByIdWalletsByChainWithdrawData, type PostMeDeveloperAppsByIdWalletsByChainWithdrawError, type PostMeDeveloperAppsByIdWalletsByChainWithdrawErrors, type PostMeDeveloperAppsByIdWalletsByChainWithdrawResponse, type PostMeDeveloperAppsByIdWalletsByChainWithdrawResponses, type PostMeDeveloperAppsData, type PostMeDeveloperAppsError, type PostMeDeveloperAppsErrors, type PostMeDeveloperAppsResponse, type PostMeDeveloperAppsResponses, type PostMeDeveloperInvitesByAppIdAcceptData, type PostMeDeveloperInvitesByAppIdAcceptError, type PostMeDeveloperInvitesByAppIdAcceptErrors, type PostMeDeveloperInvitesByAppIdAcceptResponse, type PostMeDeveloperInvitesByAppIdAcceptResponses, type PostMeDeveloperInvitesByAppIdDeclineData, type PostMeDeveloperInvitesByAppIdDeclineError, type PostMeDeveloperInvitesByAppIdDeclineErrors, type PostMeDeveloperInvitesByAppIdDeclineResponse, type PostMeDeveloperInvitesByAppIdDeclineResponses, type PostMeDeveloperKeysData, type PostMeDeveloperKeysError, type PostMeDeveloperKeysErrors, type PostMeDeveloperKeysResponse, type PostMeDeveloperKeysResponses, type PostMeDeveloperProfileLogoData, type PostMeDeveloperProfileLogoError, type PostMeDeveloperProfileLogoErrors, type PostMeDeveloperProfileLogoResponse, type PostMeDeveloperProfileLogoResponses, type PostMeDeveloperRequestData, type PostMeDeveloperRequestError, type PostMeDeveloperRequestErrors, type PostMeDeveloperRequestLogoData, type PostMeDeveloperRequestLogoError, type PostMeDeveloperRequestLogoErrors, type PostMeDeveloperRequestLogoResponse, type PostMeDeveloperRequestLogoResponses, type PostMeDeveloperRequestResponse, type PostMeDeveloperRequestResponses, type PostMeDmKeyBackupData, type PostMeDmKeyBackupError, type PostMeDmKeyBackupErrors, type PostMeDmKeyBackupResponse, type PostMeDmKeyBackupResponses, type PostMeDmKeyBackupUnlockData, type PostMeDmKeyBackupUnlockError, type PostMeDmKeyBackupUnlockErrors, type PostMeDmKeyBackupUnlockResponse, type PostMeDmKeyBackupUnlockResponses, type PostMeInventoryNftTransfersData, type PostMeInventoryNftTransfersError, type PostMeInventoryNftTransfersErrors, type PostMeInventoryNftTransfersQuoteData, type PostMeInventoryNftTransfersQuoteError, type PostMeInventoryNftTransfersQuoteErrors, type PostMeInventoryNftTransfersQuoteResponse, type PostMeInventoryNftTransfersQuoteResponses, type PostMeInventoryNftTransfersResponse, type PostMeInventoryNftTransfersResponses, type PostMeInventoryPermitsByPermitIdRedeemData, type PostMeInventoryPermitsByPermitIdRedeemError, type PostMeInventoryPermitsByPermitIdRedeemErrors, type PostMeInventoryPermitsByPermitIdRedeemResponse, type PostMeInventoryPermitsByPermitIdRedeemResponses, type PostMeInventoryVaultPermitsByPermitIdRelayedQuoteData, type PostMeInventoryVaultPermitsByPermitIdRelayedQuoteError, type PostMeInventoryVaultPermitsByPermitIdRelayedQuoteErrors, type PostMeInventoryVaultPermitsByPermitIdRelayedQuoteResponse, type PostMeInventoryVaultPermitsByPermitIdRelayedQuoteResponses, type PostMeInventoryVaultPermitsByPermitIdRelayedSubmitData, type PostMeInventoryVaultPermitsByPermitIdRelayedSubmitError, type PostMeInventoryVaultPermitsByPermitIdRelayedSubmitErrors, type PostMeInventoryVaultPermitsByPermitIdRelayedSubmitResponse, type PostMeInventoryVaultPermitsByPermitIdRelayedSubmitResponses, type PostMeInventoryVaultPermitsByPermitIdSignData, type PostMeInventoryVaultPermitsByPermitIdSignError, type PostMeInventoryVaultPermitsByPermitIdSignErrors, type PostMeInventoryVaultPermitsByPermitIdSignResponse, type PostMeInventoryVaultPermitsByPermitIdSignResponses, type PostMeNotificationsMarkAllReadData, type PostMeNotificationsMarkAllReadError, type PostMeNotificationsMarkAllReadErrors, type PostMeNotificationsMarkAllReadResponse, type PostMeNotificationsMarkAllReadResponses, type PostMePlaySessionsOpenData, type PostMePlaySessionsOpenError, type PostMePlaySessionsOpenErrors, type PostMePlaySessionsOpenResponse, type PostMePlaySessionsOpenResponses, type PostMePresenceHeartbeatData, type PostMePresenceHeartbeatError, type PostMePresenceHeartbeatErrors, type PostMePresenceHeartbeatResponse, type PostMePresenceHeartbeatResponses, type PostMeReferralBindData, type PostMeReferralBindError, type PostMeReferralBindErrors, type PostMeReferralBindResponse, type PostMeReferralBindResponses, type PostMeReferralCodeData, type PostMeReferralCodeError, type PostMeReferralCodeErrors, type PostMeReferralCodeResponse, type PostMeReferralCodeResponses, type PostMeReviewsBySlugCommentsByReviewIdData, type PostMeReviewsBySlugCommentsByReviewIdError, type PostMeReviewsBySlugCommentsByReviewIdErrors, type PostMeReviewsBySlugCommentsByReviewIdResponse, type PostMeReviewsBySlugCommentsByReviewIdResponses, type PostMeReviewsBySlugReactionsByReviewIdData, type PostMeReviewsBySlugReactionsByReviewIdError, type PostMeReviewsBySlugReactionsByReviewIdErrors, type PostMeReviewsBySlugReactionsByReviewIdResponse, type PostMeReviewsBySlugReactionsByReviewIdResponses, type PostMeReviewsBySlugTipsByReviewIdData, type PostMeReviewsBySlugTipsByReviewIdError, type PostMeReviewsBySlugTipsByReviewIdErrors, type PostMeReviewsBySlugTipsByReviewIdResponse, type PostMeReviewsBySlugTipsByReviewIdResponses, type PostMeThreadsByIdAttachmentsData, type PostMeThreadsByIdAttachmentsError, type PostMeThreadsByIdAttachmentsErrors, type PostMeThreadsByIdAttachmentsResponse, type PostMeThreadsByIdAttachmentsResponses, type PostMeThreadsByIdHideData, type PostMeThreadsByIdHideError, type PostMeThreadsByIdHideErrors, type PostMeThreadsByIdHideResponse, type PostMeThreadsByIdHideResponses, type PostMeThreadsByIdInviteData, type PostMeThreadsByIdInviteError, type PostMeThreadsByIdInviteErrors, type PostMeThreadsByIdInviteResponse, type PostMeThreadsByIdInviteResponses, type PostMeThreadsByIdLeaveData, type PostMeThreadsByIdLeaveError, type PostMeThreadsByIdLeaveErrors, type PostMeThreadsByIdLeaveResponse, type PostMeThreadsByIdLeaveResponses, type PostMeThreadsByIdLogoData, type PostMeThreadsByIdLogoError, type PostMeThreadsByIdLogoErrors, type PostMeThreadsByIdLogoResponse, type PostMeThreadsByIdLogoResponses, type PostMeThreadsByIdMessagesData, type PostMeThreadsByIdMessagesError, type PostMeThreadsByIdMessagesErrors, type PostMeThreadsByIdMessagesResponse, type PostMeThreadsByIdMessagesResponses, type PostMeThreadsByIdPinData, type PostMeThreadsByIdPinError, type PostMeThreadsByIdPinErrors, type PostMeThreadsByIdPinResponse, type PostMeThreadsByIdPinResponses, type PostMeThreadsByIdReadData, type PostMeThreadsByIdReadError, type PostMeThreadsByIdReadErrors, type PostMeThreadsByIdReadResponse, type PostMeThreadsByIdReadResponses, type PostMeThreadsData, type PostMeThreadsDmKeysData, type PostMeThreadsDmKeysError, type PostMeThreadsDmKeysErrors, type PostMeThreadsDmKeysResponse, type PostMeThreadsDmKeysResponses, type PostMeThreadsError, type PostMeThreadsErrors, type PostMeThreadsResponse, type PostMeThreadsResponses, type PostMeWalletsByAddressDelegateData, type PostMeWalletsByAddressDelegateError, type PostMeWalletsByAddressDelegateErrors, type PostMeWalletsByAddressDelegateResponse, type PostMeWalletsByAddressDelegateResponses, type PostOauthAuthorizeConfirmData, type PostOauthAuthorizeConfirmError, type PostOauthAuthorizeConfirmErrors, type PostOauthAuthorizeConfirmResponse, type PostOauthAuthorizeConfirmResponses, type PostOauthInventoryMintData, type PostOauthInventoryMintError, type PostOauthInventoryMintErrors, type PostOauthInventoryMintResponse, type PostOauthInventoryMintResponses, type PostOauthPaymentsCancelPotData, type PostOauthPaymentsCancelPotError, type PostOauthPaymentsCancelPotErrors, type PostOauthPaymentsCancelPotResponse, type PostOauthPaymentsCancelPotResponses, type PostOauthPaymentsChargeData, type PostOauthPaymentsChargeError, type PostOauthPaymentsChargeErrors, type PostOauthPaymentsChargeResponse, type PostOauthPaymentsChargeResponses, type PostOauthPaymentsDistributeData, type PostOauthPaymentsDistributeError, type PostOauthPaymentsDistributeErrors, type PostOauthPaymentsDistributeResponse, type PostOauthPaymentsDistributeResponses, type PostOauthPaymentsIntentByIdCompleteData, type PostOauthPaymentsIntentByIdCompleteError, type PostOauthPaymentsIntentByIdCompleteErrors, type PostOauthPaymentsIntentByIdCompleteResponse, type PostOauthPaymentsIntentByIdCompleteResponses, type PostOauthPaymentsIntentByIdDenyData, type PostOauthPaymentsIntentByIdDenyError, type PostOauthPaymentsIntentByIdDenyErrors, type PostOauthPaymentsIntentByIdDenyResponse, type PostOauthPaymentsIntentByIdDenyResponses, type PostOauthPaymentsIntentByIdSignData, type PostOauthPaymentsIntentByIdSignError, type PostOauthPaymentsIntentByIdSignErrors, type PostOauthPaymentsIntentByIdSignResponse, type PostOauthPaymentsIntentByIdSignResponses, type PostOauthPaymentsIntentByIdSolanaCompleteData, type PostOauthPaymentsIntentByIdSolanaCompleteError, type PostOauthPaymentsIntentByIdSolanaCompleteErrors, type PostOauthPaymentsIntentByIdSolanaCompleteResponse, type PostOauthPaymentsIntentByIdSolanaCompleteResponses, type PostOauthPaymentsIntentByIdSolanaPrepareData, type PostOauthPaymentsIntentByIdSolanaPrepareError, type PostOauthPaymentsIntentByIdSolanaPrepareErrors, type PostOauthPaymentsIntentByIdSolanaPrepareResponse, type PostOauthPaymentsIntentByIdSolanaPrepareResponses, type PostOauthPaymentsPayoutData, type PostOauthPaymentsPayoutError, type PostOauthPaymentsPayoutErrors, type PostOauthPaymentsPayoutResponse, type PostOauthPaymentsPayoutResponses, type PostOauthPaymentsTronChargeData, type PostOauthPaymentsTronChargeDirectData, type PostOauthPaymentsTronChargeDirectError, type PostOauthPaymentsTronChargeDirectErrors, type PostOauthPaymentsTronChargeDirectResponse, type PostOauthPaymentsTronChargeDirectResponses, type PostOauthPaymentsTronChargeError, type PostOauthPaymentsTronChargeErrors, type PostOauthPaymentsTronChargeResponse, type PostOauthPaymentsTronChargeResponses, type PostOauthPaymentsTronDistributeData, type PostOauthPaymentsTronDistributeError, type PostOauthPaymentsTronDistributeErrors, type PostOauthPaymentsTronDistributeResponse, type PostOauthPaymentsTronDistributeResponses, type PostOauthPaymentsTronIntentByIdCompleteData, type PostOauthPaymentsTronIntentByIdCompleteError, type PostOauthPaymentsTronIntentByIdCompleteErrors, type PostOauthPaymentsTronIntentByIdCompleteResponse, type PostOauthPaymentsTronIntentByIdCompleteResponses, type PostOauthPaymentsTronIntentByIdDenyData, type PostOauthPaymentsTronIntentByIdDenyError, type PostOauthPaymentsTronIntentByIdDenyErrors, type PostOauthPaymentsTronIntentByIdDenyResponse, type PostOauthPaymentsTronIntentByIdDenyResponses, type PostOauthPlaySessionsConfirmData, type PostOauthPlaySessionsConfirmError, type PostOauthPlaySessionsConfirmErrors, type PostOauthPlaySessionsConfirmResponse, type PostOauthPlaySessionsConfirmResponses, type PostOauthPlaySessionsEndData, type PostOauthPlaySessionsEndError, type PostOauthPlaySessionsEndErrors, type PostOauthPlaySessionsEndResponse, type PostOauthPlaySessionsEndResponses, type PostOauthPlaySessionsHeartbeatData, type PostOauthPlaySessionsHeartbeatError, type PostOauthPlaySessionsHeartbeatErrors, type PostOauthPlaySessionsHeartbeatResponse, type PostOauthPlaySessionsHeartbeatResponses, type PostOauthRegisterData, type PostOauthRegisterError, type PostOauthRegisterErrors, type PostOauthRegisterResponse, type PostOauthRegisterResponses, type PostOauthRevokeData, type PostOauthRevokeError, type PostOauthRevokeErrors, type PostOauthRevokeResponses, type PostOauthTokenData, type PostOauthTokenError, type PostOauthTokenErrors, type PostOauthTokenResponse, type PostOauthTokenResponses, type PostPaymentsAppealsByAppealIdRoomAttachmentsData, type PostPaymentsAppealsByAppealIdRoomAttachmentsError, type PostPaymentsAppealsByAppealIdRoomAttachmentsErrors, type PostPaymentsAppealsByAppealIdRoomAttachmentsResponse, type PostPaymentsAppealsByAppealIdRoomAttachmentsResponses, type PostPaymentsAppealsByAppealIdRoomMessagesData, type PostPaymentsAppealsByAppealIdRoomMessagesError, type PostPaymentsAppealsByAppealIdRoomMessagesErrors, type PostPaymentsAppealsByAppealIdRoomMessagesResponse, type PostPaymentsAppealsByAppealIdRoomMessagesResponses, type PostPaymentsAppealsData, type PostPaymentsAppealsError, type PostPaymentsAppealsErrors, type PostPaymentsAppealsPotLegData, type PostPaymentsAppealsPotLegError, type PostPaymentsAppealsPotLegErrors, type PostPaymentsAppealsPotLegResponse, type PostPaymentsAppealsPotLegResponses, type PostPaymentsAppealsResponse, type PostPaymentsAppealsResponses, type PostPaymentsMeMoonpayBuyUrlData, type PostPaymentsMeMoonpayBuyUrlError, type PostPaymentsMeMoonpayBuyUrlErrors, type PostPaymentsMeMoonpayBuyUrlResponse, type PostPaymentsMeMoonpayBuyUrlResponses, type PostPaymentsMeMoonpaySellUrlData, type PostPaymentsMeMoonpaySellUrlError, type PostPaymentsMeMoonpaySellUrlErrors, type PostPaymentsMeMoonpaySellUrlResponse, type PostPaymentsMeMoonpaySellUrlResponses, type PostPaymentsMeTronCashoutsData, type PostPaymentsMeTronCashoutsError, type PostPaymentsMeTronCashoutsErrors, type PostPaymentsMeTronCashoutsResponse, type PostPaymentsMeTronCashoutsResponses, type PostPaymentsMeTronConnectData, type PostPaymentsMeTronConnectError, type PostPaymentsMeTronConnectErrors, type PostPaymentsMeTronConnectResponse, type PostPaymentsMeTronConnectResponses, type PostPaymentsMeTronDepositData, type PostPaymentsMeTronDepositError, type PostPaymentsMeTronDepositErrors, type PostPaymentsMeTronDepositResponse, type PostPaymentsMeTronDepositResponses, type PostPaymentsMeTronTransferChallengeData, type PostPaymentsMeTronTransferChallengeError, type PostPaymentsMeTronTransferChallengeErrors, type PostPaymentsMeTronTransferChallengeResponse, type PostPaymentsMeTronTransferChallengeResponses, type PostPaymentsMeTronTransferData, type PostPaymentsMeTronTransferError, type PostPaymentsMeTronTransferErrors, type PostPaymentsMeTronTransferResponse, type PostPaymentsMeTronTransferResponses, type PostUsersByIdFollowData, type PostUsersByIdFollowError, type PostUsersByIdFollowErrors, type PostUsersByIdFollowResponse, type PostUsersByIdFollowResponses, type PostUsersByIdFriendData, type PostUsersByIdFriendError, type PostUsersByIdFriendErrors, type PostUsersByIdFriendResponse, type PostUsersByIdFriendResponses, type PresenceStatusMode, type ProfileCounts, type ProfileRecentReview, type ProfileStats, type ProfileTopGame, type ProfileUpdate, type ProjectDescription, type PublicAppPage, type PublicAppPageStudio, type PublicBipPage, type PublicDeveloperApp, type PublicProfile, type PublicProfileDeveloper, type PublishDmKeyBody, type PurposeHeader, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyData, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyError, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyErrors, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponses, type PutMeDeveloperAppsByIdKeysByEnvData, type PutMeDeveloperAppsByIdKeysByEnvError, type PutMeDeveloperAppsByIdKeysByEnvErrors, type PutMeDeveloperAppsByIdKeysByEnvResponse, type PutMeDeveloperAppsByIdKeysByEnvResponses, type PutMeDmKeyData, type PutMeDmKeyError, type PutMeDmKeyErrors, type PutMeDmKeyResponse, type PutMeDmKeyResponses, type PutMeReviewsBySlugData, type PutMeReviewsBySlugError, type PutMeReviewsBySlugErrors, type PutMeReviewsBySlugResponse, type PutMeReviewsBySlugResponses, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiData, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiError, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiErrors, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponses, type PutPaymentsMeTronSecurityData, type PutPaymentsMeTronSecurityError, type PutPaymentsMeTronSecurityErrors, type PutPaymentsMeTronSecurityResponse, type PutPaymentsMeTronSecurityResponses, type RaiseLimitContextResponse, type ReactionAggregate, type ReactionEmoji, type ReactionMutationResponse, type ReferralBindRequest, type ReferralBindResponse, type ReferralCodeResponse, type ReferralEarningTotal, type ReferralOverview, type ReferralPreviewResponse, type ReferralReferrer, type RegenerateDeveloperAppKeyResponse, type RegenerateDeveloperAppWebhookSecretResponse, type Relationship, type RequestPasswordResetRequest, type RequestPasswordResetResponse, type ResetPasswordRequest, type ResetPasswordResponse, type Review, type ReviewAggregate, type ReviewAppPage, type ReviewAuthor, type ReviewBody, type ReviewComment, type ReviewCommentBody, type ReviewCommentListResponse, type ReviewDeveloperRequest, type ReviewDeveloperRequestResponse, type ReviewEligibilityReason, type ReviewListResponse, type ReviewReactionCounts, type ReviewRecommended, type ReviewReply, type ReviewReplyBody, type ReviewReplyResponse, type ReviewSort, type ReviewSummaryLabel, type ReviewVote, type ReviewerStats, type RotateProcessorTreasuryRequest, type SendMessageBody, type SendMessageText, type SendVerificationEmailRequest, type SendVerificationEmailResponse, type SetBipUpdateReactionRequest, type SetBipUpdateReactionResponse, type SetDefaultWithdrawLockRequest, type SetOperatorRequest, type SetProcessorWhitelistRequest, type SetReviewReactionRequest, type SetReviewReactionResponse, type SetWithdrawLockOverrideRequest, type SignInEmailRequest, type SignInEmailResponse, type SignOutResponse, type SignUpEmailRequest, type SignUpEmailResponse, type SocialAccount, type SocialActionAck, type SocialListResponse, type SubmitAppContentReportRequest, type SubmitAppContentReportResponse, type TeamName, type ThreadDescription, type ThreadDmKeyEntry, type ThreadLastMessagePreview, type ThreadListResponse, type ThreadLogoUrl, type ThreadParticipant, type ThreadSummary, type ThreadTitle, type TipReviewRequest, type TipReviewResponse, type TronBalanceResponse, type TronCapCents, type TronCashoutCreateRequest, type TronCashoutItem, type TronCashoutListResponse, type TronChargeCompleted, type TronChargeInsufficient, type TronChargeRedirect, type TronChargeRequest, type TronChargeResponse, type TronConnectOnboardingResponse, type TronDepositRequest, type TronDepositResponse, type TronDirectChargeCompleted, type TronDirectChargeInsufficient, type TronDirectChargeRedirect, type TronDirectChargeRequest, type TronDirectChargeResponse, type TronDistributeRequest, type TronDistributeResponse, type TronGameBalanceResponse, type TronLedgerEntry, type TronLedgerResponse, type TronPaymentAuthorizationItem, type TronPaymentIntentContext, type TronPaymentIntentResolveInsufficient, type TronPaymentIntentResolveRedirect, type TronPaymentIntentResolveResponse, type TronSecuritySetting, type TronTransferChallengeNotRequired, type TronTransferChallengeRequest, type TronTransferChallengeRequired, type TronTransferChallengeResponse, type TronTransferRequest, type TronTransferResponse, type UpdateAdminRoleRequest, type UpdateAppContentReportStatusRequest, type UpdateAppFeeConfigRequest, type UpdateAppPage, type UpdateAppPaymentAuthorization, type UpdateBipUpdateRequest, type UpdateDeveloperApp, type UpdateDeveloperProfile, type UpdateParticipantRoleBody, type UpdatePlatformFeesRequest, type UpdatePlatformFeesResponse, type UpdateThreadSettingsBody, type UpdateTronPaymentAuthorization, type UploadAttachmentResponse, type UpsertReviewReplyRequest, type UpsertReviewRequest, type UserSearchResponse, type UserSearchResult, type Username, type VerifyEmailResponse, type WalletAppLink, type WalletBalances, type WalletChainBalance, type WalletChainList, type WalletDelegationCaps, type WalletDelegationMode, type WalletDelegationStatus, type WalletItem, type WalletLabel, type WalletLabelUpdate, type WalletLabelUpdateResponse, type WalletListResponse, type WebPresenceHeartbeatAck, type WebsiteUrl, type XHandle, ZodError, z, zAcceptedCurrencies, zAcceptedNetworks, zActivityResponse, zActivityRow, zActivityRowAppeal, zActivityRowCreditTransferred, zActivityRowMaturedWithdrawal, zActivityRowMoonpayBuy, zActivityRowMoonpaySell, zActivityRowNftCharge, zActivityRowPayment, zActivityRowPaymentAutoclaim, zActivityRowPaymentWithdrawal, zActivityRowPayoutSent, zActivityRowPotLeg, zActivityRowReferralEarning, zActivityRowSolanaPotLeg, zActivityRowSolanaStake, zActivityRowTronCashout, zActivityRowTronDeposit, zActivityRowTronPot, zActivityRowTronTransfer, zActivityTronInvolvedUser, zAddAdminRequest, zAdminActivePlayer, zAdminActivePlayersResponse, zAdminAppContentReportItem, zAdminAppContentReportListResponse, zAdminAppPageBipStatusResponse, zAdminAppPageDiffField, zAdminAppPageDiffResponse, zAdminAppPageItem, zAdminAppPageListResponse, zAdminAppPageStatusResponse, zAdminAuditListItem, zAdminAuditListResponse, zAdminDeveloperAppItem, zAdminDeveloperListItem, zAdminDeveloperListResponse, zAdminMutationResponse, zAdminRole, zAdminRoleChangeResponse, zAdminTronCashoutItem, zAdminTronCashoutListResponse, zAdminTronCashoutRejectRequest, zAdminUser, zAdminUserBanRequest, zAdminUserBanResponse, zAdminUserListItem, zAdminUserListResponse, zAppContentReport, zAppContentReportCategory, zAppContentReportListResponse, zAppContentReportStatus, zAppFeeConfigResponse, zAppFriendListResponse, zAppPageAgeRating, zAppPageApprovedNotificationPayload, zAppPageBipState, zAppPageBipToggle, zAppPageCategories, zAppPageChapter, zAppPageChapters, zAppPageDraft, zAppPageGallery, zAppPageGalleryItem, zAppPageGalleryUploadResponse, zAppPageGameType, zAppPageLanguages, zAppPageLink, zAppPageLinks, zAppPagePaymentsMode, zAppPagePlatforms, zAppPageRejectedNotificationPayload, zAppPageReleaseStatus, zAppPageSlug, zAppPageTagline, zAppParticipantAcceptedNotificationPayload, zAppParticipantInviteNotificationPayload, zAppPaymentAuthorizationItem, zAppPlaytime, zAppealBlacklistAddRequest, zAppealBlacklistEntry, zAppealBlacklistListResponse, zAppealBlacklistRemoveRequest, zAppealBlacklistRemoveResponse, zAppealFileRequest, zAppealFileResponse, zAppealPotLegFileRequest, zAppealResolveRequest, zAppealResolveSignedResponse, zAppealRoomDetail, zAppealRoomMessage, zAppealRoomPostRequest, zAppealRoomPostResponse, zAppealRoomSenderRole, zAppealRoomSource, zAppealRoomStatus, zAppealRoomView, zAppealStatusRow, zAuthSession, zAuthUser, zBannerVariant, zBatchThreadDmKeysBody, zBatchThreadDmKeysResponse, zBearerToken, zBio, zBipEngagementResponse, zBipInterestCountResponse, zBipInterestRequest, zBipNowPlayableNotificationPayload, zBipSubscriptionRequest, zBipUpdate, zBipUpdateAttachment, zBipUpdateAttachments, zBipUpdateBody, zBipUpdateComment, zBipUpdateCommentBody, zBipUpdateCommentListResponse, zBipUpdateListResponse, zBipUpdateMediaUploadResponse, zBipUpdatePublishedNotificationPayload, zBipUpdateReactionCounts, zBipUpdateVote, zCalldataEnvelope, zConsentListResponse, zConsentRecordRequest, zConsentRow, zCreateBipUpdateCommentRequest, zCreateBipUpdateCommentResponse, zCreateBipUpdateRequest, zCreateDeveloperApiKey, zCreateDeveloperApiKeyResponse, zCreateDeveloperApp, zCreateDeveloperAppChain, zCreateDeveloperProductionRequest, zCreateDeveloperProductionRequestResponse, zCreateDeveloperRoleRequest, zCreateDirectThreadBody, zCreateGroupThreadBody, zCreateReviewCommentRequest, zCreateReviewCommentResponse, zCreateThreadResponse, zCreateWalletDelegation, zCreateWalletDelegationResponse, zDelegationSlippageBps, zDeleteAdminAdminsByIdPath, zDeleteAdminAdminsByIdResponse, zDeleteAdminPaymentsAppealBlacklistBody, zDeleteAdminPaymentsAppealBlacklistResponse, zDeleteBipUpdateCommentResponse, zDeleteBipUpdateResponse, zDeleteMeAvatarResponse, zDeleteMeBuildInPublicBySlugCommentsByCommentIdPath, zDeleteMeBuildInPublicBySlugCommentsByCommentIdResponse, zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPath, zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinPath, zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponse, zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse, zDeleteMeDeveloperAppsByAppIdPageBannerPath, zDeleteMeDeveloperAppsByAppIdPageBannerResponse, zDeleteMeDeveloperAppsByAppIdPageThumbnailPath, zDeleteMeDeveloperAppsByAppIdPageThumbnailResponse, zDeleteMeDeveloperAppsByAppIdPageThumbnailVideoPath, zDeleteMeDeveloperAppsByAppIdPageThumbnailVideoResponse, zDeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyPath, zDeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, zDeleteMeDeveloperAppsByIdLogoPath, zDeleteMeDeveloperAppsByIdLogoResponse, zDeleteMeDeveloperAppsByIdParticipantsByUserIdPath, zDeleteMeDeveloperAppsByIdParticipantsByUserIdResponse, zDeleteMeDeveloperAppsByIdPath, zDeleteMeDeveloperAppsByIdResponse, zDeleteMeDeveloperKeysByIdPath, zDeleteMeDeveloperKeysByIdResponse, zDeleteMeDeveloperProfileLogoResponse, zDeleteMeDeveloperRequestLogoResponse, zDeleteMeFriendRequestsByIdPath, zDeleteMeFriendRequestsByIdResponse, zDeleteMeOauthPaymentAuthorizationsByConsentIdResponse, zDeleteMeResponse, zDeleteMeReviewsBySlugCommentsByCommentIdPath, zDeleteMeReviewsBySlugCommentsByCommentIdResponse, zDeleteMeReviewsBySlugPath, zDeleteMeReviewsBySlugResponse, zDeleteMeThreadsByIdLogoPath, zDeleteMeThreadsByIdLogoResponse, zDeleteMeThreadsByIdMessagesByMsgIdPath, zDeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiPath, zDeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, zDeleteMeThreadsByIdMessagesByMsgIdResponse, zDeleteMeThreadsByIdParticipantsByUserIdPath, zDeleteMeThreadsByIdParticipantsByUserIdResponse, zDeleteMeThreadsByIdPath, zDeleteMeThreadsByIdPinPath, zDeleteMeThreadsByIdPinResponse, zDeleteMeThreadsByIdResponse, zDeleteMeWalletsByAddressDelegatePath, zDeleteMeWalletsByAddressDelegateResponse, zDeleteReviewCommentResponse, zDeleteUsersByIdFollowPath, zDeleteUsersByIdFollowResponse, zDeleteUsersByIdFriendPath, zDeleteUsersByIdFriendResponse, zDeleteWalletDelegationResponse, zDevAppealRow, zDevAppealsResponse, zDevPendingDepositRow, zDevPendingDepositsResponse, zDeveloperApiKeyItem, zDeveloperApiKeysResponse, zDeveloperAppAutoSweepRequest, zDeveloperAppAutoSweepResponse, zDeveloperAppBalanceItem, zDeveloperAppBalancesResponse, zDeveloperAppConsolidateResponse, zDeveloperAppEarningsBucket, zDeveloperAppEarningsResponse, zDeveloperAppIdResponse, zDeveloperAppItem, zDeveloperAppKeyItem, zDeveloperAppName, zDeveloperAppOverviewResponse, zDeveloperAppParticipant, zDeveloperAppParticipantsResponse, zDeveloperAppPayoutAddressItem, zDeveloperAppPlaytimeBucket, zDeveloperAppPlaytimeResponse, zDeveloperAppProvisionWalletResponse, zDeveloperAppTronBalanceResponse, zDeveloperAppWalletItem, zDeveloperAppWalletsResponse, zDeveloperAppWithdrawResponse, zDeveloperInvite, zDeveloperInvitesResponse, zDeveloperLogoUploadResponse, zDeveloperMeStatus, zDeveloperOkResponse, zDeveloperProductionRequestPayload, zDeveloperProfile, zDeveloperRequestItem, zDeveloperRequestSubject, zDeveloperRoleRequestPayload, zDeveloperTronBalanceSummaryResponse, zDirectThreadSummary, zDisplayName, zDmKeyAlgorithm, zDmKeyBackupOkResponse, zDmKeyBackupSetupBody, zDmKeyBackupStatusResponse, zDmKeyBackupUnlockBody, zDmKeyBackupUnlockResponse, zDmKeyResponse, zDmPublicKeyEntry, zDsarAccount, zDsarAuditEvent, zDsarConsent, zDsarExportResponse, zDsarMessage, zDsarRectifyRequest, zEarningsTimeseries, zEarningsTimeseriesBucket, zEditMessageBody, zEmbedOrigin, zErrorResponse, zFriendAcceptedNotificationPayload, zFriendListItem, zFriendListResponse, zFriendRequestAck, zFriendRequestDecision, zFriendRequestNotificationPayload, zGetAdminActivePlayersResponse, zGetAdminAdminsResponse, zGetAdminAppPagesByAppIdChangesPath, zGetAdminAppPagesByAppIdChangesResponse, zGetAdminAppPagesQuery, zGetAdminAppPagesResponse, zGetAdminAppsByAppIdFeeConfigPath, zGetAdminAppsByAppIdFeeConfigResponse, zGetAdminAuditQuery, zGetAdminAuditResponse, zGetAdminContentReportsQuery, zGetAdminContentReportsResponse, zGetAdminDeveloperRequestsQuery, zGetAdminDeveloperRequestsResponse, zGetAdminDevelopersResponse, zGetAdminPaymentsAppealBlacklistQuery, zGetAdminPaymentsAppealBlacklistResponse, zGetAdminPaymentsAppealsByAppealIdRoomPath, zGetAdminPaymentsAppealsByAppealIdRoomResponse, zGetAdminPaymentsAppealsQuery, zGetAdminPaymentsAppealsResponse, zGetAdminPlatformFeesResponse, zGetAdminTronCashoutsResponse, zGetAdminUsersQuery, zGetAdminUsersResponse, zGetAuthGetSessionResponse, zGetAuthVerifyEmailQuery, zGetAuthVerifyEmailResponse, zGetHealthResponse, zGetInventoryMetadataErc1155ByTokenIdMetadataJsonPath, zGetInventoryMetadataErc1155ByTokenIdMetadataJsonResponse, zGetInventoryMetadataErc1155ContractJsonResponse, zGetInventoryMetadataErc721ByFilePath, zGetInventoryMetadataErc721ByFileResponse, zGetInventoryMetadataErc721ContractJsonResponse, zGetMeAppsByAppIdPlaytimePath, zGetMeAppsByAppIdPlaytimeResponse, zGetMeBuildInPublicBySlugEngagementPath, zGetMeBuildInPublicBySlugEngagementResponse, zGetMeBuildInPublicBySlugReactionsPath, zGetMeBuildInPublicBySlugReactionsResponse, zGetMeConsentResponse, zGetMeDataResponse, zGetMeDeveloperAppsByAppIdBipUpdatesPath, zGetMeDeveloperAppsByAppIdBipUpdatesQuery, zGetMeDeveloperAppsByAppIdBipUpdatesResponse, zGetMeDeveloperAppsByAppIdInventoryCollectionsPath, zGetMeDeveloperAppsByAppIdInventoryCollectionsResponse, zGetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersPath, zGetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersResponse, zGetMeDeveloperAppsByAppIdInventoryItemsPath, zGetMeDeveloperAppsByAppIdInventoryItemsResponse, zGetMeDeveloperAppsByAppIdPagePath, zGetMeDeveloperAppsByAppIdPageResponse, zGetMeDeveloperAppsByAppIdReviewsPath, zGetMeDeveloperAppsByAppIdReviewsQuery, zGetMeDeveloperAppsByAppIdReviewsResponse, zGetMeDeveloperAppsByIdActivityPath, zGetMeDeveloperAppsByIdActivityQuery, zGetMeDeveloperAppsByIdActivityResponse, zGetMeDeveloperAppsByIdBalancesPath, zGetMeDeveloperAppsByIdBalancesResponse, zGetMeDeveloperAppsByIdEarningsPath, zGetMeDeveloperAppsByIdEarningsQuery, zGetMeDeveloperAppsByIdEarningsResponse, zGetMeDeveloperAppsByIdOverviewPath, zGetMeDeveloperAppsByIdOverviewResponse, zGetMeDeveloperAppsByIdParticipantsPath, zGetMeDeveloperAppsByIdParticipantsResponse, zGetMeDeveloperAppsByIdPlaytimePath, zGetMeDeveloperAppsByIdPlaytimeQuery, zGetMeDeveloperAppsByIdPlaytimeResponse, zGetMeDeveloperAppsByIdReportsPath, zGetMeDeveloperAppsByIdReportsQuery, zGetMeDeveloperAppsByIdReportsResponse, zGetMeDeveloperAppsByIdTronBalancePath, zGetMeDeveloperAppsByIdTronBalanceResponse, zGetMeDeveloperAppsByIdWalletsPath, zGetMeDeveloperAppsByIdWalletsResponse, zGetMeDeveloperInvitesResponse, zGetMeDeveloperKeysResponse, zGetMeDeveloperPaymentsAppealsQuery, zGetMeDeveloperPaymentsAppealsResponse, zGetMeDeveloperPaymentsPendingDepositsQuery, zGetMeDeveloperPaymentsPendingDepositsResponse, zGetMeDeveloperPaymentsTronBalanceResponse, zGetMeDeveloperResponse, zGetMeDmKeyBackupResponse, zGetMeDmKeyResponse, zGetMeEarningsTimeseriesQuery, zGetMeEarningsTimeseriesResponse, zGetMeFriendsResponse, zGetMeGiphySearchQuery, zGetMeGiphySearchResponse, zGetMeInventoryPermitsResponse, zGetMeInventoryResponse, zGetMeInventoryVaultPermitsResponse, zGetMeInventoryVaultedResponse, zGetMeNotificationsResponse, zGetMeOauthConnectionsResponse, zGetMeOauthPaymentAuthorizationsResponse, zGetMeOauthTronAuthorizationsResponse, zGetMePlaytimeResponse, zGetMePlaytimeTimeseriesQuery, zGetMePlaytimeTimeseriesResponse, zGetMeReferralPreviewQuery, zGetMeReferralPreviewResponse, zGetMeReferralResponse, zGetMeReviewsBySlugPath, zGetMeReviewsBySlugReactionsPath, zGetMeReviewsBySlugReactionsResponse, zGetMeReviewsBySlugResponse, zGetMeSocialsResponse, zGetMeStatsResponse, zGetMeThreadsByIdDmKeyPath, zGetMeThreadsByIdDmKeyResponse, zGetMeThreadsByIdMessagesPath, zGetMeThreadsByIdMessagesQuery, zGetMeThreadsByIdMessagesResponse, zGetMeThreadsResponse, zGetMeWalletsByAddressDelegatePath, zGetMeWalletsByAddressDelegateResponse, zGetMeWalletsResponse, zGetOauthAuthorizeQuery, zGetOauthConsentByRequestPath, zGetOauthConsentByRequestResponse, zGetOauthFriendsResponse, zGetOauthInventoryResponse, zGetOauthInventoryVaultedResponse, zGetOauthPaymentsIntentByIdResponse, zGetOauthPaymentsLimitsResponse, zGetOauthPaymentsNotInvitedByClientIdPath, zGetOauthPaymentsNotInvitedByClientIdResponse, zGetOauthPaymentsPriceQuery, zGetOauthPaymentsPriceResponse, zGetOauthPaymentsStatusByIdResponse, zGetOauthPaymentsTronBalanceResponse, zGetOauthPaymentsTronIntentByIdResponse, zGetOauthRaiseLimitContextQuery, zGetOauthRaiseLimitContextResponse, zGetPaymentsAppealsByAppealIdRoomPath, zGetPaymentsAppealsByAppealIdRoomResponse, zGetPaymentsChainsResponse, zGetPaymentsMeActivityGroupByGroupIdPath, zGetPaymentsMeActivityGroupByGroupIdResponse, zGetPaymentsMeActivityQuery, zGetPaymentsMeActivityResponse, zGetPaymentsMeMoonpayAvailabilityResponse, zGetPaymentsMeOutstandingQuery, zGetPaymentsMeOutstandingResponse, zGetPaymentsMeQuery, zGetPaymentsMeResponse, zGetPaymentsMeTronCashoutsResponse, zGetPaymentsMeTronLedgerQuery, zGetPaymentsMeTronLedgerResponse, zGetPaymentsMeTronResponse, zGetPaymentsMeTronSecurityResponse, zGetPaymentsRatesResponse, zGetPublicAppsBySlugPath, zGetPublicAppsBySlugResponse, zGetPublicAppsBySlugReviewsByReviewIdCommentsPath, zGetPublicAppsBySlugReviewsByReviewIdCommentsQuery, zGetPublicAppsBySlugReviewsByReviewIdCommentsResponse, zGetPublicAppsBySlugReviewsPath, zGetPublicAppsBySlugReviewsQuery, zGetPublicAppsBySlugReviewsResponse, zGetPublicBuildInPublicBySlugInterestPath, zGetPublicBuildInPublicBySlugInterestResponse, zGetPublicBuildInPublicBySlugPath, zGetPublicBuildInPublicBySlugResponse, zGetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsPath, zGetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsQuery, zGetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponse, zGetPublicBuildInPublicBySlugUpdatesPath, zGetPublicBuildInPublicBySlugUpdatesQuery, zGetPublicBuildInPublicBySlugUpdatesResponse, zGetPublicBuildInPublicQuery, zGetPublicBuildInPublicResponse, zGetPublicLibraryQuery, zGetPublicLibraryResponse, zGetSessionResponse, zGetUserinfoResponse, zGetUsersByHandlePath, zGetUsersByHandleResponse, zGetUsersSearchQuery, zGetUsersSearchResponse, zGetWellKnownOauthAuthorizationServerResponse, zGiphySearchResponse, zGiphySearchResult, zGitHubUrl, zGroupParticipant, zGroupThreadMutationResponse, zGroupThreadSummary, zHealthResponse, zHideAppPage, zInventoryCollectionListResponse, zInventoryCollectionSummary, zInventoryContractMetadata, zInventoryHolding, zInventoryItemHolder, zInventoryItemHoldersResponse, zInventoryItemListResponse, zInventoryItemRecord, zInventoryItemRegistrationInput, zInventoryItemRegistrationResult, zInventoryItemRegistrationSpec, zInventoryItemStats, zInventoryListResponse, zInventoryMetadataAttribute, zInventoryMintPermitCreateInput, zInventoryMintPermitRecord, zInventoryNftTransferQuoteRequest, zInventoryNftTransferQuoteResponse, zInventoryNftTransferRequest, zInventoryNftTransferResponse, zInventoryPendingPermit, zInventoryPendingPermitListResponse, zInventoryPendingVaultPermit, zInventoryPendingVaultPermitListResponse, zInventoryPermitRedeemResult, zInventoryRegistrationQuote, zInventoryRelayedVaultQuoteResponse, zInventoryRelayedVaultSubmitRequest, zInventoryRelayedVaultSubmitResponse, zInventorySignedVaultPermit, zInventorySupplyType, zInventoryTokenMetadata, zInventoryVaultCustody, zInventoryVaultCustodyListResponse, zInventoryVaultForceWithdrawResponse, zInventoryVaultPermitCreateInput, zInventoryVaultPermitRecord, zInventoryWithdrawPermitCreateInput, zInviteDeveloperAppParticipant, zInviteParticipantsBody, zLibraryItem, zLibraryListResponse, zLibrarySort, zListAdminsResponse, zListAppPaymentAuthorizationsResponse, zListAppealsResponse, zListDeveloperRequestsResponse, zListOauthConnectionsResponse, zListTronPaymentAuthorizationsResponse, zMeStats, zMessageAttachment, zMessageAttachmentKind, zMessageBody, zMessageEnvelope, zMessageItem, zMessageLinkPreview, zMessageReplyPreview, zMessageTransactionNftTransfer, zMessageTransactionTronTransfer, zMessagesPageResponse, zMessagingOkResponse, zMintRequestInput, zMintRequestResult, zMoonpayAvailabilityResponse, zMoonpayBuyUrlRequest, zMoonpayBuyUrlResponse, zMoonpaySellUrlRequest, zMoonpaySellUrlResponse, zMyBipUpdateReaction, zMyBipUpdateReactionsResponse, zMyReviewReaction, zMyReviewReactionsResponse, zMyReviewResponse, zNotificationItem, zNotificationListResponse, zNotificationUpdate, zOauthAuthorizationServerMetadata, zOauthAuthorizeConfirm, zOauthAuthorizeConfirmResponse, zOauthClientId, zOauthClientRegistrationError, zOauthClientRegistrationRequest, zOauthClientRegistrationResponse, zOauthClientSecret, zOauthConnectionItem, zOauthConsentContext, zOauthErrorResponse, zOauthNotInvitedContext, zOauthPaymentCancelPotRequest, zOauthPaymentCancelPotResponse, zOauthPaymentChargeCompleted, zOauthPaymentChargeIdempotencyMismatch, zOauthPaymentChargeLimitExceeded, zOauthPaymentChargeRedirect, zOauthPaymentChargeRequest, zOauthPaymentChargeResponse, zOauthPaymentDistributeRequest, zOauthPaymentDistributeResponse, zOauthPaymentIntentComplete, zOauthPaymentIntentCompleteOffline, zOauthPaymentIntentCompleteSigned, zOauthPaymentIntentContext, zOauthPaymentIntentResolveResponse, zOauthPaymentIntentSignResponse, zOauthPaymentIntentSolanaCompleteRequest, zOauthPaymentIntentSolanaPrepareResponse, zOauthPaymentIntentStatus, zOauthPaymentLimitsResponse, zOauthPaymentMonthlyLimitCents, zOauthPaymentPayoutDirect, zOauthPaymentPayoutPull, zOauthPaymentPayoutRequest, zOauthPaymentPayoutResponse, zOauthPaymentPerTxLimitCents, zOauthPaymentPriceResponse, zOauthRedirectUri, zOauthRequestHandle, zOauthRevokeRequest, zOauthScopeString, zOauthState, zOauthTokenAuthorizationCodeRequest, zOauthTokenClientCredentialsRequest, zOauthTokenRefreshTokenRequest, zOauthTokenRequest, zOauthTokenResponse, zOauthUserInfoResponse, zOnlineStatus, zOutstandingByToken, zOutstandingResponse, zOwnReview, zParticipantRole, zPatchAdminAdminsByIdBody, zPatchAdminAdminsByIdPath, zPatchAdminAdminsByIdResponse, zPatchAdminAppsByAppIdFeeConfigBody, zPatchAdminAppsByAppIdFeeConfigPath, zPatchAdminAppsByAppIdFeeConfigResponse, zPatchAdminContentReportsByReportIdBody, zPatchAdminContentReportsByReportIdPath, zPatchAdminContentReportsByReportIdResponse, zPatchAdminDeveloperRequestsByIdBody, zPatchAdminDeveloperRequestsByIdPath, zPatchAdminDeveloperRequestsByIdResponse, zPatchAdminPlatformFeesBody, zPatchAdminPlatformFeesResponse, zPatchAdminUsersByIdBody, zPatchAdminUsersByIdPath, zPatchAdminUsersByIdResponse, zPatchMeBody, zPatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdBody, zPatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPath, zPatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse, zPatchMeDeveloperAppsByAppIdPageBipBody, zPatchMeDeveloperAppsByAppIdPageBipPath, zPatchMeDeveloperAppsByAppIdPageBipResponse, zPatchMeDeveloperAppsByAppIdPageBody, zPatchMeDeveloperAppsByAppIdPagePath, zPatchMeDeveloperAppsByAppIdPageResponse, zPatchMeDeveloperAppsByIdBody, zPatchMeDeveloperAppsByIdPath, zPatchMeDeveloperAppsByIdReportsByReportIdBody, zPatchMeDeveloperAppsByIdReportsByReportIdPath, zPatchMeDeveloperAppsByIdReportsByReportIdResponse, zPatchMeDeveloperAppsByIdResponse, zPatchMeDeveloperAppsByIdWalletsByChainAutoSweepBody, zPatchMeDeveloperAppsByIdWalletsByChainAutoSweepPath, zPatchMeDeveloperAppsByIdWalletsByChainAutoSweepResponse, zPatchMeDeveloperProfileBody, zPatchMeDeveloperProfileResponse, zPatchMeFriendRequestsByIdBody, zPatchMeFriendRequestsByIdPath, zPatchMeFriendRequestsByIdResponse, zPatchMeNotificationsByIdBody, zPatchMeNotificationsByIdPath, zPatchMeNotificationsByIdResponse, zPatchMeOauthPaymentAuthorizationsByConsentIdBody, zPatchMeOauthPaymentAuthorizationsByConsentIdResponse, zPatchMeOauthTronAuthorizationsByConsentIdBody, zPatchMeOauthTronAuthorizationsByConsentIdResponse, zPatchMeProfileBody, zPatchMeProfileResponse, zPatchMeResponse, zPatchMeThreadsByIdBody, zPatchMeThreadsByIdMessagesByMsgIdBody, zPatchMeThreadsByIdMessagesByMsgIdPath, zPatchMeThreadsByIdMessagesByMsgIdResponse, zPatchMeThreadsByIdParticipantsByUserIdRoleBody, zPatchMeThreadsByIdParticipantsByUserIdRolePath, zPatchMeThreadsByIdParticipantsByUserIdRoleResponse, zPatchMeThreadsByIdPath, zPatchMeThreadsByIdResponse, zPatchMeWalletsByAddressBody, zPatchMeWalletsByAddressPath, zPatchMeWalletsByAddressResponse, zPauseRequest, zPaymentChain, zPaymentChainsResponse, zPaymentHistoryResponse, zPaymentHistoryRow, zPaymentMetadata, zPaymentNetwork, zPaymentRatesResponse, zPinThreadResponse, zPkceCodeChallenge, zPkceCodeVerifier, zPlatformCurrency, zPlatformEnvironment, zPlatformFeeEnvelope, zPlatformFeesResponse, zPlaySessionAppId, zPlaySessionConfirmRequest, zPlaySessionConfirmResponse, zPlaySessionEndRequest, zPlaySessionEndResponse, zPlaySessionHeartbeatRequest, zPlaySessionHeartbeatResponse, zPlaySessionId, zPlaySessionOpenRequest, zPlaySessionOpenResponse, zPlaySessionUserId, zPlaytimeAppEntry, zPlaytimeOverview, zPlaytimeTimeseries, zPlaytimeTimeseriesBucket, zPostAdminAdminsBody, zPostAdminAdminsResponse, zPostAdminAppPagesByAppIdHideBipBody, zPostAdminAppPagesByAppIdHideBipPath, zPostAdminAppPagesByAppIdHideBipResponse, zPostAdminAppPagesByAppIdHideBody, zPostAdminAppPagesByAppIdHidePath, zPostAdminAppPagesByAppIdHideResponse, zPostAdminAppPagesByAppIdReviewBipBody, zPostAdminAppPagesByAppIdReviewBipPath, zPostAdminAppPagesByAppIdReviewBipResponse, zPostAdminAppPagesByAppIdReviewBody, zPostAdminAppPagesByAppIdReviewChangesBody, zPostAdminAppPagesByAppIdReviewChangesPath, zPostAdminAppPagesByAppIdReviewChangesResponse, zPostAdminAppPagesByAppIdReviewPath, zPostAdminAppPagesByAppIdReviewResponse, zPostAdminAppPagesByAppIdUnhideBipPath, zPostAdminAppPagesByAppIdUnhideBipResponse, zPostAdminAppPagesByAppIdUnhidePath, zPostAdminAppPagesByAppIdUnhideResponse, zPostAdminInventoryVaultCustodyByCustodyIdForceWithdrawPath, zPostAdminInventoryVaultCustodyByCustodyIdForceWithdrawResponse, zPostAdminPaymentsAppealBlacklistBody, zPostAdminPaymentsAppealBlacklistResponse, zPostAdminPaymentsAppealsByAppealIdResolveBody, zPostAdminPaymentsAppealsByAppealIdResolvePath, zPostAdminPaymentsAppealsByAppealIdResolveResponse, zPostAdminPaymentsAppealsByAppealIdRoomAttachmentsBody, zPostAdminPaymentsAppealsByAppealIdRoomAttachmentsPath, zPostAdminPaymentsAppealsByAppealIdRoomAttachmentsResponse, zPostAdminPaymentsAppealsByAppealIdRoomMessagesBody, zPostAdminPaymentsAppealsByAppealIdRoomMessagesPath, zPostAdminPaymentsAppealsByAppealIdRoomMessagesResponse, zPostAdminPaymentsProcessorsByProcessorIdTreasuryBody, zPostAdminPaymentsProcessorsByProcessorIdTreasuryPath, zPostAdminPaymentsProcessorsByProcessorIdTreasuryResponse, zPostAdminPaymentsProcessorsWhitelistBody, zPostAdminPaymentsProcessorsWhitelistResponse, zPostAdminPaymentsVaultsByVaultAddressOperatorBody, zPostAdminPaymentsVaultsByVaultAddressOperatorPath, zPostAdminPaymentsVaultsByVaultAddressOperatorResponse, zPostAdminPaymentsVaultsByVaultAddressPauseBody, zPostAdminPaymentsVaultsByVaultAddressPausePath, zPostAdminPaymentsVaultsByVaultAddressPauseResponse, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultBody, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultPath, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultResponse, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideBody, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockOverridePath, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideResponse, zPostAdminTronCashoutsByIdApproveResponse, zPostAdminTronCashoutsByIdRejectBody, zPostAdminTronCashoutsByIdRejectResponse, zPostAuthRequestPasswordResetBody, zPostAuthRequestPasswordResetResponse, zPostAuthResetPasswordBody, zPostAuthResetPasswordResponse, zPostAuthSendVerificationEmailBody, zPostAuthSendVerificationEmailResponse, zPostAuthSignInEmailBody, zPostAuthSignInEmailResponse, zPostAuthSignOutResponse, zPostAuthSignUpEmailBody, zPostAuthSignUpEmailResponse, zPostMeAppsByAppIdReportBody, zPostMeAppsByAppIdReportPath, zPostMeAppsByAppIdReportResponse, zPostMeAvatarBody, zPostMeAvatarResponse, zPostMeBuildInPublicBySlugCommentsByUpdateIdBody, zPostMeBuildInPublicBySlugCommentsByUpdateIdPath, zPostMeBuildInPublicBySlugCommentsByUpdateIdResponse, zPostMeBuildInPublicBySlugInterestBody, zPostMeBuildInPublicBySlugInterestPath, zPostMeBuildInPublicBySlugInterestResponse, zPostMeBuildInPublicBySlugReactionsByUpdateIdBody, zPostMeBuildInPublicBySlugReactionsByUpdateIdPath, zPostMeBuildInPublicBySlugReactionsByUpdateIdResponse, zPostMeBuildInPublicBySlugSubscriptionBody, zPostMeBuildInPublicBySlugSubscriptionPath, zPostMeBuildInPublicBySlugSubscriptionResponse, zPostMeConsentBody, zPostMeConsentResponse, zPostMeDeveloperAppsBody, zPostMeDeveloperAppsByAppIdBipUpdatesBody, zPostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinPath, zPostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponse, zPostMeDeveloperAppsByAppIdBipUpdatesMediaBody, zPostMeDeveloperAppsByAppIdBipUpdatesMediaPath, zPostMeDeveloperAppsByAppIdBipUpdatesMediaResponse, zPostMeDeveloperAppsByAppIdBipUpdatesPath, zPostMeDeveloperAppsByAppIdBipUpdatesResponse, zPostMeDeveloperAppsByAppIdInventoryItemsBody, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerBody, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerPath, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerResponse, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageBody, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdImagePath, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageResponse, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsBody, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsPath, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsResponse, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsBody, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsPath, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsResponse, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsBody, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsPath, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsResponse, zPostMeDeveloperAppsByAppIdInventoryItemsPath, zPostMeDeveloperAppsByAppIdInventoryItemsQuoteBody, zPostMeDeveloperAppsByAppIdInventoryItemsQuotePath, zPostMeDeveloperAppsByAppIdInventoryItemsQuoteResponse, zPostMeDeveloperAppsByAppIdInventoryItemsResponse, zPostMeDeveloperAppsByAppIdPageBannerBody, zPostMeDeveloperAppsByAppIdPageBannerPath, zPostMeDeveloperAppsByAppIdPageBannerResponse, zPostMeDeveloperAppsByAppIdPageBipSubmitForReviewPath, zPostMeDeveloperAppsByAppIdPageBipSubmitForReviewResponse, zPostMeDeveloperAppsByAppIdPageBipUnpublishPath, zPostMeDeveloperAppsByAppIdPageBipUnpublishResponse, zPostMeDeveloperAppsByAppIdPageGalleryBody, zPostMeDeveloperAppsByAppIdPageGalleryPath, zPostMeDeveloperAppsByAppIdPageGalleryResponse, zPostMeDeveloperAppsByAppIdPageSubmitForReviewPath, zPostMeDeveloperAppsByAppIdPageSubmitForReviewResponse, zPostMeDeveloperAppsByAppIdPageThumbnailBody, zPostMeDeveloperAppsByAppIdPageThumbnailPath, zPostMeDeveloperAppsByAppIdPageThumbnailResponse, zPostMeDeveloperAppsByAppIdPageThumbnailVideoBody, zPostMeDeveloperAppsByAppIdPageThumbnailVideoPath, zPostMeDeveloperAppsByAppIdPageThumbnailVideoResponse, zPostMeDeveloperAppsByAppIdPageUnpublishPath, zPostMeDeveloperAppsByAppIdPageUnpublishResponse, zPostMeDeveloperAppsByIdLogoBody, zPostMeDeveloperAppsByIdLogoPath, zPostMeDeveloperAppsByIdLogoResponse, zPostMeDeveloperAppsByIdParticipantsBody, zPostMeDeveloperAppsByIdParticipantsPath, zPostMeDeveloperAppsByIdParticipantsResponse, zPostMeDeveloperAppsByIdPaymentStatusWebhookSecretPath, zPostMeDeveloperAppsByIdPaymentStatusWebhookSecretResponse, zPostMeDeveloperAppsByIdProductionRequestBody, zPostMeDeveloperAppsByIdProductionRequestPath, zPostMeDeveloperAppsByIdProductionRequestResponse, zPostMeDeveloperAppsByIdWalletsByChainConsolidatePath, zPostMeDeveloperAppsByIdWalletsByChainConsolidateResponse, zPostMeDeveloperAppsByIdWalletsByChainProvisionPath, zPostMeDeveloperAppsByIdWalletsByChainProvisionResponse, zPostMeDeveloperAppsByIdWalletsByChainWithdrawPath, zPostMeDeveloperAppsByIdWalletsByChainWithdrawQuery, zPostMeDeveloperAppsByIdWalletsByChainWithdrawResponse, zPostMeDeveloperAppsResponse, zPostMeDeveloperInvitesByAppIdAcceptPath, zPostMeDeveloperInvitesByAppIdAcceptResponse, zPostMeDeveloperInvitesByAppIdDeclinePath, zPostMeDeveloperInvitesByAppIdDeclineResponse, zPostMeDeveloperKeysBody, zPostMeDeveloperKeysResponse, zPostMeDeveloperProfileLogoBody, zPostMeDeveloperProfileLogoResponse, zPostMeDeveloperRequestBody, zPostMeDeveloperRequestLogoBody, zPostMeDeveloperRequestLogoResponse, zPostMeDeveloperRequestResponse, zPostMeDmKeyBackupBody, zPostMeDmKeyBackupResponse, zPostMeDmKeyBackupUnlockBody, zPostMeDmKeyBackupUnlockResponse, zPostMeInventoryNftTransfersBody, zPostMeInventoryNftTransfersQuoteBody, zPostMeInventoryNftTransfersQuoteResponse, zPostMeInventoryNftTransfersResponse, zPostMeInventoryPermitsByPermitIdRedeemPath, zPostMeInventoryPermitsByPermitIdRedeemResponse, zPostMeInventoryVaultPermitsByPermitIdRelayedQuotePath, zPostMeInventoryVaultPermitsByPermitIdRelayedQuoteResponse, zPostMeInventoryVaultPermitsByPermitIdRelayedSubmitBody, zPostMeInventoryVaultPermitsByPermitIdRelayedSubmitPath, zPostMeInventoryVaultPermitsByPermitIdRelayedSubmitResponse, zPostMeInventoryVaultPermitsByPermitIdSignPath, zPostMeInventoryVaultPermitsByPermitIdSignResponse, zPostMeNotificationsMarkAllReadResponse, zPostMePlaySessionsOpenBody, zPostMePlaySessionsOpenResponse, zPostMePresenceHeartbeatResponse, zPostMeReferralBindBody, zPostMeReferralBindResponse, zPostMeReferralCodeBody, zPostMeReferralCodeResponse, zPostMeReviewsBySlugCommentsByReviewIdBody, zPostMeReviewsBySlugCommentsByReviewIdPath, zPostMeReviewsBySlugCommentsByReviewIdResponse, zPostMeReviewsBySlugReactionsByReviewIdBody, zPostMeReviewsBySlugReactionsByReviewIdPath, zPostMeReviewsBySlugReactionsByReviewIdResponse, zPostMeReviewsBySlugTipsByReviewIdBody, zPostMeReviewsBySlugTipsByReviewIdPath, zPostMeReviewsBySlugTipsByReviewIdResponse, zPostMeThreadsBody, zPostMeThreadsByIdAttachmentsBody, zPostMeThreadsByIdAttachmentsPath, zPostMeThreadsByIdAttachmentsResponse, zPostMeThreadsByIdHidePath, zPostMeThreadsByIdHideResponse, zPostMeThreadsByIdInviteBody, zPostMeThreadsByIdInvitePath, zPostMeThreadsByIdInviteResponse, zPostMeThreadsByIdLeavePath, zPostMeThreadsByIdLeaveResponse, zPostMeThreadsByIdLogoBody, zPostMeThreadsByIdLogoPath, zPostMeThreadsByIdLogoResponse, zPostMeThreadsByIdMessagesBody, zPostMeThreadsByIdMessagesPath, zPostMeThreadsByIdMessagesResponse, zPostMeThreadsByIdPinPath, zPostMeThreadsByIdPinResponse, zPostMeThreadsByIdReadPath, zPostMeThreadsByIdReadResponse, zPostMeThreadsDmKeysBody, zPostMeThreadsDmKeysResponse, zPostMeThreadsResponse, zPostMeWalletsByAddressDelegateBody, zPostMeWalletsByAddressDelegatePath, zPostMeWalletsByAddressDelegateResponse, zPostOauthAuthorizeConfirmBody, zPostOauthAuthorizeConfirmResponse, zPostOauthInventoryMintBody, zPostOauthInventoryMintResponse, zPostOauthPaymentsCancelPotBody, zPostOauthPaymentsCancelPotResponse, zPostOauthPaymentsChargeBody, zPostOauthPaymentsChargeResponse, zPostOauthPaymentsDistributeBody, zPostOauthPaymentsDistributeResponse, zPostOauthPaymentsIntentByIdCompleteBody, zPostOauthPaymentsIntentByIdCompleteResponse, zPostOauthPaymentsIntentByIdDenyResponse, zPostOauthPaymentsIntentByIdSignResponse, zPostOauthPaymentsIntentByIdSolanaCompleteBody, zPostOauthPaymentsIntentByIdSolanaCompleteResponse, zPostOauthPaymentsIntentByIdSolanaPrepareResponse, zPostOauthPaymentsPayoutBody, zPostOauthPaymentsPayoutResponse, zPostOauthPaymentsTronChargeBody, zPostOauthPaymentsTronChargeDirectBody, zPostOauthPaymentsTronChargeDirectResponse, zPostOauthPaymentsTronChargeResponse, zPostOauthPaymentsTronDistributeBody, zPostOauthPaymentsTronDistributeResponse, zPostOauthPaymentsTronIntentByIdCompleteResponse, zPostOauthPaymentsTronIntentByIdDenyResponse, zPostOauthPlaySessionsConfirmBody, zPostOauthPlaySessionsConfirmResponse, zPostOauthPlaySessionsEndBody, zPostOauthPlaySessionsEndResponse, zPostOauthPlaySessionsHeartbeatBody, zPostOauthPlaySessionsHeartbeatResponse, zPostOauthRegisterBody, zPostOauthRegisterResponse, zPostOauthRevokeBody, zPostOauthTokenBody, zPostOauthTokenResponse, zPostPaymentsAppealsBody, zPostPaymentsAppealsByAppealIdRoomAttachmentsBody, zPostPaymentsAppealsByAppealIdRoomAttachmentsPath, zPostPaymentsAppealsByAppealIdRoomAttachmentsResponse, zPostPaymentsAppealsByAppealIdRoomMessagesBody, zPostPaymentsAppealsByAppealIdRoomMessagesPath, zPostPaymentsAppealsByAppealIdRoomMessagesResponse, zPostPaymentsAppealsPotLegBody, zPostPaymentsAppealsPotLegResponse, zPostPaymentsAppealsResponse, zPostPaymentsMeMoonpayBuyUrlBody, zPostPaymentsMeMoonpayBuyUrlResponse, zPostPaymentsMeMoonpaySellUrlBody, zPostPaymentsMeMoonpaySellUrlResponse, zPostPaymentsMeTronCashoutsBody, zPostPaymentsMeTronCashoutsResponse, zPostPaymentsMeTronConnectResponse, zPostPaymentsMeTronDepositBody, zPostPaymentsMeTronDepositResponse, zPostPaymentsMeTronTransferBody, zPostPaymentsMeTronTransferChallengeBody, zPostPaymentsMeTronTransferChallengeResponse, zPostPaymentsMeTronTransferResponse, zPostUsersByIdFollowPath, zPostUsersByIdFollowResponse, zPostUsersByIdFriendPath, zPostUsersByIdFriendResponse, zPresenceStatusMode, zProfileCounts, zProfileRecentReview, zProfileStats, zProfileTopGame, zProfileUpdate, zProjectDescription, zPublicAppPage, zPublicAppPageStudio, zPublicBipPage, zPublicDeveloperApp, zPublicProfile, zPublicProfileDeveloper, zPublishDmKeyBody, zPurposeHeader, zPutMeDeveloperAppsByAppIdReviewsByReviewIdReplyBody, zPutMeDeveloperAppsByAppIdReviewsByReviewIdReplyPath, zPutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, zPutMeDeveloperAppsByIdKeysByEnvPath, zPutMeDeveloperAppsByIdKeysByEnvResponse, zPutMeDmKeyBody, zPutMeDmKeyResponse, zPutMeReviewsBySlugBody, zPutMeReviewsBySlugPath, zPutMeReviewsBySlugResponse, zPutMeThreadsByIdMessagesByMsgIdReactionsByEmojiPath, zPutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, zPutPaymentsMeTronSecurityBody, zPutPaymentsMeTronSecurityResponse, zRaiseLimitContextResponse, zReactionAggregate, zReactionEmoji, zReactionMutationResponse, zReferralBindRequest, zReferralBindResponse, zReferralCodeResponse, zReferralEarningTotal, zReferralOverview, zReferralPreviewResponse, zReferralReferrer, zRegenerateDeveloperAppKeyResponse, zRegenerateDeveloperAppWebhookSecretResponse, zRelationship, zRequestPasswordResetRequest, zRequestPasswordResetResponse, zResetPasswordRequest, zResetPasswordResponse, zReview, zReviewAggregate, zReviewAppPage, zReviewAuthor, zReviewBody, zReviewComment, zReviewCommentBody, zReviewCommentListResponse, zReviewDeveloperRequest, zReviewDeveloperRequestResponse, zReviewEligibilityReason, zReviewListResponse, zReviewReactionCounts, zReviewRecommended, zReviewReply, zReviewReplyBody, zReviewReplyResponse, zReviewSort, zReviewSummaryLabel, zReviewVote, zReviewerStats, zRotateProcessorTreasuryRequest, zSendMessageBody, zSendMessageText, zSendVerificationEmailRequest, zSendVerificationEmailResponse, zSetBipUpdateReactionRequest, zSetBipUpdateReactionResponse, zSetDefaultWithdrawLockRequest, zSetOperatorRequest, zSetProcessorWhitelistRequest, zSetReviewReactionRequest, zSetReviewReactionResponse, zSetWithdrawLockOverrideRequest, zSignInEmailRequest, zSignInEmailResponse, zSignOutResponse, zSignUpEmailRequest, zSignUpEmailResponse, zSocialAccount, zSocialActionAck, zSocialListResponse, zSubmitAppContentReportRequest, zSubmitAppContentReportResponse, zTeamName, zThreadDescription, zThreadDmKeyEntry, zThreadLastMessagePreview, zThreadListResponse, zThreadLogoUrl, zThreadParticipant, zThreadSummary, zThreadTitle, zTipReviewRequest, zTipReviewResponse, zTronBalanceResponse, zTronCapCents, zTronCashoutCreateRequest, zTronCashoutItem, zTronCashoutListResponse, zTronChargeCompleted, zTronChargeInsufficient, zTronChargeRedirect, zTronChargeRequest, zTronChargeResponse, zTronConnectOnboardingResponse, zTronDepositRequest, zTronDepositResponse, zTronDirectChargeCompleted, zTronDirectChargeInsufficient, zTronDirectChargeRedirect, zTronDirectChargeRequest, zTronDirectChargeResponse, zTronDistributeRequest, zTronDistributeResponse, zTronGameBalanceResponse, zTronLedgerEntry, zTronLedgerResponse, zTronPaymentAuthorizationItem, zTronPaymentIntentContext, zTronPaymentIntentResolveInsufficient, zTronPaymentIntentResolveRedirect, zTronPaymentIntentResolveResponse, zTronSecuritySetting, zTronTransferChallengeNotRequired, zTronTransferChallengeRequest, zTronTransferChallengeRequired, zTronTransferChallengeResponse, zTronTransferRequest, zTronTransferResponse, zUpdateAdminRoleRequest, zUpdateAppContentReportStatusRequest, zUpdateAppFeeConfigRequest, zUpdateAppPage, zUpdateAppPaymentAuthorization, zUpdateBipUpdateRequest, zUpdateDeveloperApp, zUpdateDeveloperProfile, zUpdateParticipantRoleBody, zUpdatePlatformFeesRequest, zUpdatePlatformFeesResponse, zUpdateThreadSettingsBody, zUpdateTronPaymentAuthorization, zUploadAttachmentResponse, zUpsertReviewReplyRequest, zUpsertReviewRequest, zUserSearchResponse, zUserSearchResult, zUsername, zVerifyEmailResponse, zWalletAppLink, zWalletBalances, zWalletChainBalance, zWalletChainList, zWalletDelegationCaps, zWalletDelegationMode, zWalletDelegationStatus, zWalletItem, zWalletLabel, zWalletLabelUpdate, zWalletLabelUpdateResponse, zWalletListResponse, zWebPresenceHeartbeatAck, zWebsiteUrl, zXHandle };