diff --git a/src/client/api.ts b/src/client/api.ts index 941154cf..771e15ec 100644 --- a/src/client/api.ts +++ b/src/client/api.ts @@ -6523,7 +6523,6 @@ export interface FundApiInterface { * @memberof FundApiInterface */ listFundOperations(walletId: string, addressId: string, limit?: number, page?: string, options?: RawAxiosRequestConfig): AxiosPromise; - } /** diff --git a/src/coinbase/types.ts b/src/coinbase/types.ts index 7557005c..61a1131c 100644 --- a/src/coinbase/types.ts +++ b/src/coinbase/types.ts @@ -51,16 +51,11 @@ import { SmartContractList, CreateSmartContractRequest, SmartContract as SmartContractModel, - FundOperation as FundOperationModel, - FundQuote as FundQuoteModel, DeploySmartContractRequest, WebhookEventTypeFilter, CreateWalletWebhookRequest, ReadContractRequest, SolidityValue, - FundOperationList, - CreateFundOperationRequest, - CreateFundQuoteRequest, } from "./../client/api"; import { Address } from "./address"; import { Wallet } from "./wallet"; @@ -1394,74 +1389,6 @@ export interface SmartContractAPIClient { ): AxiosPromise; } -export interface FundOperationApiClient { - /** - * List fund operations - * - * @param walletId - The ID of the wallet the address belongs to. - * @param addressId - The ID of the address to list fund operations for. - * @param limit - A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10. - * @param page - A cursor for pagination across multiple pages of results. Don\'t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results. - * @param options - Axios request options - * @throws {APIError} If the request fails - */ - listFundOperations( - walletId: string, - addressId: string, - limit?: number, - page?: string, - options?: RawAxiosRequestConfig, - ): AxiosPromise; - - /** - * Get a fund operation - * - * @param walletId - The ID of the wallet the address belongs to. - * @param addressId - The ID of the address the fund operation belongs to. - * @param fundOperationId - The ID of the fund operation to retrieve - * @param options - Axios request options - * @throws {APIError} If the request fails - */ - getFundOperation( - walletId: string, - addressId: string, - fundOperationId: string, - options?: RawAxiosRequestConfig, - ): AxiosPromise; - - /** - * Create a fund operation - * - * @param walletId - The ID of the wallet to create the fund operation for - * @param addressId - The ID of the address to create the fund operation for - * @param createFundOperationRequest - The request body containing the fund operation details - * @param options - Axios request options - * @throws {APIError} If the request fails - */ - createFundOperation( - walletId: string, - addressId: string, - createFundOperationRequest: CreateFundOperationRequest, - options?: RawAxiosRequestConfig, - ): AxiosPromise; - - /** - * Create a fund operation quote - * - * @param walletId - The ID of the wallet the address belongs to. - * @param addressId - The ID of the address to create the fund operation quote for. - * @param createFundQuoteRequest - The request body containing the fund operation quote details. - * @param options - Axios request options. - * @throws {APIError} If the request fails. - */ - createFundQuote( - walletId: string, - addressId: string, - createFundQuoteRequest: CreateFundQuoteRequest, - options?: RawAxiosRequestConfig, - ): AxiosPromise; -} - /** * Options for pagination on list methods. */