Skip to content

Commit

Permalink
autogen(openapi): regenerate swagger spec and internal client
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
ory-bot committed Dec 30, 2024
1 parent ad3a9ae commit 0780a1f
Show file tree
Hide file tree
Showing 6 changed files with 148 additions and 348 deletions.
10 changes: 10 additions & 0 deletions internal/httpclient/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3555,6 +3555,7 @@ components:
type: object
oAuth2LogoutRequest:
example:
expires_at: 2000-01-23T04:56:07.000+00:00
subject: subject
challenge: challenge
client:
Expand Down Expand Up @@ -3624,6 +3625,7 @@ components:
- response_types
rp_initiated: true
request_url: request_url
requested_at: 2000-01-23T04:56:07.000+00:00
sid: sid
properties:
challenge:
Expand All @@ -3633,9 +3635,17 @@ components:
type: string
client:
$ref: '#/components/schemas/oAuth2Client'
expires_at:
format: date-time
title: NullTime implements sql.NullTime functionality.
type: string
request_url:
description: RequestURL is the original Logout URL requested.
type: string
requested_at:
format: date-time
title: NullTime implements sql.NullTime functionality.
type: string
rp_initiated:
description: "RPInitiated is set to true if the request was initiated by\
\ a Relying Party (RP), also known as an OAuth 2.0 Client."
Expand Down
52 changes: 52 additions & 0 deletions internal/httpclient/docs/OAuth2LogoutRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Challenge** | Pointer to **string** | Challenge is the identifier (\"logout challenge\") of the logout authentication request. It is used to identify the session. | [optional]
**Client** | Pointer to [**OAuth2Client**](OAuth2Client.md) | | [optional]
**ExpiresAt** | Pointer to **time.Time** | | [optional]
**RequestUrl** | Pointer to **string** | RequestURL is the original Logout URL requested. | [optional]
**RequestedAt** | Pointer to **time.Time** | | [optional]
**RpInitiated** | Pointer to **bool** | RPInitiated is set to true if the request was initiated by a Relying Party (RP), also known as an OAuth 2.0 Client. | [optional]
**Sid** | Pointer to **string** | SessionID is the login session ID that was requested to log out. | [optional]
**Subject** | Pointer to **string** | Subject is the user for whom the logout was request. | [optional]
Expand Down Expand Up @@ -80,6 +82,31 @@ SetClient sets Client field to given value.

HasClient returns a boolean if a field has been set.

### GetExpiresAt

`func (o *OAuth2LogoutRequest) GetExpiresAt() time.Time`

GetExpiresAt returns the ExpiresAt field if non-nil, zero value otherwise.

### GetExpiresAtOk

`func (o *OAuth2LogoutRequest) GetExpiresAtOk() (*time.Time, bool)`

GetExpiresAtOk returns a tuple with the ExpiresAt field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetExpiresAt

`func (o *OAuth2LogoutRequest) SetExpiresAt(v time.Time)`

SetExpiresAt sets ExpiresAt field to given value.

### HasExpiresAt

`func (o *OAuth2LogoutRequest) HasExpiresAt() bool`

HasExpiresAt returns a boolean if a field has been set.

### GetRequestUrl

`func (o *OAuth2LogoutRequest) GetRequestUrl() string`
Expand All @@ -105,6 +132,31 @@ SetRequestUrl sets RequestUrl field to given value.

HasRequestUrl returns a boolean if a field has been set.

### GetRequestedAt

`func (o *OAuth2LogoutRequest) GetRequestedAt() time.Time`

GetRequestedAt returns the RequestedAt field if non-nil, zero value otherwise.

### GetRequestedAtOk

`func (o *OAuth2LogoutRequest) GetRequestedAtOk() (*time.Time, bool)`

GetRequestedAtOk returns a tuple with the RequestedAt field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetRequestedAt

`func (o *OAuth2LogoutRequest) SetRequestedAt(v time.Time)`

SetRequestedAt sets RequestedAt field to given value.

### HasRequestedAt

`func (o *OAuth2LogoutRequest) HasRequestedAt() bool`

HasRequestedAt returns a boolean if a field has been set.

### GetRpInitiated

`func (o *OAuth2LogoutRequest) GetRpInitiated() bool`
Expand Down
Loading

0 comments on commit 0780a1f

Please sign in to comment.