import { queryParams, type RouteQueryOptions, type RouteDefinition, type RouteFormDefinition } from './../../../../wayfinder'
/**
* @see \App\Http\Controllers\RentecAccountSwitchController::store
* @see app/Http/Controllers/RentecAccountSwitchController.php:22
* @route '/portfolio/account'
*/
export const store = (options?: RouteQueryOptions): RouteDefinition<'post'> => ({
    url: store.url(options),
    method: 'post',
})

store.definition = {
    methods: ["post"],
    url: '/portfolio/account',
} satisfies RouteDefinition<["post"]>

/**
* @see \App\Http\Controllers\RentecAccountSwitchController::store
* @see app/Http/Controllers/RentecAccountSwitchController.php:22
* @route '/portfolio/account'
*/
store.url = (options?: RouteQueryOptions) => {
    return store.definition.url + queryParams(options)
}

/**
* @see \App\Http\Controllers\RentecAccountSwitchController::store
* @see app/Http/Controllers/RentecAccountSwitchController.php:22
* @route '/portfolio/account'
*/
store.post = (options?: RouteQueryOptions): RouteDefinition<'post'> => ({
    url: store.url(options),
    method: 'post',
})

/**
* @see \App\Http\Controllers\RentecAccountSwitchController::store
* @see app/Http/Controllers/RentecAccountSwitchController.php:22
* @route '/portfolio/account'
*/
const storeForm = (options?: RouteQueryOptions): RouteFormDefinition<'post'> => ({
    action: store.url(options),
    method: 'post',
})

/**
* @see \App\Http\Controllers\RentecAccountSwitchController::store
* @see app/Http/Controllers/RentecAccountSwitchController.php:22
* @route '/portfolio/account'
*/
storeForm.post = (options?: RouteQueryOptions): RouteFormDefinition<'post'> => ({
    action: store.url(options),
    method: 'post',
})

store.form = storeForm

const RentecAccountSwitchController = { store }

export default RentecAccountSwitchController