Skip to content

Commit

Permalink
fix(sdk): add webauth and lookup_secret to identityCredentialsType (o…
Browse files Browse the repository at this point in the history
…ry#2276)

Signed-off-by: sawadashota <[email protected]>
  • Loading branch information
sawadashota authored Mar 2, 2022
1 parent 8d67d3f commit 7f4fe5e
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .schema/openapi/patches/identity.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@
- password
- totp
- oidc
- webauthn
- lookup_secret
2 changes: 2 additions & 0 deletions internal/httpclient/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3060,6 +3060,8 @@ components:
- password
- totp
- oidc
- webauthn
- lookup_secret
title: CredentialsType represents several different credential types, like
password credentials, passwordless credentials,
type: string
Expand Down
4 changes: 4 additions & 0 deletions internal/httpclient/docs/IdentityCredentialsType.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@

* `OIDC` (value: `"oidc"`)

* `WEBAUTHN` (value: `"webauthn"`)

* `LOOKUP_SECRET` (value: `"lookup_secret"`)


[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
10 changes: 6 additions & 4 deletions internal/httpclient/model_identity_credentials_type.go

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

4 changes: 3 additions & 1 deletion spec/api.json
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,9 @@
"enum": [
"password",
"totp",
"oidc"
"oidc",
"webauthn",
"lookup_secret"
],
"title": "CredentialsType represents several different credential types, like password credentials, passwordless credentials,",
"type": "string"
Expand Down

0 comments on commit 7f4fe5e

Please sign in to comment.