@opendoor/partner-sdk-client-vue 1.2.1-beta.99.1 → 1.3.0
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 +16 -4
- package/dist/index.js +680 -674
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -286,8 +286,14 @@ partnerLogoUrl?: string;
|
|
|
286
286
|
appearance?: OpendoorAppearance_2;
|
|
287
287
|
/** Pre-filled answers (e.g., from address lookup or prior session). */
|
|
288
288
|
initialAnswers?: Record<string, AnswerValue>;
|
|
289
|
-
/**
|
|
290
|
-
|
|
289
|
+
/**
|
|
290
|
+
* Page IDs to remove from the questionnaire entirely. Useful when the
|
|
291
|
+
* partner already knows the answers and the question shouldn't be asked
|
|
292
|
+
* (e.g. a homebuilder partner doesn't need to ask "Are you working with
|
|
293
|
+
* a homebuilder?"). For any **required** questions on a skipped page,
|
|
294
|
+
* pair this with `initialAnswers`.
|
|
295
|
+
*/
|
|
296
|
+
skipPages?: string[];
|
|
291
297
|
/**
|
|
292
298
|
* Called when the close (X) button is clicked.
|
|
293
299
|
* When provided, the close button is rendered in the header.
|
|
@@ -313,8 +319,14 @@ partnerLogoUrl?: string;
|
|
|
313
319
|
appearance?: OpendoorAppearance_2;
|
|
314
320
|
/** Pre-filled answers (e.g., from address lookup or prior session). */
|
|
315
321
|
initialAnswers?: Record<string, AnswerValue>;
|
|
316
|
-
/**
|
|
317
|
-
|
|
322
|
+
/**
|
|
323
|
+
* Page IDs to remove from the questionnaire entirely. Useful when the
|
|
324
|
+
* partner already knows the answers and the question shouldn't be asked
|
|
325
|
+
* (e.g. a homebuilder partner doesn't need to ask "Are you working with
|
|
326
|
+
* a homebuilder?"). For any **required** questions on a skipped page,
|
|
327
|
+
* pair this with `initialAnswers`.
|
|
328
|
+
*/
|
|
329
|
+
skipPages?: string[];
|
|
318
330
|
/**
|
|
319
331
|
* Called when the close (X) button is clicked.
|
|
320
332
|
* When provided, the close button is rendered in the header.
|