Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.17.0"
".": "0.18.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 214
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic/lithic-185b3d93b4e6ed5ae02c32f0bc9133b0ac99dcd1263a12b7aa9ba64e71a5461e.yml
openapi_spec_hash: 2418116f58a464afdd5611865e860d30
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic/lithic-47e9f78d22682623e313f1689f5fa7e3420575ff285a14a2f4704c49ffb6b72e.yml
openapi_spec_hash: 4797fe46d942cb32e648a79015783d01
config_hash: 5bb913c05ebeb301ec925b16e75bb251
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.18.0 (2026-06-23)

Full Changelog: [v0.17.0...v0.18.0](https://github.com/lithic-com/lithic-ruby/compare/v0.17.0...v0.18.0)

### Features

* **api:** Register dispute intake webhook events ([a087b3b](https://github.com/lithic-com/lithic-ruby/commit/a087b3bddff381d51dc2c6fa89cadae9855ac6a9))


### Bug Fixes

* **api:** Sync templated rule features with authorizer external feature set ([2812623](https://github.com/lithic-com/lithic-ruby/commit/2812623bab59b68a8a1de32b149153567fa5d3ea))

## 0.17.0 (2026-06-22)

Full Changelog: [v0.16.0...v0.17.0](https://github.com/lithic-com/lithic-ruby/compare/v0.16.0...v0.17.0)
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ GIT
PATH
remote: .
specs:
lithic (0.17.0)
lithic (0.18.0)
cgi
connection_pool

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ To use this gem, install via Bundler by adding the following to your application
<!-- x-release-please-start-version -->

```ruby
gem "lithic", "~> 0.17.0"
gem "lithic", "~> 0.18.0"
```

<!-- x-release-please-end -->
Expand Down
5 changes: 5 additions & 0 deletions lib/lithic.rb
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,11 @@
require_relative "lithic/models/card_web_provision_response"
require_relative "lithic/models/carrier"
require_relative "lithic/models/category_details"
require_relative "lithic/models/claim_created_webhook_event"
require_relative "lithic/models/claim_document_accepted_webhook_event"
require_relative "lithic/models/claim_document_rejected_webhook_event"
require_relative "lithic/models/claim_document_uploaded_webhook_event"
require_relative "lithic/models/claim_updated_webhook_event"
require_relative "lithic/models/client_api_status_params"
require_relative "lithic/models/credit_products/extended_credit"
require_relative "lithic/models/credit_products/extended_credit_retrieve_params"
Expand Down
10 changes: 10 additions & 0 deletions lib/lithic/models.rb
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,16 @@ module Lithic

CategoryDetails = Lithic::Models::CategoryDetails

ClaimCreatedWebhookEvent = Lithic::Models::ClaimCreatedWebhookEvent

ClaimDocumentAcceptedWebhookEvent = Lithic::Models::ClaimDocumentAcceptedWebhookEvent

ClaimDocumentRejectedWebhookEvent = Lithic::Models::ClaimDocumentRejectedWebhookEvent

ClaimDocumentUploadedWebhookEvent = Lithic::Models::ClaimDocumentUploadedWebhookEvent

ClaimUpdatedWebhookEvent = Lithic::Models::ClaimUpdatedWebhookEvent

ClientAPIStatusParams = Lithic::Models::ClientAPIStatusParams

CreditProducts = Lithic::Models::CreditProducts
Expand Down
Loading