@delopay/sdk 0.118.0 → 0.119.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -527,14 +527,19 @@ interface PaymentAttemptsListResponse {
527
527
  /**
528
528
  * Which entity a status-history event belongs to.
529
529
  *
530
- * `risk` and `checkout` are timeline events with no underlying status change:
531
- * `risk` carries a processor risk signal (early fraud warning, manual review)
532
- * and `checkout` a buyer-side checkout event (native-pane selection, external
533
- * tab opened/blocked, abandonment). For both, `status` holds the event name
534
- * rather than a payment state, and `entity_id` names what it is about (the
535
- * processor's signal id, or the native-pane method key).
536
- */
537
- type PaymentStatusHistoryEntityType = 'payment' | 'attempt' | 'refund' | 'dispute' | 'risk' | 'checkout';
530
+ * `risk`, `checkout` and `routing` are timeline events with no underlying
531
+ * status change: `risk` carries a processor risk signal (early fraud warning,
532
+ * manual review), `checkout` a buyer-side checkout event (native-pane
533
+ * selection, external tab opened/blocked, abandonment), and `routing` a rail
534
+ * handover the payment settled on a different provider than the one that
535
+ * last failed on the same attempt, which happens when a buyer falls back to
536
+ * the card form after a native pane errors. For all three, `status` holds the
537
+ * event name rather than a payment state, and `entity_id` names what it is
538
+ * about (the processor's signal id, the native-pane method key, or the
539
+ * connector the payment moved away from — with `connector` naming the one
540
+ * that settled it).
541
+ */
542
+ type PaymentStatusHistoryEntityType = 'payment' | 'attempt' | 'refund' | 'dispute' | 'risk' | 'checkout' | 'routing';
538
543
  /**
539
544
  * One event on a payment's status timeline: the creation of, or a status
540
545
  * transition on, the payment intent or one of its attempts / refunds /
package/dist/index.d.ts CHANGED
@@ -527,14 +527,19 @@ interface PaymentAttemptsListResponse {
527
527
  /**
528
528
  * Which entity a status-history event belongs to.
529
529
  *
530
- * `risk` and `checkout` are timeline events with no underlying status change:
531
- * `risk` carries a processor risk signal (early fraud warning, manual review)
532
- * and `checkout` a buyer-side checkout event (native-pane selection, external
533
- * tab opened/blocked, abandonment). For both, `status` holds the event name
534
- * rather than a payment state, and `entity_id` names what it is about (the
535
- * processor's signal id, or the native-pane method key).
536
- */
537
- type PaymentStatusHistoryEntityType = 'payment' | 'attempt' | 'refund' | 'dispute' | 'risk' | 'checkout';
530
+ * `risk`, `checkout` and `routing` are timeline events with no underlying
531
+ * status change: `risk` carries a processor risk signal (early fraud warning,
532
+ * manual review), `checkout` a buyer-side checkout event (native-pane
533
+ * selection, external tab opened/blocked, abandonment), and `routing` a rail
534
+ * handover the payment settled on a different provider than the one that
535
+ * last failed on the same attempt, which happens when a buyer falls back to
536
+ * the card form after a native pane errors. For all three, `status` holds the
537
+ * event name rather than a payment state, and `entity_id` names what it is
538
+ * about (the processor's signal id, the native-pane method key, or the
539
+ * connector the payment moved away from — with `connector` naming the one
540
+ * that settled it).
541
+ */
542
+ type PaymentStatusHistoryEntityType = 'payment' | 'attempt' | 'refund' | 'dispute' | 'risk' | 'checkout' | 'routing';
538
543
  /**
539
544
  * One event on a payment's status timeline: the creation of, or a status
540
545
  * transition on, the payment intent or one of its attempts / refunds /
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@delopay/sdk",
3
- "version": "0.118.0",
3
+ "version": "0.119.0",
4
4
  "description": "Official Delopay TypeScript SDK",
5
5
  "type": "module",
6
6
  "sideEffects": false,