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
//! # Hermes SDK
//!
//! Open source Rust SDKs for eBay, Etsy, and other marketplace APIs.
//!
//! ## Features
//!
//! - **eBay APIs**: Complete coverage of eBay Buy, Sell, and Commerce APIs
//! - **Etsy APIs**: Full Etsy marketplace API integration
//! - **Stripe APIs**: Payment processing and subscription management
//! - **Async/Await**: Built on Tokio for high-performance async operations
//! - **Type Safety**: Full type safety with generated models
//! - **Error Handling**: Comprehensive error types and handling
//!
//! ## Quick Start
//!
//! ```rust
//! use hermes_sdk::ebay::EbayClient;
//! use hermes_sdk::config::EbayConfig;
//!
//! #[tokio::main]
//! async fn main() -> Result<(), Box<dyn std::error::Error>> {
//! let config = EbayConfig::new()
//! .with_app_id("your-app-id")
//! .with_cert_id("your-cert-id")
//! .with_sandbox(true);
//!
//! let mut client = EbayClient::new(config)?;
//!
//! // Search for items
//! let items = client.search_items("laptop", Some(50)).await?;
//! println!("Found {} items", items.item_summaries.len());
//!
//! Ok(())
//! }
//! ```
//!
//! ## License
//!
//! MIT License - see LICENSE file for details.
// TODO: Enable when SDKs are ready
// pub mod etsy;
// pub mod stripe;
// Re-export commonly used types
pub use EbayClient;
pub use ;
pub use ;
/// Result type for Hermes SDK operations
pub type Result<T> = ;