Skip to content

Commit e36a62b

Browse files
kong[bot]fabianrbz
authored andcommitted
feat(sdk): automated oas update
1 parent 38829b8 commit e36a62b

1 file changed

Lines changed: 49 additions & 3 deletions

File tree

api-specs/konnect/dev-portal/v3/openapi.yaml

Lines changed: 49 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
openapi: 3.0.3
22
info:
33
title: Portal API
4-
version: 3.3.2
4+
version: 3.3.3
55
description: Portal API
66
contact:
77
name: Kong
88
url: 'https://cloud.konghq.com'
9-
x-oas-source: kong/platform-api@b86de17dd121406f9a94d62b1ca4bd412d216992
10-
x-oas-source-link: 'https://github.com/Kong/platform-api/commit/b86de17dd121406f9a94d62b1ca4bd412d216992'
9+
x-oas-source: kong/platform-api@1f49f503deacae7f5c273d918393c1bcb44df6f2
10+
x-oas-source-link: 'https://github.com/Kong/platform-api/commit/1f49f503deacae7f5c273d918393c1bcb44df6f2'
1111
servers:
1212
- url: 'https://custom.example.com'
1313
description: Production
@@ -332,6 +332,10 @@ paths:
332332
- $ref: '#/components/parameters/FilterByNameContains'
333333
- $ref: '#/components/parameters/FilterByAuthStrategyEquality'
334334
- $ref: '#/components/parameters/FilterByAuthStrategyEqualityShort'
335+
- $ref: '#/components/parameters/FilterByTeamIdEquality'
336+
- $ref: '#/components/parameters/FilterByTeamIdEqualityShort'
337+
- $ref: '#/components/parameters/FilterByTeamIdNotEquals'
338+
- $ref: '#/components/parameters/FilterByTeamIdOneOf'
335339
responses:
336340
'200':
337341
$ref: '#/components/responses/ListApplications'
@@ -1332,6 +1336,48 @@ components:
13321336
- pending
13331337
- rejected
13341338
- revoked
1339+
FilterByTeamIdEquality:
1340+
name: 'filter[team_id][eq]'
1341+
description: |
1342+
Filter by the team that owns the application. Use a team UUID or the literal string `null` for individually owned apps (e.g. `filter[team_id][eq]=null`).
1343+
in: query
1344+
required: false
1345+
schema:
1346+
type: string
1347+
format: uuid
1348+
example: 5be86298-147b-45ab-bfaf-a1bff97dce39
1349+
nullable: true
1350+
FilterByTeamIdEqualityShort:
1351+
name: 'filter[team_id]'
1352+
description: |
1353+
Filter by the team that owns the application (short-hand). Use a team UUID or the literal string `null` for individually owned apps (e.g. `filter[team_id]=null`).
1354+
in: query
1355+
required: false
1356+
schema:
1357+
type: string
1358+
format: uuid
1359+
example: 5be86298-147b-45ab-bfaf-a1bff97dce39
1360+
nullable: true
1361+
FilterByTeamIdNotEquals:
1362+
name: 'filter[team_id][neq]'
1363+
description: |
1364+
Filter by excluding a team. Use the literal string `null` to get only team-owned apps (excludes individually owned) (e.g. `filter[team_id][neq]=null`).
1365+
in: query
1366+
required: false
1367+
schema:
1368+
type: string
1369+
format: uuid
1370+
example: null
1371+
nullable: true
1372+
FilterByTeamIdOneOf:
1373+
name: 'filter[team_id][oeq]'
1374+
description: |
1375+
Filter by apps owned by any of the given teams (comma-separated UUIDs).
1376+
in: query
1377+
required: false
1378+
schema:
1379+
type: string
1380+
example: '5be86298-147b-45ab-bfaf-a1bff97dce39,7ce96398-247b-45ab-bfaf-b2c008e8f6e4'
13351381
FilterByTitleContains:
13361382
name: 'filter[title][contains]'
13371383
description: Filter by contains comparison of the title property with a supplied substring

0 commit comments

Comments
 (0)