@insure-os/client 0.0.55 → 0.0.56

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 CHANGED
@@ -689,6 +689,10 @@ type QuoteMountConfig = BaseMountConfig & {
689
689
  promoCode?: string;
690
690
  /** Skip reading pending promo codes from localStorage (use when embedded in portal) */
691
691
  skipPendingPromoCode?: boolean;
692
+ /** Pre-fill form data from another quote (page_data structure). Used for the "copy into new form" flow. */
693
+ prefillFormData?: Record<string, Record<string, any>>;
694
+ /** Skip auto-calculation when loading a pre-filled form. Used with prefillFormData. */
695
+ skipAutoCalculation?: boolean;
692
696
  };
693
697
  type PaymentLinkMountConfig = BaseMountConfig & {
694
698
  mode: 'payment';