Skip to main content

max / balanced_breakfast

synckit-client 0.4.0: pass sentinel key in token exchange Internal app — bypasses billing via is_internal=TRUE. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Author: Max J. <87768334+MaxJMath@users.noreply.github.com> · 2026-05-22 00:23 UTC
Commit: 01783338994a973730c8ae2bdb495aef6b24cb4c
Parent: 9e74b20
2 files changed, +3 insertions, -3 deletions
M Cargo.lock +2 -2
@@ -192,7 +192,7 @@ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
192 192
193 193 [[package]]
194 194 name = "balanced-breakfast-desktop"
195 - version = "0.3.1"
195 + version = "0.3.3"
196 196 dependencies = [
197 197 "base64 0.22.1",
198 198 "bb-core",
@@ -1045,7 +1045,7 @@ dependencies = [
1045 1045
1046 1046 [[package]]
1047 1047 name = "docengine"
1048 - version = "0.3.1"
1048 + version = "0.3.4"
1049 1049 dependencies = [
1050 1050 "ammonia",
1051 1051 "pulldown-cmark",
@@ -399,7 +399,7 @@ pub async fn sync_complete_auth(
399 399 }
400 400
401 401 client
402 - .authenticate_with_code(&input.code, &input.code_verifier, input.port)
402 + .authenticate_with_code(&input.code, &input.code_verifier, input.port, "__internal__")
403 403 .await
404 404 .map_err(|e| ApiError::internal(format!("Token exchange failed: {}", e)))?;
405 405