lancer-shared 1.2.202 → 1.2.204
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/bundle.cjs.js +37 -1
- package/dist/constants/routes.d.ts +1 -1
- package/dist/schemas/agent/index.d.ts +9 -9
- package/dist/schemas/bidder/bid.d.ts +104 -80
- package/dist/schemas/bidder/exceptions/index.d.ts +5 -1
- package/dist/schemas/bidder/exceptions/job-no-longer-available.exception.d.ts +5 -0
- package/dist/schemas/campaign/campaign-analytics.d.ts +29 -29
- package/dist/schemas/campaign/campaign.d.ts +9 -9
- package/dist/schemas/lead/index.d.ts +32 -32
- package/dist/schemas/lead/lead-status.d.ts +7 -7
- package/dist/schemas/logger/log-event.d.ts +5 -5
- package/dist/schemas/scraper/scrape-payload.d.ts +14 -14
- package/package.json +1 -1
|
@@ -329,7 +329,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
329
329
|
answer: string;
|
|
330
330
|
}>, "many">>;
|
|
331
331
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
332
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "viewed", "replied", "won"]>>;
|
|
332
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "viewed", "replied", "won"]>>;
|
|
333
333
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
334
334
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
335
335
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -443,14 +443,14 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
443
443
|
answer: string;
|
|
444
444
|
}[] | null;
|
|
445
445
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
446
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
446
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
447
447
|
biddingAmount: number | null;
|
|
448
448
|
boosted: boolean | null;
|
|
449
449
|
boostingAmount: number | null;
|
|
450
450
|
biddingTaskScheduled: boolean | null;
|
|
451
451
|
scheduledBiddingTime: number | null;
|
|
452
452
|
feedbackCheckTaskId: string | null;
|
|
453
|
-
bidDecision: "
|
|
453
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
454
454
|
rejectedFeedback: string | null;
|
|
455
455
|
applicationId: string | null;
|
|
456
456
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -578,14 +578,14 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
578
578
|
answer: string;
|
|
579
579
|
}[] | null;
|
|
580
580
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
581
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
581
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
582
582
|
biddingAmount: number | null;
|
|
583
583
|
boosted: boolean | null;
|
|
584
584
|
boostingAmount: number | null;
|
|
585
585
|
biddingTaskScheduled: boolean | null;
|
|
586
586
|
scheduledBiddingTime: number | null;
|
|
587
587
|
feedbackCheckTaskId: string | null;
|
|
588
|
-
bidDecision: "
|
|
588
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
589
589
|
rejectedFeedback: string | null;
|
|
590
590
|
applicationId: string | null;
|
|
591
591
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -930,7 +930,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
930
930
|
answer: string;
|
|
931
931
|
}>, "many">>;
|
|
932
932
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
933
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "viewed", "replied", "won"]>>;
|
|
933
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "viewed", "replied", "won"]>>;
|
|
934
934
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
935
935
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
936
936
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1044,14 +1044,14 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1044
1044
|
answer: string;
|
|
1045
1045
|
}[] | null;
|
|
1046
1046
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
1047
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
1047
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
1048
1048
|
biddingAmount: number | null;
|
|
1049
1049
|
boosted: boolean | null;
|
|
1050
1050
|
boostingAmount: number | null;
|
|
1051
1051
|
biddingTaskScheduled: boolean | null;
|
|
1052
1052
|
scheduledBiddingTime: number | null;
|
|
1053
1053
|
feedbackCheckTaskId: string | null;
|
|
1054
|
-
bidDecision: "
|
|
1054
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
1055
1055
|
rejectedFeedback: string | null;
|
|
1056
1056
|
applicationId: string | null;
|
|
1057
1057
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -1179,14 +1179,14 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1179
1179
|
answer: string;
|
|
1180
1180
|
}[] | null;
|
|
1181
1181
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
1182
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
1182
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
1183
1183
|
biddingAmount: number | null;
|
|
1184
1184
|
boosted: boolean | null;
|
|
1185
1185
|
boostingAmount: number | null;
|
|
1186
1186
|
biddingTaskScheduled: boolean | null;
|
|
1187
1187
|
scheduledBiddingTime: number | null;
|
|
1188
1188
|
feedbackCheckTaskId: string | null;
|
|
1189
|
-
bidDecision: "
|
|
1189
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
1190
1190
|
rejectedFeedback: string | null;
|
|
1191
1191
|
applicationId: string | null;
|
|
1192
1192
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -1319,14 +1319,14 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1319
1319
|
answer: string;
|
|
1320
1320
|
}[] | null;
|
|
1321
1321
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
1322
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
1322
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
1323
1323
|
biddingAmount: number | null;
|
|
1324
1324
|
boosted: boolean | null;
|
|
1325
1325
|
boostingAmount: number | null;
|
|
1326
1326
|
biddingTaskScheduled: boolean | null;
|
|
1327
1327
|
scheduledBiddingTime: number | null;
|
|
1328
1328
|
feedbackCheckTaskId: string | null;
|
|
1329
|
-
bidDecision: "
|
|
1329
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
1330
1330
|
rejectedFeedback: string | null;
|
|
1331
1331
|
applicationId: string | null;
|
|
1332
1332
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -1459,14 +1459,14 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1459
1459
|
answer: string;
|
|
1460
1460
|
}[] | null;
|
|
1461
1461
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
1462
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
1462
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
1463
1463
|
biddingAmount: number | null;
|
|
1464
1464
|
boosted: boolean | null;
|
|
1465
1465
|
boostingAmount: number | null;
|
|
1466
1466
|
biddingTaskScheduled: boolean | null;
|
|
1467
1467
|
scheduledBiddingTime: number | null;
|
|
1468
1468
|
feedbackCheckTaskId: string | null;
|
|
1469
|
-
bidDecision: "
|
|
1469
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
1470
1470
|
rejectedFeedback: string | null;
|
|
1471
1471
|
applicationId: string | null;
|
|
1472
1472
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -2351,7 +2351,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2351
2351
|
answer: string;
|
|
2352
2352
|
}>, "many">>;
|
|
2353
2353
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
2354
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "viewed", "replied", "won"]>>;
|
|
2354
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "viewed", "replied", "won"]>>;
|
|
2355
2355
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
2356
2356
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
2357
2357
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -2465,14 +2465,14 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2465
2465
|
answer: string;
|
|
2466
2466
|
}[] | null;
|
|
2467
2467
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
2468
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
2468
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
2469
2469
|
biddingAmount: number | null;
|
|
2470
2470
|
boosted: boolean | null;
|
|
2471
2471
|
boostingAmount: number | null;
|
|
2472
2472
|
biddingTaskScheduled: boolean | null;
|
|
2473
2473
|
scheduledBiddingTime: number | null;
|
|
2474
2474
|
feedbackCheckTaskId: string | null;
|
|
2475
|
-
bidDecision: "
|
|
2475
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
2476
2476
|
rejectedFeedback: string | null;
|
|
2477
2477
|
applicationId: string | null;
|
|
2478
2478
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -2600,14 +2600,14 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2600
2600
|
answer: string;
|
|
2601
2601
|
}[] | null;
|
|
2602
2602
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
2603
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
2603
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
2604
2604
|
biddingAmount: number | null;
|
|
2605
2605
|
boosted: boolean | null;
|
|
2606
2606
|
boostingAmount: number | null;
|
|
2607
2607
|
biddingTaskScheduled: boolean | null;
|
|
2608
2608
|
scheduledBiddingTime: number | null;
|
|
2609
2609
|
feedbackCheckTaskId: string | null;
|
|
2610
|
-
bidDecision: "
|
|
2610
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
2611
2611
|
rejectedFeedback: string | null;
|
|
2612
2612
|
applicationId: string | null;
|
|
2613
2613
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -2851,14 +2851,14 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2851
2851
|
answer: string;
|
|
2852
2852
|
}[] | null;
|
|
2853
2853
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
2854
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
2854
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
2855
2855
|
biddingAmount: number | null;
|
|
2856
2856
|
boosted: boolean | null;
|
|
2857
2857
|
boostingAmount: number | null;
|
|
2858
2858
|
biddingTaskScheduled: boolean | null;
|
|
2859
2859
|
scheduledBiddingTime: number | null;
|
|
2860
2860
|
feedbackCheckTaskId: string | null;
|
|
2861
|
-
bidDecision: "
|
|
2861
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
2862
2862
|
rejectedFeedback: string | null;
|
|
2863
2863
|
applicationId: string | null;
|
|
2864
2864
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -3102,14 +3102,14 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3102
3102
|
answer: string;
|
|
3103
3103
|
}[] | null;
|
|
3104
3104
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
3105
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
3105
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
3106
3106
|
biddingAmount: number | null;
|
|
3107
3107
|
boosted: boolean | null;
|
|
3108
3108
|
boostingAmount: number | null;
|
|
3109
3109
|
biddingTaskScheduled: boolean | null;
|
|
3110
3110
|
scheduledBiddingTime: number | null;
|
|
3111
3111
|
feedbackCheckTaskId: string | null;
|
|
3112
|
-
bidDecision: "
|
|
3112
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
3113
3113
|
rejectedFeedback: string | null;
|
|
3114
3114
|
applicationId: string | null;
|
|
3115
3115
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -3470,7 +3470,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
3470
3470
|
answer: string;
|
|
3471
3471
|
}>, "many">>;
|
|
3472
3472
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
3473
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "viewed", "replied", "won"]>>;
|
|
3473
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "viewed", "replied", "won"]>>;
|
|
3474
3474
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
3475
3475
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
3476
3476
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -3584,14 +3584,14 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
3584
3584
|
answer: string;
|
|
3585
3585
|
}[] | null;
|
|
3586
3586
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
3587
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
3587
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
3588
3588
|
biddingAmount: number | null;
|
|
3589
3589
|
boosted: boolean | null;
|
|
3590
3590
|
boostingAmount: number | null;
|
|
3591
3591
|
biddingTaskScheduled: boolean | null;
|
|
3592
3592
|
scheduledBiddingTime: number | null;
|
|
3593
3593
|
feedbackCheckTaskId: string | null;
|
|
3594
|
-
bidDecision: "
|
|
3594
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
3595
3595
|
rejectedFeedback: string | null;
|
|
3596
3596
|
applicationId: string | null;
|
|
3597
3597
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -3719,14 +3719,14 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
3719
3719
|
answer: string;
|
|
3720
3720
|
}[] | null;
|
|
3721
3721
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
3722
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
3722
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
3723
3723
|
biddingAmount: number | null;
|
|
3724
3724
|
boosted: boolean | null;
|
|
3725
3725
|
boostingAmount: number | null;
|
|
3726
3726
|
biddingTaskScheduled: boolean | null;
|
|
3727
3727
|
scheduledBiddingTime: number | null;
|
|
3728
3728
|
feedbackCheckTaskId: string | null;
|
|
3729
|
-
bidDecision: "
|
|
3729
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
3730
3730
|
rejectedFeedback: string | null;
|
|
3731
3731
|
applicationId: string | null;
|
|
3732
3732
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -3869,14 +3869,14 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
3869
3869
|
answer: string;
|
|
3870
3870
|
}[] | null;
|
|
3871
3871
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
3872
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
3872
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
3873
3873
|
biddingAmount: number | null;
|
|
3874
3874
|
boosted: boolean | null;
|
|
3875
3875
|
boostingAmount: number | null;
|
|
3876
3876
|
biddingTaskScheduled: boolean | null;
|
|
3877
3877
|
scheduledBiddingTime: number | null;
|
|
3878
3878
|
feedbackCheckTaskId: string | null;
|
|
3879
|
-
bidDecision: "
|
|
3879
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
3880
3880
|
rejectedFeedback: string | null;
|
|
3881
3881
|
applicationId: string | null;
|
|
3882
3882
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -4011,14 +4011,14 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4011
4011
|
answer: string;
|
|
4012
4012
|
}[] | null;
|
|
4013
4013
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
4014
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
4014
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
4015
4015
|
biddingAmount: number | null;
|
|
4016
4016
|
boosted: boolean | null;
|
|
4017
4017
|
boostingAmount: number | null;
|
|
4018
4018
|
biddingTaskScheduled: boolean | null;
|
|
4019
4019
|
scheduledBiddingTime: number | null;
|
|
4020
4020
|
feedbackCheckTaskId: string | null;
|
|
4021
|
-
bidDecision: "
|
|
4021
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
4022
4022
|
rejectedFeedback: string | null;
|
|
4023
4023
|
applicationId: string | null;
|
|
4024
4024
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const agentStatusSchema: z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>;
|
|
3
|
-
export declare const leadStatusEnum: z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "viewed", "replied", "won"]>;
|
|
3
|
+
export declare const leadStatusEnum: z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "viewed", "replied", "won"]>;
|
|
4
4
|
export declare const updateLeadStatusSchema: z.ZodObject<{
|
|
5
5
|
leadId: z.ZodString;
|
|
6
6
|
organizationId: z.ZodString;
|
|
7
7
|
campaignId: z.ZodString;
|
|
8
|
-
status: z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "viewed", "replied", "won"]>;
|
|
8
|
+
status: z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "viewed", "replied", "won"]>;
|
|
9
9
|
proposalId: z.ZodOptional<z.ZodString>;
|
|
10
10
|
userId: z.ZodOptional<z.ZodString>;
|
|
11
11
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -13,7 +13,7 @@ export declare const updateLeadStatusSchema: z.ZodObject<{
|
|
|
13
13
|
leadId: string;
|
|
14
14
|
organizationId: string;
|
|
15
15
|
campaignId: string;
|
|
16
|
-
status: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won";
|
|
16
|
+
status: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won";
|
|
17
17
|
proposalId?: string | undefined;
|
|
18
18
|
userId?: string | undefined;
|
|
19
19
|
wonAmount?: number | undefined;
|
|
@@ -21,19 +21,19 @@ export declare const updateLeadStatusSchema: z.ZodObject<{
|
|
|
21
21
|
leadId: string;
|
|
22
22
|
organizationId: string;
|
|
23
23
|
campaignId: string;
|
|
24
|
-
status: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won";
|
|
24
|
+
status: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won";
|
|
25
25
|
proposalId?: string | undefined;
|
|
26
26
|
userId?: string | undefined;
|
|
27
27
|
wonAmount?: number | undefined;
|
|
28
28
|
}>;
|
|
29
29
|
export declare const updateOrganizationLeadsStatusPayloadSchema: z.ZodArray<z.ZodObject<{
|
|
30
30
|
applicationUid: z.ZodString;
|
|
31
|
-
status: z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "viewed", "replied", "won"]>;
|
|
31
|
+
status: z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "viewed", "replied", "won"]>;
|
|
32
32
|
}, "strip", z.ZodTypeAny, {
|
|
33
|
-
status: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won";
|
|
33
|
+
status: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won";
|
|
34
34
|
applicationUid: string;
|
|
35
35
|
}, {
|
|
36
|
-
status: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won";
|
|
36
|
+
status: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won";
|
|
37
37
|
applicationUid: string;
|
|
38
38
|
}>, "many">;
|
|
39
39
|
export type LeadStatus = z.infer<typeof leadStatusEnum>;
|
|
@@ -96,13 +96,13 @@ export declare const leadStatusEventMetadata: z.ZodObject<{
|
|
|
96
96
|
leadId: z.ZodString;
|
|
97
97
|
userId: z.ZodString;
|
|
98
98
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
99
|
-
status: z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "viewed", "replied", "won"]>;
|
|
99
|
+
status: z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "viewed", "replied", "won"]>;
|
|
100
100
|
proposalId: z.ZodNullable<z.ZodString>;
|
|
101
101
|
}, "strip", z.ZodTypeAny, {
|
|
102
|
-
status: "insufficientConnects" | "leads" | "contacted" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won";
|
|
102
|
+
status: "insufficientConnects" | "leads" | "contacted" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won";
|
|
103
103
|
proposalId: string | null;
|
|
104
104
|
}, {
|
|
105
|
-
status: "insufficientConnects" | "leads" | "contacted" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won";
|
|
105
|
+
status: "insufficientConnects" | "leads" | "contacted" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won";
|
|
106
106
|
proposalId: string | null;
|
|
107
107
|
}>>;
|
|
108
108
|
reason: z.ZodOptional<z.ZodString>;
|
|
@@ -113,7 +113,7 @@ export declare const leadStatusEventMetadata: z.ZodObject<{
|
|
|
113
113
|
leadId: string;
|
|
114
114
|
reason?: string | undefined;
|
|
115
115
|
metadata?: {
|
|
116
|
-
status: "insufficientConnects" | "leads" | "contacted" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won";
|
|
116
|
+
status: "insufficientConnects" | "leads" | "contacted" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won";
|
|
117
117
|
proposalId: string | null;
|
|
118
118
|
} | undefined;
|
|
119
119
|
}, {
|
|
@@ -123,7 +123,7 @@ export declare const leadStatusEventMetadata: z.ZodObject<{
|
|
|
123
123
|
leadId: string;
|
|
124
124
|
reason?: string | undefined;
|
|
125
125
|
metadata?: {
|
|
126
|
-
status: "insufficientConnects" | "leads" | "contacted" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won";
|
|
126
|
+
status: "insufficientConnects" | "leads" | "contacted" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won";
|
|
127
127
|
proposalId: string | null;
|
|
128
128
|
} | undefined;
|
|
129
129
|
}>;
|
|
@@ -692,7 +692,7 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
|
|
|
692
692
|
biddingFixedHourlyRate: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
693
693
|
biddingHourlyRatePercentage: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
694
694
|
bidWithWarning: import("zod").ZodEnum<["bid", "skip"]>;
|
|
695
|
-
leadCounts: import("zod").ZodNullable<import("zod").ZodRecord<import("zod").ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "viewed", "replied", "won"]>, import("zod").ZodNumber>>;
|
|
695
|
+
leadCounts: import("zod").ZodNullable<import("zod").ZodRecord<import("zod").ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "viewed", "replied", "won"]>, import("zod").ZodNumber>>;
|
|
696
696
|
expenses: import("zod").ZodObject<{
|
|
697
697
|
biddingAmount: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
698
698
|
boostingAmount: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
@@ -867,7 +867,7 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
|
|
|
867
867
|
biddingFixedHourlyRate: number | null;
|
|
868
868
|
biddingHourlyRatePercentage: number | null;
|
|
869
869
|
bidWithWarning: "skip" | "bid";
|
|
870
|
-
leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won", number>> | null;
|
|
870
|
+
leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won", number>> | null;
|
|
871
871
|
expenses: {
|
|
872
872
|
biddingAmount: number;
|
|
873
873
|
boostingAmount: number;
|
|
@@ -977,7 +977,7 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
|
|
|
977
977
|
biddingFixedHourlyRate: number | null;
|
|
978
978
|
biddingHourlyRatePercentage: number | null;
|
|
979
979
|
bidWithWarning: "skip" | "bid";
|
|
980
|
-
leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won", number>> | null;
|
|
980
|
+
leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won", number>> | null;
|
|
981
981
|
expenses: {
|
|
982
982
|
biddingAmount?: number | undefined;
|
|
983
983
|
boostingAmount?: number | undefined;
|
|
@@ -1669,7 +1669,7 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
|
|
|
1669
1669
|
answer: string;
|
|
1670
1670
|
}>, "many">>;
|
|
1671
1671
|
agentStatus: import("zod").ZodNullable<import("zod").ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
1672
|
-
leadStatus: import("zod").ZodNullable<import("zod").ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "viewed", "replied", "won"]>>;
|
|
1672
|
+
leadStatus: import("zod").ZodNullable<import("zod").ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "viewed", "replied", "won"]>>;
|
|
1673
1673
|
biddingAmount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
1674
1674
|
boosted: import("zod").ZodNullable<import("zod").ZodBoolean>;
|
|
1675
1675
|
boostingAmount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
@@ -1786,11 +1786,11 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
|
|
|
1786
1786
|
answer: string;
|
|
1787
1787
|
}[] | null;
|
|
1788
1788
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
1789
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
1789
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
1790
1790
|
biddingTaskScheduled: boolean | null;
|
|
1791
1791
|
scheduledBiddingTime: number | null;
|
|
1792
1792
|
feedbackCheckTaskId: string | null;
|
|
1793
|
-
bidDecision: "
|
|
1793
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
1794
1794
|
rejectedFeedback: string | null;
|
|
1795
1795
|
applicationId: string | null;
|
|
1796
1796
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -1921,11 +1921,11 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
|
|
|
1921
1921
|
answer: string;
|
|
1922
1922
|
}[] | null;
|
|
1923
1923
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
1924
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
1924
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
1925
1925
|
biddingTaskScheduled: boolean | null;
|
|
1926
1926
|
scheduledBiddingTime: number | null;
|
|
1927
1927
|
feedbackCheckTaskId: string | null;
|
|
1928
|
-
bidDecision: "
|
|
1928
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
1929
1929
|
rejectedFeedback: string | null;
|
|
1930
1930
|
applicationId: string | null;
|
|
1931
1931
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -2137,7 +2137,7 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
|
|
|
2137
2137
|
biddingFixedHourlyRate: number | null;
|
|
2138
2138
|
biddingHourlyRatePercentage: number | null;
|
|
2139
2139
|
bidWithWarning: "skip" | "bid";
|
|
2140
|
-
leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won", number>> | null;
|
|
2140
|
+
leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won", number>> | null;
|
|
2141
2141
|
expenses: {
|
|
2142
2142
|
biddingAmount: number;
|
|
2143
2143
|
boostingAmount: number;
|
|
@@ -2342,11 +2342,11 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
|
|
|
2342
2342
|
answer: string;
|
|
2343
2343
|
}[] | null;
|
|
2344
2344
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
2345
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
2345
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
2346
2346
|
biddingTaskScheduled: boolean | null;
|
|
2347
2347
|
scheduledBiddingTime: number | null;
|
|
2348
2348
|
feedbackCheckTaskId: string | null;
|
|
2349
|
-
bidDecision: "
|
|
2349
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
2350
2350
|
rejectedFeedback: string | null;
|
|
2351
2351
|
applicationId: string | null;
|
|
2352
2352
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -2475,7 +2475,7 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
|
|
|
2475
2475
|
biddingFixedHourlyRate: number | null;
|
|
2476
2476
|
biddingHourlyRatePercentage: number | null;
|
|
2477
2477
|
bidWithWarning: "skip" | "bid";
|
|
2478
|
-
leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won", number>> | null;
|
|
2478
|
+
leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won", number>> | null;
|
|
2479
2479
|
expenses: {
|
|
2480
2480
|
biddingAmount?: number | undefined;
|
|
2481
2481
|
boostingAmount?: number | undefined;
|
|
@@ -2685,11 +2685,11 @@ export declare const checkLeadStatusPayloadSchema: import("zod").ZodObject<{
|
|
|
2685
2685
|
answer: string;
|
|
2686
2686
|
}[] | null;
|
|
2687
2687
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
2688
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
2688
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
2689
2689
|
biddingTaskScheduled: boolean | null;
|
|
2690
2690
|
scheduledBiddingTime: number | null;
|
|
2691
2691
|
feedbackCheckTaskId: string | null;
|
|
2692
|
-
bidDecision: "
|
|
2692
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
2693
2693
|
rejectedFeedback: string | null;
|
|
2694
2694
|
applicationId: string | null;
|
|
2695
2695
|
activity?: Partial<Record<"4h" | "24h", {
|