PackageTrack
Sign in Get early access

adyen_api

A comprehensive Dart library for integrating Adyen payment APIs, providing type-safe access to payment processing services for Flutter and Dart applications.

0.3.0 Lutra-Fs/adyen_api_dart

What this package is like to depend on

Last release 7 months ago

15 Jan 2026

Too new to tell

only 2 release windows

Nearly every release is documented

notes for 5 of 5 stable releases

Nothing withdrawn

no release was ever pulled

7 months old

5 releases · first in 2025

5 releases in the last 12 months

see the full history below

Release timeline

5 releases · Dec 2025 to Jan 2026
2026
Release Pre-release

Releases

latest 5
  1. 0.3.0 15 Jan 2026
    Release notes

    Added

    • Checkout: Added new models for checkout functionality
      • CheckoutForwardRequest - Request model for checkout forward operations
      • CheckoutForwardResponse - Response model for checkout forward operations
      • PaymentRequestPaymentMethod - Payment method details for payment requests
      • StoredPaymentMethodResource - Resource model for stored payment methods
    • Legal Entity: Added new models to support expanded legal entity management
      • Financier - Financier entity details
      • Support - Support contact information
      • TaxInformation - Tax-related information model

    Changed

    • Adyen API Specs: Updated OpenAPI specifications to latest versions
      • Checkout API: Added forward payment models and enhanced stored payment method details
      • Legal Entity API: Added support for new entity types (financier, trust, unincorporated partnership)
      • Transfers API: Enhanced transfer data models with additional fields and category data
      • Management API: Updated payment method models
      • StoredValue API: Minor field updates to amount model
    • CI: Use Personal Access Token for automated PRs
      • Configured openapi-codegen workflow to use AUTOMATION_PAT secret
      • Automated PRs now properly trigger CI checks (required by branch ruleset)
      • Tests run via normal CI workflow rather than codegen workflow
      • Requires creating AUTOMATION_PAT secret with repo permissions

    Pub.dev: Published at https://pub.dev/packages/adyen_api

    Open source →
    Release notes

    Added

    • Checkout: Added new models for checkout functionality
      • CheckoutForwardRequest - Request model for checkout forward operations
      • CheckoutForwardResponse - Response model for checkout forward operations
      • PaymentRequestPaymentMethod - Payment method details for payment requests
      • StoredPaymentMethodResource - Resource model for stored payment methods
    • Legal Entity: Added new models to support expanded legal entity management
      • Financier - Financier entity details
      • Support - Support contact information
      • TaxInformation - Tax-related information model

    Changed

    • Adyen API Specs: Updated OpenAPI specifications to latest versions
      • Checkout API: Added forward payment models and enhanced stored payment method details
      • Legal Entity API: Added support for new entity types (financier, trust, unincorporated partnership)
      • Transfers API: Enhanced transfer data models with additional fields and category data
      • Management API: Updated payment method models
      • StoredValue API: Minor field updates to amount model
    • CI: Use Personal Access Token for automated PRs
      • Configured openapi-codegen workflow to use AUTOMATION_PAT secret
      • Automated PRs now properly trigger CI checks (required by branch ruleset)
      • Tests run via normal CI workflow rather than codegen workflow
      • Requires creating AUTOMATION_PAT secret with repo permissions
    Open source →
  2. 0.2.0 04 Jan 2026
    Release notes

    Added

    • Documentation: Added project badges to README
      • Added CI status badge for GitHub Actions workflow
      • Added Pub.dev package version badge
      • Added Pub.dev points and popularity badges
    • Code Generation: Automatic yaml version bump detection
      • Added tool/codegen/detect_yaml_versions.sh to detect latest yaml versions from Adyen OpenAPI repo
      • Added tool/codegen/update_lock_file.sh to automatically update openapi.lock.json specs with new versions
      • Updated workflow to detect and update yaml version bumps automatically
      • Supports both versioned files (e.g., CheckoutService-v71.yaml) and non-versioned files

    Changed

    • Public API (Breaking): Narrowed exports from adyen_api.dart; terminal and model types are now exposed via *_models.dart (e.g. terminal_models.dart).
    • CI: Fixed release workflow tag trigger pattern
      • Corrected tag filter from 'v[0-9]+.[0-9]+.[0-9]+.*' to 'v[0-9]+.[0-9]+.[0-9]+*' to properly match semantic version tags (e.g., v1.0.0, v1.2.3-beta)

    Fixed

    • CI: Fixed OpenAPI codegen workflow path issues
      • Changed Docker volume mapping from host:workspace to host:/work to match script's default ROOT_DIR_DOCKER path
      • Changed clone directory from .openapi to .cache/openapi to align with script's OPENAPI_ROOT_DOCKER default
      • Resolves spec file not found errors in Docker container

    Pub.dev: Published at https://pub.dev/packages/adyen_api

    Open source →
    Release notes

    Added

    • Documentation: Added project badges to README
      • Added CI status badge for GitHub Actions workflow
      • Added Pub.dev package version badge
      • Added Pub.dev points and popularity badges
    • Code Generation: Automatic yaml version bump detection
      • Added tool/codegen/detect_yaml_versions.sh to detect latest yaml versions from Adyen OpenAPI repo
      • Added tool/codegen/update_lock_file.sh to automatically update openapi.lock.json specs with new versions
      • Updated workflow to detect and update yaml version bumps automatically
      • Supports both versioned files (e.g., CheckoutService-v71.yaml) and non-versioned files

    Changed

    • Public API (Breaking): Narrowed exports from adyen_api.dart; terminal and model types are now exposed via *_models.dart (e.g. terminal_models.dart).
    • CI: Fixed release workflow tag trigger pattern
      • Corrected tag filter from 'v[0-9]+.[0-9]+.[0-9]+.*' to 'v[0-9]+.[0-9]+.[0-9]+*' to properly match semantic version tags (e.g., v1.0.0, v1.2.3-beta)

    Fixed

    • CI: Fixed OpenAPI codegen workflow path issues
      • Changed Docker volume mapping from host:workspace to host:/work to match script's default ROOT_DIR_DOCKER path
      • Changed clone directory from .openapi to .cache/openapi to align with script's OPENAPI_ROOT_DOCKER default
      • Resolves spec file not found errors in Docker container
    Open source →
  3. 0.1.0 28 Dec 2025
    Release notes

    Added

    • CI: Integrated Codecov for test coverage tracking

      • Added coverage collection to CI workflow (dart test --coverage)
      • Added automatic upload to Codecov with codecov-action@v5
      • Added codecov.yml configuration with ignore rules for generated code
      • Added coverage badge to README.md
    • Testing: Added 160+ tests across all domains based on Java codebase reference

    • Testing: Enhanced test coverage for HTTP module

      • Added test/http/terminal_local/connection_options_test.dart - 6 tests for TerminalLocalConnectionOptions
      • Added test/http/terminal_local/connection_factory_test.dart - 7 tests for connection factory
      • Added test/http/terminal_local/sni_config_test.dart - 5 tests for SNI configuration
      • Added test/http/client/default_client_test.dart - 10 tests for DefaultHttpClient (including redirect hostname validation)
      • Added test/http/client/terminal_local_client_test.dart - 3 tests for TerminalLocalHttpClient
      • Added test/http/exceptions/exception_parser_test.dart - 36 tests for exception parsing
      • Total: 67 new tests improving coverage across terminal_local (from 3.57%), client (from 54.70%), and exceptions (from 70.97%)
      • test/security/nexo_crypto_test.dart - NEXO cryptographic operations
      • test/mocks/ - Reusable mock data templates (common responses, errors, terminal)
      • Balance Platform: +31 tests
      • Checkout/Payment: +32 tests
      • Terminal & POS: +20+ tests
      • Management/Legal Entity: +13 tests
      • Webhooks: +12 tests
      • Data Services: +6 tests
      • Specialized Services: +10 tests

    Changed

    • Testing: Unified test assertion style (replaced try-catch-fail with expectLater + throwsA)
    • Project: Updated project rules and documentation
      • Updated dart version requirement to target latest version using fvm
      • Clarified dart command execution using fvm dart <command>
      • Added verification requirements for dart format, dart analyze, and dart test
      • Added CHANGELOG.md update requirement using "Keep a Changelog" format

    Fixed

    • Testing: Fixed browser compatibility for HMAC validator and notification webhook tests

      • Inlined JSON fixture data to remove dart:io file system dependencies
      • Removed @TestOn('vm') platform restrictions, enabling tests to run on both VM and Chrome
      • Deleted obsolete fixture files from test/fixtures/notification/
    • Code Organization: Refactored HTTP module structure for improved maintainability

      • Reorganized into subdirectories: client/, exceptions/, headers/, models/, terminal_local/, dio/
      • Renamed RequestOptions to AdyenRequestOptions to avoid naming conflicts with Dio
    • CI: Added ripgrep installation to resolve rg: command not found warnings in generate_model_exports.sh


    Pub.dev: Published at https://pub.dev/packages/adyen_api

    Open source →
    Release notes

    Added

    • CI: Integrated Codecov for test coverage tracking

      • Added coverage collection to CI workflow (dart test --coverage)
      • Added automatic upload to Codecov with codecov-action@v5
      • Added codecov.yml configuration with ignore rules for generated code
      • Added coverage badge to README.md
    • Testing: Added 160+ tests across all domains based on Java codebase reference

    • Testing: Enhanced test coverage for HTTP module

      • Added test/http/terminal_local/connection_options_test.dart - 6 tests for TerminalLocalConnectionOptions
      • Added test/http/terminal_local/connection_factory_test.dart - 7 tests for connection factory
      • Added test/http/terminal_local/sni_config_test.dart - 5 tests for SNI configuration
      • Added test/http/client/default_client_test.dart - 10 tests for DefaultHttpClient (including redirect hostname validation)
      • Added test/http/client/terminal_local_client_test.dart - 3 tests for TerminalLocalHttpClient
      • Added test/http/exceptions/exception_parser_test.dart - 36 tests for exception parsing
      • Total: 67 new tests improving coverage across terminal_local (from 3.57%), client (from 54.70%), and exceptions (from 70.97%)
      • test/security/nexo_crypto_test.dart - NEXO cryptographic operations
      • test/mocks/ - Reusable mock data templates (common responses, errors, terminal)
      • Balance Platform: +31 tests
      • Checkout/Payment: +32 tests
      • Terminal & POS: +20+ tests
      • Management/Legal Entity: +13 tests
      • Webhooks: +12 tests
      • Data Services: +6 tests
      • Specialized Services: +10 tests

    Changed

    • Testing: Unified test assertion style (replaced try-catch-fail with expectLater + throwsA)
    • Project: Updated project rules and documentation
      • Updated dart version requirement to target latest version using fvm
      • Clarified dart command execution using fvm dart <command>
      • Added verification requirements for dart format, dart analyze, and dart test
      • Added CHANGELOG.md update requirement using "Keep a Changelog" format

    Fixed

    • Testing: Fixed browser compatibility for HMAC validator and notification webhook tests

      • Inlined JSON fixture data to remove dart:io file system dependencies
      • Removed @TestOn('vm') platform restrictions, enabling tests to run on both VM and Chrome
      • Deleted obsolete fixture files from test/fixtures/notification/
    • Code Organization: Refactored HTTP module structure for improved maintainability

      • Reorganized into subdirectories: client/, exceptions/, headers/, models/, terminal_local/, dio/
      • Renamed RequestOptions to AdyenRequestOptions to avoid naming conflicts with Dio
    • CI: Added ripgrep installation to resolve rg: command not found warnings in generate_model_exports.sh

    Open source →
  4. 0.0.2 27 Dec 2025
    Release notes

    Fixed

    • Webhook API imports: Fixed broken import statements in all webhook API files caused by openapi-generator's incorrect handling of webhooks: in OpenAPI specs. Affected files include:

      • webhook_acs, webhook_balance, webhook_configuration, webhook_dispute
      • webhook_management, webhook_negative_balance, webhook_notification
      • webhook_platforms_notifications, webhook_report, webhook_tokenization
      • webhook_transaction, webhook_transfer
    • Added post-processing script to tool/codegen/generate.sh to automatically fix webhook imports during code generation.

    • CI/CD: Fixed YAML indentation in .github/workflows/release.yml to ensure GitHub Actions workflow triggers correctly on version tags, added environment: pub.dev protection for the publish job, and added workflow_dispatch trigger for manual workflow execution.

    Changed

    • Dependencies: Updated to latest stable versions
      • built_value: 8.9.2 → 8.12.1
      • crypto: 3.0.3 → 3.0.7
      • dio: 5.7.0 → 5.9.0
      • pointycastle: >=3.9.1 <5.0.0 → 4.0.0
      • build_runner: 2.4.11 → 2.10.4
      • test: 1.25.6 → 1.28.0

    Pub.dev: Published at https://pub.dev/packages/adyen_api

    Open source →
    Release notes

    Fixed

    • Webhook API imports: Fixed broken import statements in all webhook API files caused by openapi-generator's incorrect handling of webhooks: in OpenAPI specs. Affected files include:

      • webhook_acs, webhook_balance, webhook_configuration, webhook_dispute
      • webhook_management, webhook_negative_balance, webhook_notification
      • webhook_platforms_notifications, webhook_report, webhook_tokenization
      • webhook_transaction, webhook_transfer
    • Added post-processing script to tool/codegen/generate.sh to automatically fix webhook imports during code generation.

    • CI/CD: Fixed YAML indentation in .github/workflows/release.yml to ensure GitHub Actions workflow triggers correctly on version tags, added environment: pub.dev protection for the publish job, and added workflow_dispatch trigger for manual workflow execution.

    Changed

    • Dependencies: Updated to latest stable versions
      • built_value: 8.9.2 → 8.12.1
      • crypto: 3.0.3 → 3.0.7
      • dio: 5.7.0 → 5.9.0
      • pointycastle: >=3.9.1 <5.0.0 → 4.0.0
      • build_runner: 2.4.11 → 2.10.4
      • test: 1.25.6 → 1.28.0
    Open source →
  5. 0.0.1 27 Dec 2025
    Release notes

    Added

    Initial release of adyen_api - A type-safe Dart library for Adyen payment APIs.

    Core Features:

    • Pure Dart implementation - no native dependencies, works across Flutter, web, server, and CLI
    • Full type safety with BuiltValue serialization
    • Comprehensive API coverage from official Adyen OpenAPI specifications

    Supported APIs:

    • Checkout & Payments (Checkout, Payment, Recurring, Payout)
    • Terminal APIs (Local, Cloud, Management) with NEXO encryption
    • Balance Platform (Control, Platform)
    • Additional services: BinLookup, Disputes, DataProtection, LegalEntity, OpenBanking, StoredValue, Transfers, Platforms, POSMobile, PaymentsApp, SessionAuthentication

    Webhook Support:

    • Complete handlers for all Adyen webhook types (transaction, balance, configuration, dispute, tokenization, transfer, management, etc.)
    • HMAC signature validation utilities

    Developer Experience:

    • Configurable Client with environment (test/live) and region support
    • HTTP client based on Dio
    • Comprehensive test suite with mocking support
    • Code generation pipeline from OpenAPI specs

    Pub.dev: Published at https://pub.dev/packages/adyen_api

    Open source →
    Release notes

    Added

    Initial release of adyen_api - A type-safe Dart library for Adyen payment APIs.

    Core Features:

    • Pure Dart implementation - no native dependencies, works across Flutter, web, server, and CLI
    • Full type safety with BuiltValue serialization
    • Comprehensive API coverage from official Adyen OpenAPI specifications

    Supported APIs:

    • Checkout & Payments (Checkout, Payment, Recurring, Payout)
    • Terminal APIs (Local, Cloud, Management) with NEXO encryption
    • Balance Platform (Control, Platform)
    • Additional services: BinLookup, Disputes, DataProtection, LegalEntity, OpenBanking, StoredValue, Transfers, Platforms, POSMobile, PaymentsApp, SessionAuthentication

    Webhook Support:

    • Complete handlers for all Adyen webhook types (transaction, balance, configuration, dispute, tokenization, transfer, management, etc.)
    • HMAC signature validation utilities

    Developer Experience:

    • Configurable Client with environment (test/live) and region support
    • HTTP client based on Dio
    • Comprehensive test suite with mocking support
    • Code generation pipeline from OpenAPI specs
    Open source →

Every package, every release, already written down.

The archive is open and free. Watching your own project is what we are building next.

Browse the archive