Skip to content

Commit

Permalink
feat(frontier): add additional auth configuration for passkey
Browse files Browse the repository at this point in the history
Signed-off-by: Kush Sharma <[email protected]>
  • Loading branch information
kushsharma committed Sep 23, 2023
1 parent 3bb63ea commit 9ac87a6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions raystack/frontier/v1beta1/frontier.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1384,6 +1384,10 @@ message AuthCallbackRequest {
// for oidc & magic links
string state = 2;
string code = 3;

// state_options has additional configurations for the authentication flow at hand
// for example, in case of passkey, it has challenge and public key
google.protobuf.Struct state_options = 4;
}

message AuthCallbackResponse {}
Expand Down Expand Up @@ -1421,6 +1425,9 @@ message AuthenticateResponse {

// state is used for resuming authentication flow in applicable strategies
string state = 2;

// state_options has additional configurations for the authentication flow at hand
google.protobuf.Struct state_options = 3;
}

message AuthStrategy {
Expand Down

0 comments on commit 9ac87a6

Please sign in to comment.