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
//! Agent-facing payment tool builders backed by the canonical commerce kernel.
//!
//! Every tool in this module returns only masked structured outputs via
//! [`SafeTransactionSummary`](crate::domain::SafeTransactionSummary) and
//! redacted JSON. Raw sensitive payment data never appears in tool results.
//!
//! # Supported operations
//!
//! | Tool | Scope | Description |
//! |------|-------|-------------|
//! | `payments_checkout_create` | `payments:checkout:create` | Create a new checkout session |
//! | `payments_checkout_update` | `payments:checkout:update` | Update cart or fulfillment |
//! | `payments_checkout_complete` | `payments:checkout:complete` | Finalize and produce an order |
//! | `payments_checkout_cancel` | `payments:checkout:cancel` | Cancel a checkout or transaction |
//! | `payments_status_lookup` | `payments:checkout:create` | Look up transaction status |
//! | `payments_intervention_continue` | `payments:intervention:continue` | Resume an intervention |
//!
//! # Example
//!
//! ```rust,ignore
//! use adk_payments::tools::PaymentToolsetBuilder;
//!
//! let toolset = PaymentToolsetBuilder::new(checkout_service, transaction_store)
//! .with_intervention_service(intervention_service)
//! .build();
//! let tools = toolset.tools();
//! ```
pub use ;
pub use continue_intervention_tool;
pub use status_lookup_tool;
pub use ;