Skip to content

Commit

Permalink
Merge branch 'main' into vm/relay-client-test-utils
Browse files Browse the repository at this point in the history
  • Loading branch information
vmenge authored Feb 3, 2025
2 parents 842d1e6 + 1d4f630 commit f8a78ad
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
7 changes: 7 additions & 0 deletions proto/self_serve/orb/v1/orb.proto
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ message W {
CaptureEnded capture_ended = 3;
SignupEnded signup_ended = 4;
AgeVerificationRequiredFromOperator age_verification_required_from_operator = 5;
PreflightCheck preflight_check = 6;
}
}

Expand Down Expand Up @@ -47,3 +48,9 @@ message SignupEnded {
repeated FailureFeedbackType failure_feedback = 2;
}
message AgeVerificationRequiredFromOperator {}

message PreflightCheck {
bool is_user_seen = 1;
bool is_not_too_far = 2;
bool is_not_too_close = 3;
}
3 changes: 1 addition & 2 deletions relay-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ rust-version.workspace = true
[dependencies]
orb-relay-messages = { workspace = true, features = ["client"] }
orb-relay-test-utils = { workspace = true }

tokio = { workspace = true, fetures = ["full"] }
tokio = { workspace = true, features = ["full"] }
tokio-util.workspace = true
tonic = { workspace = true, features = ["tls-roots"] }
derive_more.workspace = true
Expand Down

0 comments on commit f8a78ad

Please sign in to comment.