@waffo/pancake-ts 0.16.0 → 0.16.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/index.d.cts CHANGED
@@ -746,7 +746,12 @@ interface CreateCheckoutSessionParams {
746
746
  withTrial?: boolean;
747
747
  /** Pre-filled customer email */
748
748
  buyerEmail?: string;
749
- /** Pre-filled billing details */
749
+ /**
750
+ * Pre-filled billing details. Passing this couples the cashier to the order's billing country: it then offers
751
+ * only that country's payment market and the customer cannot switch. The country that applies is the one on the
752
+ * finished order, not the one you sent; a country outside the payment markets we cover applies no restriction.
753
+ * Omit to leave the cashier unrestricted.
754
+ */
750
755
  billingDetail?: BillingDetail;
751
756
  /** Redirect URL after successful payment */
752
757
  successUrl?: string;
package/dist/index.d.ts CHANGED
@@ -746,7 +746,12 @@ interface CreateCheckoutSessionParams {
746
746
  withTrial?: boolean;
747
747
  /** Pre-filled customer email */
748
748
  buyerEmail?: string;
749
- /** Pre-filled billing details */
749
+ /**
750
+ * Pre-filled billing details. Passing this couples the cashier to the order's billing country: it then offers
751
+ * only that country's payment market and the customer cannot switch. The country that applies is the one on the
752
+ * finished order, not the one you sent; a country outside the payment markets we cover applies no restriction.
753
+ * Omit to leave the cashier unrestricted.
754
+ */
750
755
  billingDetail?: BillingDetail;
751
756
  /** Redirect URL after successful payment */
752
757
  successUrl?: string;