api: update image-builder api

This commit is contained in:
Anna Vítová 2024-11-22 18:05:24 +02:00 committed by Klara Simickova
parent f48e1bfcb5
commit 5cfab75813
3 changed files with 7141 additions and 6985 deletions

File diff suppressed because it is too large Load diff

View file

@ -1081,6 +1081,7 @@ components:
required:
- parent_id
- exported_at
- is_on_prem
properties:
parent_id:
type: string
@ -1088,6 +1089,9 @@ components:
nullable: true
exported_at:
type: string
is_on_prem:
type: boolean
default: false
Distributions:
type: string
description: |

View file

@ -728,6 +728,7 @@ export type Customizations = {
export type BlueprintMetadata = {
parent_id: string | null;
exported_at: string;
is_on_prem: boolean;
};
export type CreateBlueprintRequest = {
name: string;