@@ -12322,6 +12322,83 @@ paths:
1232212322 application/json:
1232312323 schema:
1232412324 $ref: '#/components/schemas/PlaceOS__Api__Application__ContentError'
12325+ /api/engine/v2/repositories/{id}/folders:
12326+ get:
12327+ summary: lists the folders tree in a repository
12328+ tags:
12329+ - Repositories
12330+ operationId: PlaceOS::Api::Repositories_folders
12331+ parameters:
12332+ - name: id
12333+ in: path
12334+ required: true
12335+ schema:
12336+ type: string
12337+ - name: include_dots
12338+ in: query
12339+ description: include dots folders, default to false
12340+ example: "true"
12341+ schema:
12342+ type: boolean
12343+ responses:
12344+ 200:
12345+ description: OK
12346+ content:
12347+ application/json:
12348+ schema:
12349+ type: array
12350+ items:
12351+ $ref: '#/components/schemas/String'
12352+ 409:
12353+ description: Conflict
12354+ content:
12355+ application/json:
12356+ schema:
12357+ $ref: '#/components/schemas/PlaceOS__Api__Application__CommonError'
12358+ 401:
12359+ description: Unauthorized
12360+ content:
12361+ application/json:
12362+ schema:
12363+ $ref: '#/components/schemas/PlaceOS__Api__Application__CommonError'
12364+ 403:
12365+ description: Forbidden
12366+ 404:
12367+ description: Not Found
12368+ content:
12369+ application/json:
12370+ schema:
12371+ $ref: '#/components/schemas/PlaceOS__Api__Application__CommonError'
12372+ 408:
12373+ description: Request Timeout
12374+ content:
12375+ application/json:
12376+ schema:
12377+ $ref: '#/components/schemas/PlaceOS__Api__Application__CommonError'
12378+ 400:
12379+ description: Bad Request
12380+ content:
12381+ application/json:
12382+ schema:
12383+ $ref: '#/components/schemas/PlaceOS__Api__Application__ParameterError'
12384+ 422:
12385+ description: Unprocessable Entity
12386+ content:
12387+ application/json:
12388+ schema:
12389+ $ref: '#/components/schemas/PlaceOS__Api__Application__ParameterError'
12390+ 406:
12391+ description: Not Acceptable
12392+ content:
12393+ application/json:
12394+ schema:
12395+ $ref: '#/components/schemas/PlaceOS__Api__Application__ContentError'
12396+ 415:
12397+ description: Unsupported Media Type
12398+ content:
12399+ application/json:
12400+ schema:
12401+ $ref: '#/components/schemas/PlaceOS__Api__Application__ContentError'
1232512402 /api/engine/v2/repositories/{id}/commits:
1232612403 get:
1232712404 summary: Returns the commits for a repository or file
@@ -25156,6 +25233,9 @@ components:
2515625233 - driver
2515725234 - interface
2515825235 nullable: true
25236+ root_path:
25237+ type: string
25238+ nullable: true
2515925239 has_runtime_error:
2516025240 type: boolean
2516125241 nullable: true
0 commit comments