feat(LRL App): init V0
This commit is contained in:
62
resources/js/routes/password/confirm/index.ts
Normal file
62
resources/js/routes/password/confirm/index.ts
Normal file
@@ -0,0 +1,62 @@
|
||||
import { queryParams, type RouteQueryOptions, type RouteDefinition, type RouteFormDefinition } from './../../../wayfinder'
|
||||
/**
|
||||
* @see \Laravel\Fortify\Http\Controllers\ConfirmablePasswordController::store
|
||||
* @see vendor/laravel/fortify/src/Http/Controllers/ConfirmablePasswordController.php:52
|
||||
* @route '/user/confirm-password'
|
||||
*/
|
||||
export const store = (options?: RouteQueryOptions): RouteDefinition<'post'> => ({
|
||||
url: store.url(options),
|
||||
method: 'post',
|
||||
})
|
||||
|
||||
store.definition = {
|
||||
methods: ["post"],
|
||||
url: '/user/confirm-password',
|
||||
} satisfies RouteDefinition<["post"]>
|
||||
|
||||
/**
|
||||
* @see \Laravel\Fortify\Http\Controllers\ConfirmablePasswordController::store
|
||||
* @see vendor/laravel/fortify/src/Http/Controllers/ConfirmablePasswordController.php:52
|
||||
* @route '/user/confirm-password'
|
||||
*/
|
||||
store.url = (options?: RouteQueryOptions) => {
|
||||
return store.definition.url + queryParams(options)
|
||||
}
|
||||
|
||||
/**
|
||||
* @see \Laravel\Fortify\Http\Controllers\ConfirmablePasswordController::store
|
||||
* @see vendor/laravel/fortify/src/Http/Controllers/ConfirmablePasswordController.php:52
|
||||
* @route '/user/confirm-password'
|
||||
*/
|
||||
store.post = (options?: RouteQueryOptions): RouteDefinition<'post'> => ({
|
||||
url: store.url(options),
|
||||
method: 'post',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \Laravel\Fortify\Http\Controllers\ConfirmablePasswordController::store
|
||||
* @see vendor/laravel/fortify/src/Http/Controllers/ConfirmablePasswordController.php:52
|
||||
* @route '/user/confirm-password'
|
||||
*/
|
||||
const storeForm = (options?: RouteQueryOptions): RouteFormDefinition<'post'> => ({
|
||||
action: store.url(options),
|
||||
method: 'post',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \Laravel\Fortify\Http\Controllers\ConfirmablePasswordController::store
|
||||
* @see vendor/laravel/fortify/src/Http/Controllers/ConfirmablePasswordController.php:52
|
||||
* @route '/user/confirm-password'
|
||||
*/
|
||||
storeForm.post = (options?: RouteQueryOptions): RouteFormDefinition<'post'> => ({
|
||||
action: store.url(options),
|
||||
method: 'post',
|
||||
})
|
||||
|
||||
store.form = storeForm
|
||||
|
||||
const confirm = {
|
||||
store: Object.assign(store, store),
|
||||
}
|
||||
|
||||
export default confirm
|
||||
615
resources/js/routes/password/index.ts
Normal file
615
resources/js/routes/password/index.ts
Normal file
@@ -0,0 +1,615 @@
|
||||
import { queryParams, type RouteQueryOptions, type RouteDefinition, type RouteFormDefinition, applyUrlDefaults } from './../../wayfinder'
|
||||
import confirmD7e05f from './confirm'
|
||||
/**
|
||||
* @see \Laravel\Fortify\Http\Controllers\ConfirmablePasswordController::confirm
|
||||
* @see vendor/laravel/fortify/src/Http/Controllers/ConfirmablePasswordController.php:41
|
||||
* @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:41
|
||||
* @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:41
|
||||
* @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:41
|
||||
* @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:41
|
||||
* @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:41
|
||||
* @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:41
|
||||
* @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
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Settings\PasswordController::edit
|
||||
* @see app/Http/Controllers/Settings/PasswordController.php:18
|
||||
* @route '/settings/password'
|
||||
*/
|
||||
export const edit = (options?: RouteQueryOptions): RouteDefinition<'get'> => ({
|
||||
url: edit.url(options),
|
||||
method: 'get',
|
||||
})
|
||||
|
||||
edit.definition = {
|
||||
methods: ["get","head"],
|
||||
url: '/settings/password',
|
||||
} satisfies RouteDefinition<["get","head"]>
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Settings\PasswordController::edit
|
||||
* @see app/Http/Controllers/Settings/PasswordController.php:18
|
||||
* @route '/settings/password'
|
||||
*/
|
||||
edit.url = (options?: RouteQueryOptions) => {
|
||||
return edit.definition.url + queryParams(options)
|
||||
}
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Settings\PasswordController::edit
|
||||
* @see app/Http/Controllers/Settings/PasswordController.php:18
|
||||
* @route '/settings/password'
|
||||
*/
|
||||
edit.get = (options?: RouteQueryOptions): RouteDefinition<'get'> => ({
|
||||
url: edit.url(options),
|
||||
method: 'get',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Settings\PasswordController::edit
|
||||
* @see app/Http/Controllers/Settings/PasswordController.php:18
|
||||
* @route '/settings/password'
|
||||
*/
|
||||
edit.head = (options?: RouteQueryOptions): RouteDefinition<'head'> => ({
|
||||
url: edit.url(options),
|
||||
method: 'head',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Settings\PasswordController::edit
|
||||
* @see app/Http/Controllers/Settings/PasswordController.php:18
|
||||
* @route '/settings/password'
|
||||
*/
|
||||
const editForm = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
||||
action: edit.url(options),
|
||||
method: 'get',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Settings\PasswordController::edit
|
||||
* @see app/Http/Controllers/Settings/PasswordController.php:18
|
||||
* @route '/settings/password'
|
||||
*/
|
||||
editForm.get = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
||||
action: edit.url(options),
|
||||
method: 'get',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Settings\PasswordController::edit
|
||||
* @see app/Http/Controllers/Settings/PasswordController.php:18
|
||||
* @route '/settings/password'
|
||||
*/
|
||||
editForm.head = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
||||
action: edit.url({
|
||||
[options?.mergeQuery ? 'mergeQuery' : 'query']: {
|
||||
_method: 'HEAD',
|
||||
...(options?.query ?? options?.mergeQuery ?? {}),
|
||||
}
|
||||
}),
|
||||
method: 'get',
|
||||
})
|
||||
|
||||
edit.form = editForm
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Settings\PasswordController::update
|
||||
* @see app/Http/Controllers/Settings/PasswordController.php:26
|
||||
* @route '/settings/password'
|
||||
*/
|
||||
export const update = (options?: RouteQueryOptions): RouteDefinition<'put'> => ({
|
||||
url: update.url(options),
|
||||
method: 'put',
|
||||
})
|
||||
|
||||
update.definition = {
|
||||
methods: ["put"],
|
||||
url: '/settings/password',
|
||||
} satisfies RouteDefinition<["put"]>
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Settings\PasswordController::update
|
||||
* @see app/Http/Controllers/Settings/PasswordController.php:26
|
||||
* @route '/settings/password'
|
||||
*/
|
||||
update.url = (options?: RouteQueryOptions) => {
|
||||
return update.definition.url + queryParams(options)
|
||||
}
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Settings\PasswordController::update
|
||||
* @see app/Http/Controllers/Settings/PasswordController.php:26
|
||||
* @route '/settings/password'
|
||||
*/
|
||||
update.put = (options?: RouteQueryOptions): RouteDefinition<'put'> => ({
|
||||
url: update.url(options),
|
||||
method: 'put',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Settings\PasswordController::update
|
||||
* @see app/Http/Controllers/Settings/PasswordController.php:26
|
||||
* @route '/settings/password'
|
||||
*/
|
||||
const updateForm = (options?: RouteQueryOptions): RouteFormDefinition<'post'> => ({
|
||||
action: update.url({
|
||||
[options?.mergeQuery ? 'mergeQuery' : 'query']: {
|
||||
_method: 'PUT',
|
||||
...(options?.query ?? options?.mergeQuery ?? {}),
|
||||
}
|
||||
}),
|
||||
method: 'post',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Settings\PasswordController::update
|
||||
* @see app/Http/Controllers/Settings/PasswordController.php:26
|
||||
* @route '/settings/password'
|
||||
*/
|
||||
updateForm.put = (options?: RouteQueryOptions): RouteFormDefinition<'post'> => ({
|
||||
action: update.url({
|
||||
[options?.mergeQuery ? 'mergeQuery' : 'query']: {
|
||||
_method: 'PUT',
|
||||
...(options?.query ?? options?.mergeQuery ?? {}),
|
||||
}
|
||||
}),
|
||||
method: 'post',
|
||||
})
|
||||
|
||||
update.form = updateForm
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Auth\PasswordResetLinkController::request
|
||||
* @see app/Http/Controllers/Auth/PasswordResetLinkController.php:17
|
||||
* @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 \App\Http\Controllers\Auth\PasswordResetLinkController::request
|
||||
* @see app/Http/Controllers/Auth/PasswordResetLinkController.php:17
|
||||
* @route '/forgot-password'
|
||||
*/
|
||||
request.url = (options?: RouteQueryOptions) => {
|
||||
return request.definition.url + queryParams(options)
|
||||
}
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Auth\PasswordResetLinkController::request
|
||||
* @see app/Http/Controllers/Auth/PasswordResetLinkController.php:17
|
||||
* @route '/forgot-password'
|
||||
*/
|
||||
request.get = (options?: RouteQueryOptions): RouteDefinition<'get'> => ({
|
||||
url: request.url(options),
|
||||
method: 'get',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Auth\PasswordResetLinkController::request
|
||||
* @see app/Http/Controllers/Auth/PasswordResetLinkController.php:17
|
||||
* @route '/forgot-password'
|
||||
*/
|
||||
request.head = (options?: RouteQueryOptions): RouteDefinition<'head'> => ({
|
||||
url: request.url(options),
|
||||
method: 'head',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Auth\PasswordResetLinkController::request
|
||||
* @see app/Http/Controllers/Auth/PasswordResetLinkController.php:17
|
||||
* @route '/forgot-password'
|
||||
*/
|
||||
const requestForm = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
||||
action: request.url(options),
|
||||
method: 'get',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Auth\PasswordResetLinkController::request
|
||||
* @see app/Http/Controllers/Auth/PasswordResetLinkController.php:17
|
||||
* @route '/forgot-password'
|
||||
*/
|
||||
requestForm.get = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
||||
action: request.url(options),
|
||||
method: 'get',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Auth\PasswordResetLinkController::request
|
||||
* @see app/Http/Controllers/Auth/PasswordResetLinkController.php:17
|
||||
* @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 \App\Http\Controllers\Auth\PasswordResetLinkController::email
|
||||
* @see app/Http/Controllers/Auth/PasswordResetLinkController.php:29
|
||||
* @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 \App\Http\Controllers\Auth\PasswordResetLinkController::email
|
||||
* @see app/Http/Controllers/Auth/PasswordResetLinkController.php:29
|
||||
* @route '/forgot-password'
|
||||
*/
|
||||
email.url = (options?: RouteQueryOptions) => {
|
||||
return email.definition.url + queryParams(options)
|
||||
}
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Auth\PasswordResetLinkController::email
|
||||
* @see app/Http/Controllers/Auth/PasswordResetLinkController.php:29
|
||||
* @route '/forgot-password'
|
||||
*/
|
||||
email.post = (options?: RouteQueryOptions): RouteDefinition<'post'> => ({
|
||||
url: email.url(options),
|
||||
method: 'post',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Auth\PasswordResetLinkController::email
|
||||
* @see app/Http/Controllers/Auth/PasswordResetLinkController.php:29
|
||||
* @route '/forgot-password'
|
||||
*/
|
||||
const emailForm = (options?: RouteQueryOptions): RouteFormDefinition<'post'> => ({
|
||||
action: email.url(options),
|
||||
method: 'post',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Auth\PasswordResetLinkController::email
|
||||
* @see app/Http/Controllers/Auth/PasswordResetLinkController.php:29
|
||||
* @route '/forgot-password'
|
||||
*/
|
||||
emailForm.post = (options?: RouteQueryOptions): RouteFormDefinition<'post'> => ({
|
||||
action: email.url(options),
|
||||
method: 'post',
|
||||
})
|
||||
|
||||
email.form = emailForm
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Auth\NewPasswordController::reset
|
||||
* @see app/Http/Controllers/Auth/NewPasswordController.php:23
|
||||
* @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 \App\Http\Controllers\Auth\NewPasswordController::reset
|
||||
* @see app/Http/Controllers/Auth/NewPasswordController.php:23
|
||||
* @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 \App\Http\Controllers\Auth\NewPasswordController::reset
|
||||
* @see app/Http/Controllers/Auth/NewPasswordController.php:23
|
||||
* @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 \App\Http\Controllers\Auth\NewPasswordController::reset
|
||||
* @see app/Http/Controllers/Auth/NewPasswordController.php:23
|
||||
* @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 \App\Http\Controllers\Auth\NewPasswordController::reset
|
||||
* @see app/Http/Controllers/Auth/NewPasswordController.php:23
|
||||
* @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 \App\Http\Controllers\Auth\NewPasswordController::reset
|
||||
* @see app/Http/Controllers/Auth/NewPasswordController.php:23
|
||||
* @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 \App\Http\Controllers\Auth\NewPasswordController::reset
|
||||
* @see app/Http/Controllers/Auth/NewPasswordController.php:23
|
||||
* @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 \App\Http\Controllers\Auth\NewPasswordController::store
|
||||
* @see app/Http/Controllers/Auth/NewPasswordController.php:36
|
||||
* @route '/reset-password'
|
||||
*/
|
||||
export const store = (options?: RouteQueryOptions): RouteDefinition<'post'> => ({
|
||||
url: store.url(options),
|
||||
method: 'post',
|
||||
})
|
||||
|
||||
store.definition = {
|
||||
methods: ["post"],
|
||||
url: '/reset-password',
|
||||
} satisfies RouteDefinition<["post"]>
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Auth\NewPasswordController::store
|
||||
* @see app/Http/Controllers/Auth/NewPasswordController.php:36
|
||||
* @route '/reset-password'
|
||||
*/
|
||||
store.url = (options?: RouteQueryOptions) => {
|
||||
return store.definition.url + queryParams(options)
|
||||
}
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Auth\NewPasswordController::store
|
||||
* @see app/Http/Controllers/Auth/NewPasswordController.php:36
|
||||
* @route '/reset-password'
|
||||
*/
|
||||
store.post = (options?: RouteQueryOptions): RouteDefinition<'post'> => ({
|
||||
url: store.url(options),
|
||||
method: 'post',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Auth\NewPasswordController::store
|
||||
* @see app/Http/Controllers/Auth/NewPasswordController.php:36
|
||||
* @route '/reset-password'
|
||||
*/
|
||||
const storeForm = (options?: RouteQueryOptions): RouteFormDefinition<'post'> => ({
|
||||
action: store.url(options),
|
||||
method: 'post',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Auth\NewPasswordController::store
|
||||
* @see app/Http/Controllers/Auth/NewPasswordController.php:36
|
||||
* @route '/reset-password'
|
||||
*/
|
||||
storeForm.post = (options?: RouteQueryOptions): RouteFormDefinition<'post'> => ({
|
||||
action: store.url(options),
|
||||
method: 'post',
|
||||
})
|
||||
|
||||
store.form = storeForm
|
||||
|
||||
const password = {
|
||||
confirm: Object.assign(confirm, confirmD7e05f),
|
||||
confirmation: Object.assign(confirmation, confirmation),
|
||||
edit: Object.assign(edit, edit),
|
||||
update: Object.assign(update, update),
|
||||
request: Object.assign(request, request),
|
||||
email: Object.assign(email, email),
|
||||
reset: Object.assign(reset, reset),
|
||||
store: Object.assign(store, store),
|
||||
}
|
||||
|
||||
export default password
|
||||
Reference in New Issue
Block a user