1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
// Code generated by @uarp/codegen from spec/openapi.json. DO NOT EDIT.
//!
//! Local agent bridge for Snaga desktop connections
#![allow(unused_imports, clippy::too_many_arguments)]
use reqwest::Method;
use serde::{Deserialize, Serialize};
use crate::client::{Client, Request, NO_BODY, NO_QUERY};
use crate::error::Result;
use crate::generated::models;
use crate::multipart::{field_text, FilePart};
use crate::util::encode_path;
/// Query and header parameters for `bridgePoll`.
#[derive(Debug, Clone, Default, PartialEq, Serialize, Deserialize)]
pub struct BridgePollParams {
#[serde(default, skip_serializing_if = "Option::is_none")]
pub agent_id: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub machine_id: Option<String>,
/// Server-side long-poll timeout override (ms).
#[serde(default, skip_serializing_if = "Option::is_none")]
pub timeout: Option<i64>,
}
/// Query and header parameters for `getBridgeTaskApproval`.
#[derive(Debug, Clone, Default, PartialEq, Serialize, Deserialize)]
pub struct GetBridgeTaskApprovalParams {
#[serde(default, skip_serializing_if = "Option::is_none")]
pub approval_id: Option<String>,
}
/// Local agent bridge for Snaga desktop connections
#[derive(Debug, Clone)]
pub struct BridgeApi {
pub(crate) client: Client,
}
impl Client {
/// Local agent bridge for Snaga desktop connections
pub fn bridge(&self) -> BridgeApi {
BridgeApi { client: self.clone() }
}
}
impl BridgeApi {
/// Delegate task to bridge agent
///
/// `POST /api/v1/bridge/delegate`
pub async fn bridge_delegate(&self, body: &models::BridgeDelegateRequest) -> Result<models::BridgeDelegateResponse> {
self.client
.request_json(Request {
method: Method::POST,
path: "/api/v1/bridge/delegate".to_string(),
query: NO_QUERY,
body: Some(body),
headers: Vec::new(),
idempotent: true,
})
.await
}
/// Deregister bridge agent
///
/// `POST /api/v1/bridge/deregister`
pub async fn bridge_deregister(&self, body: &models::BridgeDeregisterRequest) -> Result<models::BridgeDeregisterResponse> {
self.client
.request_json(Request {
method: Method::POST,
path: "/api/v1/bridge/deregister".to_string(),
query: NO_QUERY,
body: Some(body),
headers: Vec::new(),
idempotent: true,
})
.await
}
/// Bridge heartbeat
///
/// Idempotent liveness ping for the bridge connection. **404 on missing connection is
/// intentional** — drives the client to re-register rather than reusing a stale identity.
///
/// `POST /api/v1/bridge/heartbeat`
pub async fn bridge_heartbeat(&self, body: &models::BridgeHeartbeatRequest) -> Result<models::BridgeHeartbeatResponse> {
self.client
.request_json(Request {
method: Method::POST,
path: "/api/v1/bridge/heartbeat".to_string(),
query: NO_QUERY,
body: Some(body),
headers: Vec::new(),
idempotent: true,
})
.await
}
/// Long-poll for pending bridge tasks
///
/// Long-poll up to platform-configured `POLL_TIMEOUT_MS`. Returns 200 with tasks if any are
/// pending, or 204 No Content on timeout (client should re-poll immediately).
///
/// `GET /api/v1/bridge/poll`
pub async fn bridge_poll(&self, params: &BridgePollParams) -> Result<models::BridgePollResponse> {
self.client
.request_json(Request {
method: Method::GET,
path: "/api/v1/bridge/poll".to_string(),
query: Some(params),
body: NO_BODY,
headers: Vec::new(),
idempotent: false,
})
.await
}
/// Register bridge agent (Snaga CLI handshake)
///
/// Registers a long-lived bridge agent for the calling tenant. Returns 201 on first
/// registration, 200 on reconnect of an existing machine_id. Tenant-scoped only — no scope
/// enforcement.
///
/// `POST /api/v1/bridge/register`
pub async fn bridge_register(&self, body: &models::BridgeRegisterRequest) -> Result<models::BridgeRegisterResponse> {
self.client
.request_json(Request {
method: Method::POST,
path: "/api/v1/bridge/register".to_string(),
query: NO_QUERY,
body: Some(body),
headers: Vec::new(),
idempotent: true,
})
.await
}
/// Get bridge connection status
///
/// `GET /api/v1/bridge/status`
pub async fn bridge_status(&self) -> Result<models::BridgeStatusResponse> {
self.client
.request_json(Request {
method: Method::GET,
path: "/api/v1/bridge/status".to_string(),
query: NO_QUERY,
body: NO_BODY,
headers: Vec::new(),
idempotent: false,
})
.await
}
/// Bridge WebSocket upgrade endpoint for the Snaga CLI
///
/// WebSocket upgrade. Long-lived bidirectional channel between a `snaga serve` CLI and the
/// platform. Server delivers tasks, client streams capabilities and tool results. Auth via
/// `Sec-WebSocket-Protocol: uarp.\<base64(api_key)\>` subprotocol.
///
/// `GET /api/v1/bridge/ws`
pub async fn bridge_web_socket(&self) -> Result<serde_json::Value> {
self.client
.request_json(Request {
method: Method::GET,
path: "/api/v1/bridge/ws".to_string(),
query: NO_QUERY,
body: NO_BODY,
headers: Vec::new(),
idempotent: false,
})
.await
}
/// Get approval status
///
/// `GET /api/v1/bridge/tasks/{taskId}/approval`
pub async fn get_bridge_task_approval(&self, task_id: &str, params: &GetBridgeTaskApprovalParams) -> Result<models::GetBridgeTaskApprovalResponse> {
self.client
.request_json(Request {
method: Method::GET,
path: format!("/api/v1/bridge/tasks/{}/approval", encode_path(task_id)),
query: Some(params),
body: NO_BODY,
headers: Vec::new(),
idempotent: false,
})
.await
}
/// List bridge agents
///
/// `GET /api/v1/bridge/agents`
pub async fn list_bridge_agents(&self) -> Result<Vec<models::BridgeConnection>> {
self.client
.request_json(Request {
method: Method::GET,
path: "/api/v1/bridge/agents".to_string(),
query: NO_QUERY,
body: NO_BODY,
headers: Vec::new(),
idempotent: false,
})
.await
}
/// Push task events
///
/// `POST /api/v1/bridge/tasks/{taskId}/events`
pub async fn push_bridge_task_events(&self, task_id: &str, body: &Vec<serde_json::Map<String, serde_json::Value>>) -> Result<models::PushBridgeTaskEventsResponse> {
self.client
.request_json(Request {
method: Method::POST,
path: format!("/api/v1/bridge/tasks/{}/events", encode_path(task_id)),
query: NO_QUERY,
body: Some(body),
headers: Vec::new(),
idempotent: true,
})
.await
}
/// Update agent capabilities
///
/// `POST /api/v1/bridge/agents/{agentId}/capability`
pub async fn update_bridge_agent_capability(&self, agent_id: &str, body: &models::UpdateBridgeAgentCapabilityRequest) -> Result<models::UpdateBridgeAgentCapabilityResponse> {
self.client
.request_json(Request {
method: Method::POST,
path: format!("/api/v1/bridge/agents/{}/capability", encode_path(agent_id)),
query: NO_QUERY,
body: Some(body),
headers: Vec::new(),
idempotent: true,
})
.await
}
}