@vrplatform/log 2.0.0-alpha.53 → 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.
@@ -251,12 +251,13 @@ type HyperlineCustomerCreatedProps = Partial<{
251
251
  userId: string;
252
252
  tenantId: string;
253
253
  customerId: string;
254
+ billingEmail: string;
255
+ billingAddress: string;
256
+ externalId: string;
257
+ name: string;
258
+ vatNumber: string;
254
259
  }>;
255
- type HyperlineCustomerUpdatedProps = Partial<{
256
- userId: string;
257
- tenantId: string;
258
- customerId: string;
259
- }>;
260
+ type HyperlineCustomerUpdatedProps = HyperlineCustomerCreatedProps;
260
261
  type HyperlineInvoiceReadyProps = Partial<{
261
262
  status: 'ready';
262
263
  paymentMethodType: string;
@@ -382,11 +383,17 @@ type OwnerCreatedProps = Partial<{
382
383
  userId: string;
383
384
  tenantId: string;
384
385
  ownerId: string;
386
+ type: 'individual' | 'company' | 'c_corporation' | 's_corporation' | 'partnership' | 'trust_estate' | 'limited_liability_company';
387
+ withUserInvite: boolean;
388
+ userEmail: string;
385
389
  }>;
386
390
  type OwnerDeletedProps = Partial<{
387
391
  userId: string;
388
392
  tenantId: string;
389
393
  ownerId: string;
394
+ userEmail: string;
395
+ listingId: string;
396
+ ownershipId: string;
390
397
  }>;
391
398
  type OwnerTaxInfoModalOpenedProps = Partial<{
392
399
  flag: string;
@@ -251,12 +251,13 @@ type HyperlineCustomerCreatedProps = Partial<{
251
251
  userId: string;
252
252
  tenantId: string;
253
253
  customerId: string;
254
+ billingEmail: string;
255
+ billingAddress: string;
256
+ externalId: string;
257
+ name: string;
258
+ vatNumber: string;
254
259
  }>;
255
- type HyperlineCustomerUpdatedProps = Partial<{
256
- userId: string;
257
- tenantId: string;
258
- customerId: string;
259
- }>;
260
+ type HyperlineCustomerUpdatedProps = HyperlineCustomerCreatedProps;
260
261
  type HyperlineInvoiceReadyProps = Partial<{
261
262
  status: 'ready';
262
263
  paymentMethodType: string;
@@ -382,11 +383,17 @@ type OwnerCreatedProps = Partial<{
382
383
  userId: string;
383
384
  tenantId: string;
384
385
  ownerId: string;
386
+ type: 'individual' | 'company' | 'c_corporation' | 's_corporation' | 'partnership' | 'trust_estate' | 'limited_liability_company';
387
+ withUserInvite: boolean;
388
+ userEmail: string;
385
389
  }>;
386
390
  type OwnerDeletedProps = Partial<{
387
391
  userId: string;
388
392
  tenantId: string;
389
393
  ownerId: string;
394
+ userEmail: string;
395
+ listingId: string;
396
+ ownershipId: string;
390
397
  }>;
391
398
  type OwnerTaxInfoModalOpenedProps = Partial<{
392
399
  flag: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vrplatform/log",
3
- "version": "2.0.0-alpha.53",
3
+ "version": "2.0.0-alpha.55",
4
4
  "main": "build/main/index.js",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -302,13 +302,14 @@ type HyperlineCustomerCreatedProps = Partial<{
302
302
  userId: string;
303
303
  tenantId: string;
304
304
  customerId: string;
305
+ billingEmail: string;
306
+ billingAddress: string;
307
+ externalId: string;
308
+ name: string;
309
+ vatNumber: string;
305
310
  }>;
306
311
 
307
- type HyperlineCustomerUpdatedProps = Partial<{
308
- userId: string;
309
- tenantId: string;
310
- customerId: string;
311
- }>;
312
+ type HyperlineCustomerUpdatedProps = HyperlineCustomerCreatedProps;
312
313
 
313
314
  type HyperlineInvoiceReadyProps = Partial<{
314
315
  status: 'ready';
@@ -461,12 +462,25 @@ type OwnerCreatedProps = Partial<{
461
462
  userId: string;
462
463
  tenantId: string;
463
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;
464
475
  }>;
465
476
 
466
477
  type OwnerDeletedProps = Partial<{
467
478
  userId: string;
468
479
  tenantId: string;
469
480
  ownerId: string;
481
+ userEmail: string;
482
+ listingId: string;
483
+ ownershipId: string;
470
484
  }>;
471
485
 
472
486
  type OwnerTaxInfoModalOpenedProps = Partial<{