@opendoor/partner-sdk-client-vue 1.3.4-beta.118.1 → 1.3.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 +24 -0
- package/dist/index.js +1633 -1620
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -424,6 +424,18 @@ customerName?: string;
|
|
|
424
424
|
customerPhone?: string;
|
|
425
425
|
address?: string;
|
|
426
426
|
appearance?: OpendoorAppearance_2;
|
|
427
|
+
/**
|
|
428
|
+
* URL to the partner's logo image. When provided, the partner logo renders
|
|
429
|
+
* before the Opendoor logo in the header. Same shape as the matching prop
|
|
430
|
+
* on `<DtcOnboardingFlow>`.
|
|
431
|
+
*/
|
|
432
|
+
partnerLogoUrl?: string;
|
|
433
|
+
/**
|
|
434
|
+
* Called when the close (X) button is clicked. When provided, a close
|
|
435
|
+
* button renders on the right side of the header; when omitted, no close
|
|
436
|
+
* button is shown (matches `<DtcOnboardingFlow>` behavior).
|
|
437
|
+
*/
|
|
438
|
+
onClose?: () => void;
|
|
427
439
|
}>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
428
440
|
scheduled: (visitId: string) => void;
|
|
429
441
|
done: () => void;
|
|
@@ -435,6 +447,18 @@ customerName?: string;
|
|
|
435
447
|
customerPhone?: string;
|
|
436
448
|
address?: string;
|
|
437
449
|
appearance?: OpendoorAppearance_2;
|
|
450
|
+
/**
|
|
451
|
+
* URL to the partner's logo image. When provided, the partner logo renders
|
|
452
|
+
* before the Opendoor logo in the header. Same shape as the matching prop
|
|
453
|
+
* on `<DtcOnboardingFlow>`.
|
|
454
|
+
*/
|
|
455
|
+
partnerLogoUrl?: string;
|
|
456
|
+
/**
|
|
457
|
+
* Called when the close (X) button is clicked. When provided, a close
|
|
458
|
+
* button renders on the right side of the header; when omitted, no close
|
|
459
|
+
* button is shown (matches `<DtcOnboardingFlow>` behavior).
|
|
460
|
+
*/
|
|
461
|
+
onClose?: () => void;
|
|
438
462
|
}>>> & Readonly<{
|
|
439
463
|
onError?: ((error: Error) => any) | undefined;
|
|
440
464
|
onDone?: (() => any) | undefined;
|