[ 'enabled' => env('BAGISTOAPI_EXPRESS_CHECKOUT_ENABLED', true), 'cancel_without_address' => env('BAGISTOAPI_EXPRESS_CANCEL_WITHOUT_ADDRESS', 'cancel'), 'placeholder_address' => [ 'first_name' => 'Express', 'last_name' => 'Checkout', 'email' => 'express-checkout@placeholder.local', 'address' => 'Pending gateway response', 'city' => 'Pending', 'state' => 'Pending', 'country' => 'US', 'postcode' => '00000', 'phone' => '0000000000', ], ], /* |-------------------------------------------------------------------------- | Frontend URLs |-------------------------------------------------------------------------- | | frontend.reset_password_url | Generic base URL of the reset-password page on the headless frontend, | e.g. https://shop.example.com/reset-password. Used when no device | specific URL below is configured. | | frontend.reset_password_url_pc / frontend.reset_password_url_mobile | Device specific base URLs. PC requests use reset_password_url_pc, | mobile requests use reset_password_url_mobile (detected from the | X-Device-Type header or the User-Agent). | | The token and email are appended as query parameters | (?token=...&email=...). When every option is empty, emails fall back to | the built-in Shop storefront page. */ 'frontend' => [ 'reset_password_url' => env('FRONTEND_RESET_PASSWORD_URL', ''), 'reset_password_url_pc' => env('FRONTEND_RESET_PASSWORD_URL_PC', ''), 'reset_password_url_mobile' => env('FRONTEND_RESET_PASSWORD_URL_MOBILE', ''), ], /* |-------------------------------------------------------------------------- | Payment Reconciliation Job |-------------------------------------------------------------------------- | | reconcile.enabled | Toggle the delayed reconciliation job that polls the gateway after | `delay_minutes` if the order is still PENDING. | | reconcile.delay_minutes | How long to wait before a pending order is reconciled against the | gateway. | | reconcile.queue | Name of the queue the reconciliation job is dispatched onto. Operators | can route this to a dead-letter capable broker (e.g. RabbitMQ) via the | Laravel queue config without touching code. */ 'reconcile' => [ 'enabled' => env('BAGISTOAPI_PAYMENT_RECONCILE_ENABLED', true), 'delay_minutes' => (int) env('BAGISTOAPI_PAYMENT_RECONCILE_DELAY', 15), 'queue' => env('BAGISTOAPI_PAYMENT_RECONCILE_QUEUE', 'payment-reconcile'), ], ];