Skip to content

Commit

Permalink
Merge pull request #134 from openziti/add.ext.jwt.id.auth.query
Browse files Browse the repository at this point in the history
adds id field and type id enumeration for auth queries
  • Loading branch information
andrewpmartinez authored Oct 4, 2024
2 parents eb6e2a3 + c1b85dd commit 26b4368
Show file tree
Hide file tree
Showing 11 changed files with 233 additions and 18 deletions.
12 changes: 10 additions & 2 deletions client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ info:
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0.html
version: 0.26.32
version: 0.26.33
host: demo.ziti.dev
basePath: /edge/client/v1
paths:
Expand Down Expand Up @@ -3867,6 +3867,8 @@ definitions:
type: string
httpUrl:
type: string
id:
type: string
maxLength:
type: integer
minLength:
Expand All @@ -3878,11 +3880,17 @@ definitions:
items:
type: string
typeId:
type: string
$ref: '#/definitions/authQueryType'
authQueryList:
type: array
items:
$ref: '#/definitions/authQueryDetail'
authQueryType:
type: string
enum:
- MFA
- TOTP
- EXT-JWT
authenticate:
description: A generic authenticate object meant for use with the /authenticate
path. Required fields depend on authentication method.
Expand Down
12 changes: 10 additions & 2 deletions management.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ info:
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0.html
version: 0.26.32
version: 0.26.33
host: demo.ziti.dev
basePath: /edge/management/v1
paths:
Expand Down Expand Up @@ -16322,6 +16322,8 @@ definitions:
type: string
httpUrl:
type: string
id:
type: string
maxLength:
type: integer
minLength:
Expand All @@ -16333,11 +16335,17 @@ definitions:
items:
type: string
typeId:
type: string
$ref: '#/definitions/authQueryType'
authQueryList:
type: array
items:
$ref: '#/definitions/authQueryDetail'
authQueryType:
type: string
enum:
- MFA
- TOTP
- EXT-JWT
authenticate:
description: A generic authenticate object meant for use with the /authenticate
path. Required fields depend on authentication method.
Expand Down
2 changes: 1 addition & 1 deletion rest_client_api_server/doc.go

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

30 changes: 26 additions & 4 deletions rest_client_api_server/embedded_spec.go

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

2 changes: 1 addition & 1 deletion rest_management_api_server/doc.go

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

30 changes: 26 additions & 4 deletions rest_management_api_server/embedded_spec.go

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

44 changes: 43 additions & 1 deletion rest_model/auth_query_detail.go

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

Loading

0 comments on commit 26b4368

Please sign in to comment.