Skip to content

Commit

Permalink
docs: bump to 57bd79139dd9f982a94f182bd8f9c6ae8777e08f
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Sep 18, 2024
1 parent f834544 commit 23fa118
Showing 1 changed file with 27 additions and 9 deletions.
36 changes: 27 additions & 9 deletions docs/reference/api.json
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,9 @@
},
"type": "object"
},
"CodeChannel": {
"type": "string"
},
"CreateInviteResponse": {
"properties": {
"all_invites": {
Expand Down Expand Up @@ -3384,12 +3387,23 @@
"identityCredentialsCode": {
"description": "CredentialsCode represents a one time login/registration code",
"properties": {
"address_type": {
"description": "The type of the address for this code",
"addresses": {
"items": {
"$ref": "#/components/schemas/identityCredentialsCodeAddress"
},
"type": "array"
}
},
"type": "object"
},
"identityCredentialsCodeAddress": {
"properties": {
"address": {
"description": "The address for this code",
"type": "string"
},
"used_at": {
"$ref": "#/components/schemas/NullTime"
"channel": {
"$ref": "#/components/schemas/CodeChannel"
}
},
"type": "object"
Expand Down Expand Up @@ -8855,6 +8869,10 @@
"updateLoginFlowWithCodeMethod": {
"description": "Update Login flow using the code method",
"properties": {
"address": {
"description": "Address is the address to send the code to, in case that there are multiple addresses. This field\nis only used in two-factor flows and is ineffective for passwordless flows.",
"type": "string"
},
"code": {
"description": "Code is the 6 digits code sent to the user",
"type": "string"
Expand Down Expand Up @@ -12301,7 +12319,7 @@
}
},
{
"description": "OAuth 2.0 Subject\n\nThe subject to revoke authentication sessions for.",
"description": "Login Session ID\n\nThe login session to revoke.",
"in": "query",
"name": "sid",
"schema": {
Expand Down Expand Up @@ -13325,7 +13343,7 @@
},
"/oauth2/auth": {
"get": {
"description": "Use open source libraries to perform OAuth 2.0 and OpenID Connect\navailable for any programming language. You can find a list of libraries at https://oauth.net/code/\n\nThe Ory SDK is not yet able to this endpoint properly.",
"description": "Use open source libraries to perform OAuth 2.0 and OpenID Connect\navailable for any programming language. You can find a list of libraries at https://oauth.net/code/\n\nThis endpoint should not be used via the Ory SDK and is only included for technical reasons.\nInstead, use one of the libraries linked above.",
"operationId": "oAuth2Authorize",
"responses": {
"302": {
Expand Down Expand Up @@ -13583,7 +13601,7 @@
},
"/oauth2/token": {
"post": {
"description": "Use open source libraries to perform OAuth 2.0 and OpenID Connect\navailable for any programming language. You can find a list of libraries here https://oauth.net/code/\n\nThe Ory SDK is not yet able to this endpoint properly.",
"description": "Use open source libraries to perform OAuth 2.0 and OpenID Connect\navailable for any programming language. You can find a list of libraries here https://oauth.net/code/\n\nThis endpoint should not be used via the Ory SDK and is only included for technical reasons.\nInstead, use one of the libraries linked above.",
"operationId": "oauth2TokenExchange",
"requestBody": {
"content": {
Expand Down Expand Up @@ -16435,7 +16453,7 @@
}
},
{
"description": "Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows.",
"description": "Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows.\n\nDEPRECATED: This field is deprecated. Please remove it from your requests. The user will now see a choice\nof MFA credentials to choose from to perform the second factor instead.",
"in": "query",
"name": "via",
"schema": {
Expand Down Expand Up @@ -16533,7 +16551,7 @@
}
},
{
"description": "Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows.",
"description": "Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows.\n\nDEPRECATED: This field is deprecated. Please remove it from your requests. The user will now see a choice\nof MFA credentials to choose from to perform the second factor instead.",
"in": "query",
"name": "via",
"schema": {
Expand Down

0 comments on commit 23fa118

Please sign in to comment.