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

@ -57,7 +57,7 @@ export const AzureSourcesSelect = () => {
);
const [selectOptions, setSelectOptions] = useState<(string | undefined)[]>(
rawSources?.data?.map((source) => source.name) || []
rawSources?.data?.map((source) => source?.name) || []
);
useEffect(() => {
@ -75,11 +75,11 @@ export const AzureSourcesSelect = () => {
]);
useEffect(() => {
let filteredSources = rawSources?.data?.map((source) => source.name);
let filteredSources = rawSources?.data?.map((source) => source?.name);
if (filterValue) {
filteredSources = rawSources?.data
?.map((source) => source.name)
?.map((source) => source?.name)
.filter((source: string) =>
String(source).toLowerCase().includes(filterValue.toLowerCase())
);
@ -119,7 +119,7 @@ export const AzureSourcesSelect = () => {
sourceName: string
) => {
const sourceId = rawSources?.data?.find(
(source) => source.name === sourceName
(source) => source?.name === sourceName
)?.id;
dispatch(changeAzureSource(sourceId || ''));
dispatch(changeAzureResourceGroup(''));
@ -145,7 +145,7 @@ export const AzureSourcesSelect = () => {
};
const selectedSource = azureSource
? rawSources?.data?.find((source) => source.id === azureSource)?.name
? rawSources?.data?.find((source) => source?.id === azureSource)?.name
: undefined;
const toggle = (toggleRef: React.Ref<MenuToggleElement>) => (