Skip to content

Releases: lithic-com/lithic-java

v0.11.4

Choose a tag to compare

@stainless-bot stainless-bot released this 27 Jul 13:22

0.11.4 (2023-07-27)

Features

  • api: add with_content param (#31) (fd23dc0)
  • api: add payment and external bank accounts resource (#37) (ab49de5)
  • api: add with_content param, event message attempts, and auto-close responses (d2c7e81)
  • ci: add a publish-sonatype workflow for manual running (#38) (d9979a3)

Bug Fixes

  • auto-close responses even if an exception is thrown during deserialization (#33) (e2f7088)

Chores

  • internal: add codegen.log to .gitignore (#35) (2233014)

v0.11.3

Choose a tag to compare

@stainless-bot stainless-bot released this 18 Jul 22:34

0.11.3 (2023-07-18)

Features

v0.11.2

Choose a tag to compare

@stainless-bot stainless-bot released this 17 Jul 16:44

0.11.2 (2023-07-17)

Features

  • api: add more enum members to event types (#22) (3c3d46f)
  • api: no longer require website_url property on KYB object (#26) (8db563f)

Chores

  • internal: minor reformatting (#25) (df89dd4)
  • internal: minor reformatting + remove internal examples classes (#24) (f73d039)

v0.11.1

Choose a tag to compare

@stainless-bot stainless-bot released this 12 Jul 11:16

0.11.1 (2023-07-12)

Features

  • api: add state query param for cards (#19) (42a3e58)
  • api: add digital wallet tokenization result event type (#20) (0deca73)

Documentation

  • webhooks: clarify webhook signature validation (#17) (e3f6cbb)

v0.11.0

Choose a tag to compare

@stainless-bot stainless-bot released this 05 Jul 15:43

0.11.0 (2023-07-05)

⚠ BREAKING CHANGES

  • api: remove previous_auth_rule_tokens from auth rules (#15)

Documentation

Refactors

  • api: remove previous_auth_rule_tokens from auth rules (#15) (32207a1)

v0.10.1

Choose a tag to compare

@stainless-bot stainless-bot released this 19 Jun 10:51

0.10.1 (2023-06-19)

Documentation

  • api: clarify dispute evidence filename docstring (#7) (adf74fb)

v0.10.0

Choose a tag to compare

@stainless-bot stainless-bot released this 15 Jun 21:27

0.10.0 (2023-06-15)

⚠ BREAKING CHANGES

  • api: remove avs_type property, add dispute evidence filename, and mark properties nullable (#5)

Features

  • add JsonValue.convert method (b144666)
  • api: remove avs_type property, add dispute evidence filename, and mark properties nullable (#5) (47fd0cf)
  • core: add asUnknown to JsonField (a1105cc)
  • pagination: improve handling of response types (812da74)

Chores

  • internal: add explicit type annotations to validate() (baffee8)
  • internal: added version comment (5dfad4d)
  • internal: cleaner asUnknown implementation (62ea0dd)
  • internal: remove unused check-test-server script (c807ab7)

Documentation

  • api: update docstrings (67aa800)
  • point to github repo instead of email contact (#4) (9143442)

v0.9.0

Choose a tag to compare

@stainless-bot stainless-bot released this 12 May 15:37

refactor(api)!: replace transactionToken param in favour of transa… …ctionTokens

Replaces transactionToken param in favour of transactionTokens.

Migration

The transactionTokens query param now accepts a list of transaction tokens instead of a single transaction token.

Before:
DisputeListParams.builder().transactionToken("<token>")

After:
DisputeListParams.builder().transactionTokens(listOf("<token>"))

v0.8.0

Choose a tag to compare

@stainless-bot stainless-bot released this 11 May 21:21

Breaking Changes

Rename nested parameter & page classes to use singular instead of plural. The following types have been renamed:

  • Rename com.lithic.api.models.EventsSubscriptionCreateParams
    to com.lithic.api.models.EventSubscriptionCreateParams
  • Rename com.lithic.api.models.EventsSubscriptionDeleteParams
    to com.lithic.api.models.EventSubscriptionDeleteParams
  • Rename com.lithic.api.models.EventsSubscriptionListPageAsync
    to com.lithic.api.models.EventSubscriptionListPageAsync
  • Rename com.lithic.api.models.EventsSubscriptionListPage
    to com.lithic.api.models.EventSubscriptionListPage
  • Rename com.lithic.api.models.EventsSubscriptionListParams
    to com.lithic.api.models.EventSubscriptionListParams
  • Rename com.lithic.api.models.EventsSubscriptionRecoverParams
    to com.lithic.api.models.EventSubscriptionRecoverParams
  • Rename com.lithic.api.models.EventsSubscriptionReplayMissingParams
    to com.lithic.api.models.EventSubscriptionReplayMissingParams
  • Rename com.lithic.api.models.EventsSubscriptionRetrieveParams
    to com.lithic.api.models.EventSubscriptionRetrieveParams
  • Rename com.lithic.api.models.EventsSubscriptionRetrieveSecretParams
    to com.lithic.api.models.EventSubscriptionRetrieveSecretParams
  • Rename com.lithic.api.models.EventsSubscriptionRotateSecretParams
    to com.lithic.api.models.EventSubscriptionRotateSecretParams
  • Rename com.lithic.api.models.EventsSubscriptionUpdateParams
    to com.lithic.api.models.EventSubscriptionUpdateParams
  • Rename com.lithic.api.models.FinancialAccountsBalanceListPageAsync
    to com.lithic.api.models.FinancialAccountBalanceListPageAsync
  • Rename com.lithic.api.models.FinancialAccountsBalanceListPage
    to com.lithic.api.models.FinancialAccountBalanceListPage
  • Rename com.lithic.api.models.FinancialAccountsBalanceListParams
    to com.lithic.api.models.FinancialAccountBalanceListParams
  • Rename com.lithic.api.models.FinancialAccountsFinancialTransactionListPageAsync
    to com.lithic.api.models.FinancialTransactionListPageAsync
  • Rename com.lithic.api.models.FinancialAccountsFinancialTransactionListPage
    to com.lithic.api.models.FinancialTransactionListPage
  • Rename com.lithic.api.models.FinancialAccountsFinancialTransactionListParams
    to com.lithic.api.models.FinancialTransactionListParams
  • Rename com.lithic.api.models.FinancialAccountsFinancialTransactionRetrieveParams
    to com.lithic.api.models.FinancialTransactionRetrieveParams

Other Changes

  • fix: correctly send event_types[] query param
  • feat: add methods to convert between sync and async clients

v0.7.0

Choose a tag to compare

@stainless-bot stainless-bot released this 25 Apr 15:53

Breaking change: AccountHolderCreateParams.Kyb & AccountHolderCreateParams.Kyc have been moved to their own classes, you should now use them directly, e.g. Kyb.builder()

  • set default account holder create timeout to 5 minutes
  • adds balances, aggregate balances, financial accounts & responder endpoints APIs
  • miscellaneous API updates
  • adds support for proxies