@matchi/api 0.20260323.1 → 0.20260324.1
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/main/index.d.mts +8 -0
- package/dist/main/index.d.ts +8 -0
- package/package.json +1 -1
package/dist/main/index.d.mts
CHANGED
|
@@ -622,6 +622,14 @@ type coupon = {
|
|
|
622
622
|
|
|
623
623
|
type paymentMethods = {
|
|
624
624
|
coupons: Array<coupon>;
|
|
625
|
+
/**
|
|
626
|
+
* Adyen checkout session ID, present after gift card partial payment
|
|
627
|
+
*/
|
|
628
|
+
pspSessionId?: string | null;
|
|
629
|
+
/**
|
|
630
|
+
* Adyen checkout session data, present after gift card partial payment
|
|
631
|
+
*/
|
|
632
|
+
pspSessionData?: string | null;
|
|
625
633
|
};
|
|
626
634
|
|
|
627
635
|
type promoCodeOutcome = {
|
package/dist/main/index.d.ts
CHANGED
|
@@ -622,6 +622,14 @@ type coupon = {
|
|
|
622
622
|
|
|
623
623
|
type paymentMethods = {
|
|
624
624
|
coupons: Array<coupon>;
|
|
625
|
+
/**
|
|
626
|
+
* Adyen checkout session ID, present after gift card partial payment
|
|
627
|
+
*/
|
|
628
|
+
pspSessionId?: string | null;
|
|
629
|
+
/**
|
|
630
|
+
* Adyen checkout session data, present after gift card partial payment
|
|
631
|
+
*/
|
|
632
|
+
pspSessionData?: string | null;
|
|
625
633
|
};
|
|
626
634
|
|
|
627
635
|
type promoCodeOutcome = {
|