@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 +13 -8
- package/dist/index.d.ts +13 -8
- package/package.json +1 -1
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 `
|
|
531
|
-
* `risk` carries a processor risk signal (early fraud warning,
|
|
532
|
-
*
|
|
533
|
-
* tab opened/blocked, abandonment)
|
|
534
|
-
*
|
|
535
|
-
*
|
|
536
|
-
|
|
537
|
-
|
|
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 `
|
|
531
|
-
* `risk` carries a processor risk signal (early fraud warning,
|
|
532
|
-
*
|
|
533
|
-
* tab opened/blocked, abandonment)
|
|
534
|
-
*
|
|
535
|
-
*
|
|
536
|
-
|
|
537
|
-
|
|
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 /
|