@openfort/openfort-node 0.7.5 → 0.7.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -689,7 +689,7 @@ declare class ValidationError extends Error {
689
689
  }
690
690
 
691
691
  /**
692
- * Generated by orval v7.18.0 🍺
692
+ * Generated by orval v7.20.0 🍺
693
693
  * Do not edit manually.
694
694
  * Openfort API
695
695
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
@@ -2388,69 +2388,6 @@ interface ForwarderContractDeleteResponse {
2388
2388
  object: EntityTypeFORWARDERCONTRACT;
2389
2389
  deleted: boolean;
2390
2390
  }
2391
- type TradeType = typeof TradeType[keyof typeof TradeType];
2392
- declare const TradeType: {
2393
- readonly EXACT_INPUT: "EXACT_INPUT";
2394
- readonly EXACT_OUTPUT: "EXACT_OUTPUT";
2395
- };
2396
- interface CreateExchangeRequest {
2397
- /** The chain ID. Must be a [supported chain](/development/chains). */
2398
- chainId: number;
2399
- /** The public address that will sign and submit the transaction. If you provide one of a `pla_...` or `acc_...` it will be converted to the corresponding address. */
2400
- fromAddress: string;
2401
- /** Token address or 'native' to sell */
2402
- tokenInAddress: string;
2403
- /** Token address or 'native' to buy */
2404
- tokenOutAddress: string;
2405
- /** Amount in the smallest unit of the token */
2406
- amount: string;
2407
- /** The type of trade, exact input or exact output */
2408
- tradeType: TradeType;
2409
- /** The percentage of slippage tolerance. Default = 0.1. Max = 50. Min = 0 */
2410
- slippagePercent?: number;
2411
- /** Maximum hops allowed in optimal route. Default is 2 */
2412
- maxHops?: number;
2413
- /** Latest time swap can execute. Default is 15 minutes */
2414
- deadline?: number;
2415
- /** ID of the Policy that defines the gas sponsorship strategy (starts with `pol_`). If no Policy is provided, the own Account native token funds will be used to pay for gas. */
2416
- policy?: string;
2417
- /** Set to `true` to indicate that the transactionIntent request should be resolved as soon as possible, after the transactionIntent is created and simulated and before it arrives on chain. */
2418
- optimistic?: boolean;
2419
- }
2420
- /**
2421
- * Type representing a token
2422
- */
2423
- interface Token {
2424
- name?: string;
2425
- symbol?: string;
2426
- decimals: number;
2427
- address: string;
2428
- chainId: number;
2429
- }
2430
- /**
2431
- * Interface representing a token amount
2432
- */
2433
- interface Amount {
2434
- value: string;
2435
- token: Token;
2436
- }
2437
- /**
2438
- * Type representing the fees returned in the quote
2439
- */
2440
- interface Fee {
2441
- amount: Amount;
2442
- basisPoints: number;
2443
- recipient: string;
2444
- }
2445
- interface QuoteExchangeResult {
2446
- amount: Amount;
2447
- amountWithMaxSlippage: Amount;
2448
- slippage: number;
2449
- fees: Fee[];
2450
- estimatedTXGasFee: string;
2451
- estimatedTXGasFeeUSD: string;
2452
- estimatedTXGasFeeToken?: string;
2453
- }
2454
2391
  type APITopicBALANCECONTRACT = typeof APITopicBALANCECONTRACT[keyof typeof APITopicBALANCECONTRACT];
2455
2392
  declare const APITopicBALANCECONTRACT: {
2456
2393
  readonly balancecontract: "balance.contract";
@@ -2895,6 +2832,16 @@ interface UserListQueries {
2895
2832
  /** Filter by wallet client type (for SIWE accounts). */
2896
2833
  walletClientType?: string;
2897
2834
  }
2835
+ type EntityTypeWALLET = typeof EntityTypeWALLET[keyof typeof EntityTypeWALLET];
2836
+ declare const EntityTypeWALLET: {
2837
+ readonly wallet: "wallet";
2838
+ };
2839
+ interface BaseEntityResponseEntityTypeWALLET {
2840
+ id: string;
2841
+ object: EntityTypeWALLET;
2842
+ createdAt: number;
2843
+ }
2844
+ type WalletResponse = BaseEntityResponseEntityTypeWALLET;
2898
2845
  interface BaseDeleteEntityResponseEntityTypePLAYER {
2899
2846
  id: string;
2900
2847
  object: EntityTypePLAYER;
@@ -2930,7 +2877,6 @@ declare const PregenerateAccountResponseCustody: {
2930
2877
  };
2931
2878
  interface PregenerateAccountResponse {
2932
2879
  id: string;
2933
- user: string;
2934
2880
  wallet: string;
2935
2881
  accountType: string;
2936
2882
  address: string;
@@ -2947,6 +2893,8 @@ interface PregenerateAccountResponse {
2947
2893
  /** The recovery share for the user's embedded signer.
2948
2894
  This should be stored securely and provided to the user for account recovery. */
2949
2895
  recoveryShare: string;
2896
+ /** User uuid */
2897
+ user: string;
2950
2898
  }
2951
2899
  /**
2952
2900
  * Enum of the supporting third party auth providers.
@@ -3446,7 +3394,6 @@ declare const AccountV2ResponseCustody: {
3446
3394
  };
3447
3395
  interface AccountV2Response {
3448
3396
  id: string;
3449
- user: string;
3450
3397
  wallet: string;
3451
3398
  accountType: string;
3452
3399
  address: string;
@@ -5533,14 +5480,14 @@ declare const openfortApiClient: <T>(config: AxiosRequestConfig, options?: Reque
5533
5480
  declare const getConfig: () => OpenfortClientOptions | undefined;
5534
5481
 
5535
5482
  /**
5536
- * Generated by orval v7.18.0 🍺
5483
+ * Generated by orval v7.20.0 🍺
5537
5484
  * Do not edit manually.
5538
5485
  * Openfort API
5539
5486
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
5540
5487
  * OpenAPI spec version: 1.0.0
5541
5488
  */
5542
5489
 
5543
- type SecondParameter$n<T extends (...args: never) => unknown> = Parameters<T>[1];
5490
+ type SecondParameter$m<T extends (...args: never) => unknown> = Parameters<T>[1];
5544
5491
  /**
5545
5492
  * Returns a list of accounts for the given player.
5546
5493
 
@@ -5553,7 +5500,7 @@ Returns the latest 10 transaction intents for each account.
5553
5500
  By default, a maximum of 10 accounts are shown per page.
5554
5501
  * @summary List accounts of a player.
5555
5502
  */
5556
- declare const getAccounts: (params?: GetAccountsParams, options?: SecondParameter$n<typeof openfortApiClient<AccountListResponse>>) => Promise<AccountListResponse>;
5503
+ declare const getAccounts: (params?: GetAccountsParams, options?: SecondParameter$m<typeof openfortApiClient<AccountListResponse>>) => Promise<AccountListResponse>;
5557
5504
  /**
5558
5505
  * Creates a new blockchain account for the provided player. If not player is provided, a new one will be created.
5559
5506
 
@@ -5562,7 +5509,7 @@ Account creation does not consume any gas. All accounts of a player will use the
5562
5509
  Each player can only have one account per chain.
5563
5510
  * @summary Create an account object.
5564
5511
  */
5565
- declare const createAccount: (createAccountRequest: CreateAccountRequest, options?: SecondParameter$n<typeof openfortApiClient<AccountResponse>>) => Promise<AccountResponse>;
5512
+ declare const createAccount: (createAccountRequest: CreateAccountRequest, options?: SecondParameter$m<typeof openfortApiClient<AccountResponse>>) => Promise<AccountResponse>;
5566
5513
  /**
5567
5514
  * Retrieves the details of an existing account.
5568
5515
 
@@ -5571,14 +5518,14 @@ Supply the unique account ID from either a account creation request or the accou
5571
5518
  Returns the latest 10 transaction intents created by this account.
5572
5519
  * @summary Get existing account.
5573
5520
  */
5574
- declare const getAccount: (id: string, params?: GetAccountParams, options?: SecondParameter$n<typeof openfortApiClient<AccountResponse>>) => Promise<AccountResponse>;
5521
+ declare const getAccount: (id: string, params?: GetAccountParams, options?: SecondParameter$m<typeof openfortApiClient<AccountResponse>>) => Promise<AccountResponse>;
5575
5522
  /**
5576
5523
  * Disables an account.
5577
5524
 
5578
5525
  Accounts won't be shown for user and won't be accessible for transactions.
5579
5526
  * @summary Disable account by id.
5580
5527
  */
5581
- declare const disableAccount: (id: string, options?: SecondParameter$n<typeof openfortApiClient<void>>) => Promise<void>;
5528
+ declare const disableAccount: (id: string, options?: SecondParameter$m<typeof openfortApiClient<void>>) => Promise<void>;
5582
5529
  /**
5583
5530
  * Perform a request to change the owner of an account.
5584
5531
 
@@ -5586,36 +5533,36 @@ To perform an update on the owner of an account, first you must provide a new ow
5586
5533
  Once requested, the owner must accept to take ownership by calling `acceptOwnership()` in the smart contract account.
5587
5534
  * @summary Request transfer ownership of account.
5588
5535
  */
5589
- declare const requestTransferOwnership: (id: string, transferOwnershipRequest: TransferOwnershipRequest, options?: SecondParameter$n<typeof openfortApiClient<TransactionIntentResponse>>) => Promise<TransactionIntentResponse>;
5536
+ declare const requestTransferOwnership: (id: string, transferOwnershipRequest: TransferOwnershipRequest, options?: SecondParameter$m<typeof openfortApiClient<TransactionIntentResponse>>) => Promise<TransactionIntentResponse>;
5590
5537
  /**
5591
5538
  * Cancel a pending transfer of ownership.
5592
5539
  * @summary Cancel request to transfer ownership of an account.
5593
5540
  */
5594
- declare const cancelTransferOwnership: (id: string, cancelTransferOwnershipRequest: CancelTransferOwnershipRequest, options?: SecondParameter$n<typeof openfortApiClient<TransactionIntentResponse>>) => Promise<TransactionIntentResponse>;
5541
+ declare const cancelTransferOwnership: (id: string, cancelTransferOwnershipRequest: CancelTransferOwnershipRequest, options?: SecondParameter$m<typeof openfortApiClient<TransactionIntentResponse>>) => Promise<TransactionIntentResponse>;
5595
5542
  /**
5596
5543
  * **Custodial Accounts only** - Signs the typed repositories value with types repositories structure for domain using the [EIP-712](https://eips.ethereum.org/EIPS/eip-712) specification.
5597
5544
  * @summary Sign a given payload
5598
5545
  */
5599
- declare const signPayload: (id: string, signPayloadRequest: SignPayloadRequest, options?: SecondParameter$n<typeof openfortApiClient<SignPayloadResponse>>) => Promise<SignPayloadResponse>;
5546
+ declare const signPayload: (id: string, signPayloadRequest: SignPayloadRequest, options?: SecondParameter$m<typeof openfortApiClient<SignPayloadResponse>>) => Promise<SignPayloadResponse>;
5600
5547
  /**
5601
5548
  * Synchronize the account state with the blockchain.
5602
5549
  Specifically, it updates the account owner and whether its deployed or not.
5603
5550
  * @summary Sync account state with the blockchain
5604
5551
  */
5605
- declare const syncAccount: (id: string, options?: SecondParameter$n<typeof openfortApiClient<AccountResponse>>) => Promise<AccountResponse>;
5552
+ declare const syncAccount: (id: string, options?: SecondParameter$m<typeof openfortApiClient<AccountResponse>>) => Promise<AccountResponse>;
5606
5553
  /**
5607
5554
  * This endpoint can be used to deploy a smart contract account that was counterfactually generated.
5608
5555
  * @summary Deploy an account.
5609
5556
  */
5610
- declare const deployAccount: (id: string, deployRequest: DeployRequest, options?: SecondParameter$n<typeof openfortApiClient<AccountResponse>>) => Promise<AccountResponse>;
5557
+ declare const deployAccount: (id: string, deployRequest: DeployRequest, options?: SecondParameter$m<typeof openfortApiClient<AccountResponse>>) => Promise<AccountResponse>;
5611
5558
  /**
5612
5559
  * @summary Start a recovery process of a recoverable account.
5613
5560
  */
5614
- declare const startRecovery: (id: string, startRecoveryRequest: StartRecoveryRequest, options?: SecondParameter$n<typeof openfortApiClient<TransactionIntentResponse>>) => Promise<TransactionIntentResponse>;
5561
+ declare const startRecovery: (id: string, startRecoveryRequest: StartRecoveryRequest, options?: SecondParameter$m<typeof openfortApiClient<TransactionIntentResponse>>) => Promise<TransactionIntentResponse>;
5615
5562
  /**
5616
5563
  * @summary Complete a recovery process of a recoverable account.
5617
5564
  */
5618
- declare const completeRecovery: (id: string, completeRecoveryRequest: CompleteRecoveryRequest, options?: SecondParameter$n<typeof openfortApiClient<TransactionIntentResponse>>) => Promise<TransactionIntentResponse>;
5565
+ declare const completeRecovery: (id: string, completeRecoveryRequest: CompleteRecoveryRequest, options?: SecondParameter$m<typeof openfortApiClient<TransactionIntentResponse>>) => Promise<TransactionIntentResponse>;
5619
5566
  type GetAccountsResult = NonNullable<Awaited<ReturnType<typeof getAccounts>>>;
5620
5567
  type CreateAccountResult = NonNullable<Awaited<ReturnType<typeof createAccount>>>;
5621
5568
  type GetAccountResult = NonNullable<Awaited<ReturnType<typeof getAccount>>>;
@@ -5629,14 +5576,14 @@ type StartRecoveryResult = NonNullable<Awaited<ReturnType<typeof startRecovery>>
5629
5576
  type CompleteRecoveryResult = NonNullable<Awaited<ReturnType<typeof completeRecovery>>>;
5630
5577
 
5631
5578
  /**
5632
- * Generated by orval v7.18.0 🍺
5579
+ * Generated by orval v7.20.0 🍺
5633
5580
  * Do not edit manually.
5634
5581
  * Openfort API
5635
5582
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
5636
5583
  * OpenAPI spec version: 1.0.0
5637
5584
  */
5638
5585
 
5639
- type SecondParameter$m<T extends (...args: never) => unknown> = Parameters<T>[1];
5586
+ type SecondParameter$l<T extends (...args: never) => unknown> = Parameters<T>[1];
5640
5587
  /**
5641
5588
  * Returns a list of accounts for the given user.
5642
5589
 
@@ -5645,38 +5592,38 @@ This object represents a user's account, which is a blockchain smart account tha
5645
5592
  The accounts are returned sorted by creation date, with the most recently created accounts appearing first.
5646
5593
  * @summary List user accounts.
5647
5594
  */
5648
- declare const getAccountsV2: (params?: GetAccountsV2Params, options?: SecondParameter$m<typeof openfortApiClient<BaseEntityListResponseAccountV2Response>>) => Promise<BaseEntityListResponseAccountV2Response>;
5595
+ declare const getAccountsV2: (params?: GetAccountsV2Params, options?: SecondParameter$l<typeof openfortApiClient<BaseEntityListResponseAccountV2Response>>) => Promise<BaseEntityListResponseAccountV2Response>;
5649
5596
  /**
5650
5597
  * Creates a new blockchain account for a user.
5651
5598
 
5652
5599
  Account creation does not consume any gas. The account can be used to interact with the blockchain.
5653
5600
  * @summary Create new account.
5654
5601
  */
5655
- declare const createAccountV2: (createAccountRequestV2: CreateAccountRequestV2, options?: SecondParameter$m<typeof openfortApiClient<AccountV2Response>>) => Promise<AccountV2Response>;
5602
+ declare const createAccountV2: (createAccountRequestV2: CreateAccountRequestV2, options?: SecondParameter$l<typeof openfortApiClient<AccountV2Response>>) => Promise<AccountV2Response>;
5656
5603
  /**
5657
5604
  * Retrieves the signer ID associated with a given blockchain address.
5658
5605
  * @summary Get signer ID by address.
5659
5606
  */
5660
- declare const getSignerIdByAddress: (params: GetSignerIdByAddressParams, options?: SecondParameter$m<typeof openfortApiClient<SignerIdResponse>>) => Promise<SignerIdResponse>;
5607
+ declare const getSignerIdByAddress: (params: GetSignerIdByAddressParams, options?: SecondParameter$l<typeof openfortApiClient<SignerIdResponse>>) => Promise<SignerIdResponse>;
5661
5608
  /**
5662
5609
  * Retrieves the details of an existing account.
5663
5610
 
5664
5611
  Supply the unique account ID and Openfort will return the corresponding account information.
5665
5612
  * @summary Get existing account.
5666
5613
  */
5667
- declare const getAccountV2: (id: string, options?: SecondParameter$m<typeof openfortApiClient<AccountV2Response>>) => Promise<AccountV2Response>;
5614
+ declare const getAccountV2: (id: string, options?: SecondParameter$l<typeof openfortApiClient<AccountV2Response>>) => Promise<AccountV2Response>;
5668
5615
  /**
5669
5616
  * Removes an account from a project.
5670
5617
  * @summary Delete account.
5671
5618
  */
5672
- declare const removeAccount: (id: string, options?: SecondParameter$m<typeof openfortApiClient<DeleteAccountResponse>>) => Promise<DeleteAccountResponse>;
5619
+ declare const removeAccount: (id: string, options?: SecondParameter$l<typeof openfortApiClient<DeleteAccountResponse>>) => Promise<DeleteAccountResponse>;
5673
5620
  /**
5674
5621
  * Switches the blockchain network for an existing account.
5675
5622
 
5676
5623
  This allows moving an account between different blockchain networks while maintaining the same account identity.
5677
5624
  * @summary Switch account blockchain.
5678
5625
  */
5679
- declare const switchChainV2: (switchChainQueriesV2: SwitchChainQueriesV2, options?: SecondParameter$m<typeof openfortApiClient<AccountV2Response>>) => Promise<AccountV2Response>;
5626
+ declare const switchChainV2: (switchChainQueriesV2: SwitchChainQueriesV2, options?: SecondParameter$l<typeof openfortApiClient<AccountV2Response>>) => Promise<AccountV2Response>;
5680
5627
  type GetAccountsV2Result = NonNullable<Awaited<ReturnType<typeof getAccountsV2>>>;
5681
5628
  type CreateAccountV2Result = NonNullable<Awaited<ReturnType<typeof createAccountV2>>>;
5682
5629
  type GetSignerIdByAddressResult = NonNullable<Awaited<ReturnType<typeof getSignerIdByAddress>>>;
@@ -5685,89 +5632,89 @@ type RemoveAccountResult = NonNullable<Awaited<ReturnType<typeof removeAccount>>
5685
5632
  type SwitchChainV2Result = NonNullable<Awaited<ReturnType<typeof switchChainV2>>>;
5686
5633
 
5687
5634
  /**
5688
- * Generated by orval v7.18.0 🍺
5635
+ * Generated by orval v7.20.0 🍺
5689
5636
  * Do not edit manually.
5690
5637
  * Openfort API
5691
5638
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
5692
5639
  * OpenAPI spec version: 1.0.0
5693
5640
  */
5694
5641
 
5695
- type SecondParameter$l<T extends (...args: never) => unknown> = Parameters<T>[1];
5642
+ type SecondParameter$k<T extends (...args: never) => unknown> = Parameters<T>[1];
5696
5643
  /**
5697
5644
  * The endpoint verifies the token generated by OAuth provider and retrieves a corresponding player.
5698
5645
 
5699
5646
  Returns the latest 10 transaction intents for the player.
5700
5647
  * @summary Retrieve player by oauth token.
5701
5648
  */
5702
- declare const verifyOAuthToken: (authenticateOAuthRequest: AuthenticateOAuthRequest, options?: SecondParameter$l<typeof openfortApiClient<PlayerResponse>>) => Promise<PlayerResponse>;
5649
+ declare const verifyOAuthToken: (authenticateOAuthRequest: AuthenticateOAuthRequest, options?: SecondParameter$k<typeof openfortApiClient<PlayerResponse>>) => Promise<PlayerResponse>;
5703
5650
  /**
5704
5651
  * List configured OAuth methods for the current project environment.
5705
5652
  * @deprecated
5706
5653
  * @summary List of oauth configurations.
5707
5654
  */
5708
- declare const listOAuthConfig: (options?: SecondParameter$l<typeof openfortApiClient<OAuthConfigListResponse>>) => Promise<OAuthConfigListResponse>;
5655
+ declare const listOAuthConfig: (options?: SecondParameter$k<typeof openfortApiClient<OAuthConfigListResponse>>) => Promise<OAuthConfigListResponse>;
5709
5656
  /**
5710
5657
  * The endpoint creates oauth configuration for the current project environment.
5711
5658
  * @deprecated
5712
5659
  * @summary Create oauth configuration.
5713
5660
  */
5714
- declare const createOAuthConfig: (authConfig: AuthConfig, options?: SecondParameter$l<typeof openfortApiClient<AuthConfig>>) => Promise<AuthConfig>;
5661
+ declare const createOAuthConfig: (authConfig: AuthConfig, options?: SecondParameter$k<typeof openfortApiClient<AuthConfig>>) => Promise<AuthConfig>;
5715
5662
  /**
5716
5663
  * @deprecated
5717
5664
  * @summary oauth callback.
5718
5665
  */
5719
- declare const deprecatedCallbackOAuth: (params: DeprecatedCallbackOAuthParams, options?: SecondParameter$l<typeof openfortApiClient<unknown>>) => Promise<unknown>;
5666
+ declare const deprecatedCallbackOAuth: (params: DeprecatedCallbackOAuthParams, options?: SecondParameter$k<typeof openfortApiClient<unknown>>) => Promise<unknown>;
5720
5667
  /**
5721
5668
  * @summary oauth grant.
5722
5669
  */
5723
- declare const grantOAuth: (provider: OAuthProvider, grantCallbackRequest: GrantCallbackRequest, options?: SecondParameter$l<typeof openfortApiClient<GrantOAuthResponse>>) => Promise<GrantOAuthResponse>;
5670
+ declare const grantOAuth: (provider: OAuthProvider, grantCallbackRequest: GrantCallbackRequest, options?: SecondParameter$k<typeof openfortApiClient<GrantOAuthResponse>>) => Promise<GrantOAuthResponse>;
5724
5671
  /**
5725
5672
  * @summary oauth callback.
5726
5673
  */
5727
- declare const callbackOAuth: (provider: OAuthProvider, params: CallbackOAuthParams, options?: SecondParameter$l<typeof openfortApiClient<unknown>>) => Promise<unknown>;
5674
+ declare const callbackOAuth: (provider: OAuthProvider, params: CallbackOAuthParams, options?: SecondParameter$k<typeof openfortApiClient<unknown>>) => Promise<unknown>;
5728
5675
  /**
5729
5676
  * The endpoint retrieves oauth configuration for specified provider for the current project environment.
5730
5677
  * @deprecated
5731
5678
  * @summary Get oauth configuration.
5732
5679
  */
5733
- declare const getOAuthConfig: (provider: OAuthProvider, options?: SecondParameter$l<typeof openfortApiClient<AuthConfig>>) => Promise<AuthConfig>;
5680
+ declare const getOAuthConfig: (provider: OAuthProvider, options?: SecondParameter$k<typeof openfortApiClient<AuthConfig>>) => Promise<AuthConfig>;
5734
5681
  /**
5735
5682
  * The endpoint deletes oauth configuration for specified provider for the current project environment.
5736
5683
  * @deprecated
5737
5684
  * @summary Delete oauth configuration.
5738
5685
  */
5739
- declare const deleteOAuthConfig: (provider: OAuthProvider, options?: SecondParameter$l<typeof openfortApiClient<void>>) => Promise<void>;
5686
+ declare const deleteOAuthConfig: (provider: OAuthProvider, options?: SecondParameter$k<typeof openfortApiClient<void>>) => Promise<void>;
5740
5687
  /**
5741
5688
  * List configured auth methods for the current project environment.
5742
5689
  * @summary List of auth configurations.
5743
5690
  */
5744
- declare const list: (params?: ListParams, options?: SecondParameter$l<typeof openfortApiClient<AuthProviderListResponse>>) => Promise<AuthProviderListResponse>;
5691
+ declare const list: (params?: ListParams, options?: SecondParameter$k<typeof openfortApiClient<AuthProviderListResponse>>) => Promise<AuthProviderListResponse>;
5745
5692
  /**
5746
5693
  * The endpoint creates oauth configuration for the current project environment.
5747
5694
  * @summary Create oauth configuration.
5748
5695
  */
5749
- declare const create: (authConfig: AuthConfig, options?: SecondParameter$l<typeof openfortApiClient<AuthConfig>>) => Promise<AuthConfig>;
5696
+ declare const create: (authConfig: AuthConfig, options?: SecondParameter$k<typeof openfortApiClient<AuthConfig>>) => Promise<AuthConfig>;
5750
5697
  /**
5751
5698
  * Creates an authenticated player.
5752
5699
 
5753
5700
  The player will be authenticated with the provider and an embedded account can be pre generated.
5754
5701
  * @summary Create an authenticated player.
5755
5702
  */
5756
- declare const createAuthPlayer: (createAuthPlayerRequest: CreateAuthPlayerRequest, options?: SecondParameter$l<typeof openfortApiClient<AuthPlayerResponseWithRecoveryShare>>) => Promise<AuthPlayerResponseWithRecoveryShare>;
5703
+ declare const createAuthPlayer: (createAuthPlayerRequest: CreateAuthPlayerRequest, options?: SecondParameter$k<typeof openfortApiClient<AuthPlayerResponseWithRecoveryShare>>) => Promise<AuthPlayerResponseWithRecoveryShare>;
5757
5704
  /**
5758
5705
  * Retrieves a list of authenticated players.
5759
5706
 
5760
5707
  Players have linked accounts and are authenticated with a provider.
5761
5708
  * @summary List authenticated players.
5762
5709
  */
5763
- declare const getAuthPlayers: (params?: GetAuthPlayersParams, options?: SecondParameter$l<typeof openfortApiClient<AuthPlayerListResponse>>) => Promise<AuthPlayerListResponse>;
5710
+ declare const getAuthPlayers: (params?: GetAuthPlayersParams, options?: SecondParameter$k<typeof openfortApiClient<AuthPlayerListResponse>>) => Promise<AuthPlayerListResponse>;
5764
5711
  /**
5765
5712
  * Retrieves an authenticated player.
5766
5713
 
5767
5714
  Players have linked accounts and are authenticated with a provider.
5768
5715
  * @summary Authenticated player.
5769
5716
  */
5770
- declare const getAuthPlayer: (id: string, options?: SecondParameter$l<typeof openfortApiClient<AuthPlayerResponse>>) => Promise<AuthPlayerResponse>;
5717
+ declare const getAuthPlayer: (id: string, options?: SecondParameter$k<typeof openfortApiClient<AuthPlayerResponse>>) => Promise<AuthPlayerResponse>;
5771
5718
  /**
5772
5719
  * Deletes a player auth object.
5773
5720
 
@@ -5775,13 +5722,13 @@ It will delete all linked accounts the player is authenticated with.
5775
5722
  If the player has a linked embedded signer, it will be deleted as well.
5776
5723
  * @summary Deletes a player auth object.
5777
5724
  */
5778
- declare const deleteAuthPlayer: (id: string, options?: SecondParameter$l<typeof openfortApiClient<AuthPlayerResponse>>) => Promise<AuthPlayerResponse>;
5725
+ declare const deleteAuthPlayer: (id: string, options?: SecondParameter$k<typeof openfortApiClient<AuthPlayerResponse>>) => Promise<AuthPlayerResponse>;
5779
5726
  /**
5780
5727
  * Verifies the token generated by Openfort Auth.
5781
5728
  * @summary Verify auth token.
5782
5729
  */
5783
- declare const verifyAuthToken: (params: VerifyAuthTokenParams, options?: SecondParameter$l<typeof openfortApiClient<AuthSessionResponse>>) => Promise<AuthSessionResponse>;
5784
- declare const authorize: (authorizePlayerRequest: AuthorizePlayerRequest, options?: SecondParameter$l<typeof openfortApiClient<Authorize200>>) => Promise<Authorize200>;
5730
+ declare const verifyAuthToken: (params: VerifyAuthTokenParams, options?: SecondParameter$k<typeof openfortApiClient<AuthSessionResponse>>) => Promise<AuthSessionResponse>;
5731
+ declare const authorize: (authorizePlayerRequest: AuthorizePlayerRequest, options?: SecondParameter$k<typeof openfortApiClient<Authorize200>>) => Promise<Authorize200>;
5785
5732
  type VerifyOAuthTokenResult = NonNullable<Awaited<ReturnType<typeof verifyOAuthToken>>>;
5786
5733
  type ListOAuthConfigResult = NonNullable<Awaited<ReturnType<typeof listOAuthConfig>>>;
5787
5734
  type CreateOAuthConfigResult = NonNullable<Awaited<ReturnType<typeof createOAuthConfig>>>;
@@ -5800,7 +5747,7 @@ type VerifyAuthTokenResult = NonNullable<Awaited<ReturnType<typeof verifyAuthTok
5800
5747
  type AuthorizeResult = NonNullable<Awaited<ReturnType<typeof authorize>>>;
5801
5748
 
5802
5749
  /**
5803
- * Generated by orval v7.18.0 🍺
5750
+ * Generated by orval v7.20.0 🍺
5804
5751
  * Do not edit manually.
5805
5752
  * Openfort Auth
5806
5753
  * API Reference for Openfort Auth
@@ -7746,225 +7693,225 @@ declare namespace openfortAuth_schemas {
7746
7693
  }
7747
7694
 
7748
7695
  /**
7749
- * Generated by orval v7.18.0 🍺
7696
+ * Generated by orval v7.20.0 🍺
7750
7697
  * Do not edit manually.
7751
7698
  * Openfort Auth
7752
7699
  * API Reference for Openfort Auth
7753
7700
  * OpenAPI spec version: 1.0.0
7754
7701
  */
7755
7702
 
7756
- type SecondParameter$k<T extends (...args: never) => unknown> = Parameters<T>[1];
7703
+ type SecondParameter$j<T extends (...args: never) => unknown> = Parameters<T>[1];
7757
7704
  /**
7758
7705
  * Sign in with a social provider
7759
7706
  * @summary Sign in with a social provider.
7760
7707
  */
7761
- declare const socialSignIn: (socialSignInBody: SocialSignInBody, options?: SecondParameter$k<typeof openfortApiClient<SocialSignIn200>>) => Promise<SocialSignIn200>;
7708
+ declare const socialSignIn: (socialSignInBody: SocialSignInBody, options?: SecondParameter$j<typeof openfortApiClient<SocialSignIn200>>) => Promise<SocialSignIn200>;
7762
7709
  /**
7763
7710
  * Get the current session
7764
7711
  * @summary Get the current session.
7765
7712
  */
7766
- declare const getGetSession: (params?: GetGetSessionParams, options?: SecondParameter$k<typeof openfortApiClient<GetGetSession200>>) => Promise<GetGetSession200>;
7713
+ declare const getGetSession: (params?: GetGetSessionParams, options?: SecondParameter$j<typeof openfortApiClient<GetGetSession200>>) => Promise<GetGetSession200>;
7767
7714
  /**
7768
7715
  * Sign out the current user
7769
7716
  * @summary Sign out.
7770
7717
  */
7771
- declare const postSignOut: (postSignOutBody: PostSignOutBody, options?: SecondParameter$k<typeof openfortApiClient<PostSignOut200>>) => Promise<PostSignOut200>;
7718
+ declare const postSignOut: (postSignOutBody: PostSignOutBody, options?: SecondParameter$j<typeof openfortApiClient<PostSignOut200>>) => Promise<PostSignOut200>;
7772
7719
  /**
7773
7720
  * Sign up a user using email and password
7774
7721
  * @summary Sign up with email and password.
7775
7722
  */
7776
- declare const postSignUpEmail: (postSignUpEmailBody: PostSignUpEmailBody, options?: SecondParameter$k<typeof openfortApiClient<PostSignUpEmail200>>) => Promise<PostSignUpEmail200>;
7723
+ declare const postSignUpEmail: (postSignUpEmailBody: PostSignUpEmailBody, options?: SecondParameter$j<typeof openfortApiClient<PostSignUpEmail200>>) => Promise<PostSignUpEmail200>;
7777
7724
  /**
7778
7725
  * Sign in with email and password
7779
7726
  * @summary Sign in with email and password.
7780
7727
  */
7781
- declare const postSignInEmail: (postSignInEmailBody: PostSignInEmailBody, options?: SecondParameter$k<typeof openfortApiClient<PostSignInEmail200>>) => Promise<PostSignInEmail200>;
7728
+ declare const postSignInEmail: (postSignInEmailBody: PostSignInEmailBody, options?: SecondParameter$j<typeof openfortApiClient<PostSignInEmail200>>) => Promise<PostSignInEmail200>;
7782
7729
  /**
7783
7730
  * Send a password reset email to the user
7784
7731
  * @summary Forget password.
7785
7732
  */
7786
- declare const postForgetPassword: (postForgetPasswordBody: PostForgetPasswordBody, options?: SecondParameter$k<typeof openfortApiClient<PostForgetPassword200>>) => Promise<PostForgetPassword200>;
7733
+ declare const postForgetPassword: (postForgetPasswordBody: PostForgetPasswordBody, options?: SecondParameter$j<typeof openfortApiClient<PostForgetPassword200>>) => Promise<PostForgetPassword200>;
7787
7734
  /**
7788
7735
  * Reset the password for a user
7789
7736
  * @summary Reset password.
7790
7737
  */
7791
- declare const postResetPassword: (postResetPasswordBody: PostResetPasswordBody, options?: SecondParameter$k<typeof openfortApiClient<ResetPasswordResponse>>) => Promise<ResetPasswordResponse>;
7738
+ declare const postResetPassword: (postResetPasswordBody: PostResetPasswordBody, options?: SecondParameter$j<typeof openfortApiClient<ResetPasswordResponse>>) => Promise<ResetPasswordResponse>;
7792
7739
  /**
7793
7740
  * Verify the email of the user.
7794
7741
  Usually this endpoint is called when user clicks 'Verify email' link from the letter.
7795
7742
  * @summary Verify email.
7796
7743
  */
7797
- declare const getVerifyEmail: (params: GetVerifyEmailParams, options?: SecondParameter$k<typeof openfortApiClient<GetVerifyEmail200>>) => Promise<GetVerifyEmail200>;
7744
+ declare const getVerifyEmail: (params: GetVerifyEmailParams, options?: SecondParameter$j<typeof openfortApiClient<GetVerifyEmail200>>) => Promise<GetVerifyEmail200>;
7798
7745
  /**
7799
7746
  * Send a verification email to the user
7800
7747
  * @summary Send verification email.
7801
7748
  */
7802
- declare const postSendVerificationEmail: (postSendVerificationEmailBody: PostSendVerificationEmailBody, options?: SecondParameter$k<typeof openfortApiClient<PostSendVerificationEmail200>>) => Promise<PostSendVerificationEmail200>;
7749
+ declare const postSendVerificationEmail: (postSendVerificationEmailBody: PostSendVerificationEmailBody, options?: SecondParameter$j<typeof openfortApiClient<PostSendVerificationEmail200>>) => Promise<PostSendVerificationEmail200>;
7803
7750
  /**
7804
7751
  * Change user's email
7805
7752
  * @summary Change email.
7806
7753
  */
7807
- declare const postChangeEmail: (postChangeEmailBody: PostChangeEmailBody, options?: SecondParameter$k<typeof openfortApiClient<PostChangeEmail200>>) => Promise<PostChangeEmail200>;
7754
+ declare const postChangeEmail: (postChangeEmailBody: PostChangeEmailBody, options?: SecondParameter$j<typeof openfortApiClient<PostChangeEmail200>>) => Promise<PostChangeEmail200>;
7808
7755
  /**
7809
7756
  * Change the password of the user
7810
7757
  * @summary Change password.
7811
7758
  */
7812
- declare const postChangePassword: (postChangePasswordBody: PostChangePasswordBody, options?: SecondParameter$k<typeof openfortApiClient<PostChangePassword200>>) => Promise<PostChangePassword200>;
7759
+ declare const postChangePassword: (postChangePasswordBody: PostChangePasswordBody, options?: SecondParameter$j<typeof openfortApiClient<PostChangePassword200>>) => Promise<PostChangePassword200>;
7813
7760
  /**
7814
7761
  * Redirects the user to the callback URL with the token
7815
7762
  * @summary Reset password callback.
7816
7763
  */
7817
- declare const getResetPasswordToken: (token: string, params?: GetResetPasswordTokenParams, options?: SecondParameter$k<typeof openfortApiClient<GetResetPasswordToken200>>) => Promise<GetResetPasswordToken200>;
7764
+ declare const getResetPasswordToken: (token: string, params?: GetResetPasswordTokenParams, options?: SecondParameter$j<typeof openfortApiClient<GetResetPasswordToken200>>) => Promise<GetResetPasswordToken200>;
7818
7765
  /**
7819
7766
  * Send a password reset email to the user
7820
7767
  * @summary Request password reset.
7821
7768
  */
7822
- declare const postRequestPasswordReset: (postRequestPasswordResetBody: PostRequestPasswordResetBody, options?: SecondParameter$k<typeof openfortApiClient<PostRequestPasswordReset200>>) => Promise<PostRequestPasswordReset200>;
7769
+ declare const postRequestPasswordReset: (postRequestPasswordResetBody: PostRequestPasswordResetBody, options?: SecondParameter$j<typeof openfortApiClient<PostRequestPasswordReset200>>) => Promise<PostRequestPasswordReset200>;
7823
7770
  /**
7824
7771
  * List all active sessions for the user
7825
7772
  * @summary List sessions.
7826
7773
  */
7827
- declare const getListSessions: (options?: SecondParameter$k<typeof openfortApiClient<Session[]>>) => Promise<Session[]>;
7774
+ declare const getListSessions: (options?: SecondParameter$j<typeof openfortApiClient<Session[]>>) => Promise<Session[]>;
7828
7775
  /**
7829
7776
  * Revoke a single session
7830
7777
  * @summary Revoke session.
7831
7778
  */
7832
- declare const postRevokeSession: (postRevokeSessionBody: PostRevokeSessionBody, options?: SecondParameter$k<typeof openfortApiClient<PostRevokeSession200>>) => Promise<PostRevokeSession200>;
7779
+ declare const postRevokeSession: (postRevokeSessionBody: PostRevokeSessionBody, options?: SecondParameter$j<typeof openfortApiClient<PostRevokeSession200>>) => Promise<PostRevokeSession200>;
7833
7780
  /**
7834
7781
  * Revoke all sessions for the user
7835
7782
  * @summary Revoke sessions.
7836
7783
  */
7837
- declare const postRevokeSessions: (postRevokeSessionsBody: PostRevokeSessionsBody, options?: SecondParameter$k<typeof openfortApiClient<PostRevokeSessions200>>) => Promise<PostRevokeSessions200>;
7784
+ declare const postRevokeSessions: (postRevokeSessionsBody: PostRevokeSessionsBody, options?: SecondParameter$j<typeof openfortApiClient<PostRevokeSessions200>>) => Promise<PostRevokeSessions200>;
7838
7785
  /**
7839
7786
  * Revoke all other sessions for the user except the current one
7840
7787
  * @summary Revoke other sessions.
7841
7788
  */
7842
- declare const postRevokeOtherSessions: (postRevokeOtherSessionsBody: PostRevokeOtherSessionsBody, options?: SecondParameter$k<typeof openfortApiClient<PostRevokeOtherSessions200>>) => Promise<PostRevokeOtherSessions200>;
7789
+ declare const postRevokeOtherSessions: (postRevokeOtherSessionsBody: PostRevokeOtherSessionsBody, options?: SecondParameter$j<typeof openfortApiClient<PostRevokeOtherSessions200>>) => Promise<PostRevokeOtherSessions200>;
7843
7790
  /**
7844
7791
  * Link a social account to the user
7845
7792
  * @summary Link social account.
7846
7793
  */
7847
- declare const postLinkSocial: (postLinkSocialBody: PostLinkSocialBody, options?: SecondParameter$k<typeof openfortApiClient<PostLinkSocial200>>) => Promise<PostLinkSocial200>;
7794
+ declare const postLinkSocial: (postLinkSocialBody: PostLinkSocialBody, options?: SecondParameter$j<typeof openfortApiClient<PostLinkSocial200>>) => Promise<PostLinkSocial200>;
7848
7795
  /**
7849
7796
  * List all accounts linked to the user
7850
7797
  * @summary List lined accounts.
7851
7798
  */
7852
- declare const getListAccounts: (options?: SecondParameter$k<typeof openfortApiClient<GetListAccounts200Item[]>>) => Promise<GetListAccounts200Item[]>;
7799
+ declare const getListAccounts: (options?: SecondParameter$j<typeof openfortApiClient<GetListAccounts200Item[]>>) => Promise<GetListAccounts200Item[]>;
7853
7800
  /**
7854
7801
  * Unlink an account
7855
7802
  * @summary Unlink account.
7856
7803
  */
7857
- declare const postUnlinkAccount: (postUnlinkAccountBody: PostUnlinkAccountBody, options?: SecondParameter$k<typeof openfortApiClient<UnlinkAccountResponse>>) => Promise<UnlinkAccountResponse>;
7804
+ declare const postUnlinkAccount: (postUnlinkAccountBody: PostUnlinkAccountBody, options?: SecondParameter$j<typeof openfortApiClient<UnlinkAccountResponse>>) => Promise<UnlinkAccountResponse>;
7858
7805
  /**
7859
7806
  * Refresh the access token using a refresh token
7860
7807
  * @summary Refresh access token.
7861
7808
  */
7862
- declare const postRefreshToken: (postRefreshTokenBody: PostRefreshTokenBody, options?: SecondParameter$k<typeof openfortApiClient<PostRefreshToken200>>) => Promise<PostRefreshToken200>;
7809
+ declare const postRefreshToken: (postRefreshTokenBody: PostRefreshTokenBody, options?: SecondParameter$j<typeof openfortApiClient<PostRefreshToken200>>) => Promise<PostRefreshToken200>;
7863
7810
  /**
7864
7811
  * Get a valid access token, doing a refresh if needed
7865
7812
  * @summary Get access token.
7866
7813
  */
7867
- declare const postGetAccessToken: (postGetAccessTokenBody: PostGetAccessTokenBody, options?: SecondParameter$k<typeof openfortApiClient<PostGetAccessToken200>>) => Promise<PostGetAccessToken200>;
7814
+ declare const postGetAccessToken: (postGetAccessTokenBody: PostGetAccessTokenBody, options?: SecondParameter$j<typeof openfortApiClient<PostGetAccessToken200>>) => Promise<PostGetAccessToken200>;
7868
7815
  /**
7869
7816
  * Get the account info provided by the provider
7870
7817
  * @summary Get account info.
7871
7818
  */
7872
- declare const postAccountInfo: (postAccountInfoBody: PostAccountInfoBody, options?: SecondParameter$k<typeof openfortApiClient<PostAccountInfo200>>) => Promise<PostAccountInfo200>;
7819
+ declare const postAccountInfo: (postAccountInfoBody: PostAccountInfoBody, options?: SecondParameter$j<typeof openfortApiClient<PostAccountInfo200>>) => Promise<PostAccountInfo200>;
7873
7820
  /**
7874
7821
  * Sign in anonymously
7875
7822
  * @summary Anonymous sign in.
7876
7823
  */
7877
- declare const postSignInAnonymous: (options?: SecondParameter$k<typeof openfortApiClient<PostSignInAnonymous200>>) => Promise<PostSignInAnonymous200>;
7824
+ declare const postSignInAnonymous: (options?: SecondParameter$j<typeof openfortApiClient<PostSignInAnonymous200>>) => Promise<PostSignInAnonymous200>;
7878
7825
  /**
7879
7826
  * Use this endpoint to sign in with phone number
7880
7827
  * @summary Sign in with phone.
7881
7828
  */
7882
- declare const postSignInPhoneNumber: (postSignInPhoneNumberBody: PostSignInPhoneNumberBody, options?: SecondParameter$k<typeof openfortApiClient<PostSignInPhoneNumber200>>) => Promise<PostSignInPhoneNumber200>;
7829
+ declare const postSignInPhoneNumber: (postSignInPhoneNumberBody: PostSignInPhoneNumberBody, options?: SecondParameter$j<typeof openfortApiClient<PostSignInPhoneNumber200>>) => Promise<PostSignInPhoneNumber200>;
7883
7830
  /**
7884
7831
  * Use this endpoint to send OTP to phone number
7885
7832
  * @summary Send OTP to phone number.
7886
7833
  */
7887
- declare const postPhoneNumberSendOtp: (postPhoneNumberSendOtpBody: PostPhoneNumberSendOtpBody, options?: SecondParameter$k<typeof openfortApiClient<PostPhoneNumberSendOtp200>>) => Promise<PostPhoneNumberSendOtp200>;
7834
+ declare const postPhoneNumberSendOtp: (postPhoneNumberSendOtpBody: PostPhoneNumberSendOtpBody, options?: SecondParameter$j<typeof openfortApiClient<PostPhoneNumberSendOtp200>>) => Promise<PostPhoneNumberSendOtp200>;
7888
7835
  /**
7889
7836
  * Use this endpoint to verify phone number
7890
7837
  * @summary Verify phone OTP.
7891
7838
  */
7892
- declare const postPhoneNumberVerify: (postPhoneNumberVerifyBody: PostPhoneNumberVerifyBody, options?: SecondParameter$k<typeof openfortApiClient<PostPhoneNumberVerify200>>) => Promise<PostPhoneNumberVerify200>;
7839
+ declare const postPhoneNumberVerify: (postPhoneNumberVerifyBody: PostPhoneNumberVerifyBody, options?: SecondParameter$j<typeof openfortApiClient<PostPhoneNumberVerify200>>) => Promise<PostPhoneNumberVerify200>;
7893
7840
  /**
7894
7841
  * Request OTP for password reset via phone number
7895
7842
  * @summary Reset password reset with phone(forget password flow).
7896
7843
  */
7897
- declare const postPhoneNumberForgetPassword: (postPhoneNumberForgetPasswordBody: PostPhoneNumberForgetPasswordBody, options?: SecondParameter$k<typeof openfortApiClient<PostPhoneNumberForgetPassword200>>) => Promise<PostPhoneNumberForgetPassword200>;
7844
+ declare const postPhoneNumberForgetPassword: (postPhoneNumberForgetPasswordBody: PostPhoneNumberForgetPasswordBody, options?: SecondParameter$j<typeof openfortApiClient<PostPhoneNumberForgetPassword200>>) => Promise<PostPhoneNumberForgetPassword200>;
7898
7845
  /**
7899
7846
  * Request OTP for password reset via phone number
7900
7847
  * @summary Request password reset with phone.
7901
7848
  */
7902
- declare const postPhoneNumberRequestPasswordReset: (postPhoneNumberRequestPasswordResetBody: PostPhoneNumberRequestPasswordResetBody, options?: SecondParameter$k<typeof openfortApiClient<PostPhoneNumberRequestPasswordReset200>>) => Promise<PostPhoneNumberRequestPasswordReset200>;
7849
+ declare const postPhoneNumberRequestPasswordReset: (postPhoneNumberRequestPasswordResetBody: PostPhoneNumberRequestPasswordResetBody, options?: SecondParameter$j<typeof openfortApiClient<PostPhoneNumberRequestPasswordReset200>>) => Promise<PostPhoneNumberRequestPasswordReset200>;
7903
7850
  /**
7904
7851
  * Reset password using phone number OTP
7905
7852
  * @summary Reset password with phone OTP.
7906
7853
  */
7907
- declare const postPhoneNumberResetPassword: (postPhoneNumberResetPasswordBody: PostPhoneNumberResetPasswordBody, options?: SecondParameter$k<typeof openfortApiClient<ResetPasswordResponse>>) => Promise<ResetPasswordResponse>;
7854
+ declare const postPhoneNumberResetPassword: (postPhoneNumberResetPasswordBody: PostPhoneNumberResetPasswordBody, options?: SecondParameter$j<typeof openfortApiClient<ResetPasswordResponse>>) => Promise<ResetPasswordResponse>;
7908
7855
  /**
7909
7856
  * Send verification OTP
7910
7857
  * @summary Request email verification with OTP.
7911
7858
  */
7912
- declare const postEmailOtpSendVerificationOtp: (postEmailOtpSendVerificationOtpBody: PostEmailOtpSendVerificationOtpBody, options?: SecondParameter$k<typeof openfortApiClient<PostEmailOtpSendVerificationOtp200>>) => Promise<PostEmailOtpSendVerificationOtp200>;
7859
+ declare const postEmailOtpSendVerificationOtp: (postEmailOtpSendVerificationOtpBody: PostEmailOtpSendVerificationOtpBody, options?: SecondParameter$j<typeof openfortApiClient<PostEmailOtpSendVerificationOtp200>>) => Promise<PostEmailOtpSendVerificationOtp200>;
7913
7860
  /**
7914
7861
  * Check if a verification OTP is valid
7915
7862
  * @summary Check email OTP.
7916
7863
  */
7917
- declare const checkVerificationOtp: (checkVerificationOtpBody: CheckVerificationOtpBody, options?: SecondParameter$k<typeof openfortApiClient<CheckVerificationOtp200>>) => Promise<CheckVerificationOtp200>;
7864
+ declare const checkVerificationOtp: (checkVerificationOtpBody: CheckVerificationOtpBody, options?: SecondParameter$j<typeof openfortApiClient<CheckVerificationOtp200>>) => Promise<CheckVerificationOtp200>;
7918
7865
  /**
7919
7866
  * Verify email with OTP
7920
7867
  * @summary Verify email with OTP.
7921
7868
  */
7922
- declare const postEmailOtpVerifyEmail: (postEmailOtpVerifyEmailBody: PostEmailOtpVerifyEmailBody, options?: SecondParameter$k<typeof openfortApiClient<PostEmailOtpVerifyEmail200>>) => Promise<PostEmailOtpVerifyEmail200>;
7869
+ declare const postEmailOtpVerifyEmail: (postEmailOtpVerifyEmailBody: PostEmailOtpVerifyEmailBody, options?: SecondParameter$j<typeof openfortApiClient<PostEmailOtpVerifyEmail200>>) => Promise<PostEmailOtpVerifyEmail200>;
7923
7870
  /**
7924
7871
  * Sign in with OTP
7925
7872
  * @summary Sign in with email OTP.
7926
7873
  */
7927
- declare const postSignInEmailOtp: (postSignInEmailOtpBody: PostSignInEmailOtpBody, options?: SecondParameter$k<typeof openfortApiClient<PostSignInEmailOtp200>>) => Promise<PostSignInEmailOtp200>;
7874
+ declare const postSignInEmailOtp: (postSignInEmailOtpBody: PostSignInEmailOtpBody, options?: SecondParameter$j<typeof openfortApiClient<PostSignInEmailOtp200>>) => Promise<PostSignInEmailOtp200>;
7928
7875
  /**
7929
7876
  * Send a password reset OTP to the user
7930
7877
  * @summary Request password reset with email OTP.
7931
7878
  */
7932
- declare const postForgetPasswordEmailOtp: (postForgetPasswordEmailOtpBody: PostForgetPasswordEmailOtpBody, options?: SecondParameter$k<typeof openfortApiClient<PostForgetPasswordEmailOtp200>>) => Promise<PostForgetPasswordEmailOtp200>;
7879
+ declare const postForgetPasswordEmailOtp: (postForgetPasswordEmailOtpBody: PostForgetPasswordEmailOtpBody, options?: SecondParameter$j<typeof openfortApiClient<PostForgetPasswordEmailOtp200>>) => Promise<PostForgetPasswordEmailOtp200>;
7933
7880
  /**
7934
7881
  * Reset user password with OTP
7935
7882
  * @summary Reset password with email OTP.
7936
7883
  */
7937
- declare const postEmailOtpResetPassword: (postEmailOtpResetPasswordBody: PostEmailOtpResetPasswordBody, options?: SecondParameter$k<typeof openfortApiClient<ResetPasswordResponse>>) => Promise<ResetPasswordResponse>;
7884
+ declare const postEmailOtpResetPassword: (postEmailOtpResetPasswordBody: PostEmailOtpResetPasswordBody, options?: SecondParameter$j<typeof openfortApiClient<ResetPasswordResponse>>) => Promise<ResetPasswordResponse>;
7938
7885
  /**
7939
7886
  * Generate a nonce for Sign-In With Ethereum (SIWE) authentication
7940
7887
  * @summary Initialize SIWE login.
7941
7888
  */
7942
- declare const postSiweNonce: (postSiweNonceBody: PostSiweNonceBody, options?: SecondParameter$k<typeof openfortApiClient<PostSiweNonce200>>) => Promise<PostSiweNonce200>;
7889
+ declare const postSiweNonce: (postSiweNonceBody: PostSiweNonceBody, options?: SecondParameter$j<typeof openfortApiClient<PostSiweNonce200>>) => Promise<PostSiweNonce200>;
7943
7890
  /**
7944
7891
  * Verify a signed SIWE message and authenticate the user
7945
7892
  * @summary Login with SIWE.
7946
7893
  */
7947
- declare const postSiweVerify: (postSiweVerifyBody: PostSiweVerifyBody, options?: SecondParameter$k<typeof openfortApiClient<PostSiweVerify200>>) => Promise<PostSiweVerify200>;
7894
+ declare const postSiweVerify: (postSiweVerifyBody: PostSiweVerifyBody, options?: SecondParameter$j<typeof openfortApiClient<PostSiweVerify200>>) => Promise<PostSiweVerify200>;
7948
7895
  /**
7949
7896
  * Generates a cryptographically secure nonce for creating a SIWE message to link a wallet to the current authenticated user. Requires active session.
7950
7897
  * @summary Initialize SIWE link.
7951
7898
  */
7952
- declare const postLinkSiweNonce: (postLinkSiweNonceBody: PostLinkSiweNonceBody, options?: SecondParameter$k<typeof openfortApiClient<PostLinkSiweNonce200>>) => Promise<PostLinkSiweNonce200>;
7899
+ declare const postLinkSiweNonce: (postLinkSiweNonceBody: PostLinkSiweNonceBody, options?: SecondParameter$j<typeof openfortApiClient<PostLinkSiweNonce200>>) => Promise<PostLinkSiweNonce200>;
7953
7900
  /**
7954
7901
  * Verifies the SIWE signature and links the wallet to the currently authenticated user. Requires active session.
7955
7902
  * @summary Verify and link SIWE wallet.
7956
7903
  */
7957
- declare const postLinkSiweVerify: (postLinkSiweVerifyBody: PostLinkSiweVerifyBody, options?: SecondParameter$k<typeof openfortApiClient<PostLinkSiweVerify200>>) => Promise<PostLinkSiweVerify200>;
7904
+ declare const postLinkSiweVerify: (postLinkSiweVerifyBody: PostLinkSiweVerifyBody, options?: SecondParameter$j<typeof openfortApiClient<PostLinkSiweVerify200>>) => Promise<PostLinkSiweVerify200>;
7958
7905
  /**
7959
7906
  * Get all SIWE wallets linked to the authenticated user with full wallet metadata including primary status and chain information. Requires active session.
7960
7907
  * @summary List linked wallets.
7961
7908
  */
7962
- declare const getLinkSiweListWallets: (options?: SecondParameter$k<typeof openfortApiClient<GetLinkSiweListWallets200Item[]>>) => Promise<GetLinkSiweListWallets200Item[]>;
7909
+ declare const getLinkSiweListWallets: (options?: SecondParameter$j<typeof openfortApiClient<GetLinkSiweListWallets200Item[]>>) => Promise<GetLinkSiweListWallets200Item[]>;
7963
7910
  /**
7964
7911
  * Remove a linked wallet from the authenticated user account. If the wallet being unlinked is the primary wallet, another wallet will be automatically promoted to primary. Requires active session.
7965
7912
  * @summary Unlink SIWE wallet.
7966
7913
  */
7967
- declare const postLinkSiweUnlink: (postLinkSiweUnlinkBody: PostLinkSiweUnlinkBody, options?: SecondParameter$k<typeof openfortApiClient<PostLinkSiweUnlink200>>) => Promise<PostLinkSiweUnlink200>;
7914
+ declare const postLinkSiweUnlink: (postLinkSiweUnlinkBody: PostLinkSiweUnlinkBody, options?: SecondParameter$j<typeof openfortApiClient<PostLinkSiweUnlink200>>) => Promise<PostLinkSiweUnlink200>;
7968
7915
  type SocialSignInResult = NonNullable<Awaited<ReturnType<typeof socialSignIn>>>;
7969
7916
  type GetGetSessionResult = NonNullable<Awaited<ReturnType<typeof getGetSession>>>;
7970
7917
  type PostSignOutResult = NonNullable<Awaited<ReturnType<typeof postSignOut>>>;
@@ -8097,119 +8044,119 @@ declare namespace authV2 {
8097
8044
  }
8098
8045
 
8099
8046
  /**
8100
- * Generated by orval v7.18.0 🍺
8047
+ * Generated by orval v7.20.0 🍺
8101
8048
  * Do not edit manually.
8102
8049
  * Openfort API
8103
8050
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
8104
8051
  * OpenAPI spec version: 1.0.0
8105
8052
  */
8106
8053
 
8107
- type SecondParameter$j<T extends (...args: never) => unknown> = Parameters<T>[1];
8054
+ type SecondParameter$i<T extends (...args: never) => unknown> = Parameters<T>[1];
8108
8055
  /**
8109
8056
  * Get or create a new session for the player based on the refresh token.
8110
8057
  * @summary Refresh or create auth session.
8111
8058
  */
8112
- declare const refresh: (refreshTokenRequest: RefreshTokenRequest, options?: SecondParameter$j<typeof openfortApiClient<AuthResponse>>) => Promise<AuthResponse>;
8059
+ declare const refresh: (refreshTokenRequest: RefreshTokenRequest, options?: SecondParameter$i<typeof openfortApiClient<AuthResponse>>) => Promise<AuthResponse>;
8113
8060
  /**
8114
8061
  * When using Openfort Auth, the endpoint logs out the player.
8115
8062
  * @summary Log out a player.
8116
8063
  */
8117
- declare const logout: (logoutRequest: LogoutRequest, options?: SecondParameter$j<typeof openfortApiClient<void>>) => Promise<void>;
8064
+ declare const logout: (logoutRequest: LogoutRequest, options?: SecondParameter$i<typeof openfortApiClient<void>>) => Promise<void>;
8118
8065
  /**
8119
8066
  * Create a challenge to link external wallet to the player.
8120
8067
  * @summary Initialize SIWE.
8121
8068
  */
8122
- declare const initSIWE: (sIWERequest: SIWERequest, options?: SecondParameter$j<typeof openfortApiClient<SIWEInitResponse>>) => Promise<SIWEInitResponse>;
8069
+ declare const initSIWE: (sIWERequest: SIWERequest, options?: SecondParameter$i<typeof openfortApiClient<SIWEInitResponse>>) => Promise<SIWEInitResponse>;
8123
8070
  /**
8124
8071
  * @summary Authenticate player with SIWE
8125
8072
  */
8126
- declare const authenticateSIWE: (sIWEAuthenticateRequest: SIWEAuthenticateRequest, options?: SecondParameter$j<typeof openfortApiClient<AuthResponse | void>>) => Promise<void | AuthResponse>;
8073
+ declare const authenticateSIWE: (sIWEAuthenticateRequest: SIWEAuthenticateRequest, options?: SecondParameter$i<typeof openfortApiClient<AuthResponse | void>>) => Promise<void | AuthResponse>;
8127
8074
  /**
8128
8075
  * @summary Unlink external wallet.
8129
8076
  */
8130
- declare const unlinkSIWE: (sIWERequest: SIWERequest, options?: SecondParameter$j<typeof openfortApiClient<AuthPlayerResponse | void>>) => Promise<void | AuthPlayerResponse>;
8077
+ declare const unlinkSIWE: (sIWERequest: SIWERequest, options?: SecondParameter$i<typeof openfortApiClient<AuthPlayerResponse | void>>) => Promise<void | AuthPlayerResponse>;
8131
8078
  /**
8132
8079
  * @summary Link external wallet.
8133
8080
  */
8134
- declare const linkSIWE: (sIWEAuthenticateRequest: SIWEAuthenticateRequest, options?: SecondParameter$j<typeof openfortApiClient<AuthPlayerResponse | void>>) => Promise<void | AuthPlayerResponse>;
8081
+ declare const linkSIWE: (sIWEAuthenticateRequest: SIWEAuthenticateRequest, options?: SecondParameter$i<typeof openfortApiClient<AuthPlayerResponse | void>>) => Promise<void | AuthPlayerResponse>;
8135
8082
  /**
8136
8083
  * Create and authenticate a player based on email and password.
8137
8084
  * @summary Email and password signup.
8138
8085
  */
8139
- declare const signupEmailPassword: (signupRequest: SignupRequest, options?: SecondParameter$j<typeof openfortApiClient<SignupEmailPassword201>>) => Promise<SignupEmailPassword201>;
8086
+ declare const signupEmailPassword: (signupRequest: SignupRequest, options?: SecondParameter$i<typeof openfortApiClient<SignupEmailPassword201>>) => Promise<SignupEmailPassword201>;
8140
8087
  /**
8141
8088
  * Authenticate a player based on email and password.
8142
8089
  * @summary Email and password login.
8143
8090
  */
8144
- declare const loginEmailPassword: (loginRequest: LoginRequest, options?: SecondParameter$j<typeof openfortApiClient<LoginEmailPassword200>>) => Promise<LoginEmailPassword200>;
8091
+ declare const loginEmailPassword: (loginRequest: LoginRequest, options?: SecondParameter$i<typeof openfortApiClient<LoginEmailPassword200>>) => Promise<LoginEmailPassword200>;
8145
8092
  /**
8146
8093
  * Start the Email Verification process for a player.
8147
8094
  * @summary Request an Email Verification.
8148
8095
  */
8149
- declare const requestEmailVerification: (requestVerifyEmailRequest: RequestVerifyEmailRequest, options?: SecondParameter$j<typeof openfortApiClient<void>>) => Promise<void>;
8096
+ declare const requestEmailVerification: (requestVerifyEmailRequest: RequestVerifyEmailRequest, options?: SecondParameter$i<typeof openfortApiClient<void>>) => Promise<void>;
8150
8097
  /**
8151
8098
  * Verify a player's email address.
8152
8099
  * @summary Verify an email.
8153
8100
  */
8154
- declare const verifyEmail: (verifyEmailRequest: VerifyEmailRequest, options?: SecondParameter$j<typeof openfortApiClient<void>>) => Promise<void>;
8101
+ declare const verifyEmail: (verifyEmailRequest: VerifyEmailRequest, options?: SecondParameter$i<typeof openfortApiClient<void>>) => Promise<void>;
8155
8102
  /**
8156
8103
  * Start the Reset process for a player's password.
8157
8104
  * @summary Request a Reset password.
8158
8105
  */
8159
- declare const requestResetPassword: (requestResetPasswordRequest: RequestResetPasswordRequest, options?: SecondParameter$j<typeof openfortApiClient<void>>) => Promise<void>;
8106
+ declare const requestResetPassword: (requestResetPasswordRequest: RequestResetPasswordRequest, options?: SecondParameter$i<typeof openfortApiClient<void>>) => Promise<void>;
8160
8107
  /**
8161
8108
  * Reset a player's password.
8162
8109
  * @summary Reset a password.
8163
8110
  */
8164
- declare const resetPassword: (resetPasswordRequest: ResetPasswordRequest, options?: SecondParameter$j<typeof openfortApiClient<void>>) => Promise<void>;
8165
- declare const linkEmail: (loginRequest: LoginRequest, options?: SecondParameter$j<typeof openfortApiClient<LinkEmail200>>) => Promise<LinkEmail200>;
8166
- declare const unlinkEmail: (unlinkEmailRequest: UnlinkEmailRequest, options?: SecondParameter$j<typeof openfortApiClient<AuthPlayerResponse>>) => Promise<AuthPlayerResponse>;
8111
+ declare const resetPassword: (resetPasswordRequest: ResetPasswordRequest, options?: SecondParameter$i<typeof openfortApiClient<void>>) => Promise<void>;
8112
+ declare const linkEmail: (loginRequest: LoginRequest, options?: SecondParameter$i<typeof openfortApiClient<LinkEmail200>>) => Promise<LinkEmail200>;
8113
+ declare const unlinkEmail: (unlinkEmailRequest: UnlinkEmailRequest, options?: SecondParameter$i<typeof openfortApiClient<AuthPlayerResponse>>) => Promise<AuthPlayerResponse>;
8167
8114
  /**
8168
8115
  * Authenticate a player from an identity token.
8169
8116
  * @summary OIDC Identity token.
8170
8117
  */
8171
- declare const loginOIDC: (loginOIDCRequest: LoginOIDCRequest, options?: SecondParameter$j<typeof openfortApiClient<AuthResponse>>) => Promise<AuthResponse>;
8118
+ declare const loginOIDC: (loginOIDCRequest: LoginOIDCRequest, options?: SecondParameter$i<typeof openfortApiClient<AuthResponse>>) => Promise<AuthResponse>;
8172
8119
  /**
8173
8120
  * @summary Initialize OAuth.
8174
8121
  */
8175
- declare const initOAuth: (oAuthInitRequest: OAuthInitRequest, options?: SecondParameter$j<typeof openfortApiClient<OAuthResponse>>) => Promise<OAuthResponse>;
8122
+ declare const initOAuth: (oAuthInitRequest: OAuthInitRequest, options?: SecondParameter$i<typeof openfortApiClient<OAuthResponse>>) => Promise<OAuthResponse>;
8176
8123
  /**
8177
8124
  * @summary Initialize Link OAuth.
8178
8125
  */
8179
- declare const linkOAuth: (oAuthInitRequest: OAuthInitRequest, options?: SecondParameter$j<typeof openfortApiClient<OAuthResponse>>) => Promise<OAuthResponse>;
8126
+ declare const linkOAuth: (oAuthInitRequest: OAuthInitRequest, options?: SecondParameter$i<typeof openfortApiClient<OAuthResponse>>) => Promise<OAuthResponse>;
8180
8127
  /**
8181
8128
  * @summary Initialize Link OAuth.
8182
8129
  */
8183
- declare const linkThirdParty: (thirdPartyLinkRequest: ThirdPartyLinkRequest, options?: SecondParameter$j<typeof openfortApiClient<AuthPlayerResponse>>) => Promise<AuthPlayerResponse>;
8130
+ declare const linkThirdParty: (thirdPartyLinkRequest: ThirdPartyLinkRequest, options?: SecondParameter$i<typeof openfortApiClient<AuthPlayerResponse>>) => Promise<AuthPlayerResponse>;
8184
8131
  /**
8185
8132
  * @summary Initialize OAuth.
8186
8133
  */
8187
- declare const poolOAuth: (params: PoolOAuthParams, options?: SecondParameter$j<typeof openfortApiClient<AuthResponse>>) => Promise<AuthResponse>;
8134
+ declare const poolOAuth: (params: PoolOAuthParams, options?: SecondParameter$i<typeof openfortApiClient<AuthResponse>>) => Promise<AuthResponse>;
8188
8135
  /**
8189
8136
  * @summary Authenticate player with oauth token.
8190
8137
  */
8191
- declare const loginWithIdToken: (loginWithIdTokenRequest: LoginWithIdTokenRequest, options?: SecondParameter$j<typeof openfortApiClient<AuthResponse>>) => Promise<AuthResponse>;
8138
+ declare const loginWithIdToken: (loginWithIdTokenRequest: LoginWithIdTokenRequest, options?: SecondParameter$i<typeof openfortApiClient<AuthResponse>>) => Promise<AuthResponse>;
8192
8139
  /**
8193
8140
  * @summary Verify oauth token of a third party auth provider.
8194
8141
  */
8195
- declare const thirdParty: (thirdPartyOAuthRequest: ThirdPartyOAuthRequest, options?: SecondParameter$j<typeof openfortApiClient<AuthPlayerResponse>>) => Promise<AuthPlayerResponse>;
8142
+ declare const thirdParty: (thirdPartyOAuthRequest: ThirdPartyOAuthRequest, options?: SecondParameter$i<typeof openfortApiClient<AuthPlayerResponse>>) => Promise<AuthPlayerResponse>;
8196
8143
  /**
8197
8144
  * @summary Unlink OAuth account
8198
8145
  */
8199
- declare const unlinkOAuth: (unlinkOAuthRequest: UnlinkOAuthRequest, options?: SecondParameter$j<typeof openfortApiClient<AuthPlayerResponse>>) => Promise<AuthPlayerResponse>;
8146
+ declare const unlinkOAuth: (unlinkOAuthRequest: UnlinkOAuthRequest, options?: SecondParameter$i<typeof openfortApiClient<AuthPlayerResponse>>) => Promise<AuthPlayerResponse>;
8200
8147
  /**
8201
8148
  * Create a guest player.
8202
8149
  * @summary Create a guest player.
8203
8150
  */
8204
- declare const registerGuest: (options?: SecondParameter$j<typeof openfortApiClient<AuthResponse>>) => Promise<AuthResponse>;
8151
+ declare const registerGuest: (options?: SecondParameter$i<typeof openfortApiClient<AuthResponse>>) => Promise<AuthResponse>;
8205
8152
  /**
8206
8153
  * Get the jwks.json file.
8207
8154
 
8208
8155
  You can use the jwks.json file to verify the signature of a JWT token issued by Openfort Auth.
8209
8156
  * @summary Get the jwks.json file.
8210
8157
  */
8211
- declare const getJwks: (publishableKey: string, options?: SecondParameter$j<typeof openfortApiClient<JwtKeyResponse>>) => Promise<JwtKeyResponse>;
8212
- declare const me: (options?: SecondParameter$j<typeof openfortApiClient<AuthPlayerResponse>>) => Promise<AuthPlayerResponse>;
8158
+ declare const getJwks: (publishableKey: string, options?: SecondParameter$i<typeof openfortApiClient<JwtKeyResponse>>) => Promise<JwtKeyResponse>;
8159
+ declare const me: (options?: SecondParameter$i<typeof openfortApiClient<AuthPlayerResponse>>) => Promise<AuthPlayerResponse>;
8213
8160
  type RefreshResult = NonNullable<Awaited<ReturnType<typeof refresh>>>;
8214
8161
  type LogoutResult = NonNullable<Awaited<ReturnType<typeof logout>>>;
8215
8162
  type InitSIWEResult = NonNullable<Awaited<ReturnType<typeof initSIWE>>>;
@@ -8237,21 +8184,21 @@ type GetJwksResult = NonNullable<Awaited<ReturnType<typeof getJwks>>>;
8237
8184
  type MeResult = NonNullable<Awaited<ReturnType<typeof me>>>;
8238
8185
 
8239
8186
  /**
8240
- * Generated by orval v7.18.0 🍺
8187
+ * Generated by orval v7.20.0 🍺
8241
8188
  * Do not edit manually.
8242
8189
  * Openfort API
8243
8190
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
8244
8191
  * OpenAPI spec version: 1.0.0
8245
8192
  */
8246
8193
 
8247
- type SecondParameter$i<T extends (...args: never) => unknown> = Parameters<T>[1];
8194
+ type SecondParameter$h<T extends (...args: never) => unknown> = Parameters<T>[1];
8248
8195
  /**
8249
8196
  * List backend wallets.
8250
8197
 
8251
8198
  Returns a paginated list of backend wallets for the project.
8252
8199
  * @summary List backend wallets.
8253
8200
  */
8254
- declare const listBackendWallets: (params?: ListBackendWalletsParams, options?: SecondParameter$i<typeof openfortApiClient<BackendWalletListResponse>>) => Promise<BackendWalletListResponse>;
8201
+ declare const listBackendWallets: (params?: ListBackendWalletsParams, options?: SecondParameter$h<typeof openfortApiClient<BackendWalletListResponse>>) => Promise<BackendWalletListResponse>;
8255
8202
  /**
8256
8203
  * Create a new backend wallet account.
8257
8204
 
@@ -8259,21 +8206,21 @@ Generates a new keypair securely in the backend wallet system.
8259
8206
  The private key is stored encrypted and never exposed.
8260
8207
  * @summary Create backend wallet.
8261
8208
  */
8262
- declare const createBackendWallet: (createBackendWalletRequest: CreateBackendWalletRequest, options?: SecondParameter$i<typeof openfortApiClient<CreateBackendWalletResponse>>) => Promise<CreateBackendWalletResponse>;
8209
+ declare const createBackendWallet: (createBackendWalletRequest: CreateBackendWalletRequest, options?: SecondParameter$h<typeof openfortApiClient<CreateBackendWalletResponse>>) => Promise<CreateBackendWalletResponse>;
8263
8210
  /**
8264
8211
  * Get backend wallet details.
8265
8212
 
8266
8213
  Returns details for a specific backend wallet.
8267
8214
  * @summary Get backend wallet.
8268
8215
  */
8269
- declare const getBackendWallet: (id: string, options?: SecondParameter$i<typeof openfortApiClient<BackendWalletResponse>>) => Promise<BackendWalletResponse>;
8216
+ declare const getBackendWallet: (id: string, options?: SecondParameter$h<typeof openfortApiClient<BackendWalletResponse>>) => Promise<BackendWalletResponse>;
8270
8217
  /**
8271
8218
  * Delete a backend wallet.
8272
8219
 
8273
8220
  Permanently deletes a backend wallet and its associated private key.
8274
8221
  * @summary Delete backend wallet.
8275
8222
  */
8276
- declare const deleteBackendWallet: (id: string, options?: SecondParameter$i<typeof openfortApiClient<DeleteBackendWalletResponse>>) => Promise<DeleteBackendWalletResponse>;
8223
+ declare const deleteBackendWallet: (id: string, options?: SecondParameter$h<typeof openfortApiClient<DeleteBackendWalletResponse>>) => Promise<DeleteBackendWalletResponse>;
8277
8224
  /**
8278
8225
  * Sign data via backend wallet.
8279
8226
 
@@ -8281,7 +8228,7 @@ Signs the provided data using the account's private key managed by the backend w
8281
8228
  The private key is securely stored and never exposed.
8282
8229
  * @summary Sign data via backend wallet.
8283
8230
  */
8284
- declare const sign: (id: string, signRequest: SignRequest, options?: SecondParameter$i<typeof openfortApiClient<SignResponse>>) => Promise<SignResponse>;
8231
+ declare const sign: (id: string, signRequest: SignRequest, options?: SecondParameter$h<typeof openfortApiClient<SignResponse>>) => Promise<SignResponse>;
8285
8232
  /**
8286
8233
  * Export private key with E2E encryption via backend wallet.
8287
8234
 
@@ -8290,7 +8237,7 @@ The client must provide their ephemeral RSA-4096 public key (base64 SPKI DER for
8290
8237
  The response contains the encrypted private key that can be decrypted with the client's private key.
8291
8238
  * @summary Export private key (E2E encrypted).
8292
8239
  */
8293
- declare const exportPrivateKey: (id: string, exportPrivateKeyRequest: ExportPrivateKeyRequest, options?: SecondParameter$i<typeof openfortApiClient<ExportPrivateKeyResponse>>) => Promise<ExportPrivateKeyResponse>;
8240
+ declare const exportPrivateKey: (id: string, exportPrivateKeyRequest: ExportPrivateKeyRequest, options?: SecondParameter$h<typeof openfortApiClient<ExportPrivateKeyResponse>>) => Promise<ExportPrivateKeyResponse>;
8294
8241
  /**
8295
8242
  * Import private key with E2E encryption via backend wallet.
8296
8243
 
@@ -8299,7 +8246,7 @@ The private key must be encrypted using RSA-4096 OAEP SHA-256 with the server's
8299
8246
  static import public key (obtain out-of-band from SDK or documentation).
8300
8247
  * @summary Import private key (E2E encrypted).
8301
8248
  */
8302
- declare const importPrivateKey: (importPrivateKeyRequest: ImportPrivateKeyRequest, options?: SecondParameter$i<typeof openfortApiClient<ImportPrivateKeyResponse>>) => Promise<ImportPrivateKeyResponse>;
8249
+ declare const importPrivateKey: (importPrivateKeyRequest: ImportPrivateKeyRequest, options?: SecondParameter$h<typeof openfortApiClient<ImportPrivateKeyResponse>>) => Promise<ImportPrivateKeyResponse>;
8303
8250
  /**
8304
8251
  * Register a new wallet secret (authentication key).
8305
8252
 
@@ -8315,7 +8262,7 @@ Note: Only ONE active secret is allowed per project. This call fails if an
8315
8262
  active secret already exists; use rotateWalletSecret to replace an existing secret.
8316
8263
  * @summary Register wallet secret.
8317
8264
  */
8318
- declare const registerWalletSecret: (registerWalletSecretRequest: RegisterWalletSecretRequest, options?: SecondParameter$i<typeof openfortApiClient<RegisterWalletSecretResponse>>) => Promise<RegisterWalletSecretResponse>;
8265
+ declare const registerWalletSecret: (registerWalletSecretRequest: RegisterWalletSecretRequest, options?: SecondParameter$h<typeof openfortApiClient<RegisterWalletSecretResponse>>) => Promise<RegisterWalletSecretResponse>;
8319
8266
  /**
8320
8267
  * Revoke a wallet secret (authentication key).
8321
8268
 
@@ -8323,7 +8270,7 @@ Permanently revokes a wallet secret so it can no longer be used
8323
8270
  for X-Wallet-Auth JWT signing.
8324
8271
  * @summary Revoke wallet secret.
8325
8272
  */
8326
- declare const revokeWalletSecret: (revokeWalletSecretRequest: RevokeWalletSecretRequest, options?: SecondParameter$i<typeof openfortApiClient<RevokeWalletSecretResponse>>) => Promise<RevokeWalletSecretResponse>;
8273
+ declare const revokeWalletSecret: (revokeWalletSecretRequest: RevokeWalletSecretRequest, options?: SecondParameter$h<typeof openfortApiClient<RevokeWalletSecretResponse>>) => Promise<RevokeWalletSecretResponse>;
8327
8274
  /**
8328
8275
  * Rotate wallet secret (authentication key).
8329
8276
 
@@ -8336,7 +8283,7 @@ JWT signed by the private key corresponding to the NEW publicKey being registere
8336
8283
  This proves possession of the new private key without transmitting it.
8337
8284
  * @summary Rotate wallet secret.
8338
8285
  */
8339
- declare const rotateWalletSecret: (rotateWalletSecretRequest: RotateWalletSecretRequest, options?: SecondParameter$i<typeof openfortApiClient<RotateWalletSecretResponse>>) => Promise<RotateWalletSecretResponse>;
8286
+ declare const rotateWalletSecret: (rotateWalletSecretRequest: RotateWalletSecretRequest, options?: SecondParameter$h<typeof openfortApiClient<RotateWalletSecretResponse>>) => Promise<RotateWalletSecretResponse>;
8340
8287
  type ListBackendWalletsResult = NonNullable<Awaited<ReturnType<typeof listBackendWallets>>>;
8341
8288
  type CreateBackendWalletResult = NonNullable<Awaited<ReturnType<typeof createBackendWallet>>>;
8342
8289
  type GetBackendWalletResult = NonNullable<Awaited<ReturnType<typeof getBackendWallet>>>;
@@ -8349,39 +8296,39 @@ type RevokeWalletSecretResult = NonNullable<Awaited<ReturnType<typeof revokeWall
8349
8296
  type RotateWalletSecretResult = NonNullable<Awaited<ReturnType<typeof rotateWalletSecret>>>;
8350
8297
 
8351
8298
  /**
8352
- * Generated by orval v7.18.0 🍺
8299
+ * Generated by orval v7.20.0 🍺
8353
8300
  * Do not edit manually.
8354
8301
  * Openfort API
8355
8302
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
8356
8303
  * OpenAPI spec version: 1.0.0
8357
8304
  */
8358
8305
 
8359
- type SecondParameter$h<T extends (...args: never) => unknown> = Parameters<T>[1];
8306
+ type SecondParameter$g<T extends (...args: never) => unknown> = Parameters<T>[1];
8360
8307
  /**
8361
8308
  * List of all contracts per project.
8362
8309
  By default, a maximum of ten contracts are shown.
8363
8310
  * @summary List contracts.
8364
8311
  */
8365
- declare const getContracts: (params?: GetContractsParams, options?: SecondParameter$h<typeof openfortApiClient<ContractListResponse>>) => Promise<ContractListResponse>;
8312
+ declare const getContracts: (params?: GetContractsParams, options?: SecondParameter$g<typeof openfortApiClient<ContractListResponse>>) => Promise<ContractListResponse>;
8366
8313
  /**
8367
8314
  * Add a new contract to your project in Openfort
8368
8315
  * @summary Create contract object.
8369
8316
  */
8370
- declare const createContract: (createContractRequest: CreateContractRequest, options?: SecondParameter$h<typeof openfortApiClient<ContractResponse>>) => Promise<ContractResponse>;
8317
+ declare const createContract: (createContractRequest: CreateContractRequest, options?: SecondParameter$g<typeof openfortApiClient<ContractResponse>>) => Promise<ContractResponse>;
8371
8318
  /**
8372
8319
  * Retrieve a contract by providing their contract id.
8373
8320
  * @summary Get a contract.
8374
8321
  */
8375
- declare const getContract: (id: string, options?: SecondParameter$h<typeof openfortApiClient<ContractResponse>>) => Promise<ContractResponse>;
8322
+ declare const getContract: (id: string, options?: SecondParameter$g<typeof openfortApiClient<ContractResponse>>) => Promise<ContractResponse>;
8376
8323
  /**
8377
8324
  * @summary Updates a contract object.
8378
8325
  */
8379
- declare const updateContract: (id: string, updateContractRequest: UpdateContractRequest, options?: SecondParameter$h<typeof openfortApiClient<ContractResponse>>) => Promise<ContractResponse>;
8326
+ declare const updateContract: (id: string, updateContractRequest: UpdateContractRequest, options?: SecondParameter$g<typeof openfortApiClient<ContractResponse>>) => Promise<ContractResponse>;
8380
8327
  /**
8381
8328
  * Delete a contract from the project by providing its contract id.
8382
8329
  * @summary Deletes a contract object.
8383
8330
  */
8384
- declare const deleteContract: (id: string, options?: SecondParameter$h<typeof openfortApiClient<ContractDeleteResponse>>) => Promise<ContractDeleteResponse>;
8331
+ declare const deleteContract: (id: string, options?: SecondParameter$g<typeof openfortApiClient<ContractDeleteResponse>>) => Promise<ContractDeleteResponse>;
8385
8332
  /**
8386
8333
  * Using this endpoint, you can get the repositories returned by any readable
8387
8334
  function listed in a contracts ABI. This could be things like querying
@@ -8389,7 +8336,7 @@ the totalSupply of a currency contract, the number of owners of an items
8389
8336
  contract, and more.
8390
8337
  * @summary Read on chain contract repositories.
8391
8338
  */
8392
- declare const readContract: (id: string, params: ReadContractParams, options?: SecondParameter$h<typeof openfortApiClient<ContractReadResponse>>) => Promise<ContractReadResponse>;
8339
+ declare const readContract: (id: string, params: ReadContractParams, options?: SecondParameter$g<typeof openfortApiClient<ContractReadResponse>>) => Promise<ContractReadResponse>;
8393
8340
  type GetContractsResult = NonNullable<Awaited<ReturnType<typeof getContracts>>>;
8394
8341
  type CreateContractResult = NonNullable<Awaited<ReturnType<typeof createContract>>>;
8395
8342
  type GetContractResult = NonNullable<Awaited<ReturnType<typeof getContract>>>;
@@ -8398,65 +8345,43 @@ type DeleteContractResult = NonNullable<Awaited<ReturnType<typeof deleteContract
8398
8345
  type ReadContractResult = NonNullable<Awaited<ReturnType<typeof readContract>>>;
8399
8346
 
8400
8347
  /**
8401
- * Generated by orval v7.18.0 🍺
8348
+ * Generated by orval v7.20.0 🍺
8402
8349
  * Do not edit manually.
8403
8350
  * Openfort API
8404
8351
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
8405
8352
  * OpenAPI spec version: 1.0.0
8406
8353
  */
8407
8354
 
8408
- type SecondParameter$g<T extends (...args: never) => unknown> = Parameters<T>[1];
8355
+ type SecondParameter$f<T extends (...args: never) => unknown> = Parameters<T>[1];
8409
8356
  /**
8410
8357
  * Returns a list of events.
8411
8358
 
8412
8359
  By default, a maximum of 10 events are shown per page.
8413
8360
  * @summary List events.
8414
8361
  */
8415
- declare const getEvents: (params?: GetEventsParams, options?: SecondParameter$g<typeof openfortApiClient<EventListResponse>>) => Promise<EventListResponse>;
8362
+ declare const getEvents: (params?: GetEventsParams, options?: SecondParameter$f<typeof openfortApiClient<EventListResponse>>) => Promise<EventListResponse>;
8416
8363
  /**
8417
8364
  * Create a new event.
8418
8365
  * @summary Create a new event.
8419
8366
  */
8420
- declare const createEvent: (createEventRequest: CreateEventRequest, options?: SecondParameter$g<typeof openfortApiClient<EventResponse>>) => Promise<EventResponse>;
8367
+ declare const createEvent: (createEventRequest: CreateEventRequest, options?: SecondParameter$f<typeof openfortApiClient<EventResponse>>) => Promise<EventResponse>;
8421
8368
  /**
8422
8369
  * Get a single event.
8423
8370
  * @summary Get a single event.
8424
8371
  */
8425
- declare const getEvent: (id: string, options?: SecondParameter$g<typeof openfortApiClient<EventResponse>>) => Promise<EventResponse>;
8372
+ declare const getEvent: (id: string, options?: SecondParameter$f<typeof openfortApiClient<EventResponse>>) => Promise<EventResponse>;
8426
8373
  /**
8427
8374
  * Delete an event.
8428
8375
  * @summary Delete an event.
8429
8376
  */
8430
- declare const deleteEvent: (id: string, options?: SecondParameter$g<typeof openfortApiClient<EventDeleteResponse>>) => Promise<EventDeleteResponse>;
8377
+ declare const deleteEvent: (id: string, options?: SecondParameter$f<typeof openfortApiClient<EventDeleteResponse>>) => Promise<EventDeleteResponse>;
8431
8378
  type GetEventsResult = NonNullable<Awaited<ReturnType<typeof getEvents>>>;
8432
8379
  type CreateEventResult = NonNullable<Awaited<ReturnType<typeof createEvent>>>;
8433
8380
  type GetEventResult = NonNullable<Awaited<ReturnType<typeof getEvent>>>;
8434
8381
  type DeleteEventResult = NonNullable<Awaited<ReturnType<typeof deleteEvent>>>;
8435
8382
 
8436
8383
  /**
8437
- * Generated by orval v7.18.0 🍺
8438
- * Do not edit manually.
8439
- * Openfort API
8440
- * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
8441
- * OpenAPI spec version: 1.0.0
8442
- */
8443
-
8444
- type SecondParameter$f<T extends (...args: never) => unknown> = Parameters<T>[1];
8445
- /**
8446
- * Creates token swap.
8447
- * @summary Create token swap.
8448
- */
8449
- declare const createSwap: (createExchangeRequest: CreateExchangeRequest, options?: SecondParameter$f<typeof openfortApiClient<TransactionIntentResponse>>) => Promise<TransactionIntentResponse>;
8450
- /**
8451
- * Quote token swap.
8452
- * @summary Quote token swap.
8453
- */
8454
- declare const quoteSwap: (createExchangeRequest: CreateExchangeRequest, options?: SecondParameter$f<typeof openfortApiClient<QuoteExchangeResult>>) => Promise<QuoteExchangeResult>;
8455
- type CreateSwapResult = NonNullable<Awaited<ReturnType<typeof createSwap>>>;
8456
- type QuoteSwapResult = NonNullable<Awaited<ReturnType<typeof quoteSwap>>>;
8457
-
8458
- /**
8459
- * Generated by orval v7.18.0 🍺
8384
+ * Generated by orval v7.20.0 🍺
8460
8385
  * Do not edit manually.
8461
8386
  * Openfort API
8462
8387
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
@@ -8508,7 +8433,7 @@ type GetForwarderContractResult = NonNullable<Awaited<ReturnType<typeof getForwa
8508
8433
  type DeleteForwarderContractResult = NonNullable<Awaited<ReturnType<typeof deleteForwarderContract>>>;
8509
8434
 
8510
8435
  /**
8511
- * Generated by orval v7.18.0 🍺
8436
+ * Generated by orval v7.20.0 🍺
8512
8437
  * Do not edit manually.
8513
8438
  * Openfort API
8514
8439
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
@@ -8520,7 +8445,7 @@ declare const query: (queryBody: unknown, options?: SecondParameter$d<typeof ope
8520
8445
  type QueryResult = NonNullable<Awaited<ReturnType<typeof query>>>;
8521
8446
 
8522
8447
  /**
8523
- * Generated by orval v7.18.0 🍺
8448
+ * Generated by orval v7.20.0 🍺
8524
8449
  * Do not edit manually.
8525
8450
  * Openfort API
8526
8451
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
@@ -8540,7 +8465,7 @@ type GetProjectLogsResult = NonNullable<Awaited<ReturnType<typeof getProjectLogs
8540
8465
  type GetWebhookLogsByProjectIdResult = NonNullable<Awaited<ReturnType<typeof getWebhookLogsByProjectId>>>;
8541
8466
 
8542
8467
  /**
8543
- * Generated by orval v7.18.0 🍺
8468
+ * Generated by orval v7.20.0 🍺
8544
8469
  * Do not edit manually.
8545
8470
  * Openfort API
8546
8471
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
@@ -8571,7 +8496,7 @@ type CreateOnrampSessionResult = NonNullable<Awaited<ReturnType<typeof createOnr
8571
8496
  type GetOnrampQuoteResult = NonNullable<Awaited<ReturnType<typeof getOnrampQuote>>>;
8572
8497
 
8573
8498
  /**
8574
- * Generated by orval v7.18.0 🍺
8499
+ * Generated by orval v7.20.0 🍺
8575
8500
  * Do not edit manually.
8576
8501
  * Openfort API
8577
8502
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
@@ -8623,7 +8548,7 @@ type GetPaymasterResult = NonNullable<Awaited<ReturnType<typeof getPaymaster>>>;
8623
8548
  type DeletePaymasterResult = NonNullable<Awaited<ReturnType<typeof deletePaymaster>>>;
8624
8549
 
8625
8550
  /**
8626
- * Generated by orval v7.18.0 🍺
8551
+ * Generated by orval v7.20.0 🍺
8627
8552
  * Do not edit manually.
8628
8553
  * Openfort API
8629
8554
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
@@ -8682,7 +8607,7 @@ type RequestTransferAccountOwnershipResult = NonNullable<Awaited<ReturnType<type
8682
8607
  type CancelTransferAccountOwnershipResult = NonNullable<Awaited<ReturnType<typeof cancelTransferAccountOwnership>>>;
8683
8608
 
8684
8609
  /**
8685
- * Generated by orval v7.18.0 🍺
8610
+ * Generated by orval v7.20.0 🍺
8686
8611
  * Do not edit manually.
8687
8612
  * Openfort API
8688
8613
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
@@ -8761,7 +8686,7 @@ type GetPolicyBalanceResult = NonNullable<Awaited<ReturnType<typeof getPolicyBal
8761
8686
  type CreatePolicyWithdrawalResult = NonNullable<Awaited<ReturnType<typeof createPolicyWithdrawal>>>;
8762
8687
 
8763
8688
  /**
8764
- * Generated by orval v7.18.0 🍺
8689
+ * Generated by orval v7.20.0 🍺
8765
8690
  * Do not edit manually.
8766
8691
  * Openfort API
8767
8692
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
@@ -8796,7 +8721,7 @@ type UpdatePolicyRuleResult = NonNullable<Awaited<ReturnType<typeof updatePolicy
8796
8721
  type DeletePolicyRuleResult = NonNullable<Awaited<ReturnType<typeof deletePolicyRule>>>;
8797
8722
 
8798
8723
  /**
8799
- * Generated by orval v7.18.0 🍺
8724
+ * Generated by orval v7.20.0 🍺
8800
8725
  * Do not edit manually.
8801
8726
  * Openfort API
8802
8727
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
@@ -8836,7 +8761,7 @@ type HandleRpcRequestResult = NonNullable<Awaited<ReturnType<typeof handleRpcReq
8836
8761
  type HandleChainRpcRequestResult = NonNullable<Awaited<ReturnType<typeof handleChainRpcRequest>>>;
8837
8762
 
8838
8763
  /**
8839
- * Generated by orval v7.18.0 🍺
8764
+ * Generated by orval v7.20.0 🍺
8840
8765
  * Do not edit manually.
8841
8766
  * Openfort API
8842
8767
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
@@ -8878,7 +8803,7 @@ type SignatureSessionResult = NonNullable<Awaited<ReturnType<typeof signatureSes
8878
8803
  type GetSessionResult = NonNullable<Awaited<ReturnType<typeof getSession>>>;
8879
8804
 
8880
8805
  /**
8881
- * Generated by orval v7.18.0 🍺
8806
+ * Generated by orval v7.20.0 🍺
8882
8807
  * Do not edit manually.
8883
8808
  * Openfort API
8884
8809
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
@@ -8937,7 +8862,7 @@ type DeleteDeveloperAccountResult = NonNullable<Awaited<ReturnType<typeof delete
8937
8862
  type GetVerificationPayloadResult = NonNullable<Awaited<ReturnType<typeof getVerificationPayload>>>;
8938
8863
 
8939
8864
  /**
8940
- * Generated by orval v7.18.0 🍺
8865
+ * Generated by orval v7.20.0 🍺
8941
8866
  * Do not edit manually.
8942
8867
  * Openfort API
8943
8868
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
@@ -8970,7 +8895,7 @@ declare const handleSolanaRpcRequest: (cluster: string, jsonRpcRequest: JsonRpcR
8970
8895
  type HandleSolanaRpcRequestResult = NonNullable<Awaited<ReturnType<typeof handleSolanaRpcRequest>>>;
8971
8896
 
8972
8897
  /**
8973
- * Generated by orval v7.18.0 🍺
8898
+ * Generated by orval v7.20.0 🍺
8974
8899
  * Do not edit manually.
8975
8900
  * Openfort API
8976
8901
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
@@ -9068,7 +8993,7 @@ type DeleteTriggerResult = NonNullable<Awaited<ReturnType<typeof deleteTrigger>>
9068
8993
  type TestTriggerResult = NonNullable<Awaited<ReturnType<typeof testTrigger>>>;
9069
8994
 
9070
8995
  /**
9071
- * Generated by orval v7.18.0 🍺
8996
+ * Generated by orval v7.20.0 🍺
9072
8997
  * Do not edit manually.
9073
8998
  * Openfort API
9074
8999
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
@@ -9120,7 +9045,7 @@ type EstimateTransactionIntentCostResult = NonNullable<Awaited<ReturnType<typeof
9120
9045
  type SignatureResult = NonNullable<Awaited<ReturnType<typeof signature>>>;
9121
9046
 
9122
9047
  /**
9123
- * Generated by orval v7.18.0 🍺
9048
+ * Generated by orval v7.20.0 🍺
9124
9049
  * Do not edit manually.
9125
9050
  * Openfort API
9126
9051
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
@@ -9149,6 +9074,11 @@ If the user has a linked embedded signer, it will be deleted as well.
9149
9074
  */
9150
9075
  declare const deleteUser: (id: string, options?: SecondParameter<typeof openfortApiClient<BaseDeleteEntityResponseEntityTypePLAYER>>) => Promise<BaseDeleteEntityResponseEntityTypePLAYER>;
9151
9076
  /**
9077
+ * Retrieves the wallet associated with an authenticated user.
9078
+ * @summary Get wallet for user.
9079
+ */
9080
+ declare const getUserWallet: (id: string, options?: SecondParameter<typeof openfortApiClient<BaseEntityResponseEntityTypeWALLET>>) => Promise<BaseEntityResponseEntityTypeWALLET>;
9081
+ /**
9152
9082
  * Pre-generate a user with an embedded account before they authenticate.
9153
9083
  Creates a user record and an embedded account using the provided SSS key shares.
9154
9084
  When the user later authenticates (via email, OAuth, third-party auth, etc.)
@@ -9171,6 +9101,7 @@ declare const thirdPartyV2: (thirdPartyOAuthRequest: ThirdPartyOAuthRequest, opt
9171
9101
  type GetAuthUsersResult = NonNullable<Awaited<ReturnType<typeof getAuthUsers>>>;
9172
9102
  type GetAuthUserResult = NonNullable<Awaited<ReturnType<typeof getAuthUser>>>;
9173
9103
  type DeleteUserResult = NonNullable<Awaited<ReturnType<typeof deleteUser>>>;
9104
+ type GetUserWalletResult = NonNullable<Awaited<ReturnType<typeof getUserWallet>>>;
9174
9105
  type PregenerateUserV2Result = NonNullable<Awaited<ReturnType<typeof pregenerateUserV2>>>;
9175
9106
  type MeV2Result = NonNullable<Awaited<ReturnType<typeof meV2>>>;
9176
9107
  type ThirdPartyV2Result = NonNullable<Awaited<ReturnType<typeof thirdPartyV2>>>;
@@ -9629,15 +9560,6 @@ declare class Openfort {
9629
9560
  /** Delete a trigger */
9630
9561
  delete: (id: string, triggerId: string, options?: string | RequestOptions | undefined) => Promise<TriggerDeleteResponse>;
9631
9562
  };
9632
- /**
9633
- * Exchange endpoints
9634
- */
9635
- get exchange(): {
9636
- /** Create swap */
9637
- createSwap: (createExchangeRequest: CreateExchangeRequest, options?: string | RequestOptions | undefined) => Promise<TransactionIntentResponse>;
9638
- /** Get swap quote */
9639
- quoteSwap: (createExchangeRequest: CreateExchangeRequest, options?: string | RequestOptions | undefined) => Promise<QuoteExchangeResult>;
9640
- };
9641
9563
  /**
9642
9564
  * Authentication endpoints
9643
9565
  *
@@ -9779,4 +9701,4 @@ declare class Openfort {
9779
9701
  createEncryptionSession(shieldApiKey: string, shieldApiSecret: string, encryptionShare: string, shieldApiBaseUrl?: string): Promise<string>;
9780
9702
  }
9781
9703
 
9782
- export { APIError, type APIErrorType, APITopic, APITopicBALANCECONTRACT, APITopicBALANCEDEVACCOUNT, APITopicBALANCEPROJECT, APITopicTRANSACTIONSUCCESSFUL, APITriggerType, type Abi, type AbiType, type AccelbyteOAuthConfig, type Account$1 as Account, type AccountAbstractionV6Details, type AccountAbstractionV8Details, type AccountAbstractionV9Details, type AccountEventResponse, type AccountListQueries, type AccountListQueriesV2, AccountListQueriesV2AccountType, AccountListQueriesV2ChainType, AccountListQueriesV2Custody, type AccountListResponse, type AccountListV2Response, AccountNotFoundError, type AccountPolicyRuleResponse, type AccountResponse, AccountResponseExpandable, type AccountResponsePlayer, type AccountResponseTransactionIntentsItem, type AccountV2Response, AccountV2ResponseCustody, type ActionRequiredResponse, Actions, type AllowedOriginsRequest, type AllowedOriginsResponse, type Amount, type ApiKeyResponse, ApiKeyType, type AppleOAuthConfig, type AuthConfig, type AuthMigrationListResponse, type AuthMigrationResponse, AuthMigrationStatus, type AuthPlayerListQueries, type AuthPlayerListResponse, type AuthPlayerResponse, type AuthPlayerResponsePlayer, type AuthPlayerResponseWithRecoveryShare, type AuthPlayerResponseWithRecoverySharePlayer, AuthProvider, type AuthProviderListResponse, AuthProviderResponse, AuthProviderResponseV2, type AuthProviderWithTypeResponse, type AuthResponse, type AuthSessionResponse, type AuthUserResponse, type AuthenticateOAuthRequest, AuthenticateOAuthRequestProvider, type AuthenticateSIWEResult, type AuthenticatedPlayerResponse, AuthenticationType, type Authorize200, type AuthorizePlayerRequest, type AuthorizeResult, type AuthorizedApp, type AuthorizedAppsResponse, type AuthorizedAppsResponseAuthorizedAppsItem, type AuthorizedNetwork, type AuthorizedNetworksResponse, type AuthorizedNetworksResponseAuthorizedNetworksItem, type AuthorizedOriginsResponse, type BackendWalletListQueries, BackendWalletListQueriesChainType, type BackendWalletListResponse, BackendWalletListResponseObject, type BackendWalletResponse, BackendWalletResponseChainType, BackendWalletResponseCustody, BackendWalletResponseObject, type BalanceEventResponse, type BalanceResponse, type BaseDeleteEntityResponseEntityTypePLAYER, type BaseEntityListResponseAccountV2Response, type BaseEntityListResponseAuthUserResponse, type BaseEntityListResponseDeviceResponse, type BaseEntityListResponseEmailSampleResponse, type BaseEntityListResponseLogResponse, type BaseEntityListResponseTriggerResponse, BasicAuthProvider, BasicAuthProviderEMAIL, BasicAuthProviderGUEST, BasicAuthProviderPHONE, BasicAuthProviderWEB3, type BetterAuthConfig, type BillingSubscriptionResponse, type BillingSubscriptionResponsePlan, type CallbackOAuthParams, type CallbackOAuthResult, type CancelTransferAccountOwnershipResult, type CancelTransferOwnershipRequest, type CancelTransferOwnershipResult, type ChargeCustomTokenPolicyStrategy, type CheckoutRequest, type CheckoutResponse, type CheckoutSubscriptionRequest, type ChildProjectListResponse, type ChildProjectResponse, type CodeChallenge, CodeChallengeMethod, type CodeChallengeVerify, type CompleteRecoveryRequest, type CompleteRecoveryResult, type ContractDeleteResponse, type ContractEventResponse, type ContractListQueries, type ContractListResponse, type ContractPolicyRuleResponse, type ContractPolicyRuleResponseContract, type ContractReadQueries, type ContractReadResponse, type ContractResponse, type CountPerIntervalLimitPolicyRuleResponse, type CreateAccountRequest, type CreateAccountRequestV2, CreateAccountRequestV2AccountType, CreateAccountRequestV2ChainType, type CreateAccountResult, type CreateAccountV2Result, type CreateAuthPlayerRequest, type CreateAuthPlayerResult, type CreateBackendWalletRequest, CreateBackendWalletRequestChainType, type CreateBackendWalletResponse, CreateBackendWalletResponseChainType, CreateBackendWalletResponseObject, type CreateBackendWalletResult, type CreateContractRequest, type CreateContractResult, type CreateDeveloperAccountCreateRequest, type CreateDeveloperAccountResult, type CreateDeviceRequest, type CreateDeviceResponse, type CreateEcosystemConfigurationRequest, type CreateEmailSampleRequest, type CreateEmailSampleResponse, type CreateEmbeddedRequest, CreateEmbeddedRequestAccountType, CreateEmbeddedRequestChainType, type CreateEventRequest, type CreateEventResponse, type CreateEventResult, type CreateEvmAccountOptions, type CreateExchangeRequest, type CreateForwarderContractRequest, type CreateForwarderContractResponse, type CreateForwarderContractResult, type CreateMigrationRequest, type CreateOAuthConfigResult, type CreateOnrampSessionResult, type CreatePaymasterRequest, type CreatePaymasterRequestContext, type CreatePaymasterResponse, type CreatePaymasterResult, type CreatePlayerResult, type CreatePolicyRequest, type CreatePolicyResult, type CreatePolicyRuleRequest, type CreatePolicyRuleResult, type CreatePolicyWithdrawalResult, type CreateProjectApiKeyRequest, type CreateProjectRequest, type CreateResult, type CreateSMTPConfigResponse, type CreateSessionRequest, type CreateSessionResult, type CreateSolanaAccountOptions, type CreateSubscriptionRequest, type CreateSubscriptionResponse, type CreateSubscriptionResult, type CreateSwapResult, type CreateTransactionIntentRequest, type CreateTransactionIntentResult, type CreateTriggerRequest, type CreateTriggerResponse, type CreateTriggerResult, Currency, type CustomAuthConfig, type DeleteAccountResponse, type DeleteAuthPlayerResult, type DeleteBackendWalletResponse, DeleteBackendWalletResponseObject, type DeleteBackendWalletResult, type DeleteContractResult, type DeleteDeveloperAccountResult, type DeleteEventResult, type DeleteForwarderContractResult, type DeleteOAuthConfigResult, type DeletePaymasterResult, type DeletePlayerResult, type DeletePolicyResult, type DeletePolicyRuleResult, type DeleteSMTPConfigResponse, type DeleteSubscriptionResult, type DeleteTriggerResult, type DeleteUserResult, type DeployAccountResult, type DeployRequest, type DeprecatedCallbackOAuthParams, type DeprecatedCallbackOAuthResult, type DeveloperAccount, type DeveloperAccountDeleteResponse, type DeveloperAccountGetMessageResponse, type DeveloperAccountListQueries, type DeveloperAccountListResponse, type DeveloperAccountResponse, DeveloperAccountResponseExpandable, type DeveloperAccountResponseTransactionIntentsItem, type DeviceListQueries, type DeviceListResponse, type DeviceResponse, type DeviceStat, type DisableAccountResult, type DisablePolicyResult, type DiscordOAuthConfig, type EcosystemConfigurationResponse, type EcosystemMetadata, type EmailAuthConfig, type EmailAuthConfigPasswordRequirements, type EmailSampleDeleteResponse, type EmailSampleListResponse, type EmailSampleResponse, EmailTypeRequest, EmailTypeResponse, type EmbeddedNextActionResponse, EmbeddedNextActionResponseNextAction, type EmbeddedResponse, type EmbeddedV2Response, type EnablePolicyResult, EncryptionError, type EntityIdResponse, EntityTypeACCOUNT, EntityTypeCONTRACT, EntityTypeDEVELOPERACCOUNT, EntityTypeDEVICE, EntityTypeEMAILSAMPLE, EntityTypeEVENT, EntityTypeFORWARDERCONTRACT, EntityTypeLOG, EntityTypePAYMASTER, EntityTypePLAYER, EntityTypePOLICY, EntityTypePOLICYRULE, EntityTypePROJECT, EntityTypeREADCONTRACT, EntityTypeSESSION, EntityTypeSIGNATURE, EntityTypeSMTPCONFIG, EntityTypeSUBSCRIPTION, EntityTypeTRANSACTIONINTENT, EntityTypeTRIGGER, EntityTypeUSER, type EpicGamesOAuthConfig, ErrorTypeINVALIDREQUESTERROR, type EstimateTransactionIntentCostResult, type EstimateTransactionIntentGasResult, type EventDeleteResponse, type EventListQueries, type EventListResponse, type EventResponse, type EvmAccount, type EvmAccountBase, type EvmAccountData, EvmClient, type SignMessageOptions$1 as EvmSignMessageOptions, type SignTransactionOptions$1 as EvmSignTransactionOptions, type SignTypedDataOptions as EvmSignTypedDataOptions, type EvmSigningMethods, type ExportPrivateKeyRequest, type ExportPrivateKeyResponse, ExportPrivateKeyResponseObject, type ExportPrivateKeyResult, type ExportSolanaAccountOptions, type ExportedEmbeddedRequest, type FacebookOAuthConfig, type Fee, type FieldErrors, type FirebaseOAuthConfig, type FixedRateTokenPolicyStrategy, type ForwarderContractDeleteResponse, type ForwarderContractResponse, type GasPerIntervalLimitPolicyRuleResponse, type GasPerTransactionLimitPolicyRuleResponse, type GasReport, type GasReportListResponse, type GasReportTransactionIntents, type GasReportTransactionIntentsListResponse, type GetAccountParams, type GetAccountResult, type GetAccountV2Result, type GetAccountsParams, type GetAccountsResult, GetAccountsV2AccountType, GetAccountsV2ChainType, GetAccountsV2Custody, type GetAccountsV2Params, type GetAccountsV2Result, type GetAuthPlayerResult, type GetAuthPlayersParams, type GetAuthPlayersResult, type GetAuthUserResult, type GetAuthUsersParams, type GetAuthUsersResult, type GetBackendWalletResult, type GetContractResult, type GetContractsParams, type GetContractsResult, type GetDeveloperAccountParams, type GetDeveloperAccountResult, type GetDeveloperAccountsParams, type GetDeveloperAccountsResult, type GetDeviceResponse, type GetEmailSampleResponse, type GetEventResponse, type GetEventResult, type GetEventsParams, type GetEventsResult, type GetEvmAccountOptions, type GetForwarderContractResult, type GetJwksResult, type GetOAuthConfigResult, type GetOnrampQuoteResult, type GetPaymasterResult, type GetPlayerParams, type GetPlayerResult, type GetPlayerSessionsParams, type GetPlayerSessionsResult, type GetPlayersParams, type GetPlayersResult, type GetPoliciesParams, type GetPoliciesResult, type GetPolicyBalanceResult, type GetPolicyParams, type GetPolicyReportTransactionIntentsParams, type GetPolicyReportTransactionIntentsResult, type GetPolicyResult, GetPolicyRulesExpandItem, type GetPolicyRulesParams, type GetPolicyRulesResult, type GetPolicyTotalGasUsageParams, type GetPolicyTotalGasUsageResult, type GetProjectLogsParams, type GetProjectLogsResult, type GetSMTPConfigResponse, type GetSessionParams, type GetSessionResult, type GetSignerIdByAddressParams, type GetSignerIdByAddressResult, type GetSolanaAccountOptions, type GetSubscriptionResponse, type GetSubscriptionResult, type GetSubscriptionsResult, type GetTransactionIntentParams, type GetTransactionIntentResult, type GetTransactionIntentsParams, type GetTransactionIntentsResult, type GetTriggerResponse, type GetTriggerResult, type GetTriggersResult, type GetVerificationPayloadParams, type GetVerificationPayloadResult, type GetWebhookLogsByProjectIdResult, type GoogleOAuthConfig, type GrantCallbackRequest, type GrantOAuthResponse, type GrantOAuthResult, type GuestAuthConfig, type HandleChainRpcRequestResult, type HandleRpcRequestResult, type HandleSolanaRpcRequestResult, type HttpErrorType, IMPORT_ENCRYPTION_PUBLIC_KEY, type ImportPrivateKeyRequest, ImportPrivateKeyRequestChainType, type ImportPrivateKeyResponse, ImportPrivateKeyResponseChainType, ImportPrivateKeyResponseObject, type ImportPrivateKeyResult, type ImportSolanaAccountOptions, type InitEmbeddedRequest, type InitOAuthResult, type InitSIWEResult, type Interaction, InvalidAPIKeyFormatError, InvalidPublishableKeyFormatError, type InvalidRequestError, type InvalidRequestErrorResponse, InvalidWalletSecretFormatError, type JsonRpcError, type JsonRpcErrorResponse, type JsonRpcErrorResponseId, JsonRpcErrorResponseJsonrpc, type JsonRpcRequest, type JsonRpcRequestId, JsonRpcRequestJsonrpc, type JsonRpcResponse, type JsonRpcSuccessResponseAny, type JsonRpcSuccessResponseAnyId, JsonRpcSuccessResponseAnyJsonrpc, type JwtKey, type JwtKeyResponse, type LineOAuthConfig, type LinkEmail200, type LinkEmailResult, type LinkOAuthResult, type LinkSIWEResult, type LinkThirdPartyResult, type LinkedAccountResponse, type LinkedAccountResponseV2, type ListAccountsResult, ListBackendWalletsChainType, type ListBackendWalletsParams, type ListBackendWalletsResult, type ListConfigRequest, type ListEvmAccountsOptions, type ListForwarderContractsParams, type ListForwarderContractsResult, type ListMigrationsRequest, type ListOAuthConfigResult, type ListParams, type ListPaymastersParams, type ListPaymastersResult, type ListResult, type ListSolanaAccountsOptions, type ListSubscriptionLogsParams, type ListSubscriptionLogsRequest, type ListSubscriptionLogsResult, type Log, type LogResponse, type LoginEmailPassword200, type LoginEmailPasswordResult, type LoginOIDCRequest, type LoginOIDCResult, type LoginRequest, type LoginWithIdTokenRequest, type LoginWithIdTokenResult, type LogoutRequest, type LogoutResult, type LootLockerOAuthConfig, type MappingStrategy, type MeResult, type MeV2Result, type MessageBirdSmsProviderConfig, MissingAPIKeyError, MissingPublishableKeyError, MissingWalletSecretError, type Money, type MonthRange, type MyEcosystemResponse, NetworkError, type NextActionPayload, type NextActionResponse, NextActionType, type OAuthConfigListResponse, type OAuthConfigRequest, type OAuthConfigResponse, type OAuthInitRequest, type OAuthInitRequestOptions, type OAuthInitRequestOptionsQueryParams, OAuthProvider, OAuthProviderAPPLE, OAuthProviderDISCORD, OAuthProviderEPICGAMES, OAuthProviderFACEBOOK, OAuthProviderGOOGLE, OAuthProviderLINE, OAuthProviderTWITTER, type OAuthResponse, type OIDCAuthConfig, type OnrampFee, OnrampProvider, type OnrampQuoteRequest, type OnrampQuoteResponse, type OnrampQuotesResponse, type OnrampSessionRequest, type OnrampSessionResponse, type OnrampSessionResponseQuote, Openfort, type OpenfortErrorResponse, type OpenfortOptions, type PagingQueries, type PasskeyEnv, type PayForUserPolicyStrategy, type PaymasterDeleteResponse, type PaymasterResponse, type PaymasterResponseContext, type PhoneAuthConfig, type PhoneAuthConfigSmsProviderConfig, type PickContractResponseId, type PickJsonFragmentExcludeKeyofJsonFragmentInputsOrOutputs, type PickJsonFragmentTypeExcludeKeyofJsonFragmentTypeComponents, type PickPlayerResponseId, type Plan, PlanChangeType, type PlansResponse, type PlayFabOAuthConfig, type Player, type PlayerCancelTransferOwnershipRequest, type PlayerCreateRequest, type PlayerDeleteResponse, type PlayerListQueries, type PlayerListResponse, type PlayerMetadata, type PlayerResponse, type PlayerResponseAccountsItem, PlayerResponseExpandable, type PlayerResponseTransactionIntentsItem, type PlayerTransferOwnershipRequest, type PlayerUpdateRequest, type Policy, type PolicyBalanceWithdrawResponse, type PolicyDeleteResponse, type PolicyListQueries, type PolicyListResponse, PolicyRateLimit, PolicyRateLimitCOUNTPERINTERVAL, PolicyRateLimitGASPERINTERVAL, PolicyRateLimitGASPERTRANSACTION, type PolicyReportQueries, type PolicyReportTransactionIntentsQueries, type PolicyResponse, PolicyResponseExpandable, type PolicyResponsePolicyRulesItem, type PolicyResponseTransactionIntentsItem, type PolicyRuleDeleteResponse, type PolicyRuleListQueries, PolicyRuleListQueriesExpandItem, type PolicyRuleListResponse, type PolicyRuleResponse, PolicyRuleType, PolicyRuleTypeACCOUNT, PolicyRuleTypeCONTRACT, PolicyRuleTypeRATELIMIT, type PolicyStrategy, type PolicyStrategyRequest, type PoolOAuthParams, type PoolOAuthResult, type PregenerateAccountResponse, PregenerateAccountResponseCustody, type PregenerateUserRequestV2, PregenerateUserRequestV2AccountType, PregenerateUserRequestV2ChainType, type PregenerateUserV2Result, PrismaSortOrder, PrivateKeyPolicy, type ProjectListResponse, type ProjectLogs, type ProjectResponse, type ProjectStatsRequest, ProjectStatsRequestTimeFrame, type ProjectStatsResponse, type QueryResult, type QuoteExchangeResult, type QuoteSwapResult, type RSAKeyPair, type ReadContractParams, type ReadContractResult, type RecoverV2EmbeddedRequest, type RecoverV2Response, type RecoveryMethodDetails, type RefreshResult, type RefreshTokenRequest, type RegisterEmbeddedRequest, type RegisterEmbeddedV2Request, type RegisterGuestResult, type RegisterWalletSecretRequest, type RegisterWalletSecretResponse, RegisterWalletSecretResponseObject, type RegisterWalletSecretResult, type RemoveAccountResult, type RequestEmailVerificationResult, type RequestOptions, type RequestResetPasswordRequest, type RequestResetPasswordResult, type RequestTransferAccountOwnershipResult, type RequestTransferOwnershipResult, type RequestVerifyEmailRequest, type ResetPasswordRequest, type ResetPasswordResult, type ResponseResponse, ResponseTypeLIST, type RevokeSessionRequest, type RevokeSessionResult, type RevokeWalletSecretRequest, type RevokeWalletSecretResponse, RevokeWalletSecretResponseObject, type RevokeWalletSecretResult, type RotateWalletSecretRequest, type RotateWalletSecretResponse, RotateWalletSecretResponseObject, type RotateWalletSecretResult, type SIWEAuthenticateRequest, type SIWEInitResponse, type SIWERequest, type SMTPConfigResponse, type SessionListQueries, type SessionListResponse, type SessionResponse, SessionResponseExpandable, type SessionResponseTransactionIntentsItem, type ShieldConfiguration, type SignPayloadDeveloperAccountResult, type SignPayloadRequest, type SignPayloadRequestTypes, type SignPayloadRequestValue, type SignPayloadResponse, type SignPayloadResult, type SignRequest, type SignResponse, SignResponseObject, type SignResult, type SignatureRequest, type SignatureResult, type SignatureSessionResult, type SignerIdResponse, type SignupEmailPassword201, type SignupEmailPasswordResult, type SignupRequest, type SmartAccountData, type SmsApiProviderConfig, SmsProviderMESSAGEBIRD, SmsProviderSMSAPI, SmsProviderTWILIO, SmsProviderTXTLOCAL, SmsProviderVONAGE, type SolanaAccount, type SolanaAccountBase, type SolanaAccountData, SolanaClient, type SignMessageOptions as SolanaSignMessageOptions, type SignTransactionOptions as SolanaSignTransactionOptions, type SolanaSigningMethods, SponsorSchema, SponsorSchemaCHARGECUSTOMTOKENS, SponsorSchemaFIXEDRATE, SponsorSchemaPAYFORUSER, type StandardDetails, type StartRecoveryRequest, type StartRecoveryResult, type Stat, Status, type SubscriptionDeleteResponse, type SubscriptionListResponse, type SubscriptionLogsResponse, type SubscriptionResponse, type SupabaseAuthConfig, type SwitchChainQueriesV2, type SwitchChainRequest, type SwitchChainV2Result, type SyncAccountResult, type TestTrigger200, type TestTriggerResult, type ThirdPartyLinkRequest, ThirdPartyOAuthProvider, ThirdPartyOAuthProviderACCELBYTE, ThirdPartyOAuthProviderBETTERAUTH, ThirdPartyOAuthProviderCUSTOM, ThirdPartyOAuthProviderFIREBASE, ThirdPartyOAuthProviderLOOTLOCKER, ThirdPartyOAuthProviderOIDC, ThirdPartyOAuthProviderPLAYFAB, ThirdPartyOAuthProviderSUPABASE, type ThirdPartyOAuthRequest, type ThirdPartyResult, type ThirdPartyV2Result, TimeIntervalType, TimeoutError, type Token, TokenType, TradeType, TransactionAbstractionType, type TransactionConfirmedEventResponse, type TransactionIntent, type TransactionIntentDetails, type TransactionIntentListQueries, type TransactionIntentListResponse, type TransactionIntentResponse, type TransactionIntentResponseAccount, type TransactionIntentResponseDetails, TransactionIntentResponseExpandable, type TransactionIntentResponsePlayer, type TransactionIntentResponsePolicy, type TransactionResponseLog, type TransactionStat, TransactionStatus, type TransferOwnershipRequest, type Transition, type TriggerDeleteResponse, type TriggerListResponse, type TriggerResponse, type TwilioSmsProviderConfig, type TwitterOAuthConfig, type TxtLocalSmsProviderConfig, type TypedDataField, type TypedDomainData, UnknownError, type UnlinkEmailRequest, type UnlinkEmailResult, type UnlinkOAuthRequest, type UnlinkOAuthResult, type UnlinkSIWEResult, type UpdateAuthorizedAppsRequest, type UpdateAuthorizedNetworksRequest, type UpdateAuthorizedOriginsRequest, type UpdateContractRequest, type UpdateContractResult, type UpdateDeveloperAccountCreateRequest, type UpdateDeveloperAccountResult, type UpdateEmailSampleRequest, type UpdateEmailSampleResponse, type UpdateForwarderContractResult, type UpdateMigrationRequest, type UpdatePaymasterResult, type UpdatePlayerResult, type UpdatePolicyRequest, type UpdatePolicyResult, type UpdatePolicyRuleRequest, type UpdatePolicyRuleResult, type UpdateProjectApiKeyRequest, type UpdateProjectRequest, type UpsertSMTPConfigRequest, type UserDeleteResponse, UserInputValidationError, type UserListQueries, type UserListResponse, type UserOperationV6, type UserOperationV8, type UserOperationV9, type UserProjectCreateRequest, UserProjectCreateRequestRole, type UserProjectDeleteResponse, type UserProjectListResponse, type UserProjectResponse, UserProjectRole, UserProjectRoleADMIN, UserProjectRoleMEMBER, type UserProjectUpdateRequest, UserProjectUpdateRequestRole, ValidationError, type VerifyAuthTokenParams, type VerifyAuthTokenResult, type VerifyEmailRequest, type VerifyEmailResult, type VerifyOAuthTokenResult, type VonageSmsProviderConfig, type Web3AuthConfig, type WebhookResponse, type WithdrawalPolicyRequest, type ZKSyncDetails, authV2 as authApi, openfortAuth_schemas as authSchemas, authenticateSIWE, authorize, callbackOAuth, cancelTransferAccountOwnership, cancelTransferOwnership, completeRecovery, configure, create, createAccount, createAccountV2, createAuthPlayer, createBackendWallet, createContract, createDeveloperAccount, createEvent, createForwarderContract, createOAuthConfig, createOnrampSession, createPaymaster, createPlayer, createPolicy, createPolicyRule, createPolicyWithdrawal, createSession, createSubscription, createSwap, createTransactionIntent, createTrigger, decryptExportedPrivateKey, Openfort as default, deleteAuthPlayer, deleteBackendWallet, deleteContract, deleteDeveloperAccount, deleteEvent, deleteForwarderContract, deleteOAuthConfig, deletePaymaster, deletePlayer, deletePolicy, deletePolicyRule, deleteSubscription, deleteTrigger, deleteUser, deployAccount, deprecatedCallbackOAuth, disableAccount, disablePolicy, enablePolicy, encryptForImport, estimateTransactionIntentCost, exportPrivateKey, generateRSAKeyPair, getAccount, getAccountV2, getAccounts, getAccountsV2, getAuthPlayer, getAuthPlayers, getAuthUser, getAuthUsers, getBackendWallet, getConfig, getContract, getContracts, getDeveloperAccount, getDeveloperAccounts, getEvent, getEvents, getForwarderContract, getJwks, getOAuthConfig, getOnrampQuote, getPaymaster, getPlayer, getPlayerSessions, getPlayers, getPolicies, getPolicy, getPolicyBalance, getPolicyReportTransactionIntents, getPolicyRules, getPolicyTotalGasUsage, getProjectLogs, getSession, getSignerIdByAddress, getSubscription, getSubscriptions, getTransactionIntent, getTransactionIntents, getTrigger, getTriggers, getVerificationPayload, getWebhookLogsByProjectId, grantOAuth, handleChainRpcRequest, handleRpcRequest, handleSolanaRpcRequest, importPrivateKey, initOAuth, initSIWE, isOpenfortError, linkEmail, linkOAuth, linkSIWE, linkThirdParty, list, listBackendWallets, listForwarderContracts, listOAuthConfig, listPaymasters, listSubscriptionLogs, loginEmailPassword, loginOIDC, loginWithIdToken, logout, me, meV2, poolOAuth, pregenerateUserV2, query, quoteSwap, readContract, refresh, registerGuest, registerWalletSecret, removeAccount, requestEmailVerification, requestResetPassword, requestTransferAccountOwnership, requestTransferOwnership, resetPassword, revokeSession, revokeWalletSecret, rotateWalletSecret, sign, signPayload, signPayloadDeveloperAccount, signature, signatureSession, signupEmailPassword, startRecovery, switchChainV2, syncAccount, testTrigger, thirdParty, thirdPartyV2, toEvmAccount, toSolanaAccount, unlinkEmail, unlinkOAuth, unlinkSIWE, updateContract, updateDeveloperAccount, updateForwarderContract, updatePaymaster, updatePlayer, updatePolicy, updatePolicyRule, verifyAuthToken, verifyEmail, verifyOAuthToken };
9704
+ export { APIError, type APIErrorType, APITopic, APITopicBALANCECONTRACT, APITopicBALANCEDEVACCOUNT, APITopicBALANCEPROJECT, APITopicTRANSACTIONSUCCESSFUL, APITriggerType, type Abi, type AbiType, type AccelbyteOAuthConfig, type Account$1 as Account, type AccountAbstractionV6Details, type AccountAbstractionV8Details, type AccountAbstractionV9Details, type AccountEventResponse, type AccountListQueries, type AccountListQueriesV2, AccountListQueriesV2AccountType, AccountListQueriesV2ChainType, AccountListQueriesV2Custody, type AccountListResponse, type AccountListV2Response, AccountNotFoundError, type AccountPolicyRuleResponse, type AccountResponse, AccountResponseExpandable, type AccountResponsePlayer, type AccountResponseTransactionIntentsItem, type AccountV2Response, AccountV2ResponseCustody, type ActionRequiredResponse, Actions, type AllowedOriginsRequest, type AllowedOriginsResponse, type ApiKeyResponse, ApiKeyType, type AppleOAuthConfig, type AuthConfig, type AuthMigrationListResponse, type AuthMigrationResponse, AuthMigrationStatus, type AuthPlayerListQueries, type AuthPlayerListResponse, type AuthPlayerResponse, type AuthPlayerResponsePlayer, type AuthPlayerResponseWithRecoveryShare, type AuthPlayerResponseWithRecoverySharePlayer, AuthProvider, type AuthProviderListResponse, AuthProviderResponse, AuthProviderResponseV2, type AuthProviderWithTypeResponse, type AuthResponse, type AuthSessionResponse, type AuthUserResponse, type AuthenticateOAuthRequest, AuthenticateOAuthRequestProvider, type AuthenticateSIWEResult, type AuthenticatedPlayerResponse, AuthenticationType, type Authorize200, type AuthorizePlayerRequest, type AuthorizeResult, type AuthorizedApp, type AuthorizedAppsResponse, type AuthorizedAppsResponseAuthorizedAppsItem, type AuthorizedNetwork, type AuthorizedNetworksResponse, type AuthorizedNetworksResponseAuthorizedNetworksItem, type AuthorizedOriginsResponse, type BackendWalletListQueries, BackendWalletListQueriesChainType, type BackendWalletListResponse, BackendWalletListResponseObject, type BackendWalletResponse, BackendWalletResponseChainType, BackendWalletResponseCustody, BackendWalletResponseObject, type BalanceEventResponse, type BalanceResponse, type BaseDeleteEntityResponseEntityTypePLAYER, type BaseEntityListResponseAccountV2Response, type BaseEntityListResponseAuthUserResponse, type BaseEntityListResponseDeviceResponse, type BaseEntityListResponseEmailSampleResponse, type BaseEntityListResponseLogResponse, type BaseEntityListResponseTriggerResponse, type BaseEntityResponseEntityTypeWALLET, BasicAuthProvider, BasicAuthProviderEMAIL, BasicAuthProviderGUEST, BasicAuthProviderPHONE, BasicAuthProviderWEB3, type BetterAuthConfig, type BillingSubscriptionResponse, type BillingSubscriptionResponsePlan, type CallbackOAuthParams, type CallbackOAuthResult, type CancelTransferAccountOwnershipResult, type CancelTransferOwnershipRequest, type CancelTransferOwnershipResult, type ChargeCustomTokenPolicyStrategy, type CheckoutRequest, type CheckoutResponse, type CheckoutSubscriptionRequest, type ChildProjectListResponse, type ChildProjectResponse, type CodeChallenge, CodeChallengeMethod, type CodeChallengeVerify, type CompleteRecoveryRequest, type CompleteRecoveryResult, type ContractDeleteResponse, type ContractEventResponse, type ContractListQueries, type ContractListResponse, type ContractPolicyRuleResponse, type ContractPolicyRuleResponseContract, type ContractReadQueries, type ContractReadResponse, type ContractResponse, type CountPerIntervalLimitPolicyRuleResponse, type CreateAccountRequest, type CreateAccountRequestV2, CreateAccountRequestV2AccountType, CreateAccountRequestV2ChainType, type CreateAccountResult, type CreateAccountV2Result, type CreateAuthPlayerRequest, type CreateAuthPlayerResult, type CreateBackendWalletRequest, CreateBackendWalletRequestChainType, type CreateBackendWalletResponse, CreateBackendWalletResponseChainType, CreateBackendWalletResponseObject, type CreateBackendWalletResult, type CreateContractRequest, type CreateContractResult, type CreateDeveloperAccountCreateRequest, type CreateDeveloperAccountResult, type CreateDeviceRequest, type CreateDeviceResponse, type CreateEcosystemConfigurationRequest, type CreateEmailSampleRequest, type CreateEmailSampleResponse, type CreateEmbeddedRequest, CreateEmbeddedRequestAccountType, CreateEmbeddedRequestChainType, type CreateEventRequest, type CreateEventResponse, type CreateEventResult, type CreateEvmAccountOptions, type CreateForwarderContractRequest, type CreateForwarderContractResponse, type CreateForwarderContractResult, type CreateMigrationRequest, type CreateOAuthConfigResult, type CreateOnrampSessionResult, type CreatePaymasterRequest, type CreatePaymasterRequestContext, type CreatePaymasterResponse, type CreatePaymasterResult, type CreatePlayerResult, type CreatePolicyRequest, type CreatePolicyResult, type CreatePolicyRuleRequest, type CreatePolicyRuleResult, type CreatePolicyWithdrawalResult, type CreateProjectApiKeyRequest, type CreateProjectRequest, type CreateResult, type CreateSMTPConfigResponse, type CreateSessionRequest, type CreateSessionResult, type CreateSolanaAccountOptions, type CreateSubscriptionRequest, type CreateSubscriptionResponse, type CreateSubscriptionResult, type CreateTransactionIntentRequest, type CreateTransactionIntentResult, type CreateTriggerRequest, type CreateTriggerResponse, type CreateTriggerResult, Currency, type CustomAuthConfig, type DeleteAccountResponse, type DeleteAuthPlayerResult, type DeleteBackendWalletResponse, DeleteBackendWalletResponseObject, type DeleteBackendWalletResult, type DeleteContractResult, type DeleteDeveloperAccountResult, type DeleteEventResult, type DeleteForwarderContractResult, type DeleteOAuthConfigResult, type DeletePaymasterResult, type DeletePlayerResult, type DeletePolicyResult, type DeletePolicyRuleResult, type DeleteSMTPConfigResponse, type DeleteSubscriptionResult, type DeleteTriggerResult, type DeleteUserResult, type DeployAccountResult, type DeployRequest, type DeprecatedCallbackOAuthParams, type DeprecatedCallbackOAuthResult, type DeveloperAccount, type DeveloperAccountDeleteResponse, type DeveloperAccountGetMessageResponse, type DeveloperAccountListQueries, type DeveloperAccountListResponse, type DeveloperAccountResponse, DeveloperAccountResponseExpandable, type DeveloperAccountResponseTransactionIntentsItem, type DeviceListQueries, type DeviceListResponse, type DeviceResponse, type DeviceStat, type DisableAccountResult, type DisablePolicyResult, type DiscordOAuthConfig, type EcosystemConfigurationResponse, type EcosystemMetadata, type EmailAuthConfig, type EmailAuthConfigPasswordRequirements, type EmailSampleDeleteResponse, type EmailSampleListResponse, type EmailSampleResponse, EmailTypeRequest, EmailTypeResponse, type EmbeddedNextActionResponse, EmbeddedNextActionResponseNextAction, type EmbeddedResponse, type EmbeddedV2Response, type EnablePolicyResult, EncryptionError, type EntityIdResponse, EntityTypeACCOUNT, EntityTypeCONTRACT, EntityTypeDEVELOPERACCOUNT, EntityTypeDEVICE, EntityTypeEMAILSAMPLE, EntityTypeEVENT, EntityTypeFORWARDERCONTRACT, EntityTypeLOG, EntityTypePAYMASTER, EntityTypePLAYER, EntityTypePOLICY, EntityTypePOLICYRULE, EntityTypePROJECT, EntityTypeREADCONTRACT, EntityTypeSESSION, EntityTypeSIGNATURE, EntityTypeSMTPCONFIG, EntityTypeSUBSCRIPTION, EntityTypeTRANSACTIONINTENT, EntityTypeTRIGGER, EntityTypeUSER, EntityTypeWALLET, type EpicGamesOAuthConfig, ErrorTypeINVALIDREQUESTERROR, type EstimateTransactionIntentCostResult, type EstimateTransactionIntentGasResult, type EventDeleteResponse, type EventListQueries, type EventListResponse, type EventResponse, type EvmAccount, type EvmAccountBase, type EvmAccountData, EvmClient, type SignMessageOptions$1 as EvmSignMessageOptions, type SignTransactionOptions$1 as EvmSignTransactionOptions, type SignTypedDataOptions as EvmSignTypedDataOptions, type EvmSigningMethods, type ExportPrivateKeyRequest, type ExportPrivateKeyResponse, ExportPrivateKeyResponseObject, type ExportPrivateKeyResult, type ExportSolanaAccountOptions, type ExportedEmbeddedRequest, type FacebookOAuthConfig, type FieldErrors, type FirebaseOAuthConfig, type FixedRateTokenPolicyStrategy, type ForwarderContractDeleteResponse, type ForwarderContractResponse, type GasPerIntervalLimitPolicyRuleResponse, type GasPerTransactionLimitPolicyRuleResponse, type GasReport, type GasReportListResponse, type GasReportTransactionIntents, type GasReportTransactionIntentsListResponse, type GetAccountParams, type GetAccountResult, type GetAccountV2Result, type GetAccountsParams, type GetAccountsResult, GetAccountsV2AccountType, GetAccountsV2ChainType, GetAccountsV2Custody, type GetAccountsV2Params, type GetAccountsV2Result, type GetAuthPlayerResult, type GetAuthPlayersParams, type GetAuthPlayersResult, type GetAuthUserResult, type GetAuthUsersParams, type GetAuthUsersResult, type GetBackendWalletResult, type GetContractResult, type GetContractsParams, type GetContractsResult, type GetDeveloperAccountParams, type GetDeveloperAccountResult, type GetDeveloperAccountsParams, type GetDeveloperAccountsResult, type GetDeviceResponse, type GetEmailSampleResponse, type GetEventResponse, type GetEventResult, type GetEventsParams, type GetEventsResult, type GetEvmAccountOptions, type GetForwarderContractResult, type GetJwksResult, type GetOAuthConfigResult, type GetOnrampQuoteResult, type GetPaymasterResult, type GetPlayerParams, type GetPlayerResult, type GetPlayerSessionsParams, type GetPlayerSessionsResult, type GetPlayersParams, type GetPlayersResult, type GetPoliciesParams, type GetPoliciesResult, type GetPolicyBalanceResult, type GetPolicyParams, type GetPolicyReportTransactionIntentsParams, type GetPolicyReportTransactionIntentsResult, type GetPolicyResult, GetPolicyRulesExpandItem, type GetPolicyRulesParams, type GetPolicyRulesResult, type GetPolicyTotalGasUsageParams, type GetPolicyTotalGasUsageResult, type GetProjectLogsParams, type GetProjectLogsResult, type GetSMTPConfigResponse, type GetSessionParams, type GetSessionResult, type GetSignerIdByAddressParams, type GetSignerIdByAddressResult, type GetSolanaAccountOptions, type GetSubscriptionResponse, type GetSubscriptionResult, type GetSubscriptionsResult, type GetTransactionIntentParams, type GetTransactionIntentResult, type GetTransactionIntentsParams, type GetTransactionIntentsResult, type GetTriggerResponse, type GetTriggerResult, type GetTriggersResult, type GetUserWalletResult, type GetVerificationPayloadParams, type GetVerificationPayloadResult, type GetWebhookLogsByProjectIdResult, type GoogleOAuthConfig, type GrantCallbackRequest, type GrantOAuthResponse, type GrantOAuthResult, type GuestAuthConfig, type HandleChainRpcRequestResult, type HandleRpcRequestResult, type HandleSolanaRpcRequestResult, type HttpErrorType, IMPORT_ENCRYPTION_PUBLIC_KEY, type ImportPrivateKeyRequest, ImportPrivateKeyRequestChainType, type ImportPrivateKeyResponse, ImportPrivateKeyResponseChainType, ImportPrivateKeyResponseObject, type ImportPrivateKeyResult, type ImportSolanaAccountOptions, type InitEmbeddedRequest, type InitOAuthResult, type InitSIWEResult, type Interaction, InvalidAPIKeyFormatError, InvalidPublishableKeyFormatError, type InvalidRequestError, type InvalidRequestErrorResponse, InvalidWalletSecretFormatError, type JsonRpcError, type JsonRpcErrorResponse, type JsonRpcErrorResponseId, JsonRpcErrorResponseJsonrpc, type JsonRpcRequest, type JsonRpcRequestId, JsonRpcRequestJsonrpc, type JsonRpcResponse, type JsonRpcSuccessResponseAny, type JsonRpcSuccessResponseAnyId, JsonRpcSuccessResponseAnyJsonrpc, type JwtKey, type JwtKeyResponse, type LineOAuthConfig, type LinkEmail200, type LinkEmailResult, type LinkOAuthResult, type LinkSIWEResult, type LinkThirdPartyResult, type LinkedAccountResponse, type LinkedAccountResponseV2, type ListAccountsResult, ListBackendWalletsChainType, type ListBackendWalletsParams, type ListBackendWalletsResult, type ListConfigRequest, type ListEvmAccountsOptions, type ListForwarderContractsParams, type ListForwarderContractsResult, type ListMigrationsRequest, type ListOAuthConfigResult, type ListParams, type ListPaymastersParams, type ListPaymastersResult, type ListResult, type ListSolanaAccountsOptions, type ListSubscriptionLogsParams, type ListSubscriptionLogsRequest, type ListSubscriptionLogsResult, type Log, type LogResponse, type LoginEmailPassword200, type LoginEmailPasswordResult, type LoginOIDCRequest, type LoginOIDCResult, type LoginRequest, type LoginWithIdTokenRequest, type LoginWithIdTokenResult, type LogoutRequest, type LogoutResult, type LootLockerOAuthConfig, type MappingStrategy, type MeResult, type MeV2Result, type MessageBirdSmsProviderConfig, MissingAPIKeyError, MissingPublishableKeyError, MissingWalletSecretError, type Money, type MonthRange, type MyEcosystemResponse, NetworkError, type NextActionPayload, type NextActionResponse, NextActionType, type OAuthConfigListResponse, type OAuthConfigRequest, type OAuthConfigResponse, type OAuthInitRequest, type OAuthInitRequestOptions, type OAuthInitRequestOptionsQueryParams, OAuthProvider, OAuthProviderAPPLE, OAuthProviderDISCORD, OAuthProviderEPICGAMES, OAuthProviderFACEBOOK, OAuthProviderGOOGLE, OAuthProviderLINE, OAuthProviderTWITTER, type OAuthResponse, type OIDCAuthConfig, type OnrampFee, OnrampProvider, type OnrampQuoteRequest, type OnrampQuoteResponse, type OnrampQuotesResponse, type OnrampSessionRequest, type OnrampSessionResponse, type OnrampSessionResponseQuote, Openfort, type OpenfortErrorResponse, type OpenfortOptions, type PagingQueries, type PasskeyEnv, type PayForUserPolicyStrategy, type PaymasterDeleteResponse, type PaymasterResponse, type PaymasterResponseContext, type PhoneAuthConfig, type PhoneAuthConfigSmsProviderConfig, type PickContractResponseId, type PickJsonFragmentExcludeKeyofJsonFragmentInputsOrOutputs, type PickJsonFragmentTypeExcludeKeyofJsonFragmentTypeComponents, type PickPlayerResponseId, type Plan, PlanChangeType, type PlansResponse, type PlayFabOAuthConfig, type Player, type PlayerCancelTransferOwnershipRequest, type PlayerCreateRequest, type PlayerDeleteResponse, type PlayerListQueries, type PlayerListResponse, type PlayerMetadata, type PlayerResponse, type PlayerResponseAccountsItem, PlayerResponseExpandable, type PlayerResponseTransactionIntentsItem, type PlayerTransferOwnershipRequest, type PlayerUpdateRequest, type Policy, type PolicyBalanceWithdrawResponse, type PolicyDeleteResponse, type PolicyListQueries, type PolicyListResponse, PolicyRateLimit, PolicyRateLimitCOUNTPERINTERVAL, PolicyRateLimitGASPERINTERVAL, PolicyRateLimitGASPERTRANSACTION, type PolicyReportQueries, type PolicyReportTransactionIntentsQueries, type PolicyResponse, PolicyResponseExpandable, type PolicyResponsePolicyRulesItem, type PolicyResponseTransactionIntentsItem, type PolicyRuleDeleteResponse, type PolicyRuleListQueries, PolicyRuleListQueriesExpandItem, type PolicyRuleListResponse, type PolicyRuleResponse, PolicyRuleType, PolicyRuleTypeACCOUNT, PolicyRuleTypeCONTRACT, PolicyRuleTypeRATELIMIT, type PolicyStrategy, type PolicyStrategyRequest, type PoolOAuthParams, type PoolOAuthResult, type PregenerateAccountResponse, PregenerateAccountResponseCustody, type PregenerateUserRequestV2, PregenerateUserRequestV2AccountType, PregenerateUserRequestV2ChainType, type PregenerateUserV2Result, PrismaSortOrder, PrivateKeyPolicy, type ProjectListResponse, type ProjectLogs, type ProjectResponse, type ProjectStatsRequest, ProjectStatsRequestTimeFrame, type ProjectStatsResponse, type QueryResult, type RSAKeyPair, type ReadContractParams, type ReadContractResult, type RecoverV2EmbeddedRequest, type RecoverV2Response, type RecoveryMethodDetails, type RefreshResult, type RefreshTokenRequest, type RegisterEmbeddedRequest, type RegisterEmbeddedV2Request, type RegisterGuestResult, type RegisterWalletSecretRequest, type RegisterWalletSecretResponse, RegisterWalletSecretResponseObject, type RegisterWalletSecretResult, type RemoveAccountResult, type RequestEmailVerificationResult, type RequestOptions, type RequestResetPasswordRequest, type RequestResetPasswordResult, type RequestTransferAccountOwnershipResult, type RequestTransferOwnershipResult, type RequestVerifyEmailRequest, type ResetPasswordRequest, type ResetPasswordResult, type ResponseResponse, ResponseTypeLIST, type RevokeSessionRequest, type RevokeSessionResult, type RevokeWalletSecretRequest, type RevokeWalletSecretResponse, RevokeWalletSecretResponseObject, type RevokeWalletSecretResult, type RotateWalletSecretRequest, type RotateWalletSecretResponse, RotateWalletSecretResponseObject, type RotateWalletSecretResult, type SIWEAuthenticateRequest, type SIWEInitResponse, type SIWERequest, type SMTPConfigResponse, type SessionListQueries, type SessionListResponse, type SessionResponse, SessionResponseExpandable, type SessionResponseTransactionIntentsItem, type ShieldConfiguration, type SignPayloadDeveloperAccountResult, type SignPayloadRequest, type SignPayloadRequestTypes, type SignPayloadRequestValue, type SignPayloadResponse, type SignPayloadResult, type SignRequest, type SignResponse, SignResponseObject, type SignResult, type SignatureRequest, type SignatureResult, type SignatureSessionResult, type SignerIdResponse, type SignupEmailPassword201, type SignupEmailPasswordResult, type SignupRequest, type SmartAccountData, type SmsApiProviderConfig, SmsProviderMESSAGEBIRD, SmsProviderSMSAPI, SmsProviderTWILIO, SmsProviderTXTLOCAL, SmsProviderVONAGE, type SolanaAccount, type SolanaAccountBase, type SolanaAccountData, SolanaClient, type SignMessageOptions as SolanaSignMessageOptions, type SignTransactionOptions as SolanaSignTransactionOptions, type SolanaSigningMethods, SponsorSchema, SponsorSchemaCHARGECUSTOMTOKENS, SponsorSchemaFIXEDRATE, SponsorSchemaPAYFORUSER, type StandardDetails, type StartRecoveryRequest, type StartRecoveryResult, type Stat, Status, type SubscriptionDeleteResponse, type SubscriptionListResponse, type SubscriptionLogsResponse, type SubscriptionResponse, type SupabaseAuthConfig, type SwitchChainQueriesV2, type SwitchChainRequest, type SwitchChainV2Result, type SyncAccountResult, type TestTrigger200, type TestTriggerResult, type ThirdPartyLinkRequest, ThirdPartyOAuthProvider, ThirdPartyOAuthProviderACCELBYTE, ThirdPartyOAuthProviderBETTERAUTH, ThirdPartyOAuthProviderCUSTOM, ThirdPartyOAuthProviderFIREBASE, ThirdPartyOAuthProviderLOOTLOCKER, ThirdPartyOAuthProviderOIDC, ThirdPartyOAuthProviderPLAYFAB, ThirdPartyOAuthProviderSUPABASE, type ThirdPartyOAuthRequest, type ThirdPartyResult, type ThirdPartyV2Result, TimeIntervalType, TimeoutError, TokenType, TransactionAbstractionType, type TransactionConfirmedEventResponse, type TransactionIntent, type TransactionIntentDetails, type TransactionIntentListQueries, type TransactionIntentListResponse, type TransactionIntentResponse, type TransactionIntentResponseAccount, type TransactionIntentResponseDetails, TransactionIntentResponseExpandable, type TransactionIntentResponsePlayer, type TransactionIntentResponsePolicy, type TransactionResponseLog, type TransactionStat, TransactionStatus, type TransferOwnershipRequest, type Transition, type TriggerDeleteResponse, type TriggerListResponse, type TriggerResponse, type TwilioSmsProviderConfig, type TwitterOAuthConfig, type TxtLocalSmsProviderConfig, type TypedDataField, type TypedDomainData, UnknownError, type UnlinkEmailRequest, type UnlinkEmailResult, type UnlinkOAuthRequest, type UnlinkOAuthResult, type UnlinkSIWEResult, type UpdateAuthorizedAppsRequest, type UpdateAuthorizedNetworksRequest, type UpdateAuthorizedOriginsRequest, type UpdateContractRequest, type UpdateContractResult, type UpdateDeveloperAccountCreateRequest, type UpdateDeveloperAccountResult, type UpdateEmailSampleRequest, type UpdateEmailSampleResponse, type UpdateForwarderContractResult, type UpdateMigrationRequest, type UpdatePaymasterResult, type UpdatePlayerResult, type UpdatePolicyRequest, type UpdatePolicyResult, type UpdatePolicyRuleRequest, type UpdatePolicyRuleResult, type UpdateProjectApiKeyRequest, type UpdateProjectRequest, type UpsertSMTPConfigRequest, type UserDeleteResponse, UserInputValidationError, type UserListQueries, type UserListResponse, type UserOperationV6, type UserOperationV8, type UserOperationV9, type UserProjectCreateRequest, UserProjectCreateRequestRole, type UserProjectDeleteResponse, type UserProjectListResponse, type UserProjectResponse, UserProjectRole, UserProjectRoleADMIN, UserProjectRoleMEMBER, type UserProjectUpdateRequest, UserProjectUpdateRequestRole, ValidationError, type VerifyAuthTokenParams, type VerifyAuthTokenResult, type VerifyEmailRequest, type VerifyEmailResult, type VerifyOAuthTokenResult, type VonageSmsProviderConfig, type WalletResponse, type Web3AuthConfig, type WebhookResponse, type WithdrawalPolicyRequest, type ZKSyncDetails, authV2 as authApi, openfortAuth_schemas as authSchemas, authenticateSIWE, authorize, callbackOAuth, cancelTransferAccountOwnership, cancelTransferOwnership, completeRecovery, configure, create, createAccount, createAccountV2, createAuthPlayer, createBackendWallet, createContract, createDeveloperAccount, createEvent, createForwarderContract, createOAuthConfig, createOnrampSession, createPaymaster, createPlayer, createPolicy, createPolicyRule, createPolicyWithdrawal, createSession, createSubscription, createTransactionIntent, createTrigger, decryptExportedPrivateKey, Openfort as default, deleteAuthPlayer, deleteBackendWallet, deleteContract, deleteDeveloperAccount, deleteEvent, deleteForwarderContract, deleteOAuthConfig, deletePaymaster, deletePlayer, deletePolicy, deletePolicyRule, deleteSubscription, deleteTrigger, deleteUser, deployAccount, deprecatedCallbackOAuth, disableAccount, disablePolicy, enablePolicy, encryptForImport, estimateTransactionIntentCost, exportPrivateKey, generateRSAKeyPair, getAccount, getAccountV2, getAccounts, getAccountsV2, getAuthPlayer, getAuthPlayers, getAuthUser, getAuthUsers, getBackendWallet, getConfig, getContract, getContracts, getDeveloperAccount, getDeveloperAccounts, getEvent, getEvents, getForwarderContract, getJwks, getOAuthConfig, getOnrampQuote, getPaymaster, getPlayer, getPlayerSessions, getPlayers, getPolicies, getPolicy, getPolicyBalance, getPolicyReportTransactionIntents, getPolicyRules, getPolicyTotalGasUsage, getProjectLogs, getSession, getSignerIdByAddress, getSubscription, getSubscriptions, getTransactionIntent, getTransactionIntents, getTrigger, getTriggers, getUserWallet, getVerificationPayload, getWebhookLogsByProjectId, grantOAuth, handleChainRpcRequest, handleRpcRequest, handleSolanaRpcRequest, importPrivateKey, initOAuth, initSIWE, isOpenfortError, linkEmail, linkOAuth, linkSIWE, linkThirdParty, list, listBackendWallets, listForwarderContracts, listOAuthConfig, listPaymasters, listSubscriptionLogs, loginEmailPassword, loginOIDC, loginWithIdToken, logout, me, meV2, poolOAuth, pregenerateUserV2, query, readContract, refresh, registerGuest, registerWalletSecret, removeAccount, requestEmailVerification, requestResetPassword, requestTransferAccountOwnership, requestTransferOwnership, resetPassword, revokeSession, revokeWalletSecret, rotateWalletSecret, sign, signPayload, signPayloadDeveloperAccount, signature, signatureSession, signupEmailPassword, startRecovery, switchChainV2, syncAccount, testTrigger, thirdParty, thirdPartyV2, toEvmAccount, toSolanaAccount, unlinkEmail, unlinkOAuth, unlinkSIWE, updateContract, updateDeveloperAccount, updateForwarderContract, updatePaymaster, updatePlayer, updatePolicy, updatePolicyRule, verifyAuthToken, verifyEmail, verifyOAuthToken };