api(schema): regenerate OpenAPI + schema.d.ts for env color field
UpdateEnvironmentRequest gains an optional color; Environment schema surfaces color on GET responses. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
File diff suppressed because one or more lines are too long
15
ui/src/api/schema.d.ts
vendored
15
ui/src/api/schema.d.ts
vendored
@@ -237,8 +237,8 @@ export interface paths {
|
|||||||
/** Get environment by slug */
|
/** Get environment by slug */
|
||||||
get: operations["getEnvironment"];
|
get: operations["getEnvironment"];
|
||||||
/**
|
/**
|
||||||
* Update an environment's mutable fields (displayName, production, enabled)
|
* Update an environment's mutable fields (displayName, production, enabled, color)
|
||||||
* @description Slug is immutable after creation and cannot be changed. Any slug field in the request body is ignored.
|
* @description Slug is immutable after creation and cannot be changed. Any slug field in the request body is ignored. If color is null or absent, the existing color is preserved.
|
||||||
*/
|
*/
|
||||||
put: operations["updateEnvironment"];
|
put: operations["updateEnvironment"];
|
||||||
post?: never;
|
post?: never;
|
||||||
@@ -2111,6 +2111,7 @@ export interface components {
|
|||||||
};
|
};
|
||||||
/** Format: int32 */
|
/** Format: int32 */
|
||||||
jarRetentionCount?: number;
|
jarRetentionCount?: number;
|
||||||
|
color?: string;
|
||||||
/** Format: date-time */
|
/** Format: date-time */
|
||||||
createdAt?: string;
|
createdAt?: string;
|
||||||
};
|
};
|
||||||
@@ -2581,6 +2582,7 @@ export interface components {
|
|||||||
displayName?: string;
|
displayName?: string;
|
||||||
production?: boolean;
|
production?: boolean;
|
||||||
enabled?: boolean;
|
enabled?: boolean;
|
||||||
|
color?: string;
|
||||||
};
|
};
|
||||||
JarRetentionRequest: {
|
JarRetentionRequest: {
|
||||||
/** Format: int32 */
|
/** Format: int32 */
|
||||||
@@ -4551,6 +4553,15 @@ export interface operations {
|
|||||||
"*/*": Record<string, never>;
|
"*/*": Record<string, never>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
/** @description Unknown color value */
|
||||||
|
400: {
|
||||||
|
headers: {
|
||||||
|
[name: string]: unknown;
|
||||||
|
};
|
||||||
|
content: {
|
||||||
|
"*/*": Record<string, never>;
|
||||||
|
};
|
||||||
|
};
|
||||||
/** @description Environment not found */
|
/** @description Environment not found */
|
||||||
404: {
|
404: {
|
||||||
headers: {
|
headers: {
|
||||||
|
|||||||
Reference in New Issue
Block a user