@officexapp/catalog-types 0.1.9 → 0.1.11

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +8 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -769,10 +769,18 @@ export interface CheckoutSettings {
769
769
  };
770
770
  /** Allow visitors to continue without paying. Defaults to true. */
771
771
  allow_skip?: boolean;
772
+ /** Custom text for the skip button (default: "Continue without paying") */
773
+ skip_button_text?: string;
772
774
  /** "hosted" redirects to Stripe, "embedded" renders inline payment form.
773
775
  * Defaults to "embedded" when stripe_publishable_key is set, else "hosted". */
774
776
  ui_mode?: "hosted" | "embedded";
775
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
+ }>;
776
784
  testimonial?: CheckoutTestimonial;
777
785
  show_disclaimer?: boolean;
778
786
  disclaimer_text?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@officexapp/catalog-types",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
4
  "description": "TypeScript type definitions for CatalogKit schemas",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",