Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/store/api/backend/hosted/imageBuilderApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -446,6 +446,7 @@ export type Distributions =
| 'fedora-42'
| 'fedora-43'
| 'fedora-44'
| 'fedora-45'
| 'hummingbird';
export type ListResponseMeta = {
count: number;
Expand Down
8 changes: 8 additions & 0 deletions src/store/api/contentSources/hosted/contentSourcesApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -466,6 +466,8 @@ export type ApiRepositoryResponse = {
status?: string | undefined;
/** URL of the remote yum repository */
url?: string | undefined;
/** Number of versions last read in the repository, not applicable to all repositories */
version_count?: number | undefined;
};
export type ApiRepositoryResponseRead = {
/** Account ID of the owner */
Expand Down Expand Up @@ -538,6 +540,8 @@ export type ApiRepositoryResponseRead = {
url?: string | undefined;
/** UUID of the object */
uuid?: string | undefined;
/** Number of versions last read in the repository, not applicable to all repositories */
version_count?: number | undefined;
};
export type ApiLinks = {
/** Path to first page of results */
Expand Down Expand Up @@ -670,6 +674,8 @@ export type ApiRepositoryImportResponse = {
status?: string | undefined;
/** URL of the remote yum repository */
url?: string | undefined;
/** Number of versions last read in the repository, not applicable to all repositories */
version_count?: number | undefined;
/** Warnings to alert user of mismatched fields if there is an existing repo with the same URL */
warnings?:
| {
Expand Down Expand Up @@ -748,6 +754,8 @@ export type ApiRepositoryImportResponseRead = {
url?: string | undefined;
/** UUID of the object */
uuid?: string | undefined;
/** Number of versions last read in the repository, not applicable to all repositories */
version_count?: number | undefined;
/** Warnings to alert user of mismatched fields if there is an existing repo with the same URL */
warnings?:
| {
Expand Down
Loading