@opendoor/partner-sdk-client-vue 1.3.3-beta.113.1 → 1.3.3

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 (3) hide show
  1. package/dist/index.d.ts +50 -0
  2. package/dist/index.js +1254 -1228
  3. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -301,6 +301,31 @@ initialAnswers?: Record<string, AnswerValue>;
301
301
  */
302
302
  skipPages?: readonly DtcOnboardingPageId_2[];
303
303
  /**
304
+ * Override the submit-button label on the contact-info page (defaults
305
+ * to "See my offer"). Applies to both the visible button text and the
306
+ * legal consent disclaimer that interpolates the label, so screen
307
+ * readers and the accessibility tree stay in sync with the visible CTA.
308
+ *
309
+ * Useful when the partner's post-questionnaire experience doesn't
310
+ * surface an offer at that step — e.g. routing to in-home assessment
311
+ * scheduling instead of an immediate estimate.
312
+ */
313
+ submitLabel?: string;
314
+ /**
315
+ * Override the title shown on the contact-info page (defaults to
316
+ * "You're one step from your offer."). Useful when the partner's flow
317
+ * doesn't present an offer at that step. Pass an empty string to
318
+ * render an empty heading.
319
+ */
320
+ contactPageTitle?: string;
321
+ /**
322
+ * Override the subtitle shown on the contact-info page (defaults to
323
+ * copy mentioning seeing the offer). Useful when the partner's flow
324
+ * doesn't present an offer at that step. Pass an empty string to
325
+ * suppress the subtitle entirely.
326
+ */
327
+ contactPageSubtitle?: string;
328
+ /**
304
329
  * Called when the close (X) button is clicked.
305
330
  * When provided, the close button is rendered in the header.
306
331
  * When omitted, no close button is shown (matches React parity).
@@ -335,6 +360,31 @@ initialAnswers?: Record<string, AnswerValue>;
335
360
  */
336
361
  skipPages?: readonly DtcOnboardingPageId_2[];
337
362
  /**
363
+ * Override the submit-button label on the contact-info page (defaults
364
+ * to "See my offer"). Applies to both the visible button text and the
365
+ * legal consent disclaimer that interpolates the label, so screen
366
+ * readers and the accessibility tree stay in sync with the visible CTA.
367
+ *
368
+ * Useful when the partner's post-questionnaire experience doesn't
369
+ * surface an offer at that step — e.g. routing to in-home assessment
370
+ * scheduling instead of an immediate estimate.
371
+ */
372
+ submitLabel?: string;
373
+ /**
374
+ * Override the title shown on the contact-info page (defaults to
375
+ * "You're one step from your offer."). Useful when the partner's flow
376
+ * doesn't present an offer at that step. Pass an empty string to
377
+ * render an empty heading.
378
+ */
379
+ contactPageTitle?: string;
380
+ /**
381
+ * Override the subtitle shown on the contact-info page (defaults to
382
+ * copy mentioning seeing the offer). Useful when the partner's flow
383
+ * doesn't present an offer at that step. Pass an empty string to
384
+ * suppress the subtitle entirely.
385
+ */
386
+ contactPageSubtitle?: string;
387
+ /**
338
388
  * Called when the close (X) button is clicked.
339
389
  * When provided, the close button is rendered in the header.
340
390
  * When omitted, no close button is shown (matches React parity).