@vrplatform/log 2.0.37 → 2.0.38
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.
|
@@ -88,9 +88,11 @@ export type TrackingEventProps = {
|
|
|
88
88
|
tax_statement_preview_opened: TaxStatementPreviewOpenedProps;
|
|
89
89
|
tax_statement_downloaded: TaxStatementDownloadedProps;
|
|
90
90
|
team_added: TeamAddedProps;
|
|
91
|
+
team_canceled: TeamCanceledProps;
|
|
91
92
|
team_deleted: TeamDeletedProps;
|
|
92
93
|
team_info_updated: TeamInfoUpdatedProps;
|
|
93
94
|
team_member_removed: TeamMemberRemovedProps;
|
|
95
|
+
team_reinstated: TeamReinstatedProps;
|
|
94
96
|
gl_owner_statement_preview_opened: GlOwnerStatementPreviewOpenedProps;
|
|
95
97
|
gl_owner_statement_downloaded: GlOwnerStatementDownloadedProps;
|
|
96
98
|
hyperline_invoice_ready: HyperlineInvoiceReadyProps;
|
|
@@ -494,6 +496,13 @@ type TeamAddedProps = Partial<{
|
|
|
494
496
|
userId: string;
|
|
495
497
|
userEmail: string;
|
|
496
498
|
}>;
|
|
499
|
+
type TeamCanceledProps = Partial<{
|
|
500
|
+
tenantId: string;
|
|
501
|
+
customerId: string;
|
|
502
|
+
subscriptionId: string;
|
|
503
|
+
feedback: string;
|
|
504
|
+
reason: string;
|
|
505
|
+
}>;
|
|
497
506
|
type TeamDeletedProps = Partial<{
|
|
498
507
|
tenantId: string;
|
|
499
508
|
userId: string;
|
|
@@ -510,6 +519,13 @@ type TeamMemberRemovedProps = Partial<{
|
|
|
510
519
|
tenantId: string;
|
|
511
520
|
userEmail: string;
|
|
512
521
|
}>;
|
|
522
|
+
type TeamReinstatedProps = Partial<{
|
|
523
|
+
tenantId: string;
|
|
524
|
+
customerId: string;
|
|
525
|
+
subscriptionId: string;
|
|
526
|
+
feedback: string;
|
|
527
|
+
reason: string;
|
|
528
|
+
}>;
|
|
513
529
|
type TestErrorProps = Partial<{
|
|
514
530
|
userId: string;
|
|
515
531
|
tenantId: string;
|
|
@@ -88,9 +88,11 @@ export type TrackingEventProps = {
|
|
|
88
88
|
tax_statement_preview_opened: TaxStatementPreviewOpenedProps;
|
|
89
89
|
tax_statement_downloaded: TaxStatementDownloadedProps;
|
|
90
90
|
team_added: TeamAddedProps;
|
|
91
|
+
team_canceled: TeamCanceledProps;
|
|
91
92
|
team_deleted: TeamDeletedProps;
|
|
92
93
|
team_info_updated: TeamInfoUpdatedProps;
|
|
93
94
|
team_member_removed: TeamMemberRemovedProps;
|
|
95
|
+
team_reinstated: TeamReinstatedProps;
|
|
94
96
|
gl_owner_statement_preview_opened: GlOwnerStatementPreviewOpenedProps;
|
|
95
97
|
gl_owner_statement_downloaded: GlOwnerStatementDownloadedProps;
|
|
96
98
|
hyperline_invoice_ready: HyperlineInvoiceReadyProps;
|
|
@@ -494,6 +496,13 @@ type TeamAddedProps = Partial<{
|
|
|
494
496
|
userId: string;
|
|
495
497
|
userEmail: string;
|
|
496
498
|
}>;
|
|
499
|
+
type TeamCanceledProps = Partial<{
|
|
500
|
+
tenantId: string;
|
|
501
|
+
customerId: string;
|
|
502
|
+
subscriptionId: string;
|
|
503
|
+
feedback: string;
|
|
504
|
+
reason: string;
|
|
505
|
+
}>;
|
|
497
506
|
type TeamDeletedProps = Partial<{
|
|
498
507
|
tenantId: string;
|
|
499
508
|
userId: string;
|
|
@@ -510,6 +519,13 @@ type TeamMemberRemovedProps = Partial<{
|
|
|
510
519
|
tenantId: string;
|
|
511
520
|
userEmail: string;
|
|
512
521
|
}>;
|
|
522
|
+
type TeamReinstatedProps = Partial<{
|
|
523
|
+
tenantId: string;
|
|
524
|
+
customerId: string;
|
|
525
|
+
subscriptionId: string;
|
|
526
|
+
feedback: string;
|
|
527
|
+
reason: string;
|
|
528
|
+
}>;
|
|
513
529
|
type TestErrorProps = Partial<{
|
|
514
530
|
userId: string;
|
|
515
531
|
tenantId: string;
|
package/package.json
CHANGED
package/src/tracking/types.ts
CHANGED
|
@@ -102,9 +102,11 @@ export type TrackingEventProps = {
|
|
|
102
102
|
tax_statement_preview_opened: TaxStatementPreviewOpenedProps;
|
|
103
103
|
tax_statement_downloaded: TaxStatementDownloadedProps;
|
|
104
104
|
team_added: TeamAddedProps;
|
|
105
|
+
team_canceled: TeamCanceledProps;
|
|
105
106
|
team_deleted: TeamDeletedProps;
|
|
106
107
|
team_info_updated: TeamInfoUpdatedProps;
|
|
107
108
|
team_member_removed: TeamMemberRemovedProps;
|
|
109
|
+
team_reinstated: TeamReinstatedProps;
|
|
108
110
|
gl_owner_statement_preview_opened: GlOwnerStatementPreviewOpenedProps;
|
|
109
111
|
gl_owner_statement_downloaded: GlOwnerStatementDownloadedProps;
|
|
110
112
|
hyperline_invoice_ready: HyperlineInvoiceReadyProps;
|
|
@@ -607,6 +609,14 @@ type TeamAddedProps = Partial<{
|
|
|
607
609
|
userEmail: string;
|
|
608
610
|
}>;
|
|
609
611
|
|
|
612
|
+
type TeamCanceledProps = Partial<{
|
|
613
|
+
tenantId: string;
|
|
614
|
+
customerId: string;
|
|
615
|
+
subscriptionId: string;
|
|
616
|
+
feedback: string;
|
|
617
|
+
reason: string;
|
|
618
|
+
}>;
|
|
619
|
+
|
|
610
620
|
type TeamDeletedProps = Partial<{
|
|
611
621
|
tenantId: string;
|
|
612
622
|
userId: string;
|
|
@@ -626,6 +636,14 @@ type TeamMemberRemovedProps = Partial<{
|
|
|
626
636
|
userEmail: string;
|
|
627
637
|
}>;
|
|
628
638
|
|
|
639
|
+
type TeamReinstatedProps = Partial<{
|
|
640
|
+
tenantId: string;
|
|
641
|
+
customerId: string;
|
|
642
|
+
subscriptionId: string;
|
|
643
|
+
feedback: string;
|
|
644
|
+
reason: string;
|
|
645
|
+
}>;
|
|
646
|
+
|
|
629
647
|
type TestErrorProps = Partial<{
|
|
630
648
|
userId: string;
|
|
631
649
|
tenantId: string;
|