@vrplatform/log 3.0.20 → 3.0.22

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.
@@ -142,6 +142,7 @@ export type TrackingEventProps = {
142
142
  intercom_conversation_rated: IntercomConversationRated;
143
143
  mrr_reported: MrrReportedProps;
144
144
  webinar_attended: WebinarAttendedProps;
145
+ attio_meeting_recorded: AttioMeetingRecordedProps;
145
146
  };
146
147
  export type TrackingEvent = keyof TrackingEventProps;
147
148
  type OptionalUser<T> = T & ({
@@ -701,4 +702,32 @@ type WebinarAttendedProps = MaybePartial<{
701
702
  listings: number;
702
703
  pms: string;
703
704
  }>;
705
+ type AttioMeetingRecordedProps = {
706
+ sourceEvent: 'call-recording.created';
707
+ workspaceId: string;
708
+ meetingId: string;
709
+ callRecordingId: string;
710
+ transcription: string;
711
+ callRecordingStatus?: 'processing' | 'completed' | 'failed';
712
+ callRecordingWebUrl?: string;
713
+ transcriptWebUrl?: string;
714
+ callRecordingCreatedAt?: string;
715
+ meetingTitle?: string;
716
+ meetingDescription?: string;
717
+ meetingStartedAt?: string;
718
+ meetingEndedAt?: string;
719
+ meetingTimezone?: string | null;
720
+ participantEmails?: string[];
721
+ linkedRecords?: Array<{
722
+ objectSlug: string;
723
+ objectId: string;
724
+ recordId: string;
725
+ }>;
726
+ transcriptSegments?: Array<{
727
+ speech: string;
728
+ startTime: number;
729
+ endTime: number;
730
+ speakerName: string;
731
+ }>;
732
+ };
704
733
  export {};
@@ -142,6 +142,7 @@ export type TrackingEventProps = {
142
142
  intercom_conversation_rated: IntercomConversationRated;
143
143
  mrr_reported: MrrReportedProps;
144
144
  webinar_attended: WebinarAttendedProps;
145
+ attio_meeting_recorded: AttioMeetingRecordedProps;
145
146
  };
146
147
  export type TrackingEvent = keyof TrackingEventProps;
147
148
  type OptionalUser<T> = T & ({
@@ -701,4 +702,32 @@ type WebinarAttendedProps = MaybePartial<{
701
702
  listings: number;
702
703
  pms: string;
703
704
  }>;
705
+ type AttioMeetingRecordedProps = {
706
+ sourceEvent: 'call-recording.created';
707
+ workspaceId: string;
708
+ meetingId: string;
709
+ callRecordingId: string;
710
+ transcription: string;
711
+ callRecordingStatus?: 'processing' | 'completed' | 'failed';
712
+ callRecordingWebUrl?: string;
713
+ transcriptWebUrl?: string;
714
+ callRecordingCreatedAt?: string;
715
+ meetingTitle?: string;
716
+ meetingDescription?: string;
717
+ meetingStartedAt?: string;
718
+ meetingEndedAt?: string;
719
+ meetingTimezone?: string | null;
720
+ participantEmails?: string[];
721
+ linkedRecords?: Array<{
722
+ objectSlug: string;
723
+ objectId: string;
724
+ recordId: string;
725
+ }>;
726
+ transcriptSegments?: Array<{
727
+ speech: string;
728
+ startTime: number;
729
+ endTime: number;
730
+ speakerName: string;
731
+ }>;
732
+ };
704
733
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vrplatform/log",
3
- "version": "3.0.20",
3
+ "version": "3.0.22",
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.3.1",
46
- "@vrplatform/graphql": "1.1.42",
47
- "intercom-client": "7.0.1"
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.4",
51
+ "@types/bun": "1.3.9",
52
52
  "knip": "5.82.1",
53
53
  "typescript": "5.9.3"
54
54
  },
@@ -189,6 +189,7 @@ export type TrackingEventProps = {
189
189
  intercom_conversation_rated: IntercomConversationRated;
190
190
  mrr_reported: MrrReportedProps;
191
191
  webinar_attended: WebinarAttendedProps;
192
+ attio_meeting_recorded: AttioMeetingRecordedProps;
192
193
  };
193
194
  export type TrackingEvent = keyof TrackingEventProps;
194
195
 
@@ -268,15 +269,6 @@ type AccountSignupCodeRequestedProps = MaybePartial<{
268
269
  type: 'owner' | 'property_manager' | 'partner';
269
270
  }>;
270
271
 
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
272
  type AccountSignupCodeCompletedProps = MaybePartial<{
281
273
  firstName: string;
282
274
  lastName: string;
@@ -373,21 +365,6 @@ type AccountPasswordResetCompletedProps = MaybePartial<{
373
365
  userEmail: string;
374
366
  }>;
375
367
 
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
368
  type AccountSignedOutProps = MaybePartial<{
392
369
  userId: string;
393
370
  userEmail: string;
@@ -904,3 +881,32 @@ type WebinarAttendedProps = MaybePartial<{
904
881
  listings: number;
905
882
  pms: string;
906
883
  }>;
884
+
885
+ type AttioMeetingRecordedProps = {
886
+ sourceEvent: 'call-recording.created';
887
+ workspaceId: string;
888
+ meetingId: string;
889
+ callRecordingId: string;
890
+ transcription: string;
891
+ callRecordingStatus?: 'processing' | 'completed' | 'failed';
892
+ callRecordingWebUrl?: string;
893
+ transcriptWebUrl?: string;
894
+ callRecordingCreatedAt?: string;
895
+ meetingTitle?: string;
896
+ meetingDescription?: string;
897
+ meetingStartedAt?: string;
898
+ meetingEndedAt?: string;
899
+ meetingTimezone?: string | null;
900
+ participantEmails?: string[];
901
+ linkedRecords?: Array<{
902
+ objectSlug: string;
903
+ objectId: string;
904
+ recordId: string;
905
+ }>;
906
+ transcriptSegments?: Array<{
907
+ speech: string;
908
+ startTime: number;
909
+ endTime: number;
910
+ speakerName: string;
911
+ }>;
912
+ };