@opendoor/partner-sdk-client-vue 1.1.4-beta.78.1 → 1.1.4
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 +14 -4
- package/dist/index.js +1156 -1109
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -275,11 +275,16 @@ partnerLogoUrl?: string;
|
|
|
275
275
|
appearance?: OpendoorAppearance_2;
|
|
276
276
|
/** Pre-filled answers (e.g., from address lookup or prior session). */
|
|
277
277
|
initialAnswers?: Record<string, AnswerValue>;
|
|
278
|
-
/** Custom SMS
|
|
279
|
-
|
|
278
|
+
/** Custom SMS opt-in label shown on the marketing consent toggle on the contact page. Replaces the default Opendoor SMS consent language. */
|
|
279
|
+
smsConsentText?: string;
|
|
280
280
|
/** Market identifier for market-dependent questions (e.g., eligibility criteria). */
|
|
281
281
|
market?: string;
|
|
282
282
|
/**
|
|
283
|
+
* Custom legal consent text rendered below the submit button on the contact info page.
|
|
284
|
+
* Defaults to Opendoor's standard Terms of Service and Privacy Policy disclaimer.
|
|
285
|
+
*/
|
|
286
|
+
contactConsentText?: string;
|
|
287
|
+
/**
|
|
283
288
|
* Called when the close (X) button is clicked.
|
|
284
289
|
* When provided, the close button is rendered in the header.
|
|
285
290
|
* When omitted, no close button is shown (matches React parity).
|
|
@@ -304,11 +309,16 @@ partnerLogoUrl?: string;
|
|
|
304
309
|
appearance?: OpendoorAppearance_2;
|
|
305
310
|
/** Pre-filled answers (e.g., from address lookup or prior session). */
|
|
306
311
|
initialAnswers?: Record<string, AnswerValue>;
|
|
307
|
-
/** Custom SMS
|
|
308
|
-
|
|
312
|
+
/** Custom SMS opt-in label shown on the marketing consent toggle on the contact page. Replaces the default Opendoor SMS consent language. */
|
|
313
|
+
smsConsentText?: string;
|
|
309
314
|
/** Market identifier for market-dependent questions (e.g., eligibility criteria). */
|
|
310
315
|
market?: string;
|
|
311
316
|
/**
|
|
317
|
+
* Custom legal consent text rendered below the submit button on the contact info page.
|
|
318
|
+
* Defaults to Opendoor's standard Terms of Service and Privacy Policy disclaimer.
|
|
319
|
+
*/
|
|
320
|
+
contactConsentText?: string;
|
|
321
|
+
/**
|
|
312
322
|
* Called when the close (X) button is clicked.
|
|
313
323
|
* When provided, the close button is rendered in the header.
|
|
314
324
|
* When omitted, no close button is shown (matches React parity).
|