@vrplatform/log 2.0.83 → 2.0.85

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.
@@ -73,9 +73,11 @@ export type TrackingEventProps = {
73
73
  connection_reconnected: ConnectionReconnectedProps;
74
74
  connection_deleted: ConnectionDeletedProps;
75
75
  connection_requested: ConnectionRequestedProps;
76
+ ownership_period_created: OwnershipPeriodCreatedProps;
76
77
  ownership_created: OwnershipCreatedProps;
77
78
  ownership_updated: OwnershipUpdatedProps;
78
79
  ownership_deleted: OwnershipDeletedProps;
80
+ contact_created: ContactCreatedProps;
79
81
  owner_created: OwnerCreatedProps;
80
82
  owner_updated: OwnerUpdatedProps;
81
83
  owner_deleted: OwnerDeletedProps;
@@ -190,7 +192,7 @@ type AccountSignupCompletedProps = MaybePartial<{
190
192
  type OnboardingAccountSettingsSetProps = MaybePartial<{
191
193
  tenantId: string;
192
194
  userId: string;
193
- start: Date;
195
+ start: string;
194
196
  country: string;
195
197
  currency: string;
196
198
  }>;
@@ -413,6 +415,12 @@ type HyperlineTrialStartedProps = MaybePartial<{
413
415
  subscriptionStatus: SubscriptionStatus;
414
416
  trialUntil: string;
415
417
  }>;
418
+ type ContactCreatedProps = MaybePartial<{
419
+ type: 'owner' | 'vendor';
420
+ contactId: string;
421
+ contactEmail: string;
422
+ companyType: 'c_corporation' | 's_corporation' | 'partnership' | 'trust_estate' | 'limited_liability_company';
423
+ }>;
416
424
  type OwnerCreatedProps = MaybePartial<{
417
425
  userId: string;
418
426
  tenantId: string;
@@ -440,6 +448,14 @@ type OwnerUpdatedProps = MaybePartial<{
440
448
  tenantId: string;
441
449
  ownerId: string;
442
450
  }>;
451
+ type OwnershipPeriodCreatedProps = MaybePartial<{
452
+ ownershipPeriodId: string;
453
+ contactId: string;
454
+ listingId: string;
455
+ startAt: string;
456
+ endAt: string;
457
+ split: number;
458
+ }>;
443
459
  type OwnershipCreatedProps = MaybePartial<{
444
460
  ownershipId: string;
445
461
  ownerId: string;
@@ -73,9 +73,11 @@ export type TrackingEventProps = {
73
73
  connection_reconnected: ConnectionReconnectedProps;
74
74
  connection_deleted: ConnectionDeletedProps;
75
75
  connection_requested: ConnectionRequestedProps;
76
+ ownership_period_created: OwnershipPeriodCreatedProps;
76
77
  ownership_created: OwnershipCreatedProps;
77
78
  ownership_updated: OwnershipUpdatedProps;
78
79
  ownership_deleted: OwnershipDeletedProps;
80
+ contact_created: ContactCreatedProps;
79
81
  owner_created: OwnerCreatedProps;
80
82
  owner_updated: OwnerUpdatedProps;
81
83
  owner_deleted: OwnerDeletedProps;
@@ -190,7 +192,7 @@ type AccountSignupCompletedProps = MaybePartial<{
190
192
  type OnboardingAccountSettingsSetProps = MaybePartial<{
191
193
  tenantId: string;
192
194
  userId: string;
193
- start: Date;
195
+ start: string;
194
196
  country: string;
195
197
  currency: string;
196
198
  }>;
@@ -413,6 +415,12 @@ type HyperlineTrialStartedProps = MaybePartial<{
413
415
  subscriptionStatus: SubscriptionStatus;
414
416
  trialUntil: string;
415
417
  }>;
418
+ type ContactCreatedProps = MaybePartial<{
419
+ type: 'owner' | 'vendor';
420
+ contactId: string;
421
+ contactEmail: string;
422
+ companyType: 'c_corporation' | 's_corporation' | 'partnership' | 'trust_estate' | 'limited_liability_company';
423
+ }>;
416
424
  type OwnerCreatedProps = MaybePartial<{
417
425
  userId: string;
418
426
  tenantId: string;
@@ -440,6 +448,14 @@ type OwnerUpdatedProps = MaybePartial<{
440
448
  tenantId: string;
441
449
  ownerId: string;
442
450
  }>;
451
+ type OwnershipPeriodCreatedProps = MaybePartial<{
452
+ ownershipPeriodId: string;
453
+ contactId: string;
454
+ listingId: string;
455
+ startAt: string;
456
+ endAt: string;
457
+ split: number;
458
+ }>;
443
459
  type OwnershipCreatedProps = MaybePartial<{
444
460
  ownershipId: string;
445
461
  ownerId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vrplatform/log",
3
- "version": "2.0.83",
3
+ "version": "2.0.85",
4
4
  "main": "build/main/index.js",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -109,9 +109,11 @@ export type TrackingEventProps = {
109
109
  connection_reconnected: ConnectionReconnectedProps;
110
110
  connection_deleted: ConnectionDeletedProps;
111
111
  connection_requested: ConnectionRequestedProps;
112
+ ownership_period_created: OwnershipPeriodCreatedProps;
112
113
  ownership_created: OwnershipCreatedProps;
113
114
  ownership_updated: OwnershipUpdatedProps;
114
115
  ownership_deleted: OwnershipDeletedProps;
116
+ contact_created: ContactCreatedProps;
115
117
  owner_created: OwnerCreatedProps;
116
118
  owner_updated: OwnerUpdatedProps;
117
119
  owner_deleted: OwnerDeletedProps;
@@ -271,7 +273,7 @@ type AccountSignupCompletedProps = MaybePartial<{
271
273
  type OnboardingAccountSettingsSetProps = MaybePartial<{
272
274
  tenantId: string;
273
275
  userId: string;
274
- start: Date;
276
+ start: string;
275
277
  country: string;
276
278
  currency: string;
277
279
  }>;
@@ -541,6 +543,18 @@ type HyperlineTrialStartedProps = MaybePartial<{
541
543
  trialUntil: string;
542
544
  }>;
543
545
 
546
+ type ContactCreatedProps = MaybePartial<{
547
+ type: 'owner' | 'vendor';
548
+ contactId: string;
549
+ contactEmail: string;
550
+ companyType:
551
+ | 'c_corporation'
552
+ | 's_corporation'
553
+ | 'partnership'
554
+ | 'trust_estate'
555
+ | 'limited_liability_company';
556
+ }>;
557
+
544
558
  type OwnerCreatedProps = MaybePartial<{
545
559
  userId: string;
546
560
  tenantId: string;
@@ -580,6 +594,15 @@ type OwnerUpdatedProps = MaybePartial<{
580
594
  ownerId: string;
581
595
  }>;
582
596
 
597
+ type OwnershipPeriodCreatedProps = MaybePartial<{
598
+ ownershipPeriodId: string;
599
+ contactId: string; // for each membership
600
+ listingId: string;
601
+ startAt: string;
602
+ endAt: string;
603
+ split: number; // for each membership
604
+ }>;
605
+
583
606
  type OwnershipCreatedProps = MaybePartial<{
584
607
  ownershipId: string;
585
608
  ownerId: string;