debian-image-builder-frontend/types/api/index.ts
mgold1234 795aa99fc3 imagesTable: capitalize all release values
This commit change the value of release column to be consistently,
and always show with Capital letter
related to issue - https://github.com/RedHatInsights/image-builder-frontend/issues/946
2023-06-26 13:05:29 +02:00

20 lines
1.1 KiB
TypeScript

import { components as contentSourcesComponents } from './contentSourcesSchema';
import { components as imageBuilderComponents } from './imageBuilderSchema';
import { components as provisioningComponents } from './provisioningSchema';
import { components as rhsmComponents } from './rhsmSchema';
export type ActivationKeys = rhsmComponents['schemas']['ActivationKeys'];
export type Architectures = imageBuilderComponents['schemas']['Architectures'];
export type ClonesResponse =
imageBuilderComponents['schemas']['ClonesResponse'];
export type ComposeStatus = imageBuilderComponents['schemas']['ComposeStatus'];
export type ComposesResponse =
imageBuilderComponents['schemas']['ComposesResponse'];
export type UploadStatus = imageBuilderComponents['schemas']['UploadStatus'];
export type SourceResponse =
provisioningComponents['schemas']['v1.SourceResponse'];
export type SourceUploadInfoResponse =
provisioningComponents['schemas']['v1.SourceUploadInfoResponse'];
export type RepositoryCollectionResponse =
contentSourcesComponents['schemas']['api.RepositoryCollectionResponse'];
export type Distributions = imageBuilderComponents['schemas']['Distributions'];