|
1 | | -/* |
2 | | - * Copyright (c) 2024. Esup - Université de Bordeaux |
3 | | - * |
4 | | - * This file is part of the Esup-Oasis project (https://github.com/EsupPortail/esup-oasis). |
5 | | - * For full copyright and license information please view the LICENSE file distributed with the source code. |
6 | | - * |
7 | | - * @author Julien Lemonnier <julien.lemonnier@u-bordeaux.fr> |
8 | | - */ |
9 | | - |
10 | 1 | /** |
11 | 2 | * This file was auto-generated by openapi-typescript. |
12 | 3 | * Do not make direct changes to the file. |
@@ -942,6 +933,11 @@ export interface paths { |
942 | 933 | patch: operations["api_types_evenements_id_patch"]; |
943 | 934 | }; |
944 | 935 | "/types_evenements/{typeId}/taux": { |
| 936 | + /** |
| 937 | + * Retrieves the collection of TauxHoraire resources. |
| 938 | + * @description Retrieves the collection of TauxHoraire resources. |
| 939 | + */ |
| 940 | + get: operations["api_types_evenements_typeIdtaux_get_collection"]; |
945 | 941 | /** |
946 | 942 | * Creates a TauxHoraire resource. |
947 | 943 | * @description Creates a TauxHoraire resource. |
@@ -11346,6 +11342,71 @@ export interface operations { |
11346 | 11342 | }; |
11347 | 11343 | }; |
11348 | 11344 | }; |
| 11345 | + /** |
| 11346 | + * Retrieves the collection of TauxHoraire resources. |
| 11347 | + * @description Retrieves the collection of TauxHoraire resources. |
| 11348 | + */ |
| 11349 | + api_types_evenements_typeIdtaux_get_collection: { |
| 11350 | + parameters: { |
| 11351 | + query?: { |
| 11352 | + /** @description The collection page number */ |
| 11353 | + page?: number; |
| 11354 | + /** @description The number of items per page */ |
| 11355 | + itemsPerPage?: number; |
| 11356 | + date?: string; |
| 11357 | + }; |
| 11358 | + path: { |
| 11359 | + /** @description TauxHoraire identifier */ |
| 11360 | + typeId: string; |
| 11361 | + }; |
| 11362 | + }; |
| 11363 | + responses: { |
| 11364 | + /** @description TauxHoraire collection */ |
| 11365 | + 200: { |
| 11366 | + content: { |
| 11367 | + "application/ld+json": { |
| 11368 | + "hydra:member": components["schemas"]["TauxHoraire.jsonld-taux.out"][]; |
| 11369 | + "hydra:totalItems"?: number; |
| 11370 | + /** |
| 11371 | + * @example { |
| 11372 | + * "@id": "string", |
| 11373 | + * "type": "string", |
| 11374 | + * "hydra:first": "string", |
| 11375 | + * "hydra:last": "string", |
| 11376 | + * "hydra:previous": "string", |
| 11377 | + * "hydra:next": "string" |
| 11378 | + * } |
| 11379 | + */ |
| 11380 | + "hydra:view"?: { |
| 11381 | + /** Format: iri-reference */ |
| 11382 | + "@id"?: string; |
| 11383 | + "@type"?: string; |
| 11384 | + /** Format: iri-reference */ |
| 11385 | + "hydra:first"?: string; |
| 11386 | + /** Format: iri-reference */ |
| 11387 | + "hydra:last"?: string; |
| 11388 | + /** Format: iri-reference */ |
| 11389 | + "hydra:previous"?: string; |
| 11390 | + /** Format: iri-reference */ |
| 11391 | + "hydra:next"?: string; |
| 11392 | + }; |
| 11393 | + "hydra:search"?: { |
| 11394 | + "@type"?: string; |
| 11395 | + "hydra:template"?: string; |
| 11396 | + "hydra:variableRepresentation"?: string; |
| 11397 | + "hydra:mapping"?: { |
| 11398 | + "@type"?: string; |
| 11399 | + variable?: string; |
| 11400 | + property?: string | null; |
| 11401 | + required?: boolean; |
| 11402 | + }[]; |
| 11403 | + }; |
| 11404 | + }; |
| 11405 | + "text/html": components["schemas"]["TauxHoraire-taux.out"][]; |
| 11406 | + }; |
| 11407 | + }; |
| 11408 | + }; |
| 11409 | + }; |
11349 | 11410 | /** |
11350 | 11411 | * Creates a TauxHoraire resource. |
11351 | 11412 | * @description Creates a TauxHoraire resource. |
|
0 commit comments