Skip to content

Commit

Permalink
fix: incorrect swagger annotation for getSession (#2891)
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Nov 15, 2022
1 parent a82ee92 commit 797ea68
Show file tree
Hide file tree
Showing 12 changed files with 355 additions and 228 deletions.
3 changes: 0 additions & 3 deletions internal/client-go/.openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ api_courier.go
api_frontend.go
api_identity.go
api_metadata.go
api_v0alpha2.go
client.go
configuration.go
docs/AuthenticatorAssuranceLevel.md
Expand Down Expand Up @@ -105,7 +104,6 @@ docs/UpdateSettingsFlowWithWebAuthnMethod.md
docs/UpdateVerificationFlowBody.md
docs/UpdateVerificationFlowWithCodeMethodBody.md
docs/UpdateVerificationFlowWithLinkMethod.md
docs/V0alpha2Api.md
docs/VerifiableIdentityAddress.md
docs/VerificationFlow.md
docs/VerificationFlowState.md
Expand Down Expand Up @@ -214,5 +212,4 @@ test/api_courier_test.go
test/api_frontend_test.go
test/api_identity_test.go
test/api_metadata_test.go
test/api_v0alpha2_test.go
utils.go
2 changes: 1 addition & 1 deletion internal/client-go/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ Class | Method | HTTP request | Description
*IdentityApi* | [**ExtendSession**](docs/IdentityApi.md#extendsession) | **Patch** /admin/sessions/{id}/extend | Extend a Session
*IdentityApi* | [**GetIdentity**](docs/IdentityApi.md#getidentity) | **Get** /admin/identities/{id} | Get an Identity
*IdentityApi* | [**GetIdentitySchema**](docs/IdentityApi.md#getidentityschema) | **Get** /schemas/{id} | Get Identity JSON Schema
*IdentityApi* | [**GetSession**](docs/IdentityApi.md#getsession) | **Get** /admin/sessions/{id} | This endpoint returns the session object with expandables specified.
*IdentityApi* | [**ListIdentities**](docs/IdentityApi.md#listidentities) | **Get** /admin/identities | List Identities
*IdentityApi* | [**ListIdentitySchemas**](docs/IdentityApi.md#listidentityschemas) | **Get** /schemas | Get all Identity Schemas
*IdentityApi* | [**ListIdentitySessions**](docs/IdentityApi.md#listidentitysessions) | **Get** /admin/identities/{id}/sessions | List an Identity's Sessions
Expand All @@ -127,7 +128,6 @@ Class | Method | HTTP request | Description
*MetadataApi* | [**GetVersion**](docs/MetadataApi.md#getversion) | **Get** /version | Return Running Software Version.
*MetadataApi* | [**IsAlive**](docs/MetadataApi.md#isalive) | **Get** /health/alive | Check HTTP Server Status
*MetadataApi* | [**IsReady**](docs/MetadataApi.md#isready) | **Get** /health/ready | Check HTTP Server and Database Status
*V0alpha2Api* | [**AdminGetSession**](docs/V0alpha2Api.md#admingetsession) | **Get** /admin/sessions/{id} | This endpoint returns the session object with expandables specified.


## Documentation For Models
Expand Down
172 changes: 172 additions & 0 deletions internal/client-go/api_identity.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions internal/client-go/client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions internal/httpclient/.openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ api_courier.go
api_frontend.go
api_identity.go
api_metadata.go
api_v0alpha2.go
client.go
configuration.go
docs/AuthenticatorAssuranceLevel.md
Expand Down Expand Up @@ -106,7 +105,6 @@ docs/UpdateSettingsFlowWithWebAuthnMethod.md
docs/UpdateVerificationFlowBody.md
docs/UpdateVerificationFlowWithCodeMethodBody.md
docs/UpdateVerificationFlowWithLinkMethod.md
docs/V0alpha2Api.md
docs/VerifiableIdentityAddress.md
docs/VerificationFlow.md
docs/VerificationFlowState.md
Expand Down Expand Up @@ -215,5 +213,4 @@ test/api_courier_test.go
test/api_frontend_test.go
test/api_identity_test.go
test/api_metadata_test.go
test/api_v0alpha2_test.go
utils.go
2 changes: 1 addition & 1 deletion internal/httpclient/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ Class | Method | HTTP request | Description
*IdentityApi* | [**ExtendSession**](docs/IdentityApi.md#extendsession) | **Patch** /admin/sessions/{id}/extend | Extend a Session
*IdentityApi* | [**GetIdentity**](docs/IdentityApi.md#getidentity) | **Get** /admin/identities/{id} | Get an Identity
*IdentityApi* | [**GetIdentitySchema**](docs/IdentityApi.md#getidentityschema) | **Get** /schemas/{id} | Get Identity JSON Schema
*IdentityApi* | [**GetSession**](docs/IdentityApi.md#getsession) | **Get** /admin/sessions/{id} | This endpoint returns the session object with expandables specified.
*IdentityApi* | [**ListIdentities**](docs/IdentityApi.md#listidentities) | **Get** /admin/identities | List Identities
*IdentityApi* | [**ListIdentitySchemas**](docs/IdentityApi.md#listidentityschemas) | **Get** /schemas | Get all Identity Schemas
*IdentityApi* | [**ListIdentitySessions**](docs/IdentityApi.md#listidentitysessions) | **Get** /admin/identities/{id}/sessions | List an Identity's Sessions
Expand All @@ -127,7 +128,6 @@ Class | Method | HTTP request | Description
*MetadataApi* | [**GetVersion**](docs/MetadataApi.md#getversion) | **Get** /version | Return Running Software Version.
*MetadataApi* | [**IsAlive**](docs/MetadataApi.md#isalive) | **Get** /health/alive | Check HTTP Server Status
*MetadataApi* | [**IsReady**](docs/MetadataApi.md#isready) | **Get** /health/ready | Check HTTP Server and Database Status
*V0alpha2Api* | [**AdminGetSession**](docs/V0alpha2Api.md#admingetsession) | **Get** /admin/sessions/{id} | This endpoint returns the session object with expandables specified.


## Documentation For Models
Expand Down

0 comments on commit 797ea68

Please sign in to comment.