File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,8 @@ export interface PublishBuildConfig extends BuildConfigBase {
9191 versionLabels ?: string [ ]
9292 refs ?: BuildConfigRef [ ]
9393 files ?: BuildConfigFile [ ]
94- // apiType?: OperationsApiType //todo Document transformation is available only for apiType = REST
94+
95+ metadata ?: Record < string , unknown >
9596}
9697
9798export interface ExportVersionBuildConfig extends BuildConfigBase {
@@ -136,7 +137,7 @@ export interface ReducedSourceSpecificationsBuildConfig extends BuildConfigBase
136137
137138// deprecated
138139export interface MergedSpecificationBuildConfig extends BuildConfigBase {
139- buildType : typeof BUILD_TYPE . REDUCED_SOURCE_SPECIFICATIONS
140+ buildType : typeof BUILD_TYPE . MERGED_SPECIFICATION
140141 packageId : PackageId
141142 version : VersionId // @revision for rebuild
142143 groupName : string
@@ -166,6 +167,8 @@ export interface PrefixGroupsChangelogBuildConfig extends BuildConfigBase {
166167 status : VersionStatus
167168 previousVersion ?: VersionId
168169 previousVersionPackageId ?: PackageId
170+ currentGroup ?: string
171+ previousGroup ?: string
169172
170173 format : OperationsGroupExportFormat
171174 // allowedOasExtensions?: OpenApiExtensionKey[]
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ export class Editor {
113113 return this . builder . createVersionPackage ( )
114114 }
115115
116- async createNodeVersionPackage ( ) : Promise < { packageVersion : any ; fileName : string } > {
116+ async createNodeVersionPackage ( ) : Promise < { packageVersion : any ; exportFileName ? : string } > {
117117 return this . builder . createNodeVersionPackage ( )
118118 }
119119
You can’t perform that action at this time.
0 commit comments