chore(web): regenerate API types (object list params + timestamps) (#44)

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-06 23:24:17 +02:00
parent 60a1b8dccf
commit 98c00d3732
2 changed files with 14 additions and 0 deletions
+12
View File
@@ -411,6 +411,8 @@ export interface components {
/** @description Full admin view of a catalogue object (all fields, all visibility levels). */
AdminObjectView: {
brief_description?: string | null;
/** @description RFC3339 UTC timestamp. */
created_at: string;
current_location?: string | null;
current_owner?: string | null;
/** @description Flexible field values (key -> value). */
@@ -425,6 +427,8 @@ export interface components {
recorder?: string | null;
/** @description `YYYY-MM-DD` or null. */
recording_date?: string | null;
/** @description RFC3339 UTC timestamp. */
updated_at: string;
/** @description "draft" | "internal" | "public". */
visibility: components["schemas"]["Visibility"];
};
@@ -1089,6 +1093,14 @@ export interface operations {
limit?: number;
/** @description default 0 */
offset?: number;
/** @description object_number | object_name | updated_at | created_at | visibility (default object_number) */
sort?: string;
/** @description asc | desc (default asc) */
order?: string;
/** @description draft | internal | public — filter; unknown values ignored */
visibility?: string;
/** @description quick filter: ILIKE match on object_number or object_name */
q?: string;
};
header?: never;
path?: never;