File tree Expand file tree Collapse file tree 6 files changed +758
-135
lines changed Expand file tree Collapse file tree 6 files changed +758
-135
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ src/Model/ErrorResponse.php
1313src/Model/ModelInterface.php
1414src/Model/Project.php
1515src/Model/ProjectDefaultReleaseChannel.php
16+ src/Model/ProjectListItem.php
1617src/Model/ProjectListResponse.php
1718src/Model/ProjectResponse.php
1819src/Model/SearchRequest.php
Original file line number Diff line number Diff line change @@ -161,7 +161,7 @@ paths:
161161 /builds/{project}/{channel}/{build} :
162162 get :
163163 summary : Get a specific build by its build ID for a project in a specific release channel
164- operationId : getProjectBuild
164+ operationId : getBuild
165165 tags :
166166 - builds
167167 parameters :
@@ -302,20 +302,27 @@ components:
302302 data :
303303 type : array
304304 items :
305- $ref : ' #/components/schemas/Project '
305+ $ref : ' #/components/schemas/ProjectListItem '
306306 ProjectResponse :
307307 allOf :
308308 - $ref : ' #/components/schemas/SuccessResponse'
309309 - type : object
310310 properties :
311311 data :
312312 $ref : ' #/components/schemas/Project'
313+ ProjectListItem :
314+ allOf :
315+ - $ref : ' #/components/schemas/Project'
316+ - type : object
317+ properties :
318+ owner :
319+ type : string
320+ description : Project owner's name
321+ required :
322+ - owner
313323 Project :
314324 type : object
315325 properties :
316- owner :
317- type : string
318- description : Project owner's name
319326 name :
320327 type : string
321328 description : Project name
@@ -349,7 +356,6 @@ components:
349356 fileNaming :
350357 type : string
351358 required :
352- - owner
353359 - name
354360 - description
355361 - repoLink
You can’t perform that action at this time.
0 commit comments