@vrplatform/log 2.0.0-alpha.54 → 2.0.0-alpha.55
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.
|
@@ -383,11 +383,17 @@ type OwnerCreatedProps = Partial<{
|
|
|
383
383
|
userId: string;
|
|
384
384
|
tenantId: string;
|
|
385
385
|
ownerId: string;
|
|
386
|
+
type: 'individual' | 'company' | 'c_corporation' | 's_corporation' | 'partnership' | 'trust_estate' | 'limited_liability_company';
|
|
387
|
+
withUserInvite: boolean;
|
|
388
|
+
userEmail: string;
|
|
386
389
|
}>;
|
|
387
390
|
type OwnerDeletedProps = Partial<{
|
|
388
391
|
userId: string;
|
|
389
392
|
tenantId: string;
|
|
390
393
|
ownerId: string;
|
|
394
|
+
userEmail: string;
|
|
395
|
+
listingId: string;
|
|
396
|
+
ownershipId: string;
|
|
391
397
|
}>;
|
|
392
398
|
type OwnerTaxInfoModalOpenedProps = Partial<{
|
|
393
399
|
flag: string;
|
|
@@ -383,11 +383,17 @@ type OwnerCreatedProps = Partial<{
|
|
|
383
383
|
userId: string;
|
|
384
384
|
tenantId: string;
|
|
385
385
|
ownerId: string;
|
|
386
|
+
type: 'individual' | 'company' | 'c_corporation' | 's_corporation' | 'partnership' | 'trust_estate' | 'limited_liability_company';
|
|
387
|
+
withUserInvite: boolean;
|
|
388
|
+
userEmail: string;
|
|
386
389
|
}>;
|
|
387
390
|
type OwnerDeletedProps = Partial<{
|
|
388
391
|
userId: string;
|
|
389
392
|
tenantId: string;
|
|
390
393
|
ownerId: string;
|
|
394
|
+
userEmail: string;
|
|
395
|
+
listingId: string;
|
|
396
|
+
ownershipId: string;
|
|
391
397
|
}>;
|
|
392
398
|
type OwnerTaxInfoModalOpenedProps = Partial<{
|
|
393
399
|
flag: string;
|
package/package.json
CHANGED
package/src/tracking/types.ts
CHANGED
|
@@ -462,12 +462,25 @@ type OwnerCreatedProps = Partial<{
|
|
|
462
462
|
userId: string;
|
|
463
463
|
tenantId: string;
|
|
464
464
|
ownerId: string;
|
|
465
|
+
type:
|
|
466
|
+
| 'individual'
|
|
467
|
+
| 'company'
|
|
468
|
+
| 'c_corporation'
|
|
469
|
+
| 's_corporation'
|
|
470
|
+
| 'partnership'
|
|
471
|
+
| 'trust_estate'
|
|
472
|
+
| 'limited_liability_company';
|
|
473
|
+
withUserInvite: boolean;
|
|
474
|
+
userEmail: string;
|
|
465
475
|
}>;
|
|
466
476
|
|
|
467
477
|
type OwnerDeletedProps = Partial<{
|
|
468
478
|
userId: string;
|
|
469
479
|
tenantId: string;
|
|
470
480
|
ownerId: string;
|
|
481
|
+
userEmail: string;
|
|
482
|
+
listingId: string;
|
|
483
|
+
ownershipId: string;
|
|
471
484
|
}>;
|
|
472
485
|
|
|
473
486
|
type OwnerTaxInfoModalOpenedProps = Partial<{
|