lumnisai 0.5.8 → 0.5.9
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/dist/index.d.cts +4 -3
- package/dist/index.d.mts +4 -3
- package/dist/index.d.ts +4 -3
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -505,6 +505,7 @@ interface LinkedInSyncStatusResponse {
|
|
|
505
505
|
connected: boolean;
|
|
506
506
|
syncInProgress: boolean;
|
|
507
507
|
lastSyncedAt?: string | null;
|
|
508
|
+
linkedinProfileUrl?: string | null;
|
|
508
509
|
contactHistory?: ContactHistorySyncStatus | null;
|
|
509
510
|
connections?: ConnectionsSyncStatus | null;
|
|
510
511
|
}
|
|
@@ -3825,7 +3826,7 @@ interface CampaignResponse {
|
|
|
3825
3826
|
interface CampaignListResponse {
|
|
3826
3827
|
items: CampaignResponse[];
|
|
3827
3828
|
}
|
|
3828
|
-
type CampaignProspectState = 'not_connected' | 'pending_connection' | 'connected' | 'messaged' | 'followed_up' | 'replied' | 'meeting_booked' | 'stopped' | 'snoozed';
|
|
3829
|
+
type CampaignProspectState = 'not_connected' | 'pending_connection' | 'connected' | 'messaged' | 'followed_up' | 'replied' | 'meeting_booked' | 'intro_accepted' | 'stopped' | 'snoozed';
|
|
3829
3830
|
interface CampaignProspectInput {
|
|
3830
3831
|
prospectId: string;
|
|
3831
3832
|
prospectExternalId?: string;
|
|
@@ -3867,7 +3868,7 @@ interface CampaignProspectResponse {
|
|
|
3867
3868
|
createdAt: string;
|
|
3868
3869
|
updatedAt: string;
|
|
3869
3870
|
}
|
|
3870
|
-
type CampaignActionType = 'smart_like_linkedin' | 'smart_comment_linkedin' | 'reaction_like_linkedin' | 'reaction_comment_linkedin' | 'send_connection_linkedin' | 'send_connection_note_linkedin' | 'send_initial_message_linkedin' | 'send_follow_up_linkedin' | 'send_inmail_linkedin' | 'reply_linkedin' | 'meeting_booked' | 'wait' | 'stop';
|
|
3871
|
+
type CampaignActionType = 'smart_like_linkedin' | 'smart_comment_linkedin' | 'reaction_like_linkedin' | 'reaction_comment_linkedin' | 'send_connection_linkedin' | 'send_connection_note_linkedin' | 'send_initial_message_linkedin' | 'send_follow_up_linkedin' | 'send_inmail_linkedin' | 'reply_linkedin' | 'meeting_booked' | 'intro_accepted' | 'wait' | 'stop';
|
|
3871
3872
|
type CampaignActionStatus = 'pending_approval' | 'approved' | 'edited' | 'skipped' | 'auto_approved' | 'queued' | 'executed' | 'failed' | 'cancelled' | 'cancelled_by_pause' | 'paused';
|
|
3872
3873
|
interface CampaignActionResponse {
|
|
3873
3874
|
id: string;
|
|
@@ -3956,7 +3957,7 @@ interface EditQueuedRequest {
|
|
|
3956
3957
|
interface PauseResumeQueuedRequest {
|
|
3957
3958
|
userId: string;
|
|
3958
3959
|
}
|
|
3959
|
-
type CampaignOutcomeType = 'meeting_booked' | 'not_interested' | 'other';
|
|
3960
|
+
type CampaignOutcomeType = 'meeting_booked' | 'intro_accepted' | 'not_interested' | 'other';
|
|
3960
3961
|
interface RecordOutcomeRequest {
|
|
3961
3962
|
userId: string;
|
|
3962
3963
|
outcome: CampaignOutcomeType;
|
package/dist/index.d.mts
CHANGED
|
@@ -505,6 +505,7 @@ interface LinkedInSyncStatusResponse {
|
|
|
505
505
|
connected: boolean;
|
|
506
506
|
syncInProgress: boolean;
|
|
507
507
|
lastSyncedAt?: string | null;
|
|
508
|
+
linkedinProfileUrl?: string | null;
|
|
508
509
|
contactHistory?: ContactHistorySyncStatus | null;
|
|
509
510
|
connections?: ConnectionsSyncStatus | null;
|
|
510
511
|
}
|
|
@@ -3825,7 +3826,7 @@ interface CampaignResponse {
|
|
|
3825
3826
|
interface CampaignListResponse {
|
|
3826
3827
|
items: CampaignResponse[];
|
|
3827
3828
|
}
|
|
3828
|
-
type CampaignProspectState = 'not_connected' | 'pending_connection' | 'connected' | 'messaged' | 'followed_up' | 'replied' | 'meeting_booked' | 'stopped' | 'snoozed';
|
|
3829
|
+
type CampaignProspectState = 'not_connected' | 'pending_connection' | 'connected' | 'messaged' | 'followed_up' | 'replied' | 'meeting_booked' | 'intro_accepted' | 'stopped' | 'snoozed';
|
|
3829
3830
|
interface CampaignProspectInput {
|
|
3830
3831
|
prospectId: string;
|
|
3831
3832
|
prospectExternalId?: string;
|
|
@@ -3867,7 +3868,7 @@ interface CampaignProspectResponse {
|
|
|
3867
3868
|
createdAt: string;
|
|
3868
3869
|
updatedAt: string;
|
|
3869
3870
|
}
|
|
3870
|
-
type CampaignActionType = 'smart_like_linkedin' | 'smart_comment_linkedin' | 'reaction_like_linkedin' | 'reaction_comment_linkedin' | 'send_connection_linkedin' | 'send_connection_note_linkedin' | 'send_initial_message_linkedin' | 'send_follow_up_linkedin' | 'send_inmail_linkedin' | 'reply_linkedin' | 'meeting_booked' | 'wait' | 'stop';
|
|
3871
|
+
type CampaignActionType = 'smart_like_linkedin' | 'smart_comment_linkedin' | 'reaction_like_linkedin' | 'reaction_comment_linkedin' | 'send_connection_linkedin' | 'send_connection_note_linkedin' | 'send_initial_message_linkedin' | 'send_follow_up_linkedin' | 'send_inmail_linkedin' | 'reply_linkedin' | 'meeting_booked' | 'intro_accepted' | 'wait' | 'stop';
|
|
3871
3872
|
type CampaignActionStatus = 'pending_approval' | 'approved' | 'edited' | 'skipped' | 'auto_approved' | 'queued' | 'executed' | 'failed' | 'cancelled' | 'cancelled_by_pause' | 'paused';
|
|
3872
3873
|
interface CampaignActionResponse {
|
|
3873
3874
|
id: string;
|
|
@@ -3956,7 +3957,7 @@ interface EditQueuedRequest {
|
|
|
3956
3957
|
interface PauseResumeQueuedRequest {
|
|
3957
3958
|
userId: string;
|
|
3958
3959
|
}
|
|
3959
|
-
type CampaignOutcomeType = 'meeting_booked' | 'not_interested' | 'other';
|
|
3960
|
+
type CampaignOutcomeType = 'meeting_booked' | 'intro_accepted' | 'not_interested' | 'other';
|
|
3960
3961
|
interface RecordOutcomeRequest {
|
|
3961
3962
|
userId: string;
|
|
3962
3963
|
outcome: CampaignOutcomeType;
|
package/dist/index.d.ts
CHANGED
|
@@ -505,6 +505,7 @@ interface LinkedInSyncStatusResponse {
|
|
|
505
505
|
connected: boolean;
|
|
506
506
|
syncInProgress: boolean;
|
|
507
507
|
lastSyncedAt?: string | null;
|
|
508
|
+
linkedinProfileUrl?: string | null;
|
|
508
509
|
contactHistory?: ContactHistorySyncStatus | null;
|
|
509
510
|
connections?: ConnectionsSyncStatus | null;
|
|
510
511
|
}
|
|
@@ -3825,7 +3826,7 @@ interface CampaignResponse {
|
|
|
3825
3826
|
interface CampaignListResponse {
|
|
3826
3827
|
items: CampaignResponse[];
|
|
3827
3828
|
}
|
|
3828
|
-
type CampaignProspectState = 'not_connected' | 'pending_connection' | 'connected' | 'messaged' | 'followed_up' | 'replied' | 'meeting_booked' | 'stopped' | 'snoozed';
|
|
3829
|
+
type CampaignProspectState = 'not_connected' | 'pending_connection' | 'connected' | 'messaged' | 'followed_up' | 'replied' | 'meeting_booked' | 'intro_accepted' | 'stopped' | 'snoozed';
|
|
3829
3830
|
interface CampaignProspectInput {
|
|
3830
3831
|
prospectId: string;
|
|
3831
3832
|
prospectExternalId?: string;
|
|
@@ -3867,7 +3868,7 @@ interface CampaignProspectResponse {
|
|
|
3867
3868
|
createdAt: string;
|
|
3868
3869
|
updatedAt: string;
|
|
3869
3870
|
}
|
|
3870
|
-
type CampaignActionType = 'smart_like_linkedin' | 'smart_comment_linkedin' | 'reaction_like_linkedin' | 'reaction_comment_linkedin' | 'send_connection_linkedin' | 'send_connection_note_linkedin' | 'send_initial_message_linkedin' | 'send_follow_up_linkedin' | 'send_inmail_linkedin' | 'reply_linkedin' | 'meeting_booked' | 'wait' | 'stop';
|
|
3871
|
+
type CampaignActionType = 'smart_like_linkedin' | 'smart_comment_linkedin' | 'reaction_like_linkedin' | 'reaction_comment_linkedin' | 'send_connection_linkedin' | 'send_connection_note_linkedin' | 'send_initial_message_linkedin' | 'send_follow_up_linkedin' | 'send_inmail_linkedin' | 'reply_linkedin' | 'meeting_booked' | 'intro_accepted' | 'wait' | 'stop';
|
|
3871
3872
|
type CampaignActionStatus = 'pending_approval' | 'approved' | 'edited' | 'skipped' | 'auto_approved' | 'queued' | 'executed' | 'failed' | 'cancelled' | 'cancelled_by_pause' | 'paused';
|
|
3872
3873
|
interface CampaignActionResponse {
|
|
3873
3874
|
id: string;
|
|
@@ -3956,7 +3957,7 @@ interface EditQueuedRequest {
|
|
|
3956
3957
|
interface PauseResumeQueuedRequest {
|
|
3957
3958
|
userId: string;
|
|
3958
3959
|
}
|
|
3959
|
-
type CampaignOutcomeType = 'meeting_booked' | 'not_interested' | 'other';
|
|
3960
|
+
type CampaignOutcomeType = 'meeting_booked' | 'intro_accepted' | 'not_interested' | 'other';
|
|
3960
3961
|
interface RecordOutcomeRequest {
|
|
3961
3962
|
userId: string;
|
|
3962
3963
|
outcome: CampaignOutcomeType;
|