Skip to content

Commit a44e49f

Browse files
Merge branch 'main' into pw-split-out-ci-jobs
2 parents 0893445 + 77f9873 commit a44e49f

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

src/store/api/contentSources/hosted/contentSourcesApi.ts

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -754,7 +754,7 @@ export type ConfigDistributionArch = {
754754
name?: string | undefined;
755755
};
756756
export type ConfigDistributionMinorVersion = {
757-
feature_names?: string[] | undefined;
757+
extended_release_streams?: string[] | undefined;
758758
label?: string | undefined;
759759
major?: string | undefined;
760760
name?: string | undefined;
@@ -765,19 +765,25 @@ export type ConfigDistributionVersion = {
765765
/** Human-readable form of the version */
766766
name?: string | undefined;
767767
};
768-
export type ConfigExtendedReleaseFeature = {
768+
export type ApiExtendedReleaseArchitecture = {
769+
entitled?: boolean | undefined;
770+
label?: string | undefined;
771+
name?: string | undefined;
772+
};
773+
export type ApiExtendedReleaseStream = {
774+
architectures?: ApiExtendedReleaseArchitecture[] | undefined;
769775
label?: string | undefined;
770776
name?: string | undefined;
771777
};
772778
export type ApiRepositoryParameterResponse = {
773779
/** Architectures available for repository creation */
774780
distribution_arches?: ConfigDistributionArch[] | undefined;
775-
/** Minor versions available for repository creation (filtered by subscriptions) */
781+
/** Minor versions available for repository creation */
776782
distribution_minor_versions?: ConfigDistributionMinorVersion[] | undefined;
777783
/** Versions available for repository creation */
778784
distribution_versions?: ConfigDistributionVersion[] | undefined;
779-
/** Extended release features available (filtered by subscriptions) */
780-
extended_release_features?: ConfigExtendedReleaseFeature[] | undefined;
785+
/** Extended release streams available */
786+
extended_release_streams?: ApiExtendedReleaseStream[] | undefined;
781787
};
782788
export type ApiPackageSourcesResponse = {
783789
/** Architecture of the module */

0 commit comments

Comments
 (0)