@vrplatform/log 3.0.21 → 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
package/src/tracking/types.ts
CHANGED
|
@@ -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
|
|
|
@@ -880,3 +881,32 @@ type WebinarAttendedProps = MaybePartial<{
|
|
|
880
881
|
listings: number;
|
|
881
882
|
pms: string;
|
|
882
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
|
+
};
|