@openfort/openfort-node 0.7.0 → 0.7.2

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.ts CHANGED
@@ -689,7 +689,7 @@ declare class ValidationError extends Error {
689
689
  }
690
690
 
691
691
  /**
692
- * Generated by orval v7.17.0 🍺
692
+ * Generated by orval v7.18.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
@@ -2912,6 +2912,14 @@ interface RecoveryMethodDetails {
2912
2912
  passkeyId?: string;
2913
2913
  passkeyEnv?: PasskeyEnv;
2914
2914
  }
2915
+ /**
2916
+ * Indicates key custody: "Developer" for server-managed keys (WALLTEE), "User" for user-managed keys (DB).
2917
+ */
2918
+ type PregenerateAccountResponseCustody = typeof PregenerateAccountResponseCustody[keyof typeof PregenerateAccountResponseCustody];
2919
+ declare const PregenerateAccountResponseCustody: {
2920
+ readonly Developer: "Developer";
2921
+ readonly User: "User";
2922
+ };
2915
2923
  interface PregenerateAccountResponse {
2916
2924
  id: string;
2917
2925
  user: string;
@@ -2925,6 +2933,8 @@ interface PregenerateAccountResponse {
2925
2933
  smartAccount?: SmartAccountData;
2926
2934
  recoveryMethod?: string;
2927
2935
  recoveryMethodDetails?: RecoveryMethodDetails;
2936
+ /** Indicates key custody: "Developer" for server-managed keys (WALLTEE), "User" for user-managed keys (DB). */
2937
+ custody: PregenerateAccountResponseCustody;
2928
2938
  /** The recovery share for the user's embedded signer.
2929
2939
  This should be stored securely and provided to the user for account recovery. */
2930
2940
  recoveryShare: string;
@@ -3046,6 +3056,13 @@ declare const BackendWalletResponseChainType: {
3046
3056
  readonly EVM: "EVM";
3047
3057
  readonly SVM: "SVM";
3048
3058
  };
3059
+ /**
3060
+ * Key custody: always "Developer" for backend wallets (server-managed keys in TEE).
3061
+ */
3062
+ type BackendWalletResponseCustody = typeof BackendWalletResponseCustody[keyof typeof BackendWalletResponseCustody];
3063
+ declare const BackendWalletResponseCustody: {
3064
+ readonly Developer: "Developer";
3065
+ };
3049
3066
  /**
3050
3067
  * Backend wallet details response.
3051
3068
  */
@@ -3062,6 +3079,10 @@ interface BackendWalletResponse {
3062
3079
  chainType: BackendWalletResponseChainType;
3063
3080
  /** Optional name for the wallet. */
3064
3081
  name?: string;
3082
+ /**
3083
+ * Key custody: always "Developer" for backend wallets (server-managed keys in TEE).
3084
+ */
3085
+ custody: BackendWalletResponseCustody;
3065
3086
  /** Creation timestamp (Unix epoch seconds). */
3066
3087
  createdAt: number;
3067
3088
  /** Last updated timestamp (Unix epoch seconds). */
@@ -3388,6 +3409,14 @@ interface RotateWalletSecretRequest {
3388
3409
  Used to identify this key in X-Wallet-Auth JWT headers. */
3389
3410
  newKeyId?: string;
3390
3411
  }
3412
+ /**
3413
+ * Indicates key custody: "Developer" for server-managed keys (WALLTEE), "User" for user-managed keys (DB).
3414
+ */
3415
+ type AccountV2ResponseCustody = typeof AccountV2ResponseCustody[keyof typeof AccountV2ResponseCustody];
3416
+ declare const AccountV2ResponseCustody: {
3417
+ readonly Developer: "Developer";
3418
+ readonly User: "User";
3419
+ };
3391
3420
  interface AccountV2Response {
3392
3421
  id: string;
3393
3422
  user: string;
@@ -3401,6 +3430,8 @@ interface AccountV2Response {
3401
3430
  smartAccount?: SmartAccountData;
3402
3431
  recoveryMethod?: string;
3403
3432
  recoveryMethodDetails?: RecoveryMethodDetails;
3433
+ /** Indicates key custody: "Developer" for server-managed keys (WALLTEE), "User" for user-managed keys (DB). */
3434
+ custody: AccountV2ResponseCustody;
3404
3435
  }
3405
3436
  interface BaseEntityListResponseAccountV2Response {
3406
3437
  object: ResponseTypeLIST;
@@ -5106,6 +5137,16 @@ type ListPaymastersParams = {
5106
5137
  */
5107
5138
  order?: PrismaSortOrder;
5108
5139
  };
5140
+ type GetProjectLogsParams = {
5141
+ /**
5142
+ * .
5143
+ */
5144
+ method?: string[];
5145
+ /**
5146
+ * Specifies the unique project ID.
5147
+ */
5148
+ id?: string;
5149
+ };
5109
5150
  type ListForwarderContractsParams = {
5110
5151
  /**
5111
5152
  * Specifies the maximum number of records to return.
@@ -5343,6 +5384,26 @@ type LinkEmail200 = AuthPlayerResponse | ActionRequiredResponse;
5343
5384
  type PoolOAuthParams = {
5344
5385
  key: string;
5345
5386
  };
5387
+ type DeprecatedCallbackOAuthParams = {
5388
+ /**
5389
+ * Specifies the oauth code.
5390
+ */
5391
+ code: string;
5392
+ /**
5393
+ * Specifies the oauth state.
5394
+ */
5395
+ state: string;
5396
+ };
5397
+ type CallbackOAuthParams = {
5398
+ /**
5399
+ * Specifies the oauth code.
5400
+ */
5401
+ code: string;
5402
+ /**
5403
+ * Specifies the oauth state.
5404
+ */
5405
+ state: string;
5406
+ };
5346
5407
  type ListParams = {
5347
5408
  enabled?: boolean;
5348
5409
  };
@@ -5427,14 +5488,14 @@ declare const openfortApiClient: <T>(config: AxiosRequestConfig, options?: Reque
5427
5488
  declare const getConfig: () => OpenfortClientOptions | undefined;
5428
5489
 
5429
5490
  /**
5430
- * Generated by orval v7.17.0 🍺
5491
+ * Generated by orval v7.18.0 🍺
5431
5492
  * Do not edit manually.
5432
5493
  * Openfort API
5433
5494
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
5434
5495
  * OpenAPI spec version: 1.0.0
5435
5496
  */
5436
5497
 
5437
- type SecondParameter$p<T extends (...args: never) => unknown> = Parameters<T>[1];
5498
+ type SecondParameter$n<T extends (...args: never) => unknown> = Parameters<T>[1];
5438
5499
  /**
5439
5500
  * Returns a list of accounts for the given player.
5440
5501
 
@@ -5447,7 +5508,7 @@ Returns the latest 10 transaction intents for each account.
5447
5508
  By default, a maximum of 10 accounts are shown per page.
5448
5509
  * @summary List accounts of a player.
5449
5510
  */
5450
- declare const getAccounts: (params?: GetAccountsParams, options?: SecondParameter$p<typeof openfortApiClient<AccountListResponse>>) => Promise<AccountListResponse>;
5511
+ declare const getAccounts: (params?: GetAccountsParams, options?: SecondParameter$n<typeof openfortApiClient<AccountListResponse>>) => Promise<AccountListResponse>;
5451
5512
  /**
5452
5513
  * Creates a new blockchain account for the provided player. If not player is provided, a new one will be created.
5453
5514
 
@@ -5456,7 +5517,7 @@ Account creation does not consume any gas. All accounts of a player will use the
5456
5517
  Each player can only have one account per chain.
5457
5518
  * @summary Create an account object.
5458
5519
  */
5459
- declare const createAccount: (createAccountRequest: CreateAccountRequest, options?: SecondParameter$p<typeof openfortApiClient<AccountResponse>>) => Promise<AccountResponse>;
5520
+ declare const createAccount: (createAccountRequest: CreateAccountRequest, options?: SecondParameter$n<typeof openfortApiClient<AccountResponse>>) => Promise<AccountResponse>;
5460
5521
  /**
5461
5522
  * Retrieves the details of an existing account.
5462
5523
 
@@ -5465,8 +5526,14 @@ Supply the unique account ID from either a account creation request or the accou
5465
5526
  Returns the latest 10 transaction intents created by this account.
5466
5527
  * @summary Get existing account.
5467
5528
  */
5468
- declare const getAccount: (id: string, params?: GetAccountParams, options?: SecondParameter$p<typeof openfortApiClient<AccountResponse>>) => Promise<AccountResponse>;
5469
- declare const disableAccount: (id: string, options?: SecondParameter$p<typeof openfortApiClient<void>>) => Promise<void>;
5529
+ declare const getAccount: (id: string, params?: GetAccountParams, options?: SecondParameter$n<typeof openfortApiClient<AccountResponse>>) => Promise<AccountResponse>;
5530
+ /**
5531
+ * Disables an account.
5532
+
5533
+ Accounts won't be shown for user and won't be accessible for transactions.
5534
+ * @summary Disable account by id.
5535
+ */
5536
+ declare const disableAccount: (id: string, options?: SecondParameter$n<typeof openfortApiClient<void>>) => Promise<void>;
5470
5537
  /**
5471
5538
  * Perform a request to change the owner of an account.
5472
5539
 
@@ -5474,68 +5541,97 @@ To perform an update on the owner of an account, first you must provide a new ow
5474
5541
  Once requested, the owner must accept to take ownership by calling `acceptOwnership()` in the smart contract account.
5475
5542
  * @summary Request transfer ownership of account.
5476
5543
  */
5477
- declare const requestTransferOwnership: (id: string, transferOwnershipRequest: TransferOwnershipRequest, options?: SecondParameter$p<typeof openfortApiClient<TransactionIntentResponse>>) => Promise<TransactionIntentResponse>;
5544
+ declare const requestTransferOwnership: (id: string, transferOwnershipRequest: TransferOwnershipRequest, options?: SecondParameter$n<typeof openfortApiClient<TransactionIntentResponse>>) => Promise<TransactionIntentResponse>;
5478
5545
  /**
5479
5546
  * Cancel a pending transfer of ownership.
5480
5547
  * @summary Cancel request to transfer ownership of an account.
5481
5548
  */
5482
- declare const cancelTransferOwnership: (id: string, cancelTransferOwnershipRequest: CancelTransferOwnershipRequest, options?: SecondParameter$p<typeof openfortApiClient<TransactionIntentResponse>>) => Promise<TransactionIntentResponse>;
5549
+ declare const cancelTransferOwnership: (id: string, cancelTransferOwnershipRequest: CancelTransferOwnershipRequest, options?: SecondParameter$n<typeof openfortApiClient<TransactionIntentResponse>>) => Promise<TransactionIntentResponse>;
5483
5550
  /**
5484
5551
  * **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.
5485
5552
  * @summary Sign a given payload
5486
5553
  */
5487
- declare const signPayload: (id: string, signPayloadRequest: SignPayloadRequest, options?: SecondParameter$p<typeof openfortApiClient<SignPayloadResponse>>) => Promise<SignPayloadResponse>;
5554
+ declare const signPayload: (id: string, signPayloadRequest: SignPayloadRequest, options?: SecondParameter$n<typeof openfortApiClient<SignPayloadResponse>>) => Promise<SignPayloadResponse>;
5488
5555
  /**
5489
5556
  * Synchronize the account state with the blockchain.
5490
5557
  Specifically, it updates the account owner and whether its deployed or not.
5491
5558
  * @summary Sync account state with the blockchain
5492
5559
  */
5493
- declare const syncAccount: (id: string, options?: SecondParameter$p<typeof openfortApiClient<AccountResponse>>) => Promise<AccountResponse>;
5560
+ declare const syncAccount: (id: string, options?: SecondParameter$n<typeof openfortApiClient<AccountResponse>>) => Promise<AccountResponse>;
5494
5561
  /**
5495
5562
  * This endpoint can be used to deploy a smart contract account that was counterfactually generated.
5496
5563
  * @summary Deploy an account.
5497
5564
  */
5498
- declare const deployAccount: (id: string, deployRequest: DeployRequest, options?: SecondParameter$p<typeof openfortApiClient<AccountResponse>>) => Promise<AccountResponse>;
5565
+ declare const deployAccount: (id: string, deployRequest: DeployRequest, options?: SecondParameter$n<typeof openfortApiClient<AccountResponse>>) => Promise<AccountResponse>;
5499
5566
  /**
5500
5567
  * @summary Start a recovery process of a recoverable account.
5501
5568
  */
5502
- declare const startRecovery: (id: string, startRecoveryRequest: StartRecoveryRequest, options?: SecondParameter$p<typeof openfortApiClient<TransactionIntentResponse>>) => Promise<TransactionIntentResponse>;
5569
+ declare const startRecovery: (id: string, startRecoveryRequest: StartRecoveryRequest, options?: SecondParameter$n<typeof openfortApiClient<TransactionIntentResponse>>) => Promise<TransactionIntentResponse>;
5503
5570
  /**
5504
5571
  * @summary Complete a recovery process of a recoverable account.
5505
5572
  */
5506
- declare const completeRecovery: (id: string, completeRecoveryRequest: CompleteRecoveryRequest, options?: SecondParameter$p<typeof openfortApiClient<TransactionIntentResponse>>) => Promise<TransactionIntentResponse>;
5573
+ declare const completeRecovery: (id: string, completeRecoveryRequest: CompleteRecoveryRequest, options?: SecondParameter$n<typeof openfortApiClient<TransactionIntentResponse>>) => Promise<TransactionIntentResponse>;
5574
+ type GetAccountsResult = NonNullable<Awaited<ReturnType<typeof getAccounts>>>;
5575
+ type CreateAccountResult = NonNullable<Awaited<ReturnType<typeof createAccount>>>;
5576
+ type GetAccountResult = NonNullable<Awaited<ReturnType<typeof getAccount>>>;
5577
+ type DisableAccountResult = NonNullable<Awaited<ReturnType<typeof disableAccount>>>;
5578
+ type RequestTransferOwnershipResult = NonNullable<Awaited<ReturnType<typeof requestTransferOwnership>>>;
5579
+ type CancelTransferOwnershipResult = NonNullable<Awaited<ReturnType<typeof cancelTransferOwnership>>>;
5580
+ type SignPayloadResult = NonNullable<Awaited<ReturnType<typeof signPayload>>>;
5581
+ type SyncAccountResult = NonNullable<Awaited<ReturnType<typeof syncAccount>>>;
5582
+ type DeployAccountResult = NonNullable<Awaited<ReturnType<typeof deployAccount>>>;
5583
+ type StartRecoveryResult = NonNullable<Awaited<ReturnType<typeof startRecovery>>>;
5584
+ type CompleteRecoveryResult = NonNullable<Awaited<ReturnType<typeof completeRecovery>>>;
5585
+
5586
+ /**
5587
+ * Generated by orval v7.18.0 🍺
5588
+ * Do not edit manually.
5589
+ * Openfort API
5590
+ * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
5591
+ * OpenAPI spec version: 1.0.0
5592
+ */
5593
+
5594
+ type SecondParameter$m<T extends (...args: never) => unknown> = Parameters<T>[1];
5507
5595
  /**
5508
5596
  * Returns a list of accounts for the given user.
5509
5597
 
5510
5598
  This object represents a user's account, which is a blockchain smart account that can be used to interact with the blockchain.
5511
5599
 
5512
5600
  The accounts are returned sorted by creation date, with the most recently created accounts appearing first.
5601
+ * @summary List user accounts.
5602
+ */
5603
+ declare const getAccountsV2: (params?: GetAccountsV2Params, options?: SecondParameter$m<typeof openfortApiClient<BaseEntityListResponseAccountV2Response>>) => Promise<BaseEntityListResponseAccountV2Response>;
5604
+ /**
5605
+ * Creates a new blockchain account for a user.
5513
5606
 
5514
- Returns the latest 10 transaction intents for each account.
5607
+ Account creation does not consume any gas. The account can be used to interact with the blockchain.
5608
+ * @summary Create new account.
5609
+ */
5610
+ declare const createAccountV2: (createAccountRequestV2: CreateAccountRequestV2, options?: SecondParameter$m<typeof openfortApiClient<AccountV2Response>>) => Promise<AccountV2Response>;
5611
+ /**
5612
+ * Retrieves the signer ID associated with a given blockchain address.
5613
+ * @summary Get signer ID by address.
5614
+ */
5615
+ declare const getSignerIdByAddress: (params: GetSignerIdByAddressParams, options?: SecondParameter$m<typeof openfortApiClient<SignerIdResponse>>) => Promise<SignerIdResponse>;
5616
+ /**
5617
+ * Retrieves the details of an existing account.
5515
5618
 
5516
- By default, a maximum of 10 accounts are shown per page.
5517
- * @summary List accounts of a user.
5619
+ Supply the unique account ID and Openfort will return the corresponding account information.
5620
+ * @summary Get existing account.
5518
5621
  */
5519
- declare const getAccountsV2: (params?: GetAccountsV2Params, options?: SecondParameter$p<typeof openfortApiClient<BaseEntityListResponseAccountV2Response>>) => Promise<BaseEntityListResponseAccountV2Response>;
5520
- declare const createAccountV2: (createAccountRequestV2: CreateAccountRequestV2, options?: SecondParameter$p<typeof openfortApiClient<AccountV2Response>>) => Promise<AccountV2Response>;
5521
- declare const getSignerIdByAddress: (params: GetSignerIdByAddressParams, options?: SecondParameter$p<typeof openfortApiClient<SignerIdResponse>>) => Promise<SignerIdResponse>;
5522
- declare const getAccountV2: (id: string, options?: SecondParameter$p<typeof openfortApiClient<AccountV2Response>>) => Promise<AccountV2Response>;
5622
+ declare const getAccountV2: (id: string, options?: SecondParameter$m<typeof openfortApiClient<AccountV2Response>>) => Promise<AccountV2Response>;
5523
5623
  /**
5524
5624
  * Removes an account from a project.
5625
+ * @summary Delete account.
5525
5626
  */
5526
- declare const removeAccount: (id: string, options?: SecondParameter$p<typeof openfortApiClient<DeleteAccountResponse>>) => Promise<DeleteAccountResponse>;
5527
- declare const switchChainV2: (switchChainQueriesV2: SwitchChainQueriesV2, options?: SecondParameter$p<typeof openfortApiClient<AccountV2Response>>) => Promise<AccountV2Response>;
5528
- type GetAccountsResult = NonNullable<Awaited<ReturnType<typeof getAccounts>>>;
5529
- type CreateAccountResult = NonNullable<Awaited<ReturnType<typeof createAccount>>>;
5530
- type GetAccountResult = NonNullable<Awaited<ReturnType<typeof getAccount>>>;
5531
- type DisableAccountResult = NonNullable<Awaited<ReturnType<typeof disableAccount>>>;
5532
- type RequestTransferOwnershipResult = NonNullable<Awaited<ReturnType<typeof requestTransferOwnership>>>;
5533
- type CancelTransferOwnershipResult = NonNullable<Awaited<ReturnType<typeof cancelTransferOwnership>>>;
5534
- type SignPayloadResult = NonNullable<Awaited<ReturnType<typeof signPayload>>>;
5535
- type SyncAccountResult = NonNullable<Awaited<ReturnType<typeof syncAccount>>>;
5536
- type DeployAccountResult = NonNullable<Awaited<ReturnType<typeof deployAccount>>>;
5537
- type StartRecoveryResult = NonNullable<Awaited<ReturnType<typeof startRecovery>>>;
5538
- type CompleteRecoveryResult = NonNullable<Awaited<ReturnType<typeof completeRecovery>>>;
5627
+ declare const removeAccount: (id: string, options?: SecondParameter$m<typeof openfortApiClient<DeleteAccountResponse>>) => Promise<DeleteAccountResponse>;
5628
+ /**
5629
+ * Switches the blockchain network for an existing account.
5630
+
5631
+ This allows moving an account between different blockchain networks while maintaining the same account identity.
5632
+ * @summary Switch account blockchain.
5633
+ */
5634
+ declare const switchChainV2: (switchChainQueriesV2: SwitchChainQueriesV2, options?: SecondParameter$m<typeof openfortApiClient<AccountV2Response>>) => Promise<AccountV2Response>;
5539
5635
  type GetAccountsV2Result = NonNullable<Awaited<ReturnType<typeof getAccountsV2>>>;
5540
5636
  type CreateAccountV2Result = NonNullable<Awaited<ReturnType<typeof createAccountV2>>>;
5541
5637
  type GetSignerIdByAddressResult = NonNullable<Awaited<ReturnType<typeof getSignerIdByAddress>>>;
@@ -5544,76 +5640,89 @@ type RemoveAccountResult = NonNullable<Awaited<ReturnType<typeof removeAccount>>
5544
5640
  type SwitchChainV2Result = NonNullable<Awaited<ReturnType<typeof switchChainV2>>>;
5545
5641
 
5546
5642
  /**
5547
- * Generated by orval v7.17.0 🍺
5643
+ * Generated by orval v7.18.0 🍺
5548
5644
  * Do not edit manually.
5549
5645
  * Openfort API
5550
5646
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
5551
5647
  * OpenAPI spec version: 1.0.0
5552
5648
  */
5553
5649
 
5554
- type SecondParameter$o<T extends (...args: never) => unknown> = Parameters<T>[1];
5650
+ type SecondParameter$l<T extends (...args: never) => unknown> = Parameters<T>[1];
5555
5651
  /**
5556
5652
  * The endpoint verifies the token generated by OAuth provider and retrieves a corresponding player.
5557
5653
 
5558
5654
  Returns the latest 10 transaction intents for the player.
5559
5655
  * @summary Retrieve player by oauth token.
5560
5656
  */
5561
- declare const verifyOAuthToken: (authenticateOAuthRequest: AuthenticateOAuthRequest, options?: SecondParameter$o<typeof openfortApiClient<PlayerResponse>>) => Promise<PlayerResponse>;
5657
+ declare const verifyOAuthToken: (authenticateOAuthRequest: AuthenticateOAuthRequest, options?: SecondParameter$l<typeof openfortApiClient<PlayerResponse>>) => Promise<PlayerResponse>;
5562
5658
  /**
5563
5659
  * List configured OAuth methods for the current project environment.
5564
5660
  * @deprecated
5565
5661
  * @summary List of oauth configurations.
5566
5662
  */
5567
- declare const listOAuthConfig: (options?: SecondParameter$o<typeof openfortApiClient<OAuthConfigListResponse>>) => Promise<OAuthConfigListResponse>;
5663
+ declare const listOAuthConfig: (options?: SecondParameter$l<typeof openfortApiClient<OAuthConfigListResponse>>) => Promise<OAuthConfigListResponse>;
5568
5664
  /**
5569
5665
  * The endpoint creates oauth configuration for the current project environment.
5570
5666
  * @deprecated
5571
5667
  * @summary Create oauth configuration.
5572
5668
  */
5573
- declare const createOAuthConfig: (authConfig: AuthConfig, options?: SecondParameter$o<typeof openfortApiClient<AuthConfig>>) => Promise<AuthConfig>;
5669
+ declare const createOAuthConfig: (authConfig: AuthConfig, options?: SecondParameter$l<typeof openfortApiClient<AuthConfig>>) => Promise<AuthConfig>;
5670
+ /**
5671
+ * @deprecated
5672
+ * @summary oauth callback.
5673
+ */
5674
+ declare const deprecatedCallbackOAuth: (params: DeprecatedCallbackOAuthParams, options?: SecondParameter$l<typeof openfortApiClient<unknown>>) => Promise<unknown>;
5675
+ /**
5676
+ * @summary oauth grant.
5677
+ */
5678
+ declare const grantOAuth: (provider: OAuthProvider, grantCallbackRequest: GrantCallbackRequest, options?: SecondParameter$l<typeof openfortApiClient<GrantOAuthResponse>>) => Promise<GrantOAuthResponse>;
5679
+ /**
5680
+ * @summary oauth callback.
5681
+ */
5682
+ declare const callbackOAuth: (provider: OAuthProvider, params: CallbackOAuthParams, options?: SecondParameter$l<typeof openfortApiClient<unknown>>) => Promise<unknown>;
5574
5683
  /**
5575
5684
  * The endpoint retrieves oauth configuration for specified provider for the current project environment.
5576
5685
  * @deprecated
5577
5686
  * @summary Get oauth configuration.
5578
5687
  */
5579
- declare const getOAuthConfig: (provider: OAuthProvider, options?: SecondParameter$o<typeof openfortApiClient<AuthConfig>>) => Promise<AuthConfig>;
5688
+ declare const getOAuthConfig: (provider: OAuthProvider, options?: SecondParameter$l<typeof openfortApiClient<AuthConfig>>) => Promise<AuthConfig>;
5580
5689
  /**
5581
5690
  * The endpoint deletes oauth configuration for specified provider for the current project environment.
5582
5691
  * @deprecated
5583
5692
  * @summary Delete oauth configuration.
5584
5693
  */
5585
- declare const deleteOAuthConfig: (provider: OAuthProvider, options?: SecondParameter$o<typeof openfortApiClient<void>>) => Promise<void>;
5694
+ declare const deleteOAuthConfig: (provider: OAuthProvider, options?: SecondParameter$l<typeof openfortApiClient<void>>) => Promise<void>;
5586
5695
  /**
5587
5696
  * List configured auth methods for the current project environment.
5588
5697
  * @summary List of auth configurations.
5589
5698
  */
5590
- declare const list: (params?: ListParams, options?: SecondParameter$o<typeof openfortApiClient<AuthProviderListResponse>>) => Promise<AuthProviderListResponse>;
5699
+ declare const list: (params?: ListParams, options?: SecondParameter$l<typeof openfortApiClient<AuthProviderListResponse>>) => Promise<AuthProviderListResponse>;
5591
5700
  /**
5592
5701
  * The endpoint creates oauth configuration for the current project environment.
5593
5702
  * @summary Create oauth configuration.
5594
5703
  */
5595
- declare const create: (authConfig: AuthConfig, options?: SecondParameter$o<typeof openfortApiClient<AuthConfig>>) => Promise<AuthConfig>;
5704
+ declare const create: (authConfig: AuthConfig, options?: SecondParameter$l<typeof openfortApiClient<AuthConfig>>) => Promise<AuthConfig>;
5596
5705
  /**
5597
5706
  * Creates an authenticated player.
5598
5707
 
5599
5708
  The player will be authenticated with the provider and an embedded account can be pre generated.
5600
5709
  * @summary Create an authenticated player.
5601
5710
  */
5602
- declare const createAuthPlayer: (createAuthPlayerRequest: CreateAuthPlayerRequest, options?: SecondParameter$o<typeof openfortApiClient<AuthPlayerResponseWithRecoveryShare>>) => Promise<AuthPlayerResponseWithRecoveryShare>;
5711
+ declare const createAuthPlayer: (createAuthPlayerRequest: CreateAuthPlayerRequest, options?: SecondParameter$l<typeof openfortApiClient<AuthPlayerResponseWithRecoveryShare>>) => Promise<AuthPlayerResponseWithRecoveryShare>;
5603
5712
  /**
5604
5713
  * Retrieves a list of authenticated players.
5605
5714
 
5606
5715
  Players have linked accounts and are authenticated with a provider.
5607
5716
  * @summary List authenticated players.
5608
5717
  */
5609
- declare const getAuthPlayers: (params?: GetAuthPlayersParams, options?: SecondParameter$o<typeof openfortApiClient<AuthPlayerListResponse>>) => Promise<AuthPlayerListResponse>;
5718
+ declare const getAuthPlayers: (params?: GetAuthPlayersParams, options?: SecondParameter$l<typeof openfortApiClient<AuthPlayerListResponse>>) => Promise<AuthPlayerListResponse>;
5610
5719
  /**
5611
5720
  * Retrieves an authenticated player.
5612
5721
 
5613
5722
  Players have linked accounts and are authenticated with a provider.
5614
5723
  * @summary Authenticated player.
5615
5724
  */
5616
- declare const getAuthPlayer: (id: string, options?: SecondParameter$o<typeof openfortApiClient<AuthPlayerResponse>>) => Promise<AuthPlayerResponse>;
5725
+ declare const getAuthPlayer: (id: string, options?: SecondParameter$l<typeof openfortApiClient<AuthPlayerResponse>>) => Promise<AuthPlayerResponse>;
5617
5726
  /**
5618
5727
  * Deletes a player auth object.
5619
5728
 
@@ -5621,16 +5730,19 @@ It will delete all linked accounts the player is authenticated with.
5621
5730
  If the player has a linked embedded signer, it will be deleted as well.
5622
5731
  * @summary Deletes a player auth object.
5623
5732
  */
5624
- declare const deleteAuthPlayer: (id: string, options?: SecondParameter$o<typeof openfortApiClient<AuthPlayerResponse>>) => Promise<AuthPlayerResponse>;
5733
+ declare const deleteAuthPlayer: (id: string, options?: SecondParameter$l<typeof openfortApiClient<AuthPlayerResponse>>) => Promise<AuthPlayerResponse>;
5625
5734
  /**
5626
5735
  * Verifies the token generated by Openfort Auth.
5627
5736
  * @summary Verify auth token.
5628
5737
  */
5629
- declare const verifyAuthToken: (params: VerifyAuthTokenParams, options?: SecondParameter$o<typeof openfortApiClient<AuthSessionResponse>>) => Promise<AuthSessionResponse>;
5630
- declare const authorize: (authorizePlayerRequest: AuthorizePlayerRequest, options?: SecondParameter$o<typeof openfortApiClient<Authorize200>>) => Promise<Authorize200>;
5738
+ declare const verifyAuthToken: (params: VerifyAuthTokenParams, options?: SecondParameter$l<typeof openfortApiClient<AuthSessionResponse>>) => Promise<AuthSessionResponse>;
5739
+ declare const authorize: (authorizePlayerRequest: AuthorizePlayerRequest, options?: SecondParameter$l<typeof openfortApiClient<Authorize200>>) => Promise<Authorize200>;
5631
5740
  type VerifyOAuthTokenResult = NonNullable<Awaited<ReturnType<typeof verifyOAuthToken>>>;
5632
5741
  type ListOAuthConfigResult = NonNullable<Awaited<ReturnType<typeof listOAuthConfig>>>;
5633
5742
  type CreateOAuthConfigResult = NonNullable<Awaited<ReturnType<typeof createOAuthConfig>>>;
5743
+ type DeprecatedCallbackOAuthResult = NonNullable<Awaited<ReturnType<typeof deprecatedCallbackOAuth>>>;
5744
+ type GrantOAuthResult = NonNullable<Awaited<ReturnType<typeof grantOAuth>>>;
5745
+ type CallbackOAuthResult = NonNullable<Awaited<ReturnType<typeof callbackOAuth>>>;
5634
5746
  type GetOAuthConfigResult = NonNullable<Awaited<ReturnType<typeof getOAuthConfig>>>;
5635
5747
  type DeleteOAuthConfigResult = NonNullable<Awaited<ReturnType<typeof deleteOAuthConfig>>>;
5636
5748
  type ListResult = NonNullable<Awaited<ReturnType<typeof list>>>;
@@ -5643,7 +5755,7 @@ type VerifyAuthTokenResult = NonNullable<Awaited<ReturnType<typeof verifyAuthTok
5643
5755
  type AuthorizeResult = NonNullable<Awaited<ReturnType<typeof authorize>>>;
5644
5756
 
5645
5757
  /**
5646
- * Generated by orval v7.17.0 🍺
5758
+ * Generated by orval v7.18.0 🍺
5647
5759
  * Do not edit manually.
5648
5760
  * Openfort Auth
5649
5761
  * API Reference for Openfort Auth
@@ -7587,347 +7699,261 @@ declare namespace openfortAuth_schemas {
7587
7699
  }
7588
7700
 
7589
7701
  /**
7590
- * Generated by orval v7.17.0 🍺
7591
- * Do not edit manually.
7592
- * Openfort Auth
7593
- * API Reference for Openfort Auth
7594
- * OpenAPI spec version: 1.0.0
7595
- */
7596
-
7597
- type SecondParameter$n<T extends (...args: never) => unknown> = Parameters<T>[1];
7598
- /**
7599
- * Sign in anonymously
7600
- */
7601
- declare const postSignInAnonymous: (options?: SecondParameter$n<typeof openfortApiClient<PostSignInAnonymous200>>) => Promise<PostSignInAnonymous200>;
7602
- type PostSignInAnonymousResult = NonNullable<Awaited<ReturnType<typeof postSignInAnonymous>>>;
7603
-
7604
- type anonymous_PostSignInAnonymousResult = PostSignInAnonymousResult;
7605
- declare const anonymous_postSignInAnonymous: typeof postSignInAnonymous;
7606
- declare namespace anonymous {
7607
- export { type anonymous_PostSignInAnonymousResult as PostSignInAnonymousResult, anonymous_postSignInAnonymous as postSignInAnonymous };
7608
- }
7609
-
7610
- /**
7611
- * Generated by orval v7.17.0 🍺
7702
+ * Generated by orval v7.18.0 🍺
7612
7703
  * Do not edit manually.
7613
7704
  * Openfort Auth
7614
7705
  * API Reference for Openfort Auth
7615
7706
  * OpenAPI spec version: 1.0.0
7616
7707
  */
7617
7708
 
7618
- type SecondParameter$m<T extends (...args: never) => unknown> = Parameters<T>[1];
7709
+ type SecondParameter$k<T extends (...args: never) => unknown> = Parameters<T>[1];
7619
7710
  /**
7620
7711
  * Sign in with a social provider
7712
+ * @summary Sign in with a social provider.
7621
7713
  */
7622
- declare const socialSignIn: (socialSignInBody: SocialSignInBody, options?: SecondParameter$m<typeof openfortApiClient<SocialSignIn200>>) => Promise<SocialSignIn200>;
7714
+ declare const socialSignIn: (socialSignInBody: SocialSignInBody, options?: SecondParameter$k<typeof openfortApiClient<SocialSignIn200>>) => Promise<SocialSignIn200>;
7623
7715
  /**
7624
7716
  * Get the current session
7717
+ * @summary Get the current session.
7625
7718
  */
7626
- declare const getGetSession: (params?: GetGetSessionParams, options?: SecondParameter$m<typeof openfortApiClient<GetGetSession200>>) => Promise<GetGetSession200>;
7719
+ declare const getGetSession: (params?: GetGetSessionParams, options?: SecondParameter$k<typeof openfortApiClient<GetGetSession200>>) => Promise<GetGetSession200>;
7627
7720
  /**
7628
7721
  * Sign out the current user
7722
+ * @summary Sign out.
7629
7723
  */
7630
- declare const postSignOut: (postSignOutBody: PostSignOutBody, options?: SecondParameter$m<typeof openfortApiClient<PostSignOut200>>) => Promise<PostSignOut200>;
7724
+ declare const postSignOut: (postSignOutBody: PostSignOutBody, options?: SecondParameter$k<typeof openfortApiClient<PostSignOut200>>) => Promise<PostSignOut200>;
7631
7725
  /**
7632
7726
  * Sign up a user using email and password
7727
+ * @summary Sign up with email and password.
7633
7728
  */
7634
- declare const postSignUpEmail: (postSignUpEmailBody: PostSignUpEmailBody, options?: SecondParameter$m<typeof openfortApiClient<PostSignUpEmail200>>) => Promise<PostSignUpEmail200>;
7729
+ declare const postSignUpEmail: (postSignUpEmailBody: PostSignUpEmailBody, options?: SecondParameter$k<typeof openfortApiClient<PostSignUpEmail200>>) => Promise<PostSignUpEmail200>;
7635
7730
  /**
7636
7731
  * Sign in with email and password
7732
+ * @summary Sign in with email and password.
7637
7733
  */
7638
- declare const postSignInEmail: (postSignInEmailBody: PostSignInEmailBody, options?: SecondParameter$m<typeof openfortApiClient<PostSignInEmail200>>) => Promise<PostSignInEmail200>;
7734
+ declare const postSignInEmail: (postSignInEmailBody: PostSignInEmailBody, options?: SecondParameter$k<typeof openfortApiClient<PostSignInEmail200>>) => Promise<PostSignInEmail200>;
7639
7735
  /**
7640
7736
  * Send a password reset email to the user
7737
+ * @summary Forget password.
7641
7738
  */
7642
- declare const postForgetPassword: (postForgetPasswordBody: PostForgetPasswordBody, options?: SecondParameter$m<typeof openfortApiClient<PostForgetPassword200>>) => Promise<PostForgetPassword200>;
7739
+ declare const postForgetPassword: (postForgetPasswordBody: PostForgetPasswordBody, options?: SecondParameter$k<typeof openfortApiClient<PostForgetPassword200>>) => Promise<PostForgetPassword200>;
7643
7740
  /**
7644
7741
  * Reset the password for a user
7742
+ * @summary Reset password.
7645
7743
  */
7646
- declare const postResetPassword: (postResetPasswordBody: PostResetPasswordBody, options?: SecondParameter$m<typeof openfortApiClient<ResetPasswordResponse>>) => Promise<ResetPasswordResponse>;
7744
+ declare const postResetPassword: (postResetPasswordBody: PostResetPasswordBody, options?: SecondParameter$k<typeof openfortApiClient<ResetPasswordResponse>>) => Promise<ResetPasswordResponse>;
7647
7745
  /**
7648
- * Verify the email of the user
7746
+ * Verify the email of the user.
7747
+ Usually this endpoint is called when user clicks 'Verify email' link from the letter.
7748
+ * @summary Verify email.
7649
7749
  */
7650
- declare const getVerifyEmail: (params: GetVerifyEmailParams, options?: SecondParameter$m<typeof openfortApiClient<GetVerifyEmail200>>) => Promise<GetVerifyEmail200>;
7750
+ declare const getVerifyEmail: (params: GetVerifyEmailParams, options?: SecondParameter$k<typeof openfortApiClient<GetVerifyEmail200>>) => Promise<GetVerifyEmail200>;
7651
7751
  /**
7652
7752
  * Send a verification email to the user
7753
+ * @summary Send verification email.
7653
7754
  */
7654
- declare const postSendVerificationEmail: (postSendVerificationEmailBody: PostSendVerificationEmailBody, options?: SecondParameter$m<typeof openfortApiClient<PostSendVerificationEmail200>>) => Promise<PostSendVerificationEmail200>;
7655
- declare const postChangeEmail: (postChangeEmailBody: PostChangeEmailBody, options?: SecondParameter$m<typeof openfortApiClient<PostChangeEmail200>>) => Promise<PostChangeEmail200>;
7755
+ declare const postSendVerificationEmail: (postSendVerificationEmailBody: PostSendVerificationEmailBody, options?: SecondParameter$k<typeof openfortApiClient<PostSendVerificationEmail200>>) => Promise<PostSendVerificationEmail200>;
7756
+ /**
7757
+ * Change user's email
7758
+ * @summary Change email.
7759
+ */
7760
+ declare const postChangeEmail: (postChangeEmailBody: PostChangeEmailBody, options?: SecondParameter$k<typeof openfortApiClient<PostChangeEmail200>>) => Promise<PostChangeEmail200>;
7656
7761
  /**
7657
7762
  * Change the password of the user
7763
+ * @summary Change password.
7658
7764
  */
7659
- declare const postChangePassword: (postChangePasswordBody: PostChangePasswordBody, options?: SecondParameter$m<typeof openfortApiClient<PostChangePassword200>>) => Promise<PostChangePassword200>;
7765
+ declare const postChangePassword: (postChangePasswordBody: PostChangePasswordBody, options?: SecondParameter$k<typeof openfortApiClient<PostChangePassword200>>) => Promise<PostChangePassword200>;
7660
7766
  /**
7661
7767
  * Redirects the user to the callback URL with the token
7768
+ * @summary Reset password callback.
7662
7769
  */
7663
- declare const getResetPasswordToken: (token: string, params?: GetResetPasswordTokenParams, options?: SecondParameter$m<typeof openfortApiClient<GetResetPasswordToken200>>) => Promise<GetResetPasswordToken200>;
7770
+ declare const getResetPasswordToken: (token: string, params?: GetResetPasswordTokenParams, options?: SecondParameter$k<typeof openfortApiClient<GetResetPasswordToken200>>) => Promise<GetResetPasswordToken200>;
7664
7771
  /**
7665
7772
  * Send a password reset email to the user
7773
+ * @summary Request password reset.
7666
7774
  */
7667
- declare const postRequestPasswordReset: (postRequestPasswordResetBody: PostRequestPasswordResetBody, options?: SecondParameter$m<typeof openfortApiClient<PostRequestPasswordReset200>>) => Promise<PostRequestPasswordReset200>;
7775
+ declare const postRequestPasswordReset: (postRequestPasswordResetBody: PostRequestPasswordResetBody, options?: SecondParameter$k<typeof openfortApiClient<PostRequestPasswordReset200>>) => Promise<PostRequestPasswordReset200>;
7668
7776
  /**
7669
7777
  * List all active sessions for the user
7778
+ * @summary List sessions.
7670
7779
  */
7671
- declare const getListSessions: (options?: SecondParameter$m<typeof openfortApiClient<Session[]>>) => Promise<Session[]>;
7780
+ declare const getListSessions: (options?: SecondParameter$k<typeof openfortApiClient<Session[]>>) => Promise<Session[]>;
7672
7781
  /**
7673
7782
  * Revoke a single session
7783
+ * @summary Revoke session.
7674
7784
  */
7675
- declare const postRevokeSession: (postRevokeSessionBody: PostRevokeSessionBody, options?: SecondParameter$m<typeof openfortApiClient<PostRevokeSession200>>) => Promise<PostRevokeSession200>;
7785
+ declare const postRevokeSession: (postRevokeSessionBody: PostRevokeSessionBody, options?: SecondParameter$k<typeof openfortApiClient<PostRevokeSession200>>) => Promise<PostRevokeSession200>;
7676
7786
  /**
7677
7787
  * Revoke all sessions for the user
7788
+ * @summary Revoke sessions.
7678
7789
  */
7679
- declare const postRevokeSessions: (postRevokeSessionsBody: PostRevokeSessionsBody, options?: SecondParameter$m<typeof openfortApiClient<PostRevokeSessions200>>) => Promise<PostRevokeSessions200>;
7790
+ declare const postRevokeSessions: (postRevokeSessionsBody: PostRevokeSessionsBody, options?: SecondParameter$k<typeof openfortApiClient<PostRevokeSessions200>>) => Promise<PostRevokeSessions200>;
7680
7791
  /**
7681
7792
  * Revoke all other sessions for the user except the current one
7793
+ * @summary Revoke other sessions.
7682
7794
  */
7683
- declare const postRevokeOtherSessions: (postRevokeOtherSessionsBody: PostRevokeOtherSessionsBody, options?: SecondParameter$m<typeof openfortApiClient<PostRevokeOtherSessions200>>) => Promise<PostRevokeOtherSessions200>;
7795
+ declare const postRevokeOtherSessions: (postRevokeOtherSessionsBody: PostRevokeOtherSessionsBody, options?: SecondParameter$k<typeof openfortApiClient<PostRevokeOtherSessions200>>) => Promise<PostRevokeOtherSessions200>;
7684
7796
  /**
7685
7797
  * Link a social account to the user
7798
+ * @summary Link social account.
7686
7799
  */
7687
- declare const postLinkSocial: (postLinkSocialBody: PostLinkSocialBody, options?: SecondParameter$m<typeof openfortApiClient<PostLinkSocial200>>) => Promise<PostLinkSocial200>;
7800
+ declare const postLinkSocial: (postLinkSocialBody: PostLinkSocialBody, options?: SecondParameter$k<typeof openfortApiClient<PostLinkSocial200>>) => Promise<PostLinkSocial200>;
7688
7801
  /**
7689
7802
  * List all accounts linked to the user
7803
+ * @summary List lined accounts.
7690
7804
  */
7691
- declare const getListAccounts: (options?: SecondParameter$m<typeof openfortApiClient<GetListAccounts200Item[]>>) => Promise<GetListAccounts200Item[]>;
7805
+ declare const getListAccounts: (options?: SecondParameter$k<typeof openfortApiClient<GetListAccounts200Item[]>>) => Promise<GetListAccounts200Item[]>;
7692
7806
  /**
7693
7807
  * Unlink an account
7808
+ * @summary Unlink account.
7694
7809
  */
7695
- declare const postUnlinkAccount: (postUnlinkAccountBody: PostUnlinkAccountBody, options?: SecondParameter$m<typeof openfortApiClient<UnlinkAccountResponse>>) => Promise<UnlinkAccountResponse>;
7810
+ declare const postUnlinkAccount: (postUnlinkAccountBody: PostUnlinkAccountBody, options?: SecondParameter$k<typeof openfortApiClient<UnlinkAccountResponse>>) => Promise<UnlinkAccountResponse>;
7696
7811
  /**
7697
7812
  * Refresh the access token using a refresh token
7813
+ * @summary Refresh access token.
7698
7814
  */
7699
- declare const postRefreshToken: (postRefreshTokenBody: PostRefreshTokenBody, options?: SecondParameter$m<typeof openfortApiClient<PostRefreshToken200>>) => Promise<PostRefreshToken200>;
7815
+ declare const postRefreshToken: (postRefreshTokenBody: PostRefreshTokenBody, options?: SecondParameter$k<typeof openfortApiClient<PostRefreshToken200>>) => Promise<PostRefreshToken200>;
7700
7816
  /**
7701
7817
  * Get a valid access token, doing a refresh if needed
7818
+ * @summary Get access token.
7702
7819
  */
7703
- declare const postGetAccessToken: (postGetAccessTokenBody: PostGetAccessTokenBody, options?: SecondParameter$m<typeof openfortApiClient<PostGetAccessToken200>>) => Promise<PostGetAccessToken200>;
7820
+ declare const postGetAccessToken: (postGetAccessTokenBody: PostGetAccessTokenBody, options?: SecondParameter$k<typeof openfortApiClient<PostGetAccessToken200>>) => Promise<PostGetAccessToken200>;
7704
7821
  /**
7705
7822
  * Get the account info provided by the provider
7823
+ * @summary Get account info.
7706
7824
  */
7707
- declare const postAccountInfo: (postAccountInfoBody: PostAccountInfoBody, options?: SecondParameter$m<typeof openfortApiClient<PostAccountInfo200>>) => Promise<PostAccountInfo200>;
7708
- type SocialSignInResult = NonNullable<Awaited<ReturnType<typeof socialSignIn>>>;
7709
- type GetGetSessionResult = NonNullable<Awaited<ReturnType<typeof getGetSession>>>;
7710
- type PostSignOutResult = NonNullable<Awaited<ReturnType<typeof postSignOut>>>;
7711
- type PostSignUpEmailResult = NonNullable<Awaited<ReturnType<typeof postSignUpEmail>>>;
7712
- type PostSignInEmailResult = NonNullable<Awaited<ReturnType<typeof postSignInEmail>>>;
7713
- type PostForgetPasswordResult = NonNullable<Awaited<ReturnType<typeof postForgetPassword>>>;
7714
- type PostResetPasswordResult = NonNullable<Awaited<ReturnType<typeof postResetPassword>>>;
7715
- type GetVerifyEmailResult = NonNullable<Awaited<ReturnType<typeof getVerifyEmail>>>;
7716
- type PostSendVerificationEmailResult = NonNullable<Awaited<ReturnType<typeof postSendVerificationEmail>>>;
7717
- type PostChangeEmailResult = NonNullable<Awaited<ReturnType<typeof postChangeEmail>>>;
7718
- type PostChangePasswordResult = NonNullable<Awaited<ReturnType<typeof postChangePassword>>>;
7719
- type GetResetPasswordTokenResult = NonNullable<Awaited<ReturnType<typeof getResetPasswordToken>>>;
7720
- type PostRequestPasswordResetResult = NonNullable<Awaited<ReturnType<typeof postRequestPasswordReset>>>;
7721
- type GetListSessionsResult = NonNullable<Awaited<ReturnType<typeof getListSessions>>>;
7722
- type PostRevokeSessionResult = NonNullable<Awaited<ReturnType<typeof postRevokeSession>>>;
7723
- type PostRevokeSessionsResult = NonNullable<Awaited<ReturnType<typeof postRevokeSessions>>>;
7724
- type PostRevokeOtherSessionsResult = NonNullable<Awaited<ReturnType<typeof postRevokeOtherSessions>>>;
7725
- type PostLinkSocialResult = NonNullable<Awaited<ReturnType<typeof postLinkSocial>>>;
7726
- type GetListAccountsResult = NonNullable<Awaited<ReturnType<typeof getListAccounts>>>;
7727
- type PostUnlinkAccountResult = NonNullable<Awaited<ReturnType<typeof postUnlinkAccount>>>;
7728
- type PostRefreshTokenResult = NonNullable<Awaited<ReturnType<typeof postRefreshToken>>>;
7729
- type PostGetAccessTokenResult = NonNullable<Awaited<ReturnType<typeof postGetAccessToken>>>;
7730
- type PostAccountInfoResult = NonNullable<Awaited<ReturnType<typeof postAccountInfo>>>;
7731
-
7732
- type _default_GetGetSessionResult = GetGetSessionResult;
7733
- type _default_GetListAccountsResult = GetListAccountsResult;
7734
- type _default_GetListSessionsResult = GetListSessionsResult;
7735
- type _default_GetResetPasswordTokenResult = GetResetPasswordTokenResult;
7736
- type _default_GetVerifyEmailResult = GetVerifyEmailResult;
7737
- type _default_PostAccountInfoResult = PostAccountInfoResult;
7738
- type _default_PostChangeEmailResult = PostChangeEmailResult;
7739
- type _default_PostChangePasswordResult = PostChangePasswordResult;
7740
- type _default_PostForgetPasswordResult = PostForgetPasswordResult;
7741
- type _default_PostGetAccessTokenResult = PostGetAccessTokenResult;
7742
- type _default_PostLinkSocialResult = PostLinkSocialResult;
7743
- type _default_PostRefreshTokenResult = PostRefreshTokenResult;
7744
- type _default_PostRequestPasswordResetResult = PostRequestPasswordResetResult;
7745
- type _default_PostResetPasswordResult = PostResetPasswordResult;
7746
- type _default_PostRevokeOtherSessionsResult = PostRevokeOtherSessionsResult;
7747
- type _default_PostRevokeSessionResult = PostRevokeSessionResult;
7748
- type _default_PostRevokeSessionsResult = PostRevokeSessionsResult;
7749
- type _default_PostSendVerificationEmailResult = PostSendVerificationEmailResult;
7750
- type _default_PostSignInEmailResult = PostSignInEmailResult;
7751
- type _default_PostSignOutResult = PostSignOutResult;
7752
- type _default_PostSignUpEmailResult = PostSignUpEmailResult;
7753
- type _default_PostUnlinkAccountResult = PostUnlinkAccountResult;
7754
- type _default_SocialSignInResult = SocialSignInResult;
7755
- declare const _default_getGetSession: typeof getGetSession;
7756
- declare const _default_getListAccounts: typeof getListAccounts;
7757
- declare const _default_getListSessions: typeof getListSessions;
7758
- declare const _default_getResetPasswordToken: typeof getResetPasswordToken;
7759
- declare const _default_getVerifyEmail: typeof getVerifyEmail;
7760
- declare const _default_postAccountInfo: typeof postAccountInfo;
7761
- declare const _default_postChangeEmail: typeof postChangeEmail;
7762
- declare const _default_postChangePassword: typeof postChangePassword;
7763
- declare const _default_postForgetPassword: typeof postForgetPassword;
7764
- declare const _default_postGetAccessToken: typeof postGetAccessToken;
7765
- declare const _default_postLinkSocial: typeof postLinkSocial;
7766
- declare const _default_postRefreshToken: typeof postRefreshToken;
7767
- declare const _default_postRequestPasswordReset: typeof postRequestPasswordReset;
7768
- declare const _default_postResetPassword: typeof postResetPassword;
7769
- declare const _default_postRevokeOtherSessions: typeof postRevokeOtherSessions;
7770
- declare const _default_postRevokeSession: typeof postRevokeSession;
7771
- declare const _default_postRevokeSessions: typeof postRevokeSessions;
7772
- declare const _default_postSendVerificationEmail: typeof postSendVerificationEmail;
7773
- declare const _default_postSignInEmail: typeof postSignInEmail;
7774
- declare const _default_postSignOut: typeof postSignOut;
7775
- declare const _default_postSignUpEmail: typeof postSignUpEmail;
7776
- declare const _default_postUnlinkAccount: typeof postUnlinkAccount;
7777
- declare const _default_socialSignIn: typeof socialSignIn;
7778
- declare namespace _default {
7779
- export { type _default_GetGetSessionResult as GetGetSessionResult, type _default_GetListAccountsResult as GetListAccountsResult, type _default_GetListSessionsResult as GetListSessionsResult, type _default_GetResetPasswordTokenResult as GetResetPasswordTokenResult, type _default_GetVerifyEmailResult as GetVerifyEmailResult, type _default_PostAccountInfoResult as PostAccountInfoResult, type _default_PostChangeEmailResult as PostChangeEmailResult, type _default_PostChangePasswordResult as PostChangePasswordResult, type _default_PostForgetPasswordResult as PostForgetPasswordResult, type _default_PostGetAccessTokenResult as PostGetAccessTokenResult, type _default_PostLinkSocialResult as PostLinkSocialResult, type _default_PostRefreshTokenResult as PostRefreshTokenResult, type _default_PostRequestPasswordResetResult as PostRequestPasswordResetResult, type _default_PostResetPasswordResult as PostResetPasswordResult, type _default_PostRevokeOtherSessionsResult as PostRevokeOtherSessionsResult, type _default_PostRevokeSessionResult as PostRevokeSessionResult, type _default_PostRevokeSessionsResult as PostRevokeSessionsResult, type _default_PostSendVerificationEmailResult as PostSendVerificationEmailResult, type _default_PostSignInEmailResult as PostSignInEmailResult, type _default_PostSignOutResult as PostSignOutResult, type _default_PostSignUpEmailResult as PostSignUpEmailResult, type _default_PostUnlinkAccountResult as PostUnlinkAccountResult, type _default_SocialSignInResult as SocialSignInResult, _default_getGetSession as getGetSession, _default_getListAccounts as getListAccounts, _default_getListSessions as getListSessions, _default_getResetPasswordToken as getResetPasswordToken, _default_getVerifyEmail as getVerifyEmail, _default_postAccountInfo as postAccountInfo, _default_postChangeEmail as postChangeEmail, _default_postChangePassword as postChangePassword, _default_postForgetPassword as postForgetPassword, _default_postGetAccessToken as postGetAccessToken, _default_postLinkSocial as postLinkSocial, _default_postRefreshToken as postRefreshToken, _default_postRequestPasswordReset as postRequestPasswordReset, _default_postResetPassword as postResetPassword, _default_postRevokeOtherSessions as postRevokeOtherSessions, _default_postRevokeSession as postRevokeSession, _default_postRevokeSessions as postRevokeSessions, _default_postSendVerificationEmail as postSendVerificationEmail, _default_postSignInEmail as postSignInEmail, _default_postSignOut as postSignOut, _default_postSignUpEmail as postSignUpEmail, _default_postUnlinkAccount as postUnlinkAccount, _default_socialSignIn as socialSignIn };
7780
- }
7781
-
7782
- /**
7783
- * Generated by orval v7.17.0 🍺
7784
- * Do not edit manually.
7785
- * Openfort Auth
7786
- * API Reference for Openfort Auth
7787
- * OpenAPI spec version: 1.0.0
7788
- */
7789
-
7790
- type SecondParameter$l<T extends (...args: never) => unknown> = Parameters<T>[1];
7791
- /**
7792
- * Send verification OTP
7793
- */
7794
- declare const postEmailOtpSendVerificationOtp: (postEmailOtpSendVerificationOtpBody: PostEmailOtpSendVerificationOtpBody, options?: SecondParameter$l<typeof openfortApiClient<PostEmailOtpSendVerificationOtp200>>) => Promise<PostEmailOtpSendVerificationOtp200>;
7795
- /**
7796
- * Check if a verification OTP is valid
7797
- */
7798
- declare const checkVerificationOtp: (checkVerificationOtpBody: CheckVerificationOtpBody, options?: SecondParameter$l<typeof openfortApiClient<CheckVerificationOtp200>>) => Promise<CheckVerificationOtp200>;
7799
- /**
7800
- * Verify email with OTP
7801
- */
7802
- declare const postEmailOtpVerifyEmail: (postEmailOtpVerifyEmailBody: PostEmailOtpVerifyEmailBody, options?: SecondParameter$l<typeof openfortApiClient<PostEmailOtpVerifyEmail200>>) => Promise<PostEmailOtpVerifyEmail200>;
7803
- /**
7804
- * Sign in with OTP
7805
- */
7806
- declare const postSignInEmailOtp: (postSignInEmailOtpBody: PostSignInEmailOtpBody, options?: SecondParameter$l<typeof openfortApiClient<PostSignInEmailOtp200>>) => Promise<PostSignInEmailOtp200>;
7825
+ declare const postAccountInfo: (postAccountInfoBody: PostAccountInfoBody, options?: SecondParameter$k<typeof openfortApiClient<PostAccountInfo200>>) => Promise<PostAccountInfo200>;
7807
7826
  /**
7808
- * Send a password reset OTP to the user
7809
- */
7810
- declare const postForgetPasswordEmailOtp: (postForgetPasswordEmailOtpBody: PostForgetPasswordEmailOtpBody, options?: SecondParameter$l<typeof openfortApiClient<PostForgetPasswordEmailOtp200>>) => Promise<PostForgetPasswordEmailOtp200>;
7811
- /**
7812
- * Reset user password with OTP
7827
+ * Sign in anonymously
7828
+ * @summary Anonymous sign in.
7813
7829
  */
7814
- declare const postEmailOtpResetPassword: (postEmailOtpResetPasswordBody: PostEmailOtpResetPasswordBody, options?: SecondParameter$l<typeof openfortApiClient<ResetPasswordResponse>>) => Promise<ResetPasswordResponse>;
7815
- type PostEmailOtpSendVerificationOtpResult = NonNullable<Awaited<ReturnType<typeof postEmailOtpSendVerificationOtp>>>;
7816
- type CheckVerificationOtpResult = NonNullable<Awaited<ReturnType<typeof checkVerificationOtp>>>;
7817
- type PostEmailOtpVerifyEmailResult = NonNullable<Awaited<ReturnType<typeof postEmailOtpVerifyEmail>>>;
7818
- type PostSignInEmailOtpResult = NonNullable<Awaited<ReturnType<typeof postSignInEmailOtp>>>;
7819
- type PostForgetPasswordEmailOtpResult = NonNullable<Awaited<ReturnType<typeof postForgetPasswordEmailOtp>>>;
7820
- type PostEmailOtpResetPasswordResult = NonNullable<Awaited<ReturnType<typeof postEmailOtpResetPassword>>>;
7821
-
7822
- type emailOtp_CheckVerificationOtpResult = CheckVerificationOtpResult;
7823
- type emailOtp_PostEmailOtpResetPasswordResult = PostEmailOtpResetPasswordResult;
7824
- type emailOtp_PostEmailOtpSendVerificationOtpResult = PostEmailOtpSendVerificationOtpResult;
7825
- type emailOtp_PostEmailOtpVerifyEmailResult = PostEmailOtpVerifyEmailResult;
7826
- type emailOtp_PostForgetPasswordEmailOtpResult = PostForgetPasswordEmailOtpResult;
7827
- type emailOtp_PostSignInEmailOtpResult = PostSignInEmailOtpResult;
7828
- declare const emailOtp_checkVerificationOtp: typeof checkVerificationOtp;
7829
- declare const emailOtp_postEmailOtpResetPassword: typeof postEmailOtpResetPassword;
7830
- declare const emailOtp_postEmailOtpSendVerificationOtp: typeof postEmailOtpSendVerificationOtp;
7831
- declare const emailOtp_postEmailOtpVerifyEmail: typeof postEmailOtpVerifyEmail;
7832
- declare const emailOtp_postForgetPasswordEmailOtp: typeof postForgetPasswordEmailOtp;
7833
- declare const emailOtp_postSignInEmailOtp: typeof postSignInEmailOtp;
7834
- declare namespace emailOtp {
7835
- export { type emailOtp_CheckVerificationOtpResult as CheckVerificationOtpResult, type emailOtp_PostEmailOtpResetPasswordResult as PostEmailOtpResetPasswordResult, type emailOtp_PostEmailOtpSendVerificationOtpResult as PostEmailOtpSendVerificationOtpResult, type emailOtp_PostEmailOtpVerifyEmailResult as PostEmailOtpVerifyEmailResult, type emailOtp_PostForgetPasswordEmailOtpResult as PostForgetPasswordEmailOtpResult, type emailOtp_PostSignInEmailOtpResult as PostSignInEmailOtpResult, emailOtp_checkVerificationOtp as checkVerificationOtp, emailOtp_postEmailOtpResetPassword as postEmailOtpResetPassword, emailOtp_postEmailOtpSendVerificationOtp as postEmailOtpSendVerificationOtp, emailOtp_postEmailOtpVerifyEmail as postEmailOtpVerifyEmail, emailOtp_postForgetPasswordEmailOtp as postForgetPasswordEmailOtp, emailOtp_postSignInEmailOtp as postSignInEmailOtp };
7836
- }
7837
-
7838
- /**
7839
- * Generated by orval v7.17.0 🍺
7840
- * Do not edit manually.
7841
- * Openfort Auth
7842
- * API Reference for Openfort Auth
7843
- * OpenAPI spec version: 1.0.0
7844
- */
7845
-
7846
- type SecondParameter$k<T extends (...args: never) => unknown> = Parameters<T>[1];
7830
+ declare const postSignInAnonymous: (options?: SecondParameter$k<typeof openfortApiClient<PostSignInAnonymous200>>) => Promise<PostSignInAnonymous200>;
7847
7831
  /**
7848
7832
  * Use this endpoint to sign in with phone number
7833
+ * @summary Sign in with phone.
7849
7834
  */
7850
7835
  declare const postSignInPhoneNumber: (postSignInPhoneNumberBody: PostSignInPhoneNumberBody, options?: SecondParameter$k<typeof openfortApiClient<PostSignInPhoneNumber200>>) => Promise<PostSignInPhoneNumber200>;
7851
7836
  /**
7852
7837
  * Use this endpoint to send OTP to phone number
7838
+ * @summary Send OTP to phone number.
7853
7839
  */
7854
7840
  declare const postPhoneNumberSendOtp: (postPhoneNumberSendOtpBody: PostPhoneNumberSendOtpBody, options?: SecondParameter$k<typeof openfortApiClient<PostPhoneNumberSendOtp200>>) => Promise<PostPhoneNumberSendOtp200>;
7855
7841
  /**
7856
7842
  * Use this endpoint to verify phone number
7843
+ * @summary Verify phone OTP.
7857
7844
  */
7858
7845
  declare const postPhoneNumberVerify: (postPhoneNumberVerifyBody: PostPhoneNumberVerifyBody, options?: SecondParameter$k<typeof openfortApiClient<PostPhoneNumberVerify200>>) => Promise<PostPhoneNumberVerify200>;
7859
7846
  /**
7860
7847
  * Request OTP for password reset via phone number
7848
+ * @summary Reset password reset with phone(forget password flow).
7861
7849
  */
7862
7850
  declare const postPhoneNumberForgetPassword: (postPhoneNumberForgetPasswordBody: PostPhoneNumberForgetPasswordBody, options?: SecondParameter$k<typeof openfortApiClient<PostPhoneNumberForgetPassword200>>) => Promise<PostPhoneNumberForgetPassword200>;
7863
7851
  /**
7864
7852
  * Request OTP for password reset via phone number
7853
+ * @summary Request password reset with phone.
7865
7854
  */
7866
7855
  declare const postPhoneNumberRequestPasswordReset: (postPhoneNumberRequestPasswordResetBody: PostPhoneNumberRequestPasswordResetBody, options?: SecondParameter$k<typeof openfortApiClient<PostPhoneNumberRequestPasswordReset200>>) => Promise<PostPhoneNumberRequestPasswordReset200>;
7867
7856
  /**
7868
7857
  * Reset password using phone number OTP
7858
+ * @summary Reset password with phone OTP.
7869
7859
  */
7870
7860
  declare const postPhoneNumberResetPassword: (postPhoneNumberResetPasswordBody: PostPhoneNumberResetPasswordBody, options?: SecondParameter$k<typeof openfortApiClient<ResetPasswordResponse>>) => Promise<ResetPasswordResponse>;
7871
- type PostSignInPhoneNumberResult = NonNullable<Awaited<ReturnType<typeof postSignInPhoneNumber>>>;
7872
- type PostPhoneNumberSendOtpResult = NonNullable<Awaited<ReturnType<typeof postPhoneNumberSendOtp>>>;
7873
- type PostPhoneNumberVerifyResult = NonNullable<Awaited<ReturnType<typeof postPhoneNumberVerify>>>;
7874
- type PostPhoneNumberForgetPasswordResult = NonNullable<Awaited<ReturnType<typeof postPhoneNumberForgetPassword>>>;
7875
- type PostPhoneNumberRequestPasswordResetResult = NonNullable<Awaited<ReturnType<typeof postPhoneNumberRequestPasswordReset>>>;
7876
- type PostPhoneNumberResetPasswordResult = NonNullable<Awaited<ReturnType<typeof postPhoneNumberResetPassword>>>;
7877
-
7878
- type phoneNumber_PostPhoneNumberForgetPasswordResult = PostPhoneNumberForgetPasswordResult;
7879
- type phoneNumber_PostPhoneNumberRequestPasswordResetResult = PostPhoneNumberRequestPasswordResetResult;
7880
- type phoneNumber_PostPhoneNumberResetPasswordResult = PostPhoneNumberResetPasswordResult;
7881
- type phoneNumber_PostPhoneNumberSendOtpResult = PostPhoneNumberSendOtpResult;
7882
- type phoneNumber_PostPhoneNumberVerifyResult = PostPhoneNumberVerifyResult;
7883
- type phoneNumber_PostSignInPhoneNumberResult = PostSignInPhoneNumberResult;
7884
- declare const phoneNumber_postPhoneNumberForgetPassword: typeof postPhoneNumberForgetPassword;
7885
- declare const phoneNumber_postPhoneNumberRequestPasswordReset: typeof postPhoneNumberRequestPasswordReset;
7886
- declare const phoneNumber_postPhoneNumberResetPassword: typeof postPhoneNumberResetPassword;
7887
- declare const phoneNumber_postPhoneNumberSendOtp: typeof postPhoneNumberSendOtp;
7888
- declare const phoneNumber_postPhoneNumberVerify: typeof postPhoneNumberVerify;
7889
- declare const phoneNumber_postSignInPhoneNumber: typeof postSignInPhoneNumber;
7890
- declare namespace phoneNumber {
7891
- export { type phoneNumber_PostPhoneNumberForgetPasswordResult as PostPhoneNumberForgetPasswordResult, type phoneNumber_PostPhoneNumberRequestPasswordResetResult as PostPhoneNumberRequestPasswordResetResult, type phoneNumber_PostPhoneNumberResetPasswordResult as PostPhoneNumberResetPasswordResult, type phoneNumber_PostPhoneNumberSendOtpResult as PostPhoneNumberSendOtpResult, type phoneNumber_PostPhoneNumberVerifyResult as PostPhoneNumberVerifyResult, type phoneNumber_PostSignInPhoneNumberResult as PostSignInPhoneNumberResult, phoneNumber_postPhoneNumberForgetPassword as postPhoneNumberForgetPassword, phoneNumber_postPhoneNumberRequestPasswordReset as postPhoneNumberRequestPasswordReset, phoneNumber_postPhoneNumberResetPassword as postPhoneNumberResetPassword, phoneNumber_postPhoneNumberSendOtp as postPhoneNumberSendOtp, phoneNumber_postPhoneNumberVerify as postPhoneNumberVerify, phoneNumber_postSignInPhoneNumber as postSignInPhoneNumber };
7892
- }
7893
-
7894
7861
  /**
7895
- * Generated by orval v7.17.0 🍺
7896
- * Do not edit manually.
7897
- * Openfort Auth
7898
- * API Reference for Openfort Auth
7899
- * OpenAPI spec version: 1.0.0
7900
- */
7901
-
7902
- type SecondParameter$j<T extends (...args: never) => unknown> = Parameters<T>[1];
7862
+ * Send verification OTP
7863
+ * @summary Request email verification with OTP.
7864
+ */
7865
+ declare const postEmailOtpSendVerificationOtp: (postEmailOtpSendVerificationOtpBody: PostEmailOtpSendVerificationOtpBody, options?: SecondParameter$k<typeof openfortApiClient<PostEmailOtpSendVerificationOtp200>>) => Promise<PostEmailOtpSendVerificationOtp200>;
7866
+ /**
7867
+ * Check if a verification OTP is valid
7868
+ * @summary Check email OTP.
7869
+ */
7870
+ declare const checkVerificationOtp: (checkVerificationOtpBody: CheckVerificationOtpBody, options?: SecondParameter$k<typeof openfortApiClient<CheckVerificationOtp200>>) => Promise<CheckVerificationOtp200>;
7871
+ /**
7872
+ * Verify email with OTP
7873
+ * @summary Verify email with OTP.
7874
+ */
7875
+ declare const postEmailOtpVerifyEmail: (postEmailOtpVerifyEmailBody: PostEmailOtpVerifyEmailBody, options?: SecondParameter$k<typeof openfortApiClient<PostEmailOtpVerifyEmail200>>) => Promise<PostEmailOtpVerifyEmail200>;
7876
+ /**
7877
+ * Sign in with OTP
7878
+ * @summary Sign in with email OTP.
7879
+ */
7880
+ declare const postSignInEmailOtp: (postSignInEmailOtpBody: PostSignInEmailOtpBody, options?: SecondParameter$k<typeof openfortApiClient<PostSignInEmailOtp200>>) => Promise<PostSignInEmailOtp200>;
7881
+ /**
7882
+ * Send a password reset OTP to the user
7883
+ * @summary Request password reset with email OTP.
7884
+ */
7885
+ declare const postForgetPasswordEmailOtp: (postForgetPasswordEmailOtpBody: PostForgetPasswordEmailOtpBody, options?: SecondParameter$k<typeof openfortApiClient<PostForgetPasswordEmailOtp200>>) => Promise<PostForgetPasswordEmailOtp200>;
7886
+ /**
7887
+ * Reset user password with OTP
7888
+ * @summary Reset password with email OTP.
7889
+ */
7890
+ declare const postEmailOtpResetPassword: (postEmailOtpResetPasswordBody: PostEmailOtpResetPasswordBody, options?: SecondParameter$k<typeof openfortApiClient<ResetPasswordResponse>>) => Promise<ResetPasswordResponse>;
7903
7891
  /**
7904
7892
  * Generate a nonce for Sign-In With Ethereum (SIWE) authentication
7893
+ * @summary Initialize SIWE login.
7905
7894
  */
7906
- declare const postSiweNonce: (postSiweNonceBody: PostSiweNonceBody, options?: SecondParameter$j<typeof openfortApiClient<PostSiweNonce200>>) => Promise<PostSiweNonce200>;
7895
+ declare const postSiweNonce: (postSiweNonceBody: PostSiweNonceBody, options?: SecondParameter$k<typeof openfortApiClient<PostSiweNonce200>>) => Promise<PostSiweNonce200>;
7907
7896
  /**
7908
7897
  * Verify a signed SIWE message and authenticate the user
7898
+ * @summary Login with SIWE.
7909
7899
  */
7910
- declare const postSiweVerify: (postSiweVerifyBody: PostSiweVerifyBody, options?: SecondParameter$j<typeof openfortApiClient<PostSiweVerify200>>) => Promise<PostSiweVerify200>;
7900
+ declare const postSiweVerify: (postSiweVerifyBody: PostSiweVerifyBody, options?: SecondParameter$k<typeof openfortApiClient<PostSiweVerify200>>) => Promise<PostSiweVerify200>;
7911
7901
  /**
7912
7902
  * Generates a cryptographically secure nonce for creating a SIWE message to link a wallet to the current authenticated user. Requires active session.
7913
- * @summary Get nonce for linking SIWE wallet
7903
+ * @summary Initialize SIWE link.
7914
7904
  */
7915
- declare const postLinkSiweNonce: (postLinkSiweNonceBody: PostLinkSiweNonceBody, options?: SecondParameter$j<typeof openfortApiClient<PostLinkSiweNonce200>>) => Promise<PostLinkSiweNonce200>;
7905
+ declare const postLinkSiweNonce: (postLinkSiweNonceBody: PostLinkSiweNonceBody, options?: SecondParameter$k<typeof openfortApiClient<PostLinkSiweNonce200>>) => Promise<PostLinkSiweNonce200>;
7916
7906
  /**
7917
7907
  * Verifies the SIWE signature and links the wallet to the currently authenticated user. Requires active session.
7918
- * @summary Verify and link SIWE wallet
7908
+ * @summary Verify and link SIWE wallet.
7919
7909
  */
7920
- declare const postLinkSiweVerify: (postLinkSiweVerifyBody: PostLinkSiweVerifyBody, options?: SecondParameter$j<typeof openfortApiClient<PostLinkSiweVerify200>>) => Promise<PostLinkSiweVerify200>;
7910
+ declare const postLinkSiweVerify: (postLinkSiweVerifyBody: PostLinkSiweVerifyBody, options?: SecondParameter$k<typeof openfortApiClient<PostLinkSiweVerify200>>) => Promise<PostLinkSiweVerify200>;
7921
7911
  /**
7922
7912
  * Get all SIWE wallets linked to the authenticated user with full wallet metadata including primary status and chain information. Requires active session.
7923
- * @summary List linked wallets
7913
+ * @summary List linked wallets.
7924
7914
  */
7925
- declare const getLinkSiweListWallets: (options?: SecondParameter$j<typeof openfortApiClient<GetLinkSiweListWallets200Item[]>>) => Promise<GetLinkSiweListWallets200Item[]>;
7915
+ declare const getLinkSiweListWallets: (options?: SecondParameter$k<typeof openfortApiClient<GetLinkSiweListWallets200Item[]>>) => Promise<GetLinkSiweListWallets200Item[]>;
7926
7916
  /**
7927
7917
  * 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.
7928
- * @summary Unlink SIWE wallet
7918
+ * @summary Unlink SIWE wallet.
7929
7919
  */
7930
- declare const postLinkSiweUnlink: (postLinkSiweUnlinkBody: PostLinkSiweUnlinkBody, options?: SecondParameter$j<typeof openfortApiClient<PostLinkSiweUnlink200>>) => Promise<PostLinkSiweUnlink200>;
7920
+ declare const postLinkSiweUnlink: (postLinkSiweUnlinkBody: PostLinkSiweUnlinkBody, options?: SecondParameter$k<typeof openfortApiClient<PostLinkSiweUnlink200>>) => Promise<PostLinkSiweUnlink200>;
7921
+ type SocialSignInResult = NonNullable<Awaited<ReturnType<typeof socialSignIn>>>;
7922
+ type GetGetSessionResult = NonNullable<Awaited<ReturnType<typeof getGetSession>>>;
7923
+ type PostSignOutResult = NonNullable<Awaited<ReturnType<typeof postSignOut>>>;
7924
+ type PostSignUpEmailResult = NonNullable<Awaited<ReturnType<typeof postSignUpEmail>>>;
7925
+ type PostSignInEmailResult = NonNullable<Awaited<ReturnType<typeof postSignInEmail>>>;
7926
+ type PostForgetPasswordResult = NonNullable<Awaited<ReturnType<typeof postForgetPassword>>>;
7927
+ type PostResetPasswordResult = NonNullable<Awaited<ReturnType<typeof postResetPassword>>>;
7928
+ type GetVerifyEmailResult = NonNullable<Awaited<ReturnType<typeof getVerifyEmail>>>;
7929
+ type PostSendVerificationEmailResult = NonNullable<Awaited<ReturnType<typeof postSendVerificationEmail>>>;
7930
+ type PostChangeEmailResult = NonNullable<Awaited<ReturnType<typeof postChangeEmail>>>;
7931
+ type PostChangePasswordResult = NonNullable<Awaited<ReturnType<typeof postChangePassword>>>;
7932
+ type GetResetPasswordTokenResult = NonNullable<Awaited<ReturnType<typeof getResetPasswordToken>>>;
7933
+ type PostRequestPasswordResetResult = NonNullable<Awaited<ReturnType<typeof postRequestPasswordReset>>>;
7934
+ type GetListSessionsResult = NonNullable<Awaited<ReturnType<typeof getListSessions>>>;
7935
+ type PostRevokeSessionResult = NonNullable<Awaited<ReturnType<typeof postRevokeSession>>>;
7936
+ type PostRevokeSessionsResult = NonNullable<Awaited<ReturnType<typeof postRevokeSessions>>>;
7937
+ type PostRevokeOtherSessionsResult = NonNullable<Awaited<ReturnType<typeof postRevokeOtherSessions>>>;
7938
+ type PostLinkSocialResult = NonNullable<Awaited<ReturnType<typeof postLinkSocial>>>;
7939
+ type GetListAccountsResult = NonNullable<Awaited<ReturnType<typeof getListAccounts>>>;
7940
+ type PostUnlinkAccountResult = NonNullable<Awaited<ReturnType<typeof postUnlinkAccount>>>;
7941
+ type PostRefreshTokenResult = NonNullable<Awaited<ReturnType<typeof postRefreshToken>>>;
7942
+ type PostGetAccessTokenResult = NonNullable<Awaited<ReturnType<typeof postGetAccessToken>>>;
7943
+ type PostAccountInfoResult = NonNullable<Awaited<ReturnType<typeof postAccountInfo>>>;
7944
+ type PostSignInAnonymousResult = NonNullable<Awaited<ReturnType<typeof postSignInAnonymous>>>;
7945
+ type PostSignInPhoneNumberResult = NonNullable<Awaited<ReturnType<typeof postSignInPhoneNumber>>>;
7946
+ type PostPhoneNumberSendOtpResult = NonNullable<Awaited<ReturnType<typeof postPhoneNumberSendOtp>>>;
7947
+ type PostPhoneNumberVerifyResult = NonNullable<Awaited<ReturnType<typeof postPhoneNumberVerify>>>;
7948
+ type PostPhoneNumberForgetPasswordResult = NonNullable<Awaited<ReturnType<typeof postPhoneNumberForgetPassword>>>;
7949
+ type PostPhoneNumberRequestPasswordResetResult = NonNullable<Awaited<ReturnType<typeof postPhoneNumberRequestPasswordReset>>>;
7950
+ type PostPhoneNumberResetPasswordResult = NonNullable<Awaited<ReturnType<typeof postPhoneNumberResetPassword>>>;
7951
+ type PostEmailOtpSendVerificationOtpResult = NonNullable<Awaited<ReturnType<typeof postEmailOtpSendVerificationOtp>>>;
7952
+ type CheckVerificationOtpResult = NonNullable<Awaited<ReturnType<typeof checkVerificationOtp>>>;
7953
+ type PostEmailOtpVerifyEmailResult = NonNullable<Awaited<ReturnType<typeof postEmailOtpVerifyEmail>>>;
7954
+ type PostSignInEmailOtpResult = NonNullable<Awaited<ReturnType<typeof postSignInEmailOtp>>>;
7955
+ type PostForgetPasswordEmailOtpResult = NonNullable<Awaited<ReturnType<typeof postForgetPasswordEmailOtp>>>;
7956
+ type PostEmailOtpResetPasswordResult = NonNullable<Awaited<ReturnType<typeof postEmailOtpResetPassword>>>;
7931
7957
  type PostSiweNonceResult = NonNullable<Awaited<ReturnType<typeof postSiweNonce>>>;
7932
7958
  type PostSiweVerifyResult = NonNullable<Awaited<ReturnType<typeof postSiweVerify>>>;
7933
7959
  type PostLinkSiweNonceResult = NonNullable<Awaited<ReturnType<typeof postLinkSiweNonce>>>;
@@ -7935,136 +7961,208 @@ type PostLinkSiweVerifyResult = NonNullable<Awaited<ReturnType<typeof postLinkSi
7935
7961
  type GetLinkSiweListWalletsResult = NonNullable<Awaited<ReturnType<typeof getLinkSiweListWallets>>>;
7936
7962
  type PostLinkSiweUnlinkResult = NonNullable<Awaited<ReturnType<typeof postLinkSiweUnlink>>>;
7937
7963
 
7938
- type siwe_GetLinkSiweListWalletsResult = GetLinkSiweListWalletsResult;
7939
- type siwe_PostLinkSiweNonceResult = PostLinkSiweNonceResult;
7940
- type siwe_PostLinkSiweUnlinkResult = PostLinkSiweUnlinkResult;
7941
- type siwe_PostLinkSiweVerifyResult = PostLinkSiweVerifyResult;
7942
- type siwe_PostSiweNonceResult = PostSiweNonceResult;
7943
- type siwe_PostSiweVerifyResult = PostSiweVerifyResult;
7944
- declare const siwe_getLinkSiweListWallets: typeof getLinkSiweListWallets;
7945
- declare const siwe_postLinkSiweNonce: typeof postLinkSiweNonce;
7946
- declare const siwe_postLinkSiweUnlink: typeof postLinkSiweUnlink;
7947
- declare const siwe_postLinkSiweVerify: typeof postLinkSiweVerify;
7948
- declare const siwe_postSiweNonce: typeof postSiweNonce;
7949
- declare const siwe_postSiweVerify: typeof postSiweVerify;
7950
- declare namespace siwe {
7951
- export { type siwe_GetLinkSiweListWalletsResult as GetLinkSiweListWalletsResult, type siwe_PostLinkSiweNonceResult as PostLinkSiweNonceResult, type siwe_PostLinkSiweUnlinkResult as PostLinkSiweUnlinkResult, type siwe_PostLinkSiweVerifyResult as PostLinkSiweVerifyResult, type siwe_PostSiweNonceResult as PostSiweNonceResult, type siwe_PostSiweVerifyResult as PostSiweVerifyResult, siwe_getLinkSiweListWallets as getLinkSiweListWallets, siwe_postLinkSiweNonce as postLinkSiweNonce, siwe_postLinkSiweUnlink as postLinkSiweUnlink, siwe_postLinkSiweVerify as postLinkSiweVerify, siwe_postSiweNonce as postSiweNonce, siwe_postSiweVerify as postSiweVerify };
7952
- }
7953
-
7954
- /**
7955
- * Generated by orval v7.17.0 🍺
7964
+ type authV2_CheckVerificationOtpResult = CheckVerificationOtpResult;
7965
+ type authV2_GetGetSessionResult = GetGetSessionResult;
7966
+ type authV2_GetLinkSiweListWalletsResult = GetLinkSiweListWalletsResult;
7967
+ type authV2_GetListAccountsResult = GetListAccountsResult;
7968
+ type authV2_GetListSessionsResult = GetListSessionsResult;
7969
+ type authV2_GetResetPasswordTokenResult = GetResetPasswordTokenResult;
7970
+ type authV2_GetVerifyEmailResult = GetVerifyEmailResult;
7971
+ type authV2_PostAccountInfoResult = PostAccountInfoResult;
7972
+ type authV2_PostChangeEmailResult = PostChangeEmailResult;
7973
+ type authV2_PostChangePasswordResult = PostChangePasswordResult;
7974
+ type authV2_PostEmailOtpResetPasswordResult = PostEmailOtpResetPasswordResult;
7975
+ type authV2_PostEmailOtpSendVerificationOtpResult = PostEmailOtpSendVerificationOtpResult;
7976
+ type authV2_PostEmailOtpVerifyEmailResult = PostEmailOtpVerifyEmailResult;
7977
+ type authV2_PostForgetPasswordEmailOtpResult = PostForgetPasswordEmailOtpResult;
7978
+ type authV2_PostForgetPasswordResult = PostForgetPasswordResult;
7979
+ type authV2_PostGetAccessTokenResult = PostGetAccessTokenResult;
7980
+ type authV2_PostLinkSiweNonceResult = PostLinkSiweNonceResult;
7981
+ type authV2_PostLinkSiweUnlinkResult = PostLinkSiweUnlinkResult;
7982
+ type authV2_PostLinkSiweVerifyResult = PostLinkSiweVerifyResult;
7983
+ type authV2_PostLinkSocialResult = PostLinkSocialResult;
7984
+ type authV2_PostPhoneNumberForgetPasswordResult = PostPhoneNumberForgetPasswordResult;
7985
+ type authV2_PostPhoneNumberRequestPasswordResetResult = PostPhoneNumberRequestPasswordResetResult;
7986
+ type authV2_PostPhoneNumberResetPasswordResult = PostPhoneNumberResetPasswordResult;
7987
+ type authV2_PostPhoneNumberSendOtpResult = PostPhoneNumberSendOtpResult;
7988
+ type authV2_PostPhoneNumberVerifyResult = PostPhoneNumberVerifyResult;
7989
+ type authV2_PostRefreshTokenResult = PostRefreshTokenResult;
7990
+ type authV2_PostRequestPasswordResetResult = PostRequestPasswordResetResult;
7991
+ type authV2_PostResetPasswordResult = PostResetPasswordResult;
7992
+ type authV2_PostRevokeOtherSessionsResult = PostRevokeOtherSessionsResult;
7993
+ type authV2_PostRevokeSessionResult = PostRevokeSessionResult;
7994
+ type authV2_PostRevokeSessionsResult = PostRevokeSessionsResult;
7995
+ type authV2_PostSendVerificationEmailResult = PostSendVerificationEmailResult;
7996
+ type authV2_PostSignInAnonymousResult = PostSignInAnonymousResult;
7997
+ type authV2_PostSignInEmailOtpResult = PostSignInEmailOtpResult;
7998
+ type authV2_PostSignInEmailResult = PostSignInEmailResult;
7999
+ type authV2_PostSignInPhoneNumberResult = PostSignInPhoneNumberResult;
8000
+ type authV2_PostSignOutResult = PostSignOutResult;
8001
+ type authV2_PostSignUpEmailResult = PostSignUpEmailResult;
8002
+ type authV2_PostSiweNonceResult = PostSiweNonceResult;
8003
+ type authV2_PostSiweVerifyResult = PostSiweVerifyResult;
8004
+ type authV2_PostUnlinkAccountResult = PostUnlinkAccountResult;
8005
+ type authV2_SocialSignInResult = SocialSignInResult;
8006
+ declare const authV2_checkVerificationOtp: typeof checkVerificationOtp;
8007
+ declare const authV2_getGetSession: typeof getGetSession;
8008
+ declare const authV2_getLinkSiweListWallets: typeof getLinkSiweListWallets;
8009
+ declare const authV2_getListAccounts: typeof getListAccounts;
8010
+ declare const authV2_getListSessions: typeof getListSessions;
8011
+ declare const authV2_getResetPasswordToken: typeof getResetPasswordToken;
8012
+ declare const authV2_getVerifyEmail: typeof getVerifyEmail;
8013
+ declare const authV2_postAccountInfo: typeof postAccountInfo;
8014
+ declare const authV2_postChangeEmail: typeof postChangeEmail;
8015
+ declare const authV2_postChangePassword: typeof postChangePassword;
8016
+ declare const authV2_postEmailOtpResetPassword: typeof postEmailOtpResetPassword;
8017
+ declare const authV2_postEmailOtpSendVerificationOtp: typeof postEmailOtpSendVerificationOtp;
8018
+ declare const authV2_postEmailOtpVerifyEmail: typeof postEmailOtpVerifyEmail;
8019
+ declare const authV2_postForgetPassword: typeof postForgetPassword;
8020
+ declare const authV2_postForgetPasswordEmailOtp: typeof postForgetPasswordEmailOtp;
8021
+ declare const authV2_postGetAccessToken: typeof postGetAccessToken;
8022
+ declare const authV2_postLinkSiweNonce: typeof postLinkSiweNonce;
8023
+ declare const authV2_postLinkSiweUnlink: typeof postLinkSiweUnlink;
8024
+ declare const authV2_postLinkSiweVerify: typeof postLinkSiweVerify;
8025
+ declare const authV2_postLinkSocial: typeof postLinkSocial;
8026
+ declare const authV2_postPhoneNumberForgetPassword: typeof postPhoneNumberForgetPassword;
8027
+ declare const authV2_postPhoneNumberRequestPasswordReset: typeof postPhoneNumberRequestPasswordReset;
8028
+ declare const authV2_postPhoneNumberResetPassword: typeof postPhoneNumberResetPassword;
8029
+ declare const authV2_postPhoneNumberSendOtp: typeof postPhoneNumberSendOtp;
8030
+ declare const authV2_postPhoneNumberVerify: typeof postPhoneNumberVerify;
8031
+ declare const authV2_postRefreshToken: typeof postRefreshToken;
8032
+ declare const authV2_postRequestPasswordReset: typeof postRequestPasswordReset;
8033
+ declare const authV2_postResetPassword: typeof postResetPassword;
8034
+ declare const authV2_postRevokeOtherSessions: typeof postRevokeOtherSessions;
8035
+ declare const authV2_postRevokeSession: typeof postRevokeSession;
8036
+ declare const authV2_postRevokeSessions: typeof postRevokeSessions;
8037
+ declare const authV2_postSendVerificationEmail: typeof postSendVerificationEmail;
8038
+ declare const authV2_postSignInAnonymous: typeof postSignInAnonymous;
8039
+ declare const authV2_postSignInEmail: typeof postSignInEmail;
8040
+ declare const authV2_postSignInEmailOtp: typeof postSignInEmailOtp;
8041
+ declare const authV2_postSignInPhoneNumber: typeof postSignInPhoneNumber;
8042
+ declare const authV2_postSignOut: typeof postSignOut;
8043
+ declare const authV2_postSignUpEmail: typeof postSignUpEmail;
8044
+ declare const authV2_postSiweNonce: typeof postSiweNonce;
8045
+ declare const authV2_postSiweVerify: typeof postSiweVerify;
8046
+ declare const authV2_postUnlinkAccount: typeof postUnlinkAccount;
8047
+ declare const authV2_socialSignIn: typeof socialSignIn;
8048
+ declare namespace authV2 {
8049
+ export { type authV2_CheckVerificationOtpResult as CheckVerificationOtpResult, type authV2_GetGetSessionResult as GetGetSessionResult, type authV2_GetLinkSiweListWalletsResult as GetLinkSiweListWalletsResult, type authV2_GetListAccountsResult as GetListAccountsResult, type authV2_GetListSessionsResult as GetListSessionsResult, type authV2_GetResetPasswordTokenResult as GetResetPasswordTokenResult, type authV2_GetVerifyEmailResult as GetVerifyEmailResult, type authV2_PostAccountInfoResult as PostAccountInfoResult, type authV2_PostChangeEmailResult as PostChangeEmailResult, type authV2_PostChangePasswordResult as PostChangePasswordResult, type authV2_PostEmailOtpResetPasswordResult as PostEmailOtpResetPasswordResult, type authV2_PostEmailOtpSendVerificationOtpResult as PostEmailOtpSendVerificationOtpResult, type authV2_PostEmailOtpVerifyEmailResult as PostEmailOtpVerifyEmailResult, type authV2_PostForgetPasswordEmailOtpResult as PostForgetPasswordEmailOtpResult, type authV2_PostForgetPasswordResult as PostForgetPasswordResult, type authV2_PostGetAccessTokenResult as PostGetAccessTokenResult, type authV2_PostLinkSiweNonceResult as PostLinkSiweNonceResult, type authV2_PostLinkSiweUnlinkResult as PostLinkSiweUnlinkResult, type authV2_PostLinkSiweVerifyResult as PostLinkSiweVerifyResult, type authV2_PostLinkSocialResult as PostLinkSocialResult, type authV2_PostPhoneNumberForgetPasswordResult as PostPhoneNumberForgetPasswordResult, type authV2_PostPhoneNumberRequestPasswordResetResult as PostPhoneNumberRequestPasswordResetResult, type authV2_PostPhoneNumberResetPasswordResult as PostPhoneNumberResetPasswordResult, type authV2_PostPhoneNumberSendOtpResult as PostPhoneNumberSendOtpResult, type authV2_PostPhoneNumberVerifyResult as PostPhoneNumberVerifyResult, type authV2_PostRefreshTokenResult as PostRefreshTokenResult, type authV2_PostRequestPasswordResetResult as PostRequestPasswordResetResult, type authV2_PostResetPasswordResult as PostResetPasswordResult, type authV2_PostRevokeOtherSessionsResult as PostRevokeOtherSessionsResult, type authV2_PostRevokeSessionResult as PostRevokeSessionResult, type authV2_PostRevokeSessionsResult as PostRevokeSessionsResult, type authV2_PostSendVerificationEmailResult as PostSendVerificationEmailResult, type authV2_PostSignInAnonymousResult as PostSignInAnonymousResult, type authV2_PostSignInEmailOtpResult as PostSignInEmailOtpResult, type authV2_PostSignInEmailResult as PostSignInEmailResult, type authV2_PostSignInPhoneNumberResult as PostSignInPhoneNumberResult, type authV2_PostSignOutResult as PostSignOutResult, type authV2_PostSignUpEmailResult as PostSignUpEmailResult, type authV2_PostSiweNonceResult as PostSiweNonceResult, type authV2_PostSiweVerifyResult as PostSiweVerifyResult, type authV2_PostUnlinkAccountResult as PostUnlinkAccountResult, type authV2_SocialSignInResult as SocialSignInResult, authV2_checkVerificationOtp as checkVerificationOtp, authV2_getGetSession as getGetSession, authV2_getLinkSiweListWallets as getLinkSiweListWallets, authV2_getListAccounts as getListAccounts, authV2_getListSessions as getListSessions, authV2_getResetPasswordToken as getResetPasswordToken, authV2_getVerifyEmail as getVerifyEmail, authV2_postAccountInfo as postAccountInfo, authV2_postChangeEmail as postChangeEmail, authV2_postChangePassword as postChangePassword, authV2_postEmailOtpResetPassword as postEmailOtpResetPassword, authV2_postEmailOtpSendVerificationOtp as postEmailOtpSendVerificationOtp, authV2_postEmailOtpVerifyEmail as postEmailOtpVerifyEmail, authV2_postForgetPassword as postForgetPassword, authV2_postForgetPasswordEmailOtp as postForgetPasswordEmailOtp, authV2_postGetAccessToken as postGetAccessToken, authV2_postLinkSiweNonce as postLinkSiweNonce, authV2_postLinkSiweUnlink as postLinkSiweUnlink, authV2_postLinkSiweVerify as postLinkSiweVerify, authV2_postLinkSocial as postLinkSocial, authV2_postPhoneNumberForgetPassword as postPhoneNumberForgetPassword, authV2_postPhoneNumberRequestPasswordReset as postPhoneNumberRequestPasswordReset, authV2_postPhoneNumberResetPassword as postPhoneNumberResetPassword, authV2_postPhoneNumberSendOtp as postPhoneNumberSendOtp, authV2_postPhoneNumberVerify as postPhoneNumberVerify, authV2_postRefreshToken as postRefreshToken, authV2_postRequestPasswordReset as postRequestPasswordReset, authV2_postResetPassword as postResetPassword, authV2_postRevokeOtherSessions as postRevokeOtherSessions, authV2_postRevokeSession as postRevokeSession, authV2_postRevokeSessions as postRevokeSessions, authV2_postSendVerificationEmail as postSendVerificationEmail, authV2_postSignInAnonymous as postSignInAnonymous, authV2_postSignInEmail as postSignInEmail, authV2_postSignInEmailOtp as postSignInEmailOtp, authV2_postSignInPhoneNumber as postSignInPhoneNumber, authV2_postSignOut as postSignOut, authV2_postSignUpEmail as postSignUpEmail, authV2_postSiweNonce as postSiweNonce, authV2_postSiweVerify as postSiweVerify, authV2_postUnlinkAccount as postUnlinkAccount, authV2_socialSignIn as socialSignIn };
8050
+ }
8051
+
8052
+ /**
8053
+ * Generated by orval v7.18.0 🍺
7956
8054
  * Do not edit manually.
7957
8055
  * Openfort API
7958
8056
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
7959
8057
  * OpenAPI spec version: 1.0.0
7960
8058
  */
7961
8059
 
7962
- type SecondParameter$i<T extends (...args: never) => unknown> = Parameters<T>[1];
8060
+ type SecondParameter$j<T extends (...args: never) => unknown> = Parameters<T>[1];
7963
8061
  /**
7964
8062
  * Get or create a new session for the player based on the refresh token.
7965
8063
  * @summary Refresh or create auth session.
7966
8064
  */
7967
- declare const refresh: (refreshTokenRequest: RefreshTokenRequest, options?: SecondParameter$i<typeof openfortApiClient<AuthResponse>>) => Promise<AuthResponse>;
8065
+ declare const refresh: (refreshTokenRequest: RefreshTokenRequest, options?: SecondParameter$j<typeof openfortApiClient<AuthResponse>>) => Promise<AuthResponse>;
7968
8066
  /**
7969
8067
  * When using Openfort Auth, the endpoint logs out the player.
7970
8068
  * @summary Log out a player.
7971
8069
  */
7972
- declare const logout: (logoutRequest: LogoutRequest, options?: SecondParameter$i<typeof openfortApiClient<void>>) => Promise<void>;
8070
+ declare const logout: (logoutRequest: LogoutRequest, options?: SecondParameter$j<typeof openfortApiClient<void>>) => Promise<void>;
7973
8071
  /**
7974
8072
  * Create a challenge to link external wallet to the player.
7975
8073
  * @summary Initialize SIWE.
7976
8074
  */
7977
- declare const initSIWE: (sIWERequest: SIWERequest, options?: SecondParameter$i<typeof openfortApiClient<SIWEInitResponse>>) => Promise<SIWEInitResponse>;
8075
+ declare const initSIWE: (sIWERequest: SIWERequest, options?: SecondParameter$j<typeof openfortApiClient<SIWEInitResponse>>) => Promise<SIWEInitResponse>;
7978
8076
  /**
7979
8077
  * @summary Authenticate player with SIWE
7980
8078
  */
7981
- declare const authenticateSIWE: (sIWEAuthenticateRequest: SIWEAuthenticateRequest, options?: SecondParameter$i<typeof openfortApiClient<AuthResponse | void>>) => Promise<void | AuthResponse>;
8079
+ declare const authenticateSIWE: (sIWEAuthenticateRequest: SIWEAuthenticateRequest, options?: SecondParameter$j<typeof openfortApiClient<AuthResponse | void>>) => Promise<void | AuthResponse>;
7982
8080
  /**
7983
8081
  * @summary Unlink external wallet.
7984
8082
  */
7985
- declare const unlinkSIWE: (sIWERequest: SIWERequest, options?: SecondParameter$i<typeof openfortApiClient<AuthPlayerResponse | void>>) => Promise<void | AuthPlayerResponse>;
8083
+ declare const unlinkSIWE: (sIWERequest: SIWERequest, options?: SecondParameter$j<typeof openfortApiClient<AuthPlayerResponse | void>>) => Promise<void | AuthPlayerResponse>;
7986
8084
  /**
7987
8085
  * @summary Link external wallet.
7988
8086
  */
7989
- declare const linkSIWE: (sIWEAuthenticateRequest: SIWEAuthenticateRequest, options?: SecondParameter$i<typeof openfortApiClient<AuthPlayerResponse | void>>) => Promise<void | AuthPlayerResponse>;
8087
+ declare const linkSIWE: (sIWEAuthenticateRequest: SIWEAuthenticateRequest, options?: SecondParameter$j<typeof openfortApiClient<AuthPlayerResponse | void>>) => Promise<void | AuthPlayerResponse>;
7990
8088
  /**
7991
8089
  * Create and authenticate a player based on email and password.
7992
8090
  * @summary Email and password signup.
7993
8091
  */
7994
- declare const signupEmailPassword: (signupRequest: SignupRequest, options?: SecondParameter$i<typeof openfortApiClient<SignupEmailPassword201>>) => Promise<SignupEmailPassword201>;
8092
+ declare const signupEmailPassword: (signupRequest: SignupRequest, options?: SecondParameter$j<typeof openfortApiClient<SignupEmailPassword201>>) => Promise<SignupEmailPassword201>;
7995
8093
  /**
7996
8094
  * Authenticate a player based on email and password.
7997
8095
  * @summary Email and password login.
7998
8096
  */
7999
- declare const loginEmailPassword: (loginRequest: LoginRequest, options?: SecondParameter$i<typeof openfortApiClient<LoginEmailPassword200>>) => Promise<LoginEmailPassword200>;
8097
+ declare const loginEmailPassword: (loginRequest: LoginRequest, options?: SecondParameter$j<typeof openfortApiClient<LoginEmailPassword200>>) => Promise<LoginEmailPassword200>;
8000
8098
  /**
8001
8099
  * Start the Email Verification process for a player.
8002
8100
  * @summary Request an Email Verification.
8003
8101
  */
8004
- declare const requestEmailVerification: (requestVerifyEmailRequest: RequestVerifyEmailRequest, options?: SecondParameter$i<typeof openfortApiClient<void>>) => Promise<void>;
8102
+ declare const requestEmailVerification: (requestVerifyEmailRequest: RequestVerifyEmailRequest, options?: SecondParameter$j<typeof openfortApiClient<void>>) => Promise<void>;
8005
8103
  /**
8006
8104
  * Verify a player's email address.
8007
8105
  * @summary Verify an email.
8008
8106
  */
8009
- declare const verifyEmail: (verifyEmailRequest: VerifyEmailRequest, options?: SecondParameter$i<typeof openfortApiClient<void>>) => Promise<void>;
8107
+ declare const verifyEmail: (verifyEmailRequest: VerifyEmailRequest, options?: SecondParameter$j<typeof openfortApiClient<void>>) => Promise<void>;
8010
8108
  /**
8011
8109
  * Start the Reset process for a player's password.
8012
8110
  * @summary Request a Reset password.
8013
8111
  */
8014
- declare const requestResetPassword: (requestResetPasswordRequest: RequestResetPasswordRequest, options?: SecondParameter$i<typeof openfortApiClient<void>>) => Promise<void>;
8112
+ declare const requestResetPassword: (requestResetPasswordRequest: RequestResetPasswordRequest, options?: SecondParameter$j<typeof openfortApiClient<void>>) => Promise<void>;
8015
8113
  /**
8016
8114
  * Reset a player's password.
8017
8115
  * @summary Reset a password.
8018
8116
  */
8019
- declare const resetPassword: (resetPasswordRequest: ResetPasswordRequest, options?: SecondParameter$i<typeof openfortApiClient<void>>) => Promise<void>;
8020
- declare const linkEmail: (loginRequest: LoginRequest, options?: SecondParameter$i<typeof openfortApiClient<LinkEmail200>>) => Promise<LinkEmail200>;
8021
- declare const unlinkEmail: (unlinkEmailRequest: UnlinkEmailRequest, options?: SecondParameter$i<typeof openfortApiClient<AuthPlayerResponse>>) => Promise<AuthPlayerResponse>;
8117
+ declare const resetPassword: (resetPasswordRequest: ResetPasswordRequest, options?: SecondParameter$j<typeof openfortApiClient<void>>) => Promise<void>;
8118
+ declare const linkEmail: (loginRequest: LoginRequest, options?: SecondParameter$j<typeof openfortApiClient<LinkEmail200>>) => Promise<LinkEmail200>;
8119
+ declare const unlinkEmail: (unlinkEmailRequest: UnlinkEmailRequest, options?: SecondParameter$j<typeof openfortApiClient<AuthPlayerResponse>>) => Promise<AuthPlayerResponse>;
8022
8120
  /**
8023
8121
  * Authenticate a player from an identity token.
8024
8122
  * @summary OIDC Identity token.
8025
8123
  */
8026
- declare const loginOIDC: (loginOIDCRequest: LoginOIDCRequest, options?: SecondParameter$i<typeof openfortApiClient<AuthResponse>>) => Promise<AuthResponse>;
8124
+ declare const loginOIDC: (loginOIDCRequest: LoginOIDCRequest, options?: SecondParameter$j<typeof openfortApiClient<AuthResponse>>) => Promise<AuthResponse>;
8027
8125
  /**
8028
8126
  * @summary Initialize OAuth.
8029
8127
  */
8030
- declare const initOAuth: (oAuthInitRequest: OAuthInitRequest, options?: SecondParameter$i<typeof openfortApiClient<OAuthResponse>>) => Promise<OAuthResponse>;
8128
+ declare const initOAuth: (oAuthInitRequest: OAuthInitRequest, options?: SecondParameter$j<typeof openfortApiClient<OAuthResponse>>) => Promise<OAuthResponse>;
8031
8129
  /**
8032
8130
  * @summary Initialize Link OAuth.
8033
8131
  */
8034
- declare const linkOAuth: (oAuthInitRequest: OAuthInitRequest, options?: SecondParameter$i<typeof openfortApiClient<OAuthResponse>>) => Promise<OAuthResponse>;
8132
+ declare const linkOAuth: (oAuthInitRequest: OAuthInitRequest, options?: SecondParameter$j<typeof openfortApiClient<OAuthResponse>>) => Promise<OAuthResponse>;
8035
8133
  /**
8036
8134
  * @summary Initialize Link OAuth.
8037
8135
  */
8038
- declare const linkThirdParty: (thirdPartyLinkRequest: ThirdPartyLinkRequest, options?: SecondParameter$i<typeof openfortApiClient<AuthPlayerResponse>>) => Promise<AuthPlayerResponse>;
8136
+ declare const linkThirdParty: (thirdPartyLinkRequest: ThirdPartyLinkRequest, options?: SecondParameter$j<typeof openfortApiClient<AuthPlayerResponse>>) => Promise<AuthPlayerResponse>;
8039
8137
  /**
8040
8138
  * @summary Initialize OAuth.
8041
8139
  */
8042
- declare const poolOAuth: (params: PoolOAuthParams, options?: SecondParameter$i<typeof openfortApiClient<AuthResponse>>) => Promise<AuthResponse>;
8140
+ declare const poolOAuth: (params: PoolOAuthParams, options?: SecondParameter$j<typeof openfortApiClient<AuthResponse>>) => Promise<AuthResponse>;
8043
8141
  /**
8044
8142
  * @summary Authenticate player with oauth token.
8045
8143
  */
8046
- declare const loginWithIdToken: (loginWithIdTokenRequest: LoginWithIdTokenRequest, options?: SecondParameter$i<typeof openfortApiClient<AuthResponse>>) => Promise<AuthResponse>;
8144
+ declare const loginWithIdToken: (loginWithIdTokenRequest: LoginWithIdTokenRequest, options?: SecondParameter$j<typeof openfortApiClient<AuthResponse>>) => Promise<AuthResponse>;
8047
8145
  /**
8048
8146
  * @summary Verify oauth token of a third party auth provider.
8049
8147
  */
8050
- declare const thirdParty: (thirdPartyOAuthRequest: ThirdPartyOAuthRequest, options?: SecondParameter$i<typeof openfortApiClient<AuthPlayerResponse>>) => Promise<AuthPlayerResponse>;
8148
+ declare const thirdParty: (thirdPartyOAuthRequest: ThirdPartyOAuthRequest, options?: SecondParameter$j<typeof openfortApiClient<AuthPlayerResponse>>) => Promise<AuthPlayerResponse>;
8051
8149
  /**
8052
8150
  * @summary Unlink OAuth account
8053
8151
  */
8054
- declare const unlinkOAuth: (unlinkOAuthRequest: UnlinkOAuthRequest, options?: SecondParameter$i<typeof openfortApiClient<AuthPlayerResponse>>) => Promise<AuthPlayerResponse>;
8152
+ declare const unlinkOAuth: (unlinkOAuthRequest: UnlinkOAuthRequest, options?: SecondParameter$j<typeof openfortApiClient<AuthPlayerResponse>>) => Promise<AuthPlayerResponse>;
8055
8153
  /**
8056
8154
  * Create a guest player.
8057
8155
  * @summary Create a guest player.
8058
8156
  */
8059
- declare const registerGuest: (options?: SecondParameter$i<typeof openfortApiClient<AuthResponse>>) => Promise<AuthResponse>;
8157
+ declare const registerGuest: (options?: SecondParameter$j<typeof openfortApiClient<AuthResponse>>) => Promise<AuthResponse>;
8060
8158
  /**
8061
8159
  * Get the jwks.json file.
8062
8160
 
8063
8161
  You can use the jwks.json file to verify the signature of a JWT token issued by Openfort Auth.
8064
8162
  * @summary Get the jwks.json file.
8065
8163
  */
8066
- declare const getJwks: (publishableKey: string, options?: SecondParameter$i<typeof openfortApiClient<JwtKeyResponse>>) => Promise<JwtKeyResponse>;
8067
- declare const me: (options?: SecondParameter$i<typeof openfortApiClient<AuthPlayerResponse>>) => Promise<AuthPlayerResponse>;
8164
+ declare const getJwks: (publishableKey: string, options?: SecondParameter$j<typeof openfortApiClient<JwtKeyResponse>>) => Promise<JwtKeyResponse>;
8165
+ declare const me: (options?: SecondParameter$j<typeof openfortApiClient<AuthPlayerResponse>>) => Promise<AuthPlayerResponse>;
8068
8166
  type RefreshResult = NonNullable<Awaited<ReturnType<typeof refresh>>>;
8069
8167
  type LogoutResult = NonNullable<Awaited<ReturnType<typeof logout>>>;
8070
8168
  type InitSIWEResult = NonNullable<Awaited<ReturnType<typeof initSIWE>>>;
@@ -8092,38 +8190,41 @@ type GetJwksResult = NonNullable<Awaited<ReturnType<typeof getJwks>>>;
8092
8190
  type MeResult = NonNullable<Awaited<ReturnType<typeof me>>>;
8093
8191
 
8094
8192
  /**
8095
- * Generated by orval v7.17.0 🍺
8193
+ * Generated by orval v7.18.0 🍺
8096
8194
  * Do not edit manually.
8097
8195
  * Openfort API
8098
8196
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
8099
8197
  * OpenAPI spec version: 1.0.0
8100
8198
  */
8101
8199
 
8102
- type SecondParameter$h<T extends (...args: never) => unknown> = Parameters<T>[1];
8103
- declare const meV2: (options?: SecondParameter$h<typeof openfortApiClient<AuthUserResponse>>) => Promise<AuthUserResponse>;
8200
+ type SecondParameter$i<T extends (...args: never) => unknown> = Parameters<T>[1];
8201
+ /**
8202
+ * @summary Get user information.
8203
+ */
8204
+ declare const meV2: (options?: SecondParameter$i<typeof openfortApiClient<AuthUserResponse>>) => Promise<AuthUserResponse>;
8104
8205
  /**
8105
8206
  * @summary Verify oauth token of a third party auth provider.
8106
8207
  */
8107
- declare const thirdPartyV2: (thirdPartyOAuthRequest: ThirdPartyOAuthRequest, options?: SecondParameter$h<typeof openfortApiClient<AuthUserResponse>>) => Promise<AuthUserResponse>;
8208
+ declare const thirdPartyV2: (thirdPartyOAuthRequest: ThirdPartyOAuthRequest, options?: SecondParameter$i<typeof openfortApiClient<AuthUserResponse>>) => Promise<AuthUserResponse>;
8108
8209
  type MeV2Result = NonNullable<Awaited<ReturnType<typeof meV2>>>;
8109
8210
  type ThirdPartyV2Result = NonNullable<Awaited<ReturnType<typeof thirdPartyV2>>>;
8110
8211
 
8111
8212
  /**
8112
- * Generated by orval v7.17.0 🍺
8213
+ * Generated by orval v7.18.0 🍺
8113
8214
  * Do not edit manually.
8114
8215
  * Openfort API
8115
8216
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
8116
8217
  * OpenAPI spec version: 1.0.0
8117
8218
  */
8118
8219
 
8119
- type SecondParameter$g<T extends (...args: never) => unknown> = Parameters<T>[1];
8220
+ type SecondParameter$h<T extends (...args: never) => unknown> = Parameters<T>[1];
8120
8221
  /**
8121
8222
  * List backend wallets.
8122
8223
 
8123
8224
  Returns a paginated list of backend wallets for the project.
8124
8225
  * @summary List backend wallets.
8125
8226
  */
8126
- declare const listBackendWallets: (params?: ListBackendWalletsParams, options?: SecondParameter$g<typeof openfortApiClient<BackendWalletListResponse>>) => Promise<BackendWalletListResponse>;
8227
+ declare const listBackendWallets: (params?: ListBackendWalletsParams, options?: SecondParameter$h<typeof openfortApiClient<BackendWalletListResponse>>) => Promise<BackendWalletListResponse>;
8127
8228
  /**
8128
8229
  * Create a new backend wallet account.
8129
8230
 
@@ -8131,21 +8232,21 @@ Generates a new keypair securely in the backend wallet system.
8131
8232
  The private key is stored encrypted and never exposed.
8132
8233
  * @summary Create backend wallet.
8133
8234
  */
8134
- declare const createBackendWallet: (createBackendWalletRequest: CreateBackendWalletRequest, options?: SecondParameter$g<typeof openfortApiClient<CreateBackendWalletResponse>>) => Promise<CreateBackendWalletResponse>;
8235
+ declare const createBackendWallet: (createBackendWalletRequest: CreateBackendWalletRequest, options?: SecondParameter$h<typeof openfortApiClient<CreateBackendWalletResponse>>) => Promise<CreateBackendWalletResponse>;
8135
8236
  /**
8136
8237
  * Get backend wallet details.
8137
8238
 
8138
8239
  Returns details for a specific backend wallet.
8139
8240
  * @summary Get backend wallet.
8140
8241
  */
8141
- declare const getBackendWallet: (id: string, options?: SecondParameter$g<typeof openfortApiClient<BackendWalletResponse>>) => Promise<BackendWalletResponse>;
8242
+ declare const getBackendWallet: (id: string, options?: SecondParameter$h<typeof openfortApiClient<BackendWalletResponse>>) => Promise<BackendWalletResponse>;
8142
8243
  /**
8143
8244
  * Delete a backend wallet.
8144
8245
 
8145
8246
  Permanently deletes a backend wallet and its associated private key.
8146
8247
  * @summary Delete backend wallet.
8147
8248
  */
8148
- declare const deleteBackendWallet: (id: string, options?: SecondParameter$g<typeof openfortApiClient<DeleteBackendWalletResponse>>) => Promise<DeleteBackendWalletResponse>;
8249
+ declare const deleteBackendWallet: (id: string, options?: SecondParameter$h<typeof openfortApiClient<DeleteBackendWalletResponse>>) => Promise<DeleteBackendWalletResponse>;
8149
8250
  /**
8150
8251
  * Sign data via backend wallet.
8151
8252
 
@@ -8153,7 +8254,7 @@ Signs the provided data using the account's private key managed by the backend w
8153
8254
  The private key is securely stored and never exposed.
8154
8255
  * @summary Sign data via backend wallet.
8155
8256
  */
8156
- declare const sign: (id: string, signRequest: SignRequest, options?: SecondParameter$g<typeof openfortApiClient<SignResponse>>) => Promise<SignResponse>;
8257
+ declare const sign: (id: string, signRequest: SignRequest, options?: SecondParameter$h<typeof openfortApiClient<SignResponse>>) => Promise<SignResponse>;
8157
8258
  /**
8158
8259
  * Export private key with E2E encryption via backend wallet.
8159
8260
 
@@ -8162,7 +8263,7 @@ The client must provide their ephemeral RSA-4096 public key (base64 SPKI DER for
8162
8263
  The response contains the encrypted private key that can be decrypted with the client's private key.
8163
8264
  * @summary Export private key (E2E encrypted).
8164
8265
  */
8165
- declare const exportPrivateKey: (id: string, exportPrivateKeyRequest: ExportPrivateKeyRequest, options?: SecondParameter$g<typeof openfortApiClient<ExportPrivateKeyResponse>>) => Promise<ExportPrivateKeyResponse>;
8266
+ declare const exportPrivateKey: (id: string, exportPrivateKeyRequest: ExportPrivateKeyRequest, options?: SecondParameter$h<typeof openfortApiClient<ExportPrivateKeyResponse>>) => Promise<ExportPrivateKeyResponse>;
8166
8267
  /**
8167
8268
  * Import private key with E2E encryption via backend wallet.
8168
8269
 
@@ -8171,7 +8272,7 @@ The private key must be encrypted using RSA-4096 OAEP SHA-256 with the server's
8171
8272
  static import public key (obtain out-of-band from SDK or documentation).
8172
8273
  * @summary Import private key (E2E encrypted).
8173
8274
  */
8174
- declare const importPrivateKey: (importPrivateKeyRequest: ImportPrivateKeyRequest, options?: SecondParameter$g<typeof openfortApiClient<ImportPrivateKeyResponse>>) => Promise<ImportPrivateKeyResponse>;
8275
+ declare const importPrivateKey: (importPrivateKeyRequest: ImportPrivateKeyRequest, options?: SecondParameter$h<typeof openfortApiClient<ImportPrivateKeyResponse>>) => Promise<ImportPrivateKeyResponse>;
8175
8276
  /**
8176
8277
  * Register a new wallet secret (authentication key).
8177
8278
 
@@ -8180,7 +8281,7 @@ X-Wallet-Auth JWT signatures. This is required before using WALLET_AUTH
8180
8281
  for other backend wallet operations.
8181
8282
  * @summary Register wallet secret.
8182
8283
  */
8183
- declare const registerWalletSecret: (registerWalletSecretRequest: RegisterWalletSecretRequest, options?: SecondParameter$g<typeof openfortApiClient<RegisterWalletSecretResponse>>) => Promise<RegisterWalletSecretResponse>;
8284
+ declare const registerWalletSecret: (registerWalletSecretRequest: RegisterWalletSecretRequest, options?: SecondParameter$h<typeof openfortApiClient<RegisterWalletSecretResponse>>) => Promise<RegisterWalletSecretResponse>;
8184
8285
  /**
8185
8286
  * Revoke a wallet secret (authentication key).
8186
8287
 
@@ -8188,7 +8289,7 @@ Permanently revokes a wallet secret so it can no longer be used
8188
8289
  for X-Wallet-Auth JWT signing.
8189
8290
  * @summary Revoke wallet secret.
8190
8291
  */
8191
- declare const revokeWalletSecret: (revokeWalletSecretRequest: RevokeWalletSecretRequest, options?: SecondParameter$g<typeof openfortApiClient<RevokeWalletSecretResponse>>) => Promise<RevokeWalletSecretResponse>;
8292
+ declare const revokeWalletSecret: (revokeWalletSecretRequest: RevokeWalletSecretRequest, options?: SecondParameter$h<typeof openfortApiClient<RevokeWalletSecretResponse>>) => Promise<RevokeWalletSecretResponse>;
8192
8293
  /**
8193
8294
  * Rotate wallet secret (authentication key).
8194
8295
 
@@ -8196,7 +8297,7 @@ Replaces the current wallet secret (ECDSA P-256 public key) used for
8196
8297
  X-Wallet-Auth JWT signing. The old secret will be revoked.
8197
8298
  * @summary Rotate wallet secret.
8198
8299
  */
8199
- declare const rotateWalletSecret: (rotateWalletSecretRequest: RotateWalletSecretRequest, options?: SecondParameter$g<typeof openfortApiClient<RotateWalletSecretResponse>>) => Promise<RotateWalletSecretResponse>;
8300
+ declare const rotateWalletSecret: (rotateWalletSecretRequest: RotateWalletSecretRequest, options?: SecondParameter$h<typeof openfortApiClient<RotateWalletSecretResponse>>) => Promise<RotateWalletSecretResponse>;
8200
8301
  type ListBackendWalletsResult = NonNullable<Awaited<ReturnType<typeof listBackendWallets>>>;
8201
8302
  type CreateBackendWalletResult = NonNullable<Awaited<ReturnType<typeof createBackendWallet>>>;
8202
8303
  type GetBackendWalletResult = NonNullable<Awaited<ReturnType<typeof getBackendWallet>>>;
@@ -8209,39 +8310,39 @@ type RevokeWalletSecretResult = NonNullable<Awaited<ReturnType<typeof revokeWall
8209
8310
  type RotateWalletSecretResult = NonNullable<Awaited<ReturnType<typeof rotateWalletSecret>>>;
8210
8311
 
8211
8312
  /**
8212
- * Generated by orval v7.17.0 🍺
8313
+ * Generated by orval v7.18.0 🍺
8213
8314
  * Do not edit manually.
8214
8315
  * Openfort API
8215
8316
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
8216
8317
  * OpenAPI spec version: 1.0.0
8217
8318
  */
8218
8319
 
8219
- type SecondParameter$f<T extends (...args: never) => unknown> = Parameters<T>[1];
8320
+ type SecondParameter$g<T extends (...args: never) => unknown> = Parameters<T>[1];
8220
8321
  /**
8221
8322
  * List of all contracts per project.
8222
8323
  By default, a maximum of ten contracts are shown.
8223
8324
  * @summary List contracts.
8224
8325
  */
8225
- declare const getContracts: (params?: GetContractsParams, options?: SecondParameter$f<typeof openfortApiClient<ContractListResponse>>) => Promise<ContractListResponse>;
8326
+ declare const getContracts: (params?: GetContractsParams, options?: SecondParameter$g<typeof openfortApiClient<ContractListResponse>>) => Promise<ContractListResponse>;
8226
8327
  /**
8227
8328
  * Add a new contract to your project in Openfort
8228
8329
  * @summary Create contract object.
8229
8330
  */
8230
- declare const createContract: (createContractRequest: CreateContractRequest, options?: SecondParameter$f<typeof openfortApiClient<ContractResponse>>) => Promise<ContractResponse>;
8331
+ declare const createContract: (createContractRequest: CreateContractRequest, options?: SecondParameter$g<typeof openfortApiClient<ContractResponse>>) => Promise<ContractResponse>;
8231
8332
  /**
8232
8333
  * Retrieve a contract by providing their contract id.
8233
8334
  * @summary Get a contract.
8234
8335
  */
8235
- declare const getContract: (id: string, options?: SecondParameter$f<typeof openfortApiClient<ContractResponse>>) => Promise<ContractResponse>;
8336
+ declare const getContract: (id: string, options?: SecondParameter$g<typeof openfortApiClient<ContractResponse>>) => Promise<ContractResponse>;
8236
8337
  /**
8237
8338
  * @summary Updates a contract object.
8238
8339
  */
8239
- declare const updateContract: (id: string, updateContractRequest: UpdateContractRequest, options?: SecondParameter$f<typeof openfortApiClient<ContractResponse>>) => Promise<ContractResponse>;
8340
+ declare const updateContract: (id: string, updateContractRequest: UpdateContractRequest, options?: SecondParameter$g<typeof openfortApiClient<ContractResponse>>) => Promise<ContractResponse>;
8240
8341
  /**
8241
8342
  * Delete a contract from the project by providing its contract id.
8242
8343
  * @summary Deletes a contract object.
8243
8344
  */
8244
- declare const deleteContract: (id: string, options?: SecondParameter$f<typeof openfortApiClient<ContractDeleteResponse>>) => Promise<ContractDeleteResponse>;
8345
+ declare const deleteContract: (id: string, options?: SecondParameter$g<typeof openfortApiClient<ContractDeleteResponse>>) => Promise<ContractDeleteResponse>;
8245
8346
  /**
8246
8347
  * Using this endpoint, you can get the repositories returned by any readable
8247
8348
  function listed in a contracts ABI. This could be things like querying
@@ -8249,7 +8350,7 @@ the totalSupply of a currency contract, the number of owners of an items
8249
8350
  contract, and more.
8250
8351
  * @summary Read on chain contract repositories.
8251
8352
  */
8252
- declare const readContract: (id: string, params: ReadContractParams, options?: SecondParameter$f<typeof openfortApiClient<ContractReadResponse>>) => Promise<ContractReadResponse>;
8353
+ declare const readContract: (id: string, params: ReadContractParams, options?: SecondParameter$g<typeof openfortApiClient<ContractReadResponse>>) => Promise<ContractReadResponse>;
8253
8354
  type GetContractsResult = NonNullable<Awaited<ReturnType<typeof getContracts>>>;
8254
8355
  type CreateContractResult = NonNullable<Awaited<ReturnType<typeof createContract>>>;
8255
8356
  type GetContractResult = NonNullable<Awaited<ReturnType<typeof getContract>>>;
@@ -8258,79 +8359,79 @@ type DeleteContractResult = NonNullable<Awaited<ReturnType<typeof deleteContract
8258
8359
  type ReadContractResult = NonNullable<Awaited<ReturnType<typeof readContract>>>;
8259
8360
 
8260
8361
  /**
8261
- * Generated by orval v7.17.0 🍺
8362
+ * Generated by orval v7.18.0 🍺
8262
8363
  * Do not edit manually.
8263
8364
  * Openfort API
8264
8365
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
8265
8366
  * OpenAPI spec version: 1.0.0
8266
8367
  */
8267
8368
 
8268
- type SecondParameter$e<T extends (...args: never) => unknown> = Parameters<T>[1];
8369
+ type SecondParameter$f<T extends (...args: never) => unknown> = Parameters<T>[1];
8269
8370
  /**
8270
8371
  * Returns a list of events.
8271
8372
 
8272
8373
  By default, a maximum of 10 events are shown per page.
8273
8374
  * @summary List events.
8274
8375
  */
8275
- declare const getEvents: (params?: GetEventsParams, options?: SecondParameter$e<typeof openfortApiClient<EventListResponse>>) => Promise<EventListResponse>;
8376
+ declare const getEvents: (params?: GetEventsParams, options?: SecondParameter$f<typeof openfortApiClient<EventListResponse>>) => Promise<EventListResponse>;
8276
8377
  /**
8277
8378
  * Create a new event.
8278
8379
  * @summary Create a new event.
8279
8380
  */
8280
- declare const createEvent: (createEventRequest: CreateEventRequest, options?: SecondParameter$e<typeof openfortApiClient<EventResponse>>) => Promise<EventResponse>;
8381
+ declare const createEvent: (createEventRequest: CreateEventRequest, options?: SecondParameter$f<typeof openfortApiClient<EventResponse>>) => Promise<EventResponse>;
8281
8382
  /**
8282
8383
  * Get a single event.
8283
8384
  * @summary Get a single event.
8284
8385
  */
8285
- declare const getEvent: (id: string, options?: SecondParameter$e<typeof openfortApiClient<EventResponse>>) => Promise<EventResponse>;
8386
+ declare const getEvent: (id: string, options?: SecondParameter$f<typeof openfortApiClient<EventResponse>>) => Promise<EventResponse>;
8286
8387
  /**
8287
8388
  * Delete an event.
8288
8389
  * @summary Delete an event.
8289
8390
  */
8290
- declare const deleteEvent: (id: string, options?: SecondParameter$e<typeof openfortApiClient<EventDeleteResponse>>) => Promise<EventDeleteResponse>;
8391
+ declare const deleteEvent: (id: string, options?: SecondParameter$f<typeof openfortApiClient<EventDeleteResponse>>) => Promise<EventDeleteResponse>;
8291
8392
  type GetEventsResult = NonNullable<Awaited<ReturnType<typeof getEvents>>>;
8292
8393
  type CreateEventResult = NonNullable<Awaited<ReturnType<typeof createEvent>>>;
8293
8394
  type GetEventResult = NonNullable<Awaited<ReturnType<typeof getEvent>>>;
8294
8395
  type DeleteEventResult = NonNullable<Awaited<ReturnType<typeof deleteEvent>>>;
8295
8396
 
8296
8397
  /**
8297
- * Generated by orval v7.17.0 🍺
8398
+ * Generated by orval v7.18.0 🍺
8298
8399
  * Do not edit manually.
8299
8400
  * Openfort API
8300
8401
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
8301
8402
  * OpenAPI spec version: 1.0.0
8302
8403
  */
8303
8404
 
8304
- type SecondParameter$d<T extends (...args: never) => unknown> = Parameters<T>[1];
8405
+ type SecondParameter$e<T extends (...args: never) => unknown> = Parameters<T>[1];
8305
8406
  /**
8306
8407
  * Creates token swap.
8307
8408
  * @summary Create token swap.
8308
8409
  */
8309
- declare const createSwap: (createExchangeRequest: CreateExchangeRequest, options?: SecondParameter$d<typeof openfortApiClient<TransactionIntentResponse>>) => Promise<TransactionIntentResponse>;
8410
+ declare const createSwap: (createExchangeRequest: CreateExchangeRequest, options?: SecondParameter$e<typeof openfortApiClient<TransactionIntentResponse>>) => Promise<TransactionIntentResponse>;
8310
8411
  /**
8311
8412
  * Quote token swap.
8312
8413
  * @summary Quote token swap.
8313
8414
  */
8314
- declare const quoteSwap: (createExchangeRequest: CreateExchangeRequest, options?: SecondParameter$d<typeof openfortApiClient<QuoteExchangeResult>>) => Promise<QuoteExchangeResult>;
8415
+ declare const quoteSwap: (createExchangeRequest: CreateExchangeRequest, options?: SecondParameter$e<typeof openfortApiClient<QuoteExchangeResult>>) => Promise<QuoteExchangeResult>;
8315
8416
  type CreateSwapResult = NonNullable<Awaited<ReturnType<typeof createSwap>>>;
8316
8417
  type QuoteSwapResult = NonNullable<Awaited<ReturnType<typeof quoteSwap>>>;
8317
8418
 
8318
8419
  /**
8319
- * Generated by orval v7.17.0 🍺
8420
+ * Generated by orval v7.18.0 🍺
8320
8421
  * Do not edit manually.
8321
8422
  * Openfort API
8322
8423
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
8323
8424
  * OpenAPI spec version: 1.0.0
8324
8425
  */
8325
8426
 
8326
- type SecondParameter$c<T extends (...args: never) => unknown> = Parameters<T>[1];
8427
+ type SecondParameter$d<T extends (...args: never) => unknown> = Parameters<T>[1];
8327
8428
  /**
8328
8429
  * Create a new forwarder contract.
8329
8430
 
8330
8431
  This object represents the forwarder contract that will be used to pay the gas fees of the transactions.
8331
8432
  * @summary Create a new forwarder contract.
8332
8433
  */
8333
- declare const createForwarderContract: (createForwarderContractRequest: CreateForwarderContractRequest, options?: SecondParameter$c<typeof openfortApiClient<ForwarderContractResponse>>) => Promise<ForwarderContractResponse>;
8434
+ declare const createForwarderContract: (createForwarderContractRequest: CreateForwarderContractRequest, options?: SecondParameter$d<typeof openfortApiClient<ForwarderContractResponse>>) => Promise<ForwarderContractResponse>;
8334
8435
  /**
8335
8436
  * Returns a list of forwarder contract.
8336
8437
 
@@ -8339,28 +8440,28 @@ This object represents the forwarder contract that will be used to pay the gas f
8339
8440
  By default, a maximum of 10 forwarder contract are shown per page.
8340
8441
  * @summary List forwarder contract.
8341
8442
  */
8342
- declare const listForwarderContracts: (params?: ListForwarderContractsParams, options?: SecondParameter$c<typeof openfortApiClient<ForwarderContractResponse[]>>) => Promise<ForwarderContractResponse[]>;
8443
+ declare const listForwarderContracts: (params?: ListForwarderContractsParams, options?: SecondParameter$d<typeof openfortApiClient<ForwarderContractResponse[]>>) => Promise<ForwarderContractResponse[]>;
8343
8444
  /**
8344
8445
  * Update a forwarder contract.
8345
8446
 
8346
8447
  This object represents the forwarder contract that will be used to pay the gas fees of the transactions.
8347
8448
  * @summary Update a forwarder contract.
8348
8449
  */
8349
- declare const updateForwarderContract: (id: string, createForwarderContractRequest: CreateForwarderContractRequest, options?: SecondParameter$c<typeof openfortApiClient<ForwarderContractResponse>>) => Promise<ForwarderContractResponse>;
8450
+ declare const updateForwarderContract: (id: string, createForwarderContractRequest: CreateForwarderContractRequest, options?: SecondParameter$d<typeof openfortApiClient<ForwarderContractResponse>>) => Promise<ForwarderContractResponse>;
8350
8451
  /**
8351
8452
  * Returns the forwarder contract with the given id.
8352
8453
 
8353
8454
  This object represents the forwarder contract that will be used to pay the gas fees for the transactions.
8354
8455
  * @summary Get forwarder contract by id.
8355
8456
  */
8356
- declare const getForwarderContract: (id: string, options?: SecondParameter$c<typeof openfortApiClient<ForwarderContractResponse>>) => Promise<ForwarderContractResponse>;
8457
+ declare const getForwarderContract: (id: string, options?: SecondParameter$d<typeof openfortApiClient<ForwarderContractResponse>>) => Promise<ForwarderContractResponse>;
8357
8458
  /**
8358
8459
  * Delete the forwarder contract with the given id.
8359
8460
 
8360
8461
  This object represents the forwarder contract that will be used to pay the gas fees for the transactions.
8361
8462
  * @summary Delete forwarder contract by id.
8362
8463
  */
8363
- declare const deleteForwarderContract: (id: string, options?: SecondParameter$c<typeof openfortApiClient<ForwarderContractDeleteResponse>>) => Promise<ForwarderContractDeleteResponse>;
8464
+ declare const deleteForwarderContract: (id: string, options?: SecondParameter$d<typeof openfortApiClient<ForwarderContractDeleteResponse>>) => Promise<ForwarderContractDeleteResponse>;
8364
8465
  type CreateForwarderContractResult = NonNullable<Awaited<ReturnType<typeof createForwarderContract>>>;
8365
8466
  type ListForwarderContractsResult = NonNullable<Awaited<ReturnType<typeof listForwarderContracts>>>;
8366
8467
  type UpdateForwarderContractResult = NonNullable<Awaited<ReturnType<typeof updateForwarderContract>>>;
@@ -8368,19 +8469,39 @@ type GetForwarderContractResult = NonNullable<Awaited<ReturnType<typeof getForwa
8368
8469
  type DeleteForwarderContractResult = NonNullable<Awaited<ReturnType<typeof deleteForwarderContract>>>;
8369
8470
 
8370
8471
  /**
8371
- * Generated by orval v7.17.0 🍺
8472
+ * Generated by orval v7.18.0 🍺
8372
8473
  * Do not edit manually.
8373
8474
  * Openfort API
8374
8475
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
8375
8476
  * OpenAPI spec version: 1.0.0
8376
8477
  */
8377
8478
 
8378
- type SecondParameter$b<T extends (...args: never) => unknown> = Parameters<T>[1];
8379
- declare const query: (queryBody: unknown, options?: SecondParameter$b<typeof openfortApiClient<unknown>>) => Promise<unknown>;
8479
+ type SecondParameter$c<T extends (...args: never) => unknown> = Parameters<T>[1];
8480
+ declare const query: (queryBody: unknown, options?: SecondParameter$c<typeof openfortApiClient<unknown>>) => Promise<unknown>;
8380
8481
  type QueryResult = NonNullable<Awaited<ReturnType<typeof query>>>;
8381
8482
 
8382
8483
  /**
8383
- * Generated by orval v7.17.0 🍺
8484
+ * Generated by orval v7.18.0 🍺
8485
+ * Do not edit manually.
8486
+ * Openfort API
8487
+ * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
8488
+ * OpenAPI spec version: 1.0.0
8489
+ */
8490
+
8491
+ type SecondParameter$b<T extends (...args: never) => unknown> = Parameters<T>[1];
8492
+ /**
8493
+ * @summary Get logs for a project.
8494
+ */
8495
+ declare const getProjectLogs: (params?: GetProjectLogsParams, options?: SecondParameter$b<typeof openfortApiClient<ProjectLogs>>) => Promise<ProjectLogs>;
8496
+ /**
8497
+ * @summary Get webhook logs for a project.
8498
+ */
8499
+ declare const getWebhookLogsByProjectId: (options?: SecondParameter$b<typeof openfortApiClient<ProjectLogs>>) => Promise<ProjectLogs>;
8500
+ type GetProjectLogsResult = NonNullable<Awaited<ReturnType<typeof getProjectLogs>>>;
8501
+ type GetWebhookLogsByProjectIdResult = NonNullable<Awaited<ReturnType<typeof getWebhookLogsByProjectId>>>;
8502
+
8503
+ /**
8504
+ * Generated by orval v7.18.0 🍺
8384
8505
  * Do not edit manually.
8385
8506
  * Openfort API
8386
8507
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
@@ -8411,7 +8532,7 @@ type CreateOnrampSessionResult = NonNullable<Awaited<ReturnType<typeof createOnr
8411
8532
  type GetOnrampQuoteResult = NonNullable<Awaited<ReturnType<typeof getOnrampQuote>>>;
8412
8533
 
8413
8534
  /**
8414
- * Generated by orval v7.17.0 🍺
8535
+ * Generated by orval v7.18.0 🍺
8415
8536
  * Do not edit manually.
8416
8537
  * Openfort API
8417
8538
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
@@ -8463,7 +8584,7 @@ type GetPaymasterResult = NonNullable<Awaited<ReturnType<typeof getPaymaster>>>;
8463
8584
  type DeletePaymasterResult = NonNullable<Awaited<ReturnType<typeof deletePaymaster>>>;
8464
8585
 
8465
8586
  /**
8466
- * Generated by orval v7.17.0 🍺
8587
+ * Generated by orval v7.18.0 🍺
8467
8588
  * Do not edit manually.
8468
8589
  * Openfort API
8469
8590
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
@@ -8522,7 +8643,7 @@ type RequestTransferAccountOwnershipResult = NonNullable<Awaited<ReturnType<type
8522
8643
  type CancelTransferAccountOwnershipResult = NonNullable<Awaited<ReturnType<typeof cancelTransferAccountOwnership>>>;
8523
8644
 
8524
8645
  /**
8525
- * Generated by orval v7.17.0 🍺
8646
+ * Generated by orval v7.18.0 🍺
8526
8647
  * Do not edit manually.
8527
8648
  * Openfort API
8528
8649
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
@@ -8601,7 +8722,7 @@ type GetPolicyBalanceResult = NonNullable<Awaited<ReturnType<typeof getPolicyBal
8601
8722
  type CreatePolicyWithdrawalResult = NonNullable<Awaited<ReturnType<typeof createPolicyWithdrawal>>>;
8602
8723
 
8603
8724
  /**
8604
- * Generated by orval v7.17.0 🍺
8725
+ * Generated by orval v7.18.0 🍺
8605
8726
  * Do not edit manually.
8606
8727
  * Openfort API
8607
8728
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
@@ -8636,7 +8757,7 @@ type UpdatePolicyRuleResult = NonNullable<Awaited<ReturnType<typeof updatePolicy
8636
8757
  type DeletePolicyRuleResult = NonNullable<Awaited<ReturnType<typeof deletePolicyRule>>>;
8637
8758
 
8638
8759
  /**
8639
- * Generated by orval v7.17.0 🍺
8760
+ * Generated by orval v7.18.0 🍺
8640
8761
  * Do not edit manually.
8641
8762
  * Openfort API
8642
8763
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
@@ -8676,7 +8797,7 @@ type HandleRpcRequestResult = NonNullable<Awaited<ReturnType<typeof handleRpcReq
8676
8797
  type HandleChainRpcRequestResult = NonNullable<Awaited<ReturnType<typeof handleChainRpcRequest>>>;
8677
8798
 
8678
8799
  /**
8679
- * Generated by orval v7.17.0 🍺
8800
+ * Generated by orval v7.18.0 🍺
8680
8801
  * Do not edit manually.
8681
8802
  * Openfort API
8682
8803
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
@@ -8718,7 +8839,7 @@ type SignatureSessionResult = NonNullable<Awaited<ReturnType<typeof signatureSes
8718
8839
  type GetSessionResult = NonNullable<Awaited<ReturnType<typeof getSession>>>;
8719
8840
 
8720
8841
  /**
8721
- * Generated by orval v7.17.0 🍺
8842
+ * Generated by orval v7.18.0 🍺
8722
8843
  * Do not edit manually.
8723
8844
  * Openfort API
8724
8845
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
@@ -8777,7 +8898,7 @@ type DeleteDeveloperAccountResult = NonNullable<Awaited<ReturnType<typeof delete
8777
8898
  type GetVerificationPayloadResult = NonNullable<Awaited<ReturnType<typeof getVerificationPayload>>>;
8778
8899
 
8779
8900
  /**
8780
- * Generated by orval v7.17.0 🍺
8901
+ * Generated by orval v7.18.0 🍺
8781
8902
  * Do not edit manually.
8782
8903
  * Openfort API
8783
8904
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
@@ -8875,7 +8996,7 @@ type DeleteTriggerResult = NonNullable<Awaited<ReturnType<typeof deleteTrigger>>
8875
8996
  type TestTriggerResult = NonNullable<Awaited<ReturnType<typeof testTrigger>>>;
8876
8997
 
8877
8998
  /**
8878
- * Generated by orval v7.17.0 🍺
8999
+ * Generated by orval v7.18.0 🍺
8879
9000
  * Do not edit manually.
8880
9001
  * Openfort API
8881
9002
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
@@ -8927,7 +9048,7 @@ type EstimateTransactionIntentCostResult = NonNullable<Awaited<ReturnType<typeof
8927
9048
  type SignatureResult = NonNullable<Awaited<ReturnType<typeof signature>>>;
8928
9049
 
8929
9050
  /**
8930
- * Generated by orval v7.17.0 🍺
9051
+ * Generated by orval v7.18.0 🍺
8931
9052
  * Do not edit manually.
8932
9053
  * Openfort API
8933
9054
  * Complete Openfort API references and guides can be found at: https://www.openfort.io/docs
@@ -8939,20 +9060,20 @@ type SecondParameter<T extends (...args: never) => unknown> = Parameters<T>[1];
8939
9060
  * Retrieves an authenticated users.
8940
9061
 
8941
9062
  Users have linked accounts and are authenticated with a provider.
8942
- * @summary Authenticated user.
9063
+ * @summary List authenticated users.
8943
9064
  */
8944
9065
  declare const getAuthUsers: (params?: GetAuthUsersParams, options?: SecondParameter<typeof openfortApiClient<BaseEntityListResponseAuthUserResponse>>) => Promise<BaseEntityListResponseAuthUserResponse>;
8945
9066
  /**
8946
9067
  * Retrieves an authenticated user.
8947
9068
 
8948
9069
  Users have linked accounts and are authenticated with a provider.
8949
- * @summary Authenticated user.
9070
+ * @summary Get authenticated user by id.
8950
9071
  */
8951
9072
  declare const getAuthUser: (id: string, options?: SecondParameter<typeof openfortApiClient<AuthUserResponse>>) => Promise<AuthUserResponse>;
8952
9073
  /**
8953
9074
  * It will delete all linked accounts the user is authenticated with.
8954
9075
  If the user has a linked embedded signer, it will be deleted as well.
8955
- * @summary Deletes a user object.
9076
+ * @summary Delete user by id.
8956
9077
  */
8957
9078
  declare const deleteUser: (id: string, options?: SecondParameter<typeof openfortApiClient<BaseDeleteEntityResponseEntityTypePLAYER>>) => Promise<BaseDeleteEntityResponseEntityTypePLAYER>;
8958
9079
  /**
@@ -9320,8 +9441,6 @@ declare class Openfort {
9320
9441
  update: (id: string, updateContractRequest: UpdateContractRequest, options?: string | RequestOptions | undefined) => Promise<ContractResponse>;
9321
9442
  /** Delete a contract */
9322
9443
  delete: (id: string, options?: string | RequestOptions | undefined) => Promise<ContractDeleteResponse>;
9323
- /** Read a contract */
9324
- read: (id: string, params: ReadContractParams, options?: string | RequestOptions | undefined) => Promise<ContractReadResponse>;
9325
9444
  };
9326
9445
  /**
9327
9446
  * Policy management endpoints
@@ -9457,7 +9576,6 @@ declare class Openfort {
9457
9576
  * // V2 (default) - Users
9458
9577
  * const users = await openfort.iam.users.list();
9459
9578
  * const user = await openfort.iam.users.get('usr_...');
9460
- * await openfort.iam.users.pregenerate({ email: 'user@example.com' }, shieldConfig);
9461
9579
  *
9462
9580
  * // V1 - Players
9463
9581
  * const players = await openfort.iam.v1.players.list();
@@ -9478,14 +9596,6 @@ declare class Openfort {
9478
9596
  get: (id: string, options?: string | RequestOptions | undefined) => Promise<AuthUserResponse>;
9479
9597
  /** Delete a user */
9480
9598
  delete: (id: string, options?: string | RequestOptions | undefined) => Promise<BaseDeleteEntityResponseEntityTypePLAYER>;
9481
- /**
9482
- * Pre-generate a user with an embedded account before they authenticate.
9483
- * Creates a user record and an embedded account.
9484
- * @param req - The pregenerate user request
9485
- * @param shieldConfig - Optional Shield configuration for storing the recovery share
9486
- * @returns The pregenerated account response
9487
- */
9488
- pregenerate: (req: PregenerateUserRequestV2, shieldConfig: ShieldConfiguration) => Promise<AccountV2Response>;
9489
9599
  };
9490
9600
  /** OAuth configuration */
9491
9601
  authProvidersConfig: {
@@ -9587,4 +9697,4 @@ declare class Openfort {
9587
9697
  createEncryptionSession(shieldApiKey: string, shieldApiSecret: string, encryptionShare: string, shieldApiBaseUrl?: string): Promise<string>;
9588
9698
  }
9589
9699
 
9590
- 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, 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, 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 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 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 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 GoogleOAuthConfig, type GrantCallbackRequest, type GrantOAuthResponse, type GuestAuthConfig, type HandleChainRpcRequestResult, type HandleRpcRequestResult, 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, 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, anonymous as authAnonymous, _default as authApi, emailOtp as authEmailOtp, phoneNumber as authPhoneNumber, openfortAuth_schemas as authSchemas, siwe as authSiwe, authenticateSIWE, authorize, 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, 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, getSession, getSignerIdByAddress, getSubscription, getSubscriptions, getTransactionIntent, getTransactionIntents, getTrigger, getTriggers, getVerificationPayload, handleChainRpcRequest, handleRpcRequest, 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 };
9700
+ 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 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, 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 };