- Implemented the sources resource and
added the
Source
type .
- The
CustomerSourceParams
struct was renamed toPaymentSourceParams
. - The
Source
enum was renamed toPaymentSource
(there is a newSource
struct). - Source and token fields (like
token: &str
) now usesource: SourceId
ortoken: TokenId
instead.
- Added missing
default_source
field toCustomer
. - The
Deserialize
andSerialize
traits have now been implemented for all param and resource structs. - The
Copy
,Clone
,Eq
,PartialEq
, andHash
traits have been derived for flat enum types.
- Fix, adds all missing error code variants to
stripe::error::ErrorCode
.
- Fixed field
nickname
ofPlan
can be null.
- Fixed field
nickname
ofPlan
should bename
- The
balance_transaction
field ofCharge
is nowOption<_>
.
- Added basic crate documentation
- Added the
invoice.upcoming
event
- Add RangeQuery struct for created/date filters in list requests
- Implement
Customer::list
request (ie. "GET /customers"); Thanks @pocket7878 - Add missing params to
InvoiceListParams
forInvoice::list
- Upgrade Serde to v1.0
- Add support for authentication using the Stripe-Account header
- Implement
Event
struct for implementing a Stripe Webhook (only some events) - Implement
Invoice::update
request (ie. POST "/invoices/{invoice_id}") - Implement
InvoiceItem::create
request (ie. POST "/invoiceitems") - Fix
Subscription::cancel
request (previously used wrong method/path)
- Implemented the
Invoice::list
API (ie. "/invoices") - Fixed a request encoding error for
Invoice::pay
(ie. "/invoices/{invoice_id}/pay") - Fixed fields on
Subscription
that could be null but were missingOptional<..>
- Added missing
last4
field toCard
resource - Changed the repository URL
- Made rust docs slightly easier to read
- Fixed incorrect method name for
Plan
resource - Use
native-tls
by default and add feature-flag supportingopenssl
- Implemented the charges resource and
added the
Charge
type.
- The
Resource::get
requests have been renamed toResource::retrieve
. - The
Subscription::cancel
request now expectsCancelParams
instead of expecting a one-off function argument. - Removed the
blame
method andBlame
type from errors. - The
Error::Decode
andError::Encode
variants have been combined into a singleError::Conversion
variant.
- The
Error
type now has easier to read error messages and will parses JSON errors returned by Stripe into a structured error type (RequestError
). - Added Travis CI for automated testing on GitHub.
- Added reference documentation to implemented resources (but still no docs at crate/module level nor a "Getting started" guide)
- Added
Client
which is created once with a stripe private key and is intended to be re-used for multiple requests. It implementsSync
so you can share it among multiple threads. - Added new strongly-typed
Currency
type following the example of https://github.com/stripe/stripe-go. Customer::create
/CustomerParams
now support usingCardParams
as a source instead of just tokens.- Implemented the sources API in the
Source
type.
- All
Params
types now use&str
fields instead ofString
s. - Requests used to require a
stripe_key: &str
as their final argument but now use a&Client
as the first argument instead. - Stripe tokens used to be directly used as a source in
CustomerParams
but now must be used withCustomerSourceParams::Token("tok_xyzABC123")
.
- Added remaining fields to
Params
types after switching fromserde_urlencoded
toserde_qs
to support nested params. - Added the
create_customer
example - Types that implement
Deserialize
now also implementDebug
. - Types that implement
Serialize
now also implementDefault
.