@officexapp/catalog-types 0.1.8 → 0.1.10
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.ts +10 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -767,10 +767,20 @@ export interface CheckoutSettings {
|
|
|
767
767
|
};
|
|
768
768
|
};
|
|
769
769
|
};
|
|
770
|
+
/** Allow visitors to continue without paying. Defaults to true. */
|
|
771
|
+
allow_skip?: boolean;
|
|
772
|
+
/** Custom text for the skip button (default: "Continue without paying") */
|
|
773
|
+
skip_button_text?: string;
|
|
770
774
|
/** "hosted" redirects to Stripe, "embedded" renders inline payment form.
|
|
771
775
|
* Defaults to "embedded" when stripe_publishable_key is set, else "hosted". */
|
|
772
776
|
ui_mode?: "hosted" | "embedded";
|
|
773
777
|
button_text?: string;
|
|
778
|
+
/** Additional display-only line items shown below the cart (e.g. tax, total). Editor defines all text — no calculations performed. */
|
|
779
|
+
summary_lines?: Array<{
|
|
780
|
+
label: string;
|
|
781
|
+
value: string;
|
|
782
|
+
bold?: boolean;
|
|
783
|
+
}>;
|
|
774
784
|
testimonial?: CheckoutTestimonial;
|
|
775
785
|
show_disclaimer?: boolean;
|
|
776
786
|
disclaimer_text?: string;
|