2026-04-10 11:47:04 +02:00
|
|
|
import { queryParams, type RouteQueryOptions, type RouteDefinition, type RouteFormDefinition } from './../../wayfinder'
|
2026-04-10 11:00:56 +02:00
|
|
|
/**
|
|
|
|
|
* @see routes/web.php:20
|
|
|
|
|
* @route '/mentions-legales'
|
|
|
|
|
*/
|
|
|
|
|
export const mentions = (options?: RouteQueryOptions): RouteDefinition<'get'> => ({
|
|
|
|
|
url: mentions.url(options),
|
|
|
|
|
method: 'get',
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
mentions.definition = {
|
|
|
|
|
methods: ["get","head"],
|
|
|
|
|
url: '/mentions-legales',
|
|
|
|
|
} satisfies RouteDefinition<["get","head"]>
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @see routes/web.php:20
|
|
|
|
|
* @route '/mentions-legales'
|
|
|
|
|
*/
|
|
|
|
|
mentions.url = (options?: RouteQueryOptions) => {
|
|
|
|
|
return mentions.definition.url + queryParams(options)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @see routes/web.php:20
|
|
|
|
|
* @route '/mentions-legales'
|
|
|
|
|
*/
|
|
|
|
|
mentions.get = (options?: RouteQueryOptions): RouteDefinition<'get'> => ({
|
|
|
|
|
url: mentions.url(options),
|
|
|
|
|
method: 'get',
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @see routes/web.php:20
|
|
|
|
|
* @route '/mentions-legales'
|
|
|
|
|
*/
|
|
|
|
|
mentions.head = (options?: RouteQueryOptions): RouteDefinition<'head'> => ({
|
|
|
|
|
url: mentions.url(options),
|
|
|
|
|
method: 'head',
|
|
|
|
|
})
|
|
|
|
|
|
2026-04-10 11:47:04 +02:00
|
|
|
/**
|
|
|
|
|
* @see routes/web.php:20
|
|
|
|
|
* @route '/mentions-legales'
|
|
|
|
|
*/
|
|
|
|
|
const mentionsForm = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
|
|
|
|
action: mentions.url(options),
|
|
|
|
|
method: 'get',
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @see routes/web.php:20
|
|
|
|
|
* @route '/mentions-legales'
|
|
|
|
|
*/
|
|
|
|
|
mentionsForm.get = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
|
|
|
|
action: mentions.url(options),
|
|
|
|
|
method: 'get',
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @see routes/web.php:20
|
|
|
|
|
* @route '/mentions-legales'
|
|
|
|
|
*/
|
|
|
|
|
mentionsForm.head = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
|
|
|
|
action: mentions.url({
|
|
|
|
|
[options?.mergeQuery ? 'mergeQuery' : 'query']: {
|
|
|
|
|
_method: 'HEAD',
|
|
|
|
|
...(options?.query ?? options?.mergeQuery ?? {}),
|
|
|
|
|
}
|
|
|
|
|
}),
|
|
|
|
|
method: 'get',
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
mentions.form = mentionsForm
|
|
|
|
|
|
2026-04-10 11:00:56 +02:00
|
|
|
/**
|
|
|
|
|
* @see routes/web.php:21
|
|
|
|
|
* @route '/conditions-generales'
|
|
|
|
|
*/
|
|
|
|
|
export const cgu = (options?: RouteQueryOptions): RouteDefinition<'get'> => ({
|
|
|
|
|
url: cgu.url(options),
|
|
|
|
|
method: 'get',
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
cgu.definition = {
|
|
|
|
|
methods: ["get","head"],
|
|
|
|
|
url: '/conditions-generales',
|
|
|
|
|
} satisfies RouteDefinition<["get","head"]>
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @see routes/web.php:21
|
|
|
|
|
* @route '/conditions-generales'
|
|
|
|
|
*/
|
|
|
|
|
cgu.url = (options?: RouteQueryOptions) => {
|
|
|
|
|
return cgu.definition.url + queryParams(options)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @see routes/web.php:21
|
|
|
|
|
* @route '/conditions-generales'
|
|
|
|
|
*/
|
|
|
|
|
cgu.get = (options?: RouteQueryOptions): RouteDefinition<'get'> => ({
|
|
|
|
|
url: cgu.url(options),
|
|
|
|
|
method: 'get',
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @see routes/web.php:21
|
|
|
|
|
* @route '/conditions-generales'
|
|
|
|
|
*/
|
|
|
|
|
cgu.head = (options?: RouteQueryOptions): RouteDefinition<'head'> => ({
|
|
|
|
|
url: cgu.url(options),
|
|
|
|
|
method: 'head',
|
|
|
|
|
})
|
|
|
|
|
|
2026-04-10 11:47:04 +02:00
|
|
|
/**
|
|
|
|
|
* @see routes/web.php:21
|
|
|
|
|
* @route '/conditions-generales'
|
|
|
|
|
*/
|
|
|
|
|
const cguForm = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
|
|
|
|
action: cgu.url(options),
|
|
|
|
|
method: 'get',
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @see routes/web.php:21
|
|
|
|
|
* @route '/conditions-generales'
|
|
|
|
|
*/
|
|
|
|
|
cguForm.get = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
|
|
|
|
action: cgu.url(options),
|
|
|
|
|
method: 'get',
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @see routes/web.php:21
|
|
|
|
|
* @route '/conditions-generales'
|
|
|
|
|
*/
|
|
|
|
|
cguForm.head = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
|
|
|
|
action: cgu.url({
|
|
|
|
|
[options?.mergeQuery ? 'mergeQuery' : 'query']: {
|
|
|
|
|
_method: 'HEAD',
|
|
|
|
|
...(options?.query ?? options?.mergeQuery ?? {}),
|
|
|
|
|
}
|
|
|
|
|
}),
|
|
|
|
|
method: 'get',
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
cgu.form = cguForm
|
|
|
|
|
|
2026-04-10 11:00:56 +02:00
|
|
|
/**
|
|
|
|
|
* @see routes/web.php:22
|
|
|
|
|
* @route '/confidentialite'
|
|
|
|
|
*/
|
|
|
|
|
export const confidentialite = (options?: RouteQueryOptions): RouteDefinition<'get'> => ({
|
|
|
|
|
url: confidentialite.url(options),
|
|
|
|
|
method: 'get',
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
confidentialite.definition = {
|
|
|
|
|
methods: ["get","head"],
|
|
|
|
|
url: '/confidentialite',
|
|
|
|
|
} satisfies RouteDefinition<["get","head"]>
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @see routes/web.php:22
|
|
|
|
|
* @route '/confidentialite'
|
|
|
|
|
*/
|
|
|
|
|
confidentialite.url = (options?: RouteQueryOptions) => {
|
|
|
|
|
return confidentialite.definition.url + queryParams(options)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @see routes/web.php:22
|
|
|
|
|
* @route '/confidentialite'
|
|
|
|
|
*/
|
|
|
|
|
confidentialite.get = (options?: RouteQueryOptions): RouteDefinition<'get'> => ({
|
|
|
|
|
url: confidentialite.url(options),
|
|
|
|
|
method: 'get',
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @see routes/web.php:22
|
|
|
|
|
* @route '/confidentialite'
|
|
|
|
|
*/
|
|
|
|
|
confidentialite.head = (options?: RouteQueryOptions): RouteDefinition<'head'> => ({
|
|
|
|
|
url: confidentialite.url(options),
|
|
|
|
|
method: 'head',
|
|
|
|
|
})
|
|
|
|
|
|
2026-04-10 11:47:04 +02:00
|
|
|
/**
|
|
|
|
|
* @see routes/web.php:22
|
|
|
|
|
* @route '/confidentialite'
|
|
|
|
|
*/
|
|
|
|
|
const confidentialiteForm = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
|
|
|
|
action: confidentialite.url(options),
|
|
|
|
|
method: 'get',
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @see routes/web.php:22
|
|
|
|
|
* @route '/confidentialite'
|
|
|
|
|
*/
|
|
|
|
|
confidentialiteForm.get = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
|
|
|
|
action: confidentialite.url(options),
|
|
|
|
|
method: 'get',
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @see routes/web.php:22
|
|
|
|
|
* @route '/confidentialite'
|
|
|
|
|
*/
|
|
|
|
|
confidentialiteForm.head = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
|
|
|
|
action: confidentialite.url({
|
|
|
|
|
[options?.mergeQuery ? 'mergeQuery' : 'query']: {
|
|
|
|
|
_method: 'HEAD',
|
|
|
|
|
...(options?.query ?? options?.mergeQuery ?? {}),
|
|
|
|
|
}
|
|
|
|
|
}),
|
|
|
|
|
method: 'get',
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
confidentialite.form = confidentialiteForm
|
|
|
|
|
|
2026-04-10 11:00:56 +02:00
|
|
|
const legal = {
|
|
|
|
|
mentions: Object.assign(mentions, mentions),
|
|
|
|
|
cgu: Object.assign(cgu, cgu),
|
|
|
|
|
confidentialite: Object.assign(confidentialite, confidentialite),
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default legal
|