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
//! Unofficial Rust SDK for the Salesforce API.
//!
//! This crate provides comprehensive support for Salesforce APIs including:
//! - OAuth2 authentication (client credentials and username-password flows)
//! - Pub/Sub API for real-time event streaming via gRPC
//! - Bulk API 2.0 for high-performance query and ingest operations
//! - REST API for SObject CRUD operations
//! - Tooling API for metadata and Change Data Capture subscriptions
//!
//! # Quick Start
//!
//! ## Authentication
//!
//! ```no_run
//! use salesforce_core::client::{self, Credentials};
//!
//! # #[tokio::main]
//! # async fn main() -> Result<(), Box<dyn std::error::Error>> {
//! let auth_client = client::Builder::new()
//! .credentials(Credentials {
//! client_id: "...".to_string(),
//! client_secret: Some("...".to_string()),
//! username: None,
//! password: None,
//! instance_url: "https://your-instance.salesforce.com".to_string(),
//! tenant_id: "...".to_string(),
//! })
//! .build()?
//! .connect()
//! .await?;
//! # Ok(())
//! # }
//! ```
//!
//! ## SObject REST API
//!
//! ```no_run
//! use salesforce_core::client::{self, Credentials};
//! use salesforce_core::restapi::ClientBuilder;
//! use serde_json::json;
//!
//! # #[tokio::main]
//! # async fn main() -> Result<(), Box<dyn std::error::Error>> {
//! # let auth_client = client::Builder::new()
//! # .credentials(Credentials {
//! # client_id: "...".to_string(),
//! # client_secret: Some("...".to_string()),
//! # username: None,
//! # password: None,
//! # instance_url: "https://localhost".to_string(),
//! # tenant_id: "...".to_string(),
//! # })
//! # .build()?
//! # .connect()
//! # .await?;
//! let rest_client = ClientBuilder::new(auth_client).build()?;
//!
//! // Create a record
//! let data = json!({
//! "Name": "Acme Corporation",
//! "Industry": "Technology"
//! });
//! let record_id = rest_client.create("Account", data).await?;
//! # Ok(())
//! # }
//! ```
//!
//! ## Bulk API 2.0
//!
//! ```no_run
//! use salesforce_core::client::{self, Credentials};
//! use salesforce_core::bulkapi::{ClientBuilder, CreateQueryJobRequest, QueryOperation};
//!
//! # #[tokio::main]
//! # async fn main() -> Result<(), Box<dyn std::error::Error>> {
//! # let auth_client = client::Builder::new()
//! # .credentials(Credentials {
//! # client_id: "...".to_string(),
//! # client_secret: Some("...".to_string()),
//! # username: None,
//! # password: None,
//! # instance_url: "https://localhost".to_string(),
//! # tenant_id: "...".to_string(),
//! # })
//! # .build()?
//! # .connect()
//! # .await?;
//! let bulk_client = ClientBuilder::new(auth_client).build()?;
//!
//! // Create a query job
//! let job = bulk_client
//! .query()
//! .create_job(&CreateQueryJobRequest {
//! operation: QueryOperation::Query,
//! query: "SELECT Id, Name FROM Account LIMIT 10".to_string(),
//! content_type: None,
//! column_delimiter: None,
//! line_ending: None,
//! })
//! .await?;
//! # Ok(())
//! # }
//! ```
//!
//! ## Tooling API
//!
//! ```no_run
//! use salesforce_core::client::{self, Credentials};
//! use salesforce_core::toolingapi::{
//! ClientBuilder, CreateManagedEventSubscriptionRequest,
//! ManagedEventSubscriptionMetadata, ReplayPreset, SubscriptionState,
//! };
//!
//! # #[tokio::main]
//! # async fn main() -> Result<(), Box<dyn std::error::Error>> {
//! # let auth_client = client::Builder::new()
//! # .credentials(Credentials {
//! # client_id: "...".to_string(),
//! # client_secret: Some("...".to_string()),
//! # username: None,
//! # password: None,
//! # instance_url: "https://localhost".to_string(),
//! # tenant_id: "...".to_string(),
//! # })
//! # .build()?
//! # .connect()
//! # .await?;
//! let tooling_client = ClientBuilder::new(auth_client).build()?;
//!
//! // Create managed event subscription
//! let subscription = CreateManagedEventSubscriptionRequest {
//! full_name: "Managed_Sub_AccountChangeEvent".to_string(),
//! metadata: ManagedEventSubscriptionMetadata {
//! label: "Account Change Events".to_string(),
//! topic_name: "/data/AccountChangeEvent".to_string(),
//! default_replay: ReplayPreset::Latest,
//! state: SubscriptionState::Run,
//! error_recovery_replay: ReplayPreset::Latest,
//! },
//! };
//! let response = tooling_client.create_managed_event_subscription(subscription).await?;
//! # Ok(())
//! # }
//! ```
//!
//! ## Pub/Sub API
//!
//! ```no_run
//! use salesforce_core::client::{self, Credentials};
//! use salesforce_core::pubsubapi::{Client as PubSubClient, ManagedFetchRequest};
//!
//! # #[tokio::main]
//! # async fn main() -> Result<(), Box<dyn std::error::Error>> {
//! # let auth_client = client::Builder::new()
//! # .credentials(Credentials {
//! # client_id: "...".to_string(),
//! # client_secret: Some("...".to_string()),
//! # username: None,
//! # password: None,
//! # instance_url: "https://localhost".to_string(),
//! # tenant_id: "...".to_string(),
//! # })
//! # .build()?
//! # .connect()
//! # .await?;
//! let channel = tonic::transport::Channel::from_static(salesforce_core::pubsubapi::ENDPOINT)
//! .connect()
//! .await?;
//!
//! let mut pubsub_client = PubSubClient::new(channel, auth_client)?;
//!
//! let request = ManagedFetchRequest {
//! developer_name: "Managed_Sub_AccountChangeEvent".to_string(),
//! num_requested: 100,
//! ..Default::default()
//! };
//!
//! let stream = pubsub_client.managed_subscribe(request).await?;
//! // Process events from stream...
//! # Ok(())
//! # }
//! ```
/// Default Salesforce API version (Winter '26 - API version 65.0).
pub const DEFAULT_API_VERSION: &str = "65.0";
/// Default connection timeout for HTTP requests (30 seconds).
pub const DEFAULT_CONNECT_TIMEOUT_SECS: u64 = 30;
/// Default request timeout for HTTP requests (120 seconds).
///
/// This longer timeout is appropriate for bulk operations which may take longer to process.
pub const DEFAULT_REQUEST_TIMEOUT_SECS: u64 = 120;
/// Default connection timeout for OAuth2 authentication requests (15 seconds).
pub const DEFAULT_AUTH_CONNECT_TIMEOUT_SECS: u64 = 15;
/// Default request timeout for OAuth2 authentication requests (30 seconds).
pub const DEFAULT_AUTH_REQUEST_TIMEOUT_SECS: u64 = 30;
/// Default TCP keepalive interval (60 seconds).
pub const DEFAULT_TCP_KEEPALIVE_SECS: u64 = 60;
/// Default connection pool idle timeout (90 seconds).
pub const DEFAULT_POOL_IDLE_TIMEOUT_SECS: u64 = 90;
/// Default maximum idle connections per host (10).
pub const DEFAULT_POOL_MAX_IDLE_PER_HOST: usize = 10;
/// OAuth2 client authentication and connection management.
/// Salesforce Pub/Sub API for real-time event streaming.
/// Salesforce Bulk API 2.0 for querying and ingesting large data sets.
/// Salesforce REST API for SObject operations, queries, and searches.
/// Salesforce Tooling API for metadata operations.
/// Shared HTTP client utilities.
pub