Skip to content

Commit

Permalink
Update API Client
Browse files Browse the repository at this point in the history
#### What's New
---

##### `GET` /admin/version/history/

##### `GET` /admin/version/history/{id}/
  • Loading branch information
authentik-automation[bot] committed Oct 17, 2024
1 parent 64c5b57 commit b926f43
Show file tree
Hide file tree
Showing 8 changed files with 962 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -685,6 +685,7 @@ docs/UserWriteStage.md
docs/UserWriteStageRequest.md
docs/ValidationError.md
docs/Version.md
docs/VersionHistory.md
docs/WebAuthnDevice.md
docs/WebAuthnDeviceDeviceType.md
docs/WebAuthnDeviceRequest.md
Expand Down Expand Up @@ -1335,6 +1336,7 @@ model_user_write_stage.go
model_user_write_stage_request.go
model_validation_error.go
model_version.go
model_version_history.go
model_web_authn_device.go
model_web_authn_device_device_type.go
model_web_authn_device_request.go
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ Class | Method | HTTP request | Description
*AdminApi* | [**AdminSettingsUpdate**](docs/AdminApi.md#adminsettingsupdate) | **Put** /admin/settings/ |
*AdminApi* | [**AdminSystemCreate**](docs/AdminApi.md#adminsystemcreate) | **Post** /admin/system/ |
*AdminApi* | [**AdminSystemRetrieve**](docs/AdminApi.md#adminsystemretrieve) | **Get** /admin/system/ |
*AdminApi* | [**AdminVersionHistoryList**](docs/AdminApi.md#adminversionhistorylist) | **Get** /admin/version/history/ |
*AdminApi* | [**AdminVersionHistoryRetrieve**](docs/AdminApi.md#adminversionhistoryretrieve) | **Get** /admin/version/history/{id}/ |
*AdminApi* | [**AdminVersionRetrieve**](docs/AdminApi.md#adminversionretrieve) | **Get** /admin/version/ |
*AdminApi* | [**AdminWorkersRetrieve**](docs/AdminApi.md#adminworkersretrieve) | **Get** /admin/workers/ |
*AuthenticatorsApi* | [**AuthenticatorsAdminAllList**](docs/AuthenticatorsApi.md#authenticatorsadminalllist) | **Get** /authenticators/admin/all/ |
Expand Down Expand Up @@ -1557,6 +1559,7 @@ Class | Method | HTTP request | Description
- [UserWriteStageRequest](docs/UserWriteStageRequest.md)
- [ValidationError](docs/ValidationError.md)
- [Version](docs/Version.md)
- [VersionHistory](docs/VersionHistory.md)
- [WebAuthnDevice](docs/WebAuthnDevice.md)
- [WebAuthnDeviceDeviceType](docs/WebAuthnDeviceDeviceType.md)
- [WebAuthnDeviceRequest](docs/WebAuthnDeviceRequest.md)
Expand Down
120 changes: 120 additions & 0 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,102 @@ paths:
- authentik: []
tags:
- admin
/admin/version/history/:
get:
description: VersionHistory Viewset
operationId: admin_version_history_list
parameters:
- explode: true
in: query
name: build
required: false
schema:
type: string
style: form
- description: Which field to use when ordering the results.
explode: true
in: query
name: ordering
required: false
schema:
type: string
style: form
- description: A search term.
explode: true
in: query
name: search
required: false
schema:
type: string
style: form
- explode: true
in: query
name: version
required: false
schema:
type: string
style: form
responses:
"200":
content:
application/json:
schema:
items:
$ref: '#/components/schemas/VersionHistory'
type: array
description: ""
"400":
content:
application/json:
schema:
$ref: '#/components/schemas/ValidationError'
description: ""
"403":
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: ""
security:
- authentik: []
tags:
- admin
/admin/version/history/{id}/:
get:
description: VersionHistory Viewset
operationId: admin_version_history_retrieve
parameters:
- description: A unique integer value identifying this Version history.
explode: false
in: path
name: id
required: true
schema:
type: integer
style: simple
responses:
"200":
content:
application/json:
schema:
$ref: '#/components/schemas/VersionHistory'
description: ""
"400":
content:
application/json:
schema:
$ref: '#/components/schemas/ValidationError'
description: ""
"403":
content:
application/json:
schema:
$ref: '#/components/schemas/GenericError'
description: ""
security:
- authentik: []
tags:
- admin
/admin/workers/:
get:
description: Get currently connected worker count.
Expand Down Expand Up @@ -68445,6 +68541,30 @@ components:
- version_latest
- version_latest_valid
type: object
VersionHistory:
description: VersionHistory Serializer
example:
build: build
id: 0
version: version
timestamp: 2000-01-23T04:56:07.000+00:00
properties:
id:
readOnly: true
type: integer
timestamp:
format: date-time
type: string
version:
type: string
build:
type: string
required:
- build
- id
- timestamp
- version
type: object
WebAuthnDevice:
description: Serializer for WebAuthn authenticator devices
example:
Expand Down
Loading

0 comments on commit b926f43

Please sign in to comment.