466 lines
15 KiB
TypeScript
466 lines
15 KiB
TypeScript
|
|
import { queryParams, type RouteQueryOptions, type RouteDefinition, type RouteFormDefinition, applyUrlDefaults } from './../../wayfinder'
|
||
|
|
import confirmD7e05f from './confirm'
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\PasswordResetLinkController::request
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/PasswordResetLinkController.php:24
|
||
|
|
* @route '/forgot-password'
|
||
|
|
*/
|
||
|
|
export const request = (options?: RouteQueryOptions): RouteDefinition<'get'> => ({
|
||
|
|
url: request.url(options),
|
||
|
|
method: 'get',
|
||
|
|
})
|
||
|
|
|
||
|
|
request.definition = {
|
||
|
|
methods: ["get","head"],
|
||
|
|
url: '/forgot-password',
|
||
|
|
} satisfies RouteDefinition<["get","head"]>
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\PasswordResetLinkController::request
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/PasswordResetLinkController.php:24
|
||
|
|
* @route '/forgot-password'
|
||
|
|
*/
|
||
|
|
request.url = (options?: RouteQueryOptions) => {
|
||
|
|
return request.definition.url + queryParams(options)
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\PasswordResetLinkController::request
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/PasswordResetLinkController.php:24
|
||
|
|
* @route '/forgot-password'
|
||
|
|
*/
|
||
|
|
request.get = (options?: RouteQueryOptions): RouteDefinition<'get'> => ({
|
||
|
|
url: request.url(options),
|
||
|
|
method: 'get',
|
||
|
|
})
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\PasswordResetLinkController::request
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/PasswordResetLinkController.php:24
|
||
|
|
* @route '/forgot-password'
|
||
|
|
*/
|
||
|
|
request.head = (options?: RouteQueryOptions): RouteDefinition<'head'> => ({
|
||
|
|
url: request.url(options),
|
||
|
|
method: 'head',
|
||
|
|
})
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\PasswordResetLinkController::request
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/PasswordResetLinkController.php:24
|
||
|
|
* @route '/forgot-password'
|
||
|
|
*/
|
||
|
|
const requestForm = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
||
|
|
action: request.url(options),
|
||
|
|
method: 'get',
|
||
|
|
})
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\PasswordResetLinkController::request
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/PasswordResetLinkController.php:24
|
||
|
|
* @route '/forgot-password'
|
||
|
|
*/
|
||
|
|
requestForm.get = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
||
|
|
action: request.url(options),
|
||
|
|
method: 'get',
|
||
|
|
})
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\PasswordResetLinkController::request
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/PasswordResetLinkController.php:24
|
||
|
|
* @route '/forgot-password'
|
||
|
|
*/
|
||
|
|
requestForm.head = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
||
|
|
action: request.url({
|
||
|
|
[options?.mergeQuery ? 'mergeQuery' : 'query']: {
|
||
|
|
_method: 'HEAD',
|
||
|
|
...(options?.query ?? options?.mergeQuery ?? {}),
|
||
|
|
}
|
||
|
|
}),
|
||
|
|
method: 'get',
|
||
|
|
})
|
||
|
|
|
||
|
|
request.form = requestForm
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\NewPasswordController::reset
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/NewPasswordController.php:44
|
||
|
|
* @route '/reset-password/{token}'
|
||
|
|
*/
|
||
|
|
export const reset = (args: { token: string | number } | [token: string | number ] | string | number, options?: RouteQueryOptions): RouteDefinition<'get'> => ({
|
||
|
|
url: reset.url(args, options),
|
||
|
|
method: 'get',
|
||
|
|
})
|
||
|
|
|
||
|
|
reset.definition = {
|
||
|
|
methods: ["get","head"],
|
||
|
|
url: '/reset-password/{token}',
|
||
|
|
} satisfies RouteDefinition<["get","head"]>
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\NewPasswordController::reset
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/NewPasswordController.php:44
|
||
|
|
* @route '/reset-password/{token}'
|
||
|
|
*/
|
||
|
|
reset.url = (args: { token: string | number } | [token: string | number ] | string | number, options?: RouteQueryOptions) => {
|
||
|
|
if (typeof args === 'string' || typeof args === 'number') {
|
||
|
|
args = { token: args }
|
||
|
|
}
|
||
|
|
|
||
|
|
if (Array.isArray(args)) {
|
||
|
|
args = {
|
||
|
|
token: args[0],
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
args = applyUrlDefaults(args)
|
||
|
|
|
||
|
|
const parsedArgs = {
|
||
|
|
token: args.token,
|
||
|
|
}
|
||
|
|
|
||
|
|
return reset.definition.url
|
||
|
|
.replace('{token}', parsedArgs.token.toString())
|
||
|
|
.replace(/\/+$/, '') + queryParams(options)
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\NewPasswordController::reset
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/NewPasswordController.php:44
|
||
|
|
* @route '/reset-password/{token}'
|
||
|
|
*/
|
||
|
|
reset.get = (args: { token: string | number } | [token: string | number ] | string | number, options?: RouteQueryOptions): RouteDefinition<'get'> => ({
|
||
|
|
url: reset.url(args, options),
|
||
|
|
method: 'get',
|
||
|
|
})
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\NewPasswordController::reset
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/NewPasswordController.php:44
|
||
|
|
* @route '/reset-password/{token}'
|
||
|
|
*/
|
||
|
|
reset.head = (args: { token: string | number } | [token: string | number ] | string | number, options?: RouteQueryOptions): RouteDefinition<'head'> => ({
|
||
|
|
url: reset.url(args, options),
|
||
|
|
method: 'head',
|
||
|
|
})
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\NewPasswordController::reset
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/NewPasswordController.php:44
|
||
|
|
* @route '/reset-password/{token}'
|
||
|
|
*/
|
||
|
|
const resetForm = (args: { token: string | number } | [token: string | number ] | string | number, options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
||
|
|
action: reset.url(args, options),
|
||
|
|
method: 'get',
|
||
|
|
})
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\NewPasswordController::reset
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/NewPasswordController.php:44
|
||
|
|
* @route '/reset-password/{token}'
|
||
|
|
*/
|
||
|
|
resetForm.get = (args: { token: string | number } | [token: string | number ] | string | number, options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
||
|
|
action: reset.url(args, options),
|
||
|
|
method: 'get',
|
||
|
|
})
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\NewPasswordController::reset
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/NewPasswordController.php:44
|
||
|
|
* @route '/reset-password/{token}'
|
||
|
|
*/
|
||
|
|
resetForm.head = (args: { token: string | number } | [token: string | number ] | string | number, options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
||
|
|
action: reset.url(args, {
|
||
|
|
[options?.mergeQuery ? 'mergeQuery' : 'query']: {
|
||
|
|
_method: 'HEAD',
|
||
|
|
...(options?.query ?? options?.mergeQuery ?? {}),
|
||
|
|
}
|
||
|
|
}),
|
||
|
|
method: 'get',
|
||
|
|
})
|
||
|
|
|
||
|
|
reset.form = resetForm
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\PasswordResetLinkController::email
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/PasswordResetLinkController.php:35
|
||
|
|
* @route '/forgot-password'
|
||
|
|
*/
|
||
|
|
export const email = (options?: RouteQueryOptions): RouteDefinition<'post'> => ({
|
||
|
|
url: email.url(options),
|
||
|
|
method: 'post',
|
||
|
|
})
|
||
|
|
|
||
|
|
email.definition = {
|
||
|
|
methods: ["post"],
|
||
|
|
url: '/forgot-password',
|
||
|
|
} satisfies RouteDefinition<["post"]>
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\PasswordResetLinkController::email
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/PasswordResetLinkController.php:35
|
||
|
|
* @route '/forgot-password'
|
||
|
|
*/
|
||
|
|
email.url = (options?: RouteQueryOptions) => {
|
||
|
|
return email.definition.url + queryParams(options)
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\PasswordResetLinkController::email
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/PasswordResetLinkController.php:35
|
||
|
|
* @route '/forgot-password'
|
||
|
|
*/
|
||
|
|
email.post = (options?: RouteQueryOptions): RouteDefinition<'post'> => ({
|
||
|
|
url: email.url(options),
|
||
|
|
method: 'post',
|
||
|
|
})
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\PasswordResetLinkController::email
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/PasswordResetLinkController.php:35
|
||
|
|
* @route '/forgot-password'
|
||
|
|
*/
|
||
|
|
const emailForm = (options?: RouteQueryOptions): RouteFormDefinition<'post'> => ({
|
||
|
|
action: email.url(options),
|
||
|
|
method: 'post',
|
||
|
|
})
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\PasswordResetLinkController::email
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/PasswordResetLinkController.php:35
|
||
|
|
* @route '/forgot-password'
|
||
|
|
*/
|
||
|
|
emailForm.post = (options?: RouteQueryOptions): RouteFormDefinition<'post'> => ({
|
||
|
|
action: email.url(options),
|
||
|
|
method: 'post',
|
||
|
|
})
|
||
|
|
|
||
|
|
email.form = emailForm
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\NewPasswordController::update
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/NewPasswordController.php:55
|
||
|
|
* @route '/reset-password'
|
||
|
|
*/
|
||
|
|
export const update = (options?: RouteQueryOptions): RouteDefinition<'post'> => ({
|
||
|
|
url: update.url(options),
|
||
|
|
method: 'post',
|
||
|
|
})
|
||
|
|
|
||
|
|
update.definition = {
|
||
|
|
methods: ["post"],
|
||
|
|
url: '/reset-password',
|
||
|
|
} satisfies RouteDefinition<["post"]>
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\NewPasswordController::update
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/NewPasswordController.php:55
|
||
|
|
* @route '/reset-password'
|
||
|
|
*/
|
||
|
|
update.url = (options?: RouteQueryOptions) => {
|
||
|
|
return update.definition.url + queryParams(options)
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\NewPasswordController::update
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/NewPasswordController.php:55
|
||
|
|
* @route '/reset-password'
|
||
|
|
*/
|
||
|
|
update.post = (options?: RouteQueryOptions): RouteDefinition<'post'> => ({
|
||
|
|
url: update.url(options),
|
||
|
|
method: 'post',
|
||
|
|
})
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\NewPasswordController::update
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/NewPasswordController.php:55
|
||
|
|
* @route '/reset-password'
|
||
|
|
*/
|
||
|
|
const updateForm = (options?: RouteQueryOptions): RouteFormDefinition<'post'> => ({
|
||
|
|
action: update.url(options),
|
||
|
|
method: 'post',
|
||
|
|
})
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\NewPasswordController::update
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/NewPasswordController.php:55
|
||
|
|
* @route '/reset-password'
|
||
|
|
*/
|
||
|
|
updateForm.post = (options?: RouteQueryOptions): RouteFormDefinition<'post'> => ({
|
||
|
|
action: update.url(options),
|
||
|
|
method: 'post',
|
||
|
|
})
|
||
|
|
|
||
|
|
update.form = updateForm
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\ConfirmablePasswordController::confirm
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/ConfirmablePasswordController.php:40
|
||
|
|
* @route '/user/confirm-password'
|
||
|
|
*/
|
||
|
|
export const confirm = (options?: RouteQueryOptions): RouteDefinition<'get'> => ({
|
||
|
|
url: confirm.url(options),
|
||
|
|
method: 'get',
|
||
|
|
})
|
||
|
|
|
||
|
|
confirm.definition = {
|
||
|
|
methods: ["get","head"],
|
||
|
|
url: '/user/confirm-password',
|
||
|
|
} satisfies RouteDefinition<["get","head"]>
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\ConfirmablePasswordController::confirm
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/ConfirmablePasswordController.php:40
|
||
|
|
* @route '/user/confirm-password'
|
||
|
|
*/
|
||
|
|
confirm.url = (options?: RouteQueryOptions) => {
|
||
|
|
return confirm.definition.url + queryParams(options)
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\ConfirmablePasswordController::confirm
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/ConfirmablePasswordController.php:40
|
||
|
|
* @route '/user/confirm-password'
|
||
|
|
*/
|
||
|
|
confirm.get = (options?: RouteQueryOptions): RouteDefinition<'get'> => ({
|
||
|
|
url: confirm.url(options),
|
||
|
|
method: 'get',
|
||
|
|
})
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\ConfirmablePasswordController::confirm
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/ConfirmablePasswordController.php:40
|
||
|
|
* @route '/user/confirm-password'
|
||
|
|
*/
|
||
|
|
confirm.head = (options?: RouteQueryOptions): RouteDefinition<'head'> => ({
|
||
|
|
url: confirm.url(options),
|
||
|
|
method: 'head',
|
||
|
|
})
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\ConfirmablePasswordController::confirm
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/ConfirmablePasswordController.php:40
|
||
|
|
* @route '/user/confirm-password'
|
||
|
|
*/
|
||
|
|
const confirmForm = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
||
|
|
action: confirm.url(options),
|
||
|
|
method: 'get',
|
||
|
|
})
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\ConfirmablePasswordController::confirm
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/ConfirmablePasswordController.php:40
|
||
|
|
* @route '/user/confirm-password'
|
||
|
|
*/
|
||
|
|
confirmForm.get = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
||
|
|
action: confirm.url(options),
|
||
|
|
method: 'get',
|
||
|
|
})
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\ConfirmablePasswordController::confirm
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/ConfirmablePasswordController.php:40
|
||
|
|
* @route '/user/confirm-password'
|
||
|
|
*/
|
||
|
|
confirmForm.head = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
||
|
|
action: confirm.url({
|
||
|
|
[options?.mergeQuery ? 'mergeQuery' : 'query']: {
|
||
|
|
_method: 'HEAD',
|
||
|
|
...(options?.query ?? options?.mergeQuery ?? {}),
|
||
|
|
}
|
||
|
|
}),
|
||
|
|
method: 'get',
|
||
|
|
})
|
||
|
|
|
||
|
|
confirm.form = confirmForm
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\ConfirmedPasswordStatusController::confirmation
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/ConfirmedPasswordStatusController.php:17
|
||
|
|
* @route '/user/confirmed-password-status'
|
||
|
|
*/
|
||
|
|
export const confirmation = (options?: RouteQueryOptions): RouteDefinition<'get'> => ({
|
||
|
|
url: confirmation.url(options),
|
||
|
|
method: 'get',
|
||
|
|
})
|
||
|
|
|
||
|
|
confirmation.definition = {
|
||
|
|
methods: ["get","head"],
|
||
|
|
url: '/user/confirmed-password-status',
|
||
|
|
} satisfies RouteDefinition<["get","head"]>
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\ConfirmedPasswordStatusController::confirmation
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/ConfirmedPasswordStatusController.php:17
|
||
|
|
* @route '/user/confirmed-password-status'
|
||
|
|
*/
|
||
|
|
confirmation.url = (options?: RouteQueryOptions) => {
|
||
|
|
return confirmation.definition.url + queryParams(options)
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\ConfirmedPasswordStatusController::confirmation
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/ConfirmedPasswordStatusController.php:17
|
||
|
|
* @route '/user/confirmed-password-status'
|
||
|
|
*/
|
||
|
|
confirmation.get = (options?: RouteQueryOptions): RouteDefinition<'get'> => ({
|
||
|
|
url: confirmation.url(options),
|
||
|
|
method: 'get',
|
||
|
|
})
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\ConfirmedPasswordStatusController::confirmation
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/ConfirmedPasswordStatusController.php:17
|
||
|
|
* @route '/user/confirmed-password-status'
|
||
|
|
*/
|
||
|
|
confirmation.head = (options?: RouteQueryOptions): RouteDefinition<'head'> => ({
|
||
|
|
url: confirmation.url(options),
|
||
|
|
method: 'head',
|
||
|
|
})
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\ConfirmedPasswordStatusController::confirmation
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/ConfirmedPasswordStatusController.php:17
|
||
|
|
* @route '/user/confirmed-password-status'
|
||
|
|
*/
|
||
|
|
const confirmationForm = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
||
|
|
action: confirmation.url(options),
|
||
|
|
method: 'get',
|
||
|
|
})
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\ConfirmedPasswordStatusController::confirmation
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/ConfirmedPasswordStatusController.php:17
|
||
|
|
* @route '/user/confirmed-password-status'
|
||
|
|
*/
|
||
|
|
confirmationForm.get = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
||
|
|
action: confirmation.url(options),
|
||
|
|
method: 'get',
|
||
|
|
})
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see \Laravel\Fortify\Http\Controllers\ConfirmedPasswordStatusController::confirmation
|
||
|
|
* @see vendor/laravel/fortify/src/Http/Controllers/ConfirmedPasswordStatusController.php:17
|
||
|
|
* @route '/user/confirmed-password-status'
|
||
|
|
*/
|
||
|
|
confirmationForm.head = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
||
|
|
action: confirmation.url({
|
||
|
|
[options?.mergeQuery ? 'mergeQuery' : 'query']: {
|
||
|
|
_method: 'HEAD',
|
||
|
|
...(options?.query ?? options?.mergeQuery ?? {}),
|
||
|
|
}
|
||
|
|
}),
|
||
|
|
method: 'get',
|
||
|
|
})
|
||
|
|
|
||
|
|
confirmation.form = confirmationForm
|
||
|
|
|
||
|
|
const password = {
|
||
|
|
request: Object.assign(request, request),
|
||
|
|
reset: Object.assign(reset, reset),
|
||
|
|
email: Object.assign(email, email),
|
||
|
|
update: Object.assign(update, update),
|
||
|
|
confirm: Object.assign(confirm, confirmD7e05f),
|
||
|
|
confirmation: Object.assign(confirmation, confirmation),
|
||
|
|
}
|
||
|
|
|
||
|
|
export default password
|