@vrplatform/log 3.0.18 → 3.0.19

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.
@@ -75,6 +75,7 @@ export type TrackingEventProps = {
75
75
  connection_created: ConnectionCreatedProps;
76
76
  connection_reconnected: ConnectionReconnectedProps;
77
77
  connection_deleted: ConnectionDeletedProps;
78
+ bank_account_created: BankAccountCreatedProps;
78
79
  connection_requested: ConnectionRequestedProps;
79
80
  ownership_period_created: OwnershipPeriodCreatedProps;
80
81
  ownership_created: OwnershipCreatedProps;
@@ -237,6 +238,16 @@ type ConnectionDeletedProps = MaybePartial<{
237
238
  appId: string;
238
239
  userEmail: string;
239
240
  }>;
241
+ type BankAccountCreatedProps = MaybePartial<{
242
+ userId: string;
243
+ teamId: string;
244
+ bankAccountId: string;
245
+ createdAt: string;
246
+ bankAccountType: 'trust' | 'operating';
247
+ source: 'plaid' | 'manual';
248
+ connectionId?: string;
249
+ bankAccountName?: string;
250
+ }>;
240
251
  type ConnectionReconnectedProps = MaybePartial<{
241
252
  connectionId: string;
242
253
  tenantId: string;
@@ -75,6 +75,7 @@ export type TrackingEventProps = {
75
75
  connection_created: ConnectionCreatedProps;
76
76
  connection_reconnected: ConnectionReconnectedProps;
77
77
  connection_deleted: ConnectionDeletedProps;
78
+ bank_account_created: BankAccountCreatedProps;
78
79
  connection_requested: ConnectionRequestedProps;
79
80
  ownership_period_created: OwnershipPeriodCreatedProps;
80
81
  ownership_created: OwnershipCreatedProps;
@@ -237,6 +238,16 @@ type ConnectionDeletedProps = MaybePartial<{
237
238
  appId: string;
238
239
  userEmail: string;
239
240
  }>;
241
+ type BankAccountCreatedProps = MaybePartial<{
242
+ userId: string;
243
+ teamId: string;
244
+ bankAccountId: string;
245
+ createdAt: string;
246
+ bankAccountType: 'trust' | 'operating';
247
+ source: 'plaid' | 'manual';
248
+ connectionId?: string;
249
+ bankAccountName?: string;
250
+ }>;
240
251
  type ConnectionReconnectedProps = MaybePartial<{
241
252
  connectionId: string;
242
253
  tenantId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vrplatform/log",
3
- "version": "3.0.18",
3
+ "version": "3.0.19",
4
4
  "main": "src/index.ts",
5
5
  "packageManager": "bun@1.3.0",
6
6
  "publishConfig": {
@@ -119,6 +119,7 @@ export type TrackingEventProps = {
119
119
  connection_created: ConnectionCreatedProps;
120
120
  connection_reconnected: ConnectionReconnectedProps;
121
121
  connection_deleted: ConnectionDeletedProps;
122
+ bank_account_created: BankAccountCreatedProps;
122
123
  connection_requested: ConnectionRequestedProps;
123
124
  ownership_period_created: OwnershipPeriodCreatedProps;
124
125
  ownership_created: OwnershipCreatedProps;
@@ -326,6 +327,17 @@ type ConnectionDeletedProps = MaybePartial<{
326
327
  userEmail: string;
327
328
  }>;
328
329
 
330
+ type BankAccountCreatedProps = MaybePartial<{
331
+ userId: string;
332
+ teamId: string;
333
+ bankAccountId: string;
334
+ createdAt: string;
335
+ bankAccountType: 'trust' | 'operating';
336
+ source: 'plaid' | 'manual';
337
+ connectionId?: string;
338
+ bankAccountName?: string;
339
+ }>;
340
+
329
341
  type ConnectionReconnectedProps = MaybePartial<{
330
342
  connectionId: string;
331
343
  tenantId: string;