@vrplatform/log 3.0.20 → 3.0.21
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.
- package/package.json +5 -5
- package/src/tracking/types.ts +0 -24
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vrplatform/log",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.21",
|
|
4
4
|
"main": "src/index.ts",
|
|
5
5
|
"packageManager": "bun@1.3.0",
|
|
6
6
|
"publishConfig": {
|
|
@@ -42,13 +42,13 @@
|
|
|
42
42
|
"LICENSE"
|
|
43
43
|
],
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@axiomhq/js": "1.
|
|
46
|
-
"@vrplatform/graphql": "1.1.
|
|
47
|
-
"intercom-client": "7.0.
|
|
45
|
+
"@axiomhq/js": "1.4.0",
|
|
46
|
+
"@vrplatform/graphql": "1.1.44",
|
|
47
|
+
"intercom-client": "7.0.3"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@biomejs/biome": "2.3.8",
|
|
51
|
-
"@types/bun": "1.3.
|
|
51
|
+
"@types/bun": "1.3.9",
|
|
52
52
|
"knip": "5.82.1",
|
|
53
53
|
"typescript": "5.9.3"
|
|
54
54
|
},
|
package/src/tracking/types.ts
CHANGED
|
@@ -268,15 +268,6 @@ type AccountSignupCodeRequestedProps = MaybePartial<{
|
|
|
268
268
|
type: 'owner' | 'property_manager' | 'partner';
|
|
269
269
|
}>;
|
|
270
270
|
|
|
271
|
-
type AccountSignupCodeFailedProps = MaybePartial<{
|
|
272
|
-
firstName: string;
|
|
273
|
-
lastName: string;
|
|
274
|
-
userEmail: string;
|
|
275
|
-
companyName: string;
|
|
276
|
-
type: 'owner' | 'property_manager' | 'partner';
|
|
277
|
-
status: 'missing_requirements' | 'abandoned' | null | any;
|
|
278
|
-
}>;
|
|
279
|
-
|
|
280
271
|
type AccountSignupCodeCompletedProps = MaybePartial<{
|
|
281
272
|
firstName: string;
|
|
282
273
|
lastName: string;
|
|
@@ -373,21 +364,6 @@ type AccountPasswordResetCompletedProps = MaybePartial<{
|
|
|
373
364
|
userEmail: string;
|
|
374
365
|
}>;
|
|
375
366
|
|
|
376
|
-
type AccountPasswordResetFailedProps = MaybePartial<{
|
|
377
|
-
userEmail: string;
|
|
378
|
-
status:
|
|
379
|
-
| 'needs_second_factor'
|
|
380
|
-
| 'needs_identifier'
|
|
381
|
-
| 'needs_first_factor'
|
|
382
|
-
| 'needs_new_password'
|
|
383
|
-
| null
|
|
384
|
-
| any;
|
|
385
|
-
}>;
|
|
386
|
-
|
|
387
|
-
type AccountPasswordResetRequestedProps = MaybePartial<{
|
|
388
|
-
userEmail: string;
|
|
389
|
-
}>;
|
|
390
|
-
|
|
391
367
|
type AccountSignedOutProps = MaybePartial<{
|
|
392
368
|
userId: string;
|
|
393
369
|
userEmail: string;
|