chore(api): regenerate UI types — Deployment.createdBy + logs instanceIds

- Fetched fresh openapi.json from local backend (Tasks 3-5 changes)
- Regenerated schema.d.ts via openapi-typescript
- Added createdBy: string | null to Deployment interface in apps.ts
- Added instanceIds?: string[] to UseInfiniteApplicationLogsArgs with sort/serialize/queryKey/URLSearchParams wiring

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-23 13:00:16 +02:00
parent ed0e616109
commit 07099357af
4 changed files with 14 additions and 4 deletions

View File

@@ -2745,6 +2745,7 @@ export interface components {
stoppedAt?: string;
/** Format: date-time */
createdAt?: string;
createdBy?: string;
};
DeploymentConfigSnapshot: {
/** Format: uuid */
@@ -2753,6 +2754,7 @@ export interface components {
containerConfig?: {
[key: string]: Record<string, never>;
};
sensitiveKeys?: string[];
};
PromoteRequest: {
targetEnvironment?: string;
@@ -3703,7 +3705,7 @@ export interface components {
username?: string;
action?: string;
/** @enum {string} */
category?: "INFRA" | "AUTH" | "USER_MGMT" | "CONFIG" | "RBAC" | "AGENT" | "OUTBOUND_CONNECTION_CHANGE" | "OUTBOUND_HTTP_TRUST_CHANGE" | "ALERT_RULE_CHANGE" | "ALERT_SILENCE_CHANGE";
category?: "INFRA" | "AUTH" | "USER_MGMT" | "CONFIG" | "RBAC" | "AGENT" | "OUTBOUND_CONNECTION_CHANGE" | "OUTBOUND_HTTP_TRUST_CHANGE" | "ALERT_RULE_CHANGE" | "ALERT_SILENCE_CHANGE" | "DEPLOYMENT";
target?: string;
detail?: {
[key: string]: Record<string, never>;
@@ -3872,6 +3874,7 @@ export interface operations {
parameters: {
query: {
env: components["schemas"]["Environment"];
/** @description When to apply: 'live' (default) saves and pushes CONFIG_UPDATE to live agents immediately; 'staged' saves without pushing — the next successful deploy applies it. */
apply?: string;
};
header?: never;
@@ -7028,6 +7031,7 @@ export interface operations {
exchangeId?: string;
logger?: string;
source?: string;
instanceIds?: string;
from?: string;
to?: string;
cursor?: string;