api: Update pull.sh, regenerate schemas and fix errors

This adds missing schema links to the `pull.sh` script, pulls new schema definitions, re-generates schemas and updates the code where needed.
This commit is contained in:
regexowl 2025-06-18 11:18:07 +02:00 committed by Gianluca Zuccarelli
parent 0b1abb57b9
commit 855f1430ad
17 changed files with 6320 additions and 5881 deletions

View file

@ -88,7 +88,7 @@ const AzureSourceName = ({ id }: AzureSourceNamePropTypes) => {
const sources = extractProvisioningList(rawSources);
const sourcename = sources?.find((source) => source.id === id);
const sourcename = sources?.find((source) => source?.id === id);
if (sourcename) {
return <p>{sourcename.name}</p>;
}
@ -111,7 +111,7 @@ const AwsSourceName = ({ id }: AwsSourceNamePropTypes) => {
const sources = extractProvisioningList(rawSources);
const sourcename = sources?.find((source) => source.id === id);
const sourcename = sources?.find((source) => source?.id === id);
if (sourcename) {
return <p>{sourcename.name}</p>;
}

View file

@ -390,6 +390,7 @@ export const AwsS3Instance = ({
'rhel-edge-installer': '',
vhd: '',
oci: '',
'openshift-virt': '.tar',
};
const status = composeStatus?.image_status.status;