lancer-shared 1.2.262 → 1.2.264
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 +6 -2
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +6 -2
- package/dist/bundle.esm.js.map +1 -1
- package/dist/constants/routes.d.ts +1 -0
- package/dist/schemas/agent/index.d.ts +10 -5
- package/dist/schemas/bidder/bid.d.ts +98 -49
- package/dist/schemas/campaign/campaign-analytics.d.ts +38 -29
- package/dist/schemas/campaign/campaign.d.ts +9 -9
- package/dist/schemas/lead/index.d.ts +36 -18
- 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 +15 -10
- package/package.json +1 -1
|
@@ -321,7 +321,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
321
321
|
question: string;
|
|
322
322
|
}>, "many">>;
|
|
323
323
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
324
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "
|
|
324
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "won"]>>;
|
|
325
325
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
326
326
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
327
327
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -333,6 +333,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
333
333
|
inQueue: z.ZodNullable<z.ZodBoolean>;
|
|
334
334
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
335
335
|
checkFeedbackStatusCreatedAt: z.ZodNullable<z.ZodNumber>;
|
|
336
|
+
biddingScheduledAt: z.ZodNullable<z.ZodNumber>;
|
|
336
337
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
337
338
|
feedbackCheckTaskId: z.ZodNullable<z.ZodString>;
|
|
338
339
|
bidDecision: z.ZodNullable<z.ZodEnum<["proceeded", "rejected"]>>;
|
|
@@ -507,7 +508,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
507
508
|
question: string;
|
|
508
509
|
}[] | null;
|
|
509
510
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
510
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
511
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
511
512
|
biddingAmount: number | null;
|
|
512
513
|
boosted: boolean | null;
|
|
513
514
|
boostingAmount: number | null;
|
|
@@ -516,6 +517,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
516
517
|
biddingTaskScheduled: boolean | null;
|
|
517
518
|
scheduledBiddingTime: number | null;
|
|
518
519
|
checkFeedbackStatusCreatedAt: number | null;
|
|
520
|
+
biddingScheduledAt: number | null;
|
|
519
521
|
feedbackCheckTaskId: string | null;
|
|
520
522
|
bidDecision: "rejected" | "proceeded" | null;
|
|
521
523
|
rejectedFeedback: string | null;
|
|
@@ -667,7 +669,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
667
669
|
question: string;
|
|
668
670
|
}[] | null;
|
|
669
671
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
670
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
672
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
671
673
|
biddingAmount: number | null;
|
|
672
674
|
boosted: boolean | null;
|
|
673
675
|
boostingAmount: number | null;
|
|
@@ -676,6 +678,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
676
678
|
biddingTaskScheduled: boolean | null;
|
|
677
679
|
scheduledBiddingTime: number | null;
|
|
678
680
|
checkFeedbackStatusCreatedAt: number | null;
|
|
681
|
+
biddingScheduledAt: number | null;
|
|
679
682
|
feedbackCheckTaskId: string | null;
|
|
680
683
|
bidDecision: "rejected" | "proceeded" | null;
|
|
681
684
|
rejectedFeedback: string | null;
|
|
@@ -870,7 +873,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
870
873
|
question: string;
|
|
871
874
|
}[] | null;
|
|
872
875
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
873
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
876
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
874
877
|
biddingAmount: number | null;
|
|
875
878
|
boosted: boolean | null;
|
|
876
879
|
boostingAmount: number | null;
|
|
@@ -879,6 +882,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
879
882
|
biddingTaskScheduled: boolean | null;
|
|
880
883
|
scheduledBiddingTime: number | null;
|
|
881
884
|
checkFeedbackStatusCreatedAt: number | null;
|
|
885
|
+
biddingScheduledAt: number | null;
|
|
882
886
|
feedbackCheckTaskId: string | null;
|
|
883
887
|
bidDecision: "rejected" | "proceeded" | null;
|
|
884
888
|
rejectedFeedback: string | null;
|
|
@@ -1053,7 +1057,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
1053
1057
|
question: string;
|
|
1054
1058
|
}[] | null;
|
|
1055
1059
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
1056
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
1060
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
1057
1061
|
biddingAmount: number | null;
|
|
1058
1062
|
boosted: boolean | null;
|
|
1059
1063
|
boostingAmount: number | null;
|
|
@@ -1062,6 +1066,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
1062
1066
|
biddingTaskScheduled: boolean | null;
|
|
1063
1067
|
scheduledBiddingTime: number | null;
|
|
1064
1068
|
checkFeedbackStatusCreatedAt: number | null;
|
|
1069
|
+
biddingScheduledAt: number | null;
|
|
1065
1070
|
feedbackCheckTaskId: string | null;
|
|
1066
1071
|
bidDecision: "rejected" | "proceeded" | null;
|
|
1067
1072
|
rejectedFeedback: string | null;
|
|
@@ -1435,7 +1440,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1435
1440
|
question: string;
|
|
1436
1441
|
}>, "many">>;
|
|
1437
1442
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
1438
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "
|
|
1443
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "won"]>>;
|
|
1439
1444
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
1440
1445
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
1441
1446
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1447,6 +1452,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1447
1452
|
inQueue: z.ZodNullable<z.ZodBoolean>;
|
|
1448
1453
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
1449
1454
|
checkFeedbackStatusCreatedAt: z.ZodNullable<z.ZodNumber>;
|
|
1455
|
+
biddingScheduledAt: z.ZodNullable<z.ZodNumber>;
|
|
1450
1456
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
1451
1457
|
feedbackCheckTaskId: z.ZodNullable<z.ZodString>;
|
|
1452
1458
|
bidDecision: z.ZodNullable<z.ZodEnum<["proceeded", "rejected"]>>;
|
|
@@ -1621,7 +1627,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1621
1627
|
question: string;
|
|
1622
1628
|
}[] | null;
|
|
1623
1629
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
1624
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
1630
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
1625
1631
|
biddingAmount: number | null;
|
|
1626
1632
|
boosted: boolean | null;
|
|
1627
1633
|
boostingAmount: number | null;
|
|
@@ -1630,6 +1636,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1630
1636
|
biddingTaskScheduled: boolean | null;
|
|
1631
1637
|
scheduledBiddingTime: number | null;
|
|
1632
1638
|
checkFeedbackStatusCreatedAt: number | null;
|
|
1639
|
+
biddingScheduledAt: number | null;
|
|
1633
1640
|
feedbackCheckTaskId: string | null;
|
|
1634
1641
|
bidDecision: "rejected" | "proceeded" | null;
|
|
1635
1642
|
rejectedFeedback: string | null;
|
|
@@ -1781,7 +1788,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1781
1788
|
question: string;
|
|
1782
1789
|
}[] | null;
|
|
1783
1790
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
1784
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
1791
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
1785
1792
|
biddingAmount: number | null;
|
|
1786
1793
|
boosted: boolean | null;
|
|
1787
1794
|
boostingAmount: number | null;
|
|
@@ -1790,6 +1797,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1790
1797
|
biddingTaskScheduled: boolean | null;
|
|
1791
1798
|
scheduledBiddingTime: number | null;
|
|
1792
1799
|
checkFeedbackStatusCreatedAt: number | null;
|
|
1800
|
+
biddingScheduledAt: number | null;
|
|
1793
1801
|
feedbackCheckTaskId: string | null;
|
|
1794
1802
|
bidDecision: "rejected" | "proceeded" | null;
|
|
1795
1803
|
rejectedFeedback: string | null;
|
|
@@ -1984,7 +1992,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1984
1992
|
question: string;
|
|
1985
1993
|
}[] | null;
|
|
1986
1994
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
1987
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
1995
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
1988
1996
|
biddingAmount: number | null;
|
|
1989
1997
|
boosted: boolean | null;
|
|
1990
1998
|
boostingAmount: number | null;
|
|
@@ -1993,6 +2001,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1993
2001
|
biddingTaskScheduled: boolean | null;
|
|
1994
2002
|
scheduledBiddingTime: number | null;
|
|
1995
2003
|
checkFeedbackStatusCreatedAt: number | null;
|
|
2004
|
+
biddingScheduledAt: number | null;
|
|
1996
2005
|
feedbackCheckTaskId: string | null;
|
|
1997
2006
|
bidDecision: "rejected" | "proceeded" | null;
|
|
1998
2007
|
rejectedFeedback: string | null;
|
|
@@ -2167,7 +2176,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
2167
2176
|
question: string;
|
|
2168
2177
|
}[] | null;
|
|
2169
2178
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
2170
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
2179
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
2171
2180
|
biddingAmount: number | null;
|
|
2172
2181
|
boosted: boolean | null;
|
|
2173
2182
|
boostingAmount: number | null;
|
|
@@ -2176,6 +2185,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
2176
2185
|
biddingTaskScheduled: boolean | null;
|
|
2177
2186
|
scheduledBiddingTime: number | null;
|
|
2178
2187
|
checkFeedbackStatusCreatedAt: number | null;
|
|
2188
|
+
biddingScheduledAt: number | null;
|
|
2179
2189
|
feedbackCheckTaskId: string | null;
|
|
2180
2190
|
bidDecision: "rejected" | "proceeded" | null;
|
|
2181
2191
|
rejectedFeedback: string | null;
|
|
@@ -2549,7 +2559,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2549
2559
|
question: string;
|
|
2550
2560
|
}>, "many">>;
|
|
2551
2561
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
2552
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "
|
|
2562
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "won"]>>;
|
|
2553
2563
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
2554
2564
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
2555
2565
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -2561,6 +2571,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2561
2571
|
inQueue: z.ZodNullable<z.ZodBoolean>;
|
|
2562
2572
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
2563
2573
|
checkFeedbackStatusCreatedAt: z.ZodNullable<z.ZodNumber>;
|
|
2574
|
+
biddingScheduledAt: z.ZodNullable<z.ZodNumber>;
|
|
2564
2575
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
2565
2576
|
feedbackCheckTaskId: z.ZodNullable<z.ZodString>;
|
|
2566
2577
|
bidDecision: z.ZodNullable<z.ZodEnum<["proceeded", "rejected"]>>;
|
|
@@ -2735,7 +2746,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2735
2746
|
question: string;
|
|
2736
2747
|
}[] | null;
|
|
2737
2748
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
2738
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
2749
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
2739
2750
|
biddingAmount: number | null;
|
|
2740
2751
|
boosted: boolean | null;
|
|
2741
2752
|
boostingAmount: number | null;
|
|
@@ -2744,6 +2755,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2744
2755
|
biddingTaskScheduled: boolean | null;
|
|
2745
2756
|
scheduledBiddingTime: number | null;
|
|
2746
2757
|
checkFeedbackStatusCreatedAt: number | null;
|
|
2758
|
+
biddingScheduledAt: number | null;
|
|
2747
2759
|
feedbackCheckTaskId: string | null;
|
|
2748
2760
|
bidDecision: "rejected" | "proceeded" | null;
|
|
2749
2761
|
rejectedFeedback: string | null;
|
|
@@ -2895,7 +2907,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2895
2907
|
question: string;
|
|
2896
2908
|
}[] | null;
|
|
2897
2909
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
2898
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
2910
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
2899
2911
|
biddingAmount: number | null;
|
|
2900
2912
|
boosted: boolean | null;
|
|
2901
2913
|
boostingAmount: number | null;
|
|
@@ -2904,6 +2916,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2904
2916
|
biddingTaskScheduled: boolean | null;
|
|
2905
2917
|
scheduledBiddingTime: number | null;
|
|
2906
2918
|
checkFeedbackStatusCreatedAt: number | null;
|
|
2919
|
+
biddingScheduledAt: number | null;
|
|
2907
2920
|
feedbackCheckTaskId: string | null;
|
|
2908
2921
|
bidDecision: "rejected" | "proceeded" | null;
|
|
2909
2922
|
rejectedFeedback: string | null;
|
|
@@ -3104,7 +3117,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3104
3117
|
question: string;
|
|
3105
3118
|
}[] | null;
|
|
3106
3119
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
3107
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
3120
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
3108
3121
|
biddingAmount: number | null;
|
|
3109
3122
|
boosted: boolean | null;
|
|
3110
3123
|
boostingAmount: number | null;
|
|
@@ -3113,6 +3126,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3113
3126
|
biddingTaskScheduled: boolean | null;
|
|
3114
3127
|
scheduledBiddingTime: number | null;
|
|
3115
3128
|
checkFeedbackStatusCreatedAt: number | null;
|
|
3129
|
+
biddingScheduledAt: number | null;
|
|
3116
3130
|
feedbackCheckTaskId: string | null;
|
|
3117
3131
|
bidDecision: "rejected" | "proceeded" | null;
|
|
3118
3132
|
rejectedFeedback: string | null;
|
|
@@ -3290,7 +3304,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3290
3304
|
question: string;
|
|
3291
3305
|
}[] | null;
|
|
3292
3306
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
3293
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
3307
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
3294
3308
|
biddingAmount: number | null;
|
|
3295
3309
|
boosted: boolean | null;
|
|
3296
3310
|
boostingAmount: number | null;
|
|
@@ -3299,6 +3313,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3299
3313
|
biddingTaskScheduled: boolean | null;
|
|
3300
3314
|
scheduledBiddingTime: number | null;
|
|
3301
3315
|
checkFeedbackStatusCreatedAt: number | null;
|
|
3316
|
+
biddingScheduledAt: number | null;
|
|
3302
3317
|
feedbackCheckTaskId: string | null;
|
|
3303
3318
|
bidDecision: "rejected" | "proceeded" | null;
|
|
3304
3319
|
rejectedFeedback: string | null;
|
|
@@ -3673,7 +3688,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3673
3688
|
question: string;
|
|
3674
3689
|
}>, "many">>;
|
|
3675
3690
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
3676
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "
|
|
3691
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "won"]>>;
|
|
3677
3692
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
3678
3693
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
3679
3694
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -3685,6 +3700,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3685
3700
|
inQueue: z.ZodNullable<z.ZodBoolean>;
|
|
3686
3701
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
3687
3702
|
checkFeedbackStatusCreatedAt: z.ZodNullable<z.ZodNumber>;
|
|
3703
|
+
biddingScheduledAt: z.ZodNullable<z.ZodNumber>;
|
|
3688
3704
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
3689
3705
|
feedbackCheckTaskId: z.ZodNullable<z.ZodString>;
|
|
3690
3706
|
bidDecision: z.ZodNullable<z.ZodEnum<["proceeded", "rejected"]>>;
|
|
@@ -3859,7 +3875,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3859
3875
|
question: string;
|
|
3860
3876
|
}[] | null;
|
|
3861
3877
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
3862
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
3878
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
3863
3879
|
biddingAmount: number | null;
|
|
3864
3880
|
boosted: boolean | null;
|
|
3865
3881
|
boostingAmount: number | null;
|
|
@@ -3868,6 +3884,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3868
3884
|
biddingTaskScheduled: boolean | null;
|
|
3869
3885
|
scheduledBiddingTime: number | null;
|
|
3870
3886
|
checkFeedbackStatusCreatedAt: number | null;
|
|
3887
|
+
biddingScheduledAt: number | null;
|
|
3871
3888
|
feedbackCheckTaskId: string | null;
|
|
3872
3889
|
bidDecision: "rejected" | "proceeded" | null;
|
|
3873
3890
|
rejectedFeedback: string | null;
|
|
@@ -4019,7 +4036,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
4019
4036
|
question: string;
|
|
4020
4037
|
}[] | null;
|
|
4021
4038
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
4022
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
4039
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
4023
4040
|
biddingAmount: number | null;
|
|
4024
4041
|
boosted: boolean | null;
|
|
4025
4042
|
boostingAmount: number | null;
|
|
@@ -4028,6 +4045,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
4028
4045
|
biddingTaskScheduled: boolean | null;
|
|
4029
4046
|
scheduledBiddingTime: number | null;
|
|
4030
4047
|
checkFeedbackStatusCreatedAt: number | null;
|
|
4048
|
+
biddingScheduledAt: number | null;
|
|
4031
4049
|
feedbackCheckTaskId: string | null;
|
|
4032
4050
|
bidDecision: "rejected" | "proceeded" | null;
|
|
4033
4051
|
rejectedFeedback: string | null;
|
|
@@ -4189,7 +4207,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
4189
4207
|
question: string;
|
|
4190
4208
|
}[] | null;
|
|
4191
4209
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
4192
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
4210
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
4193
4211
|
biddingAmount: number | null;
|
|
4194
4212
|
boosted: boolean | null;
|
|
4195
4213
|
boostingAmount: number | null;
|
|
@@ -4198,6 +4216,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
4198
4216
|
biddingTaskScheduled: boolean | null;
|
|
4199
4217
|
scheduledBiddingTime: number | null;
|
|
4200
4218
|
checkFeedbackStatusCreatedAt: number | null;
|
|
4219
|
+
biddingScheduledAt: number | null;
|
|
4201
4220
|
feedbackCheckTaskId: string | null;
|
|
4202
4221
|
bidDecision: "rejected" | "proceeded" | null;
|
|
4203
4222
|
rejectedFeedback: string | null;
|
|
@@ -4356,7 +4375,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
4356
4375
|
question: string;
|
|
4357
4376
|
}[] | null;
|
|
4358
4377
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
4359
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
4378
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
4360
4379
|
biddingAmount: number | null;
|
|
4361
4380
|
boosted: boolean | null;
|
|
4362
4381
|
boostingAmount: number | null;
|
|
@@ -4365,6 +4384,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
4365
4384
|
biddingTaskScheduled: boolean | null;
|
|
4366
4385
|
scheduledBiddingTime: number | null;
|
|
4367
4386
|
checkFeedbackStatusCreatedAt: number | null;
|
|
4387
|
+
biddingScheduledAt: number | null;
|
|
4368
4388
|
feedbackCheckTaskId: string | null;
|
|
4369
4389
|
bidDecision: "rejected" | "proceeded" | null;
|
|
4370
4390
|
rejectedFeedback: string | null;
|
|
@@ -4733,7 +4753,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4733
4753
|
question: string;
|
|
4734
4754
|
}>, "many">>;
|
|
4735
4755
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
4736
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "
|
|
4756
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "won"]>>;
|
|
4737
4757
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
4738
4758
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
4739
4759
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -4745,6 +4765,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4745
4765
|
inQueue: z.ZodNullable<z.ZodBoolean>;
|
|
4746
4766
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
4747
4767
|
checkFeedbackStatusCreatedAt: z.ZodNullable<z.ZodNumber>;
|
|
4768
|
+
biddingScheduledAt: z.ZodNullable<z.ZodNumber>;
|
|
4748
4769
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
4749
4770
|
feedbackCheckTaskId: z.ZodNullable<z.ZodString>;
|
|
4750
4771
|
bidDecision: z.ZodNullable<z.ZodEnum<["proceeded", "rejected"]>>;
|
|
@@ -4919,7 +4940,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4919
4940
|
question: string;
|
|
4920
4941
|
}[] | null;
|
|
4921
4942
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
4922
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
4943
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
4923
4944
|
biddingAmount: number | null;
|
|
4924
4945
|
boosted: boolean | null;
|
|
4925
4946
|
boostingAmount: number | null;
|
|
@@ -4928,6 +4949,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4928
4949
|
biddingTaskScheduled: boolean | null;
|
|
4929
4950
|
scheduledBiddingTime: number | null;
|
|
4930
4951
|
checkFeedbackStatusCreatedAt: number | null;
|
|
4952
|
+
biddingScheduledAt: number | null;
|
|
4931
4953
|
feedbackCheckTaskId: string | null;
|
|
4932
4954
|
bidDecision: "rejected" | "proceeded" | null;
|
|
4933
4955
|
rejectedFeedback: string | null;
|
|
@@ -5079,7 +5101,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5079
5101
|
question: string;
|
|
5080
5102
|
}[] | null;
|
|
5081
5103
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
5082
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
5104
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
5083
5105
|
biddingAmount: number | null;
|
|
5084
5106
|
boosted: boolean | null;
|
|
5085
5107
|
boostingAmount: number | null;
|
|
@@ -5088,6 +5110,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5088
5110
|
biddingTaskScheduled: boolean | null;
|
|
5089
5111
|
scheduledBiddingTime: number | null;
|
|
5090
5112
|
checkFeedbackStatusCreatedAt: number | null;
|
|
5113
|
+
biddingScheduledAt: number | null;
|
|
5091
5114
|
feedbackCheckTaskId: string | null;
|
|
5092
5115
|
bidDecision: "rejected" | "proceeded" | null;
|
|
5093
5116
|
rejectedFeedback: string | null;
|
|
@@ -5459,7 +5482,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5459
5482
|
question: string;
|
|
5460
5483
|
}>, "many">>;
|
|
5461
5484
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
5462
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "
|
|
5485
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "won"]>>;
|
|
5463
5486
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
5464
5487
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
5465
5488
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -5471,6 +5494,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5471
5494
|
inQueue: z.ZodNullable<z.ZodBoolean>;
|
|
5472
5495
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
5473
5496
|
checkFeedbackStatusCreatedAt: z.ZodNullable<z.ZodNumber>;
|
|
5497
|
+
biddingScheduledAt: z.ZodNullable<z.ZodNumber>;
|
|
5474
5498
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
5475
5499
|
feedbackCheckTaskId: z.ZodNullable<z.ZodString>;
|
|
5476
5500
|
bidDecision: z.ZodNullable<z.ZodEnum<["proceeded", "rejected"]>>;
|
|
@@ -5645,7 +5669,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5645
5669
|
question: string;
|
|
5646
5670
|
}[] | null;
|
|
5647
5671
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
5648
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
5672
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
5649
5673
|
biddingAmount: number | null;
|
|
5650
5674
|
boosted: boolean | null;
|
|
5651
5675
|
boostingAmount: number | null;
|
|
@@ -5654,6 +5678,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5654
5678
|
biddingTaskScheduled: boolean | null;
|
|
5655
5679
|
scheduledBiddingTime: number | null;
|
|
5656
5680
|
checkFeedbackStatusCreatedAt: number | null;
|
|
5681
|
+
biddingScheduledAt: number | null;
|
|
5657
5682
|
feedbackCheckTaskId: string | null;
|
|
5658
5683
|
bidDecision: "rejected" | "proceeded" | null;
|
|
5659
5684
|
rejectedFeedback: string | null;
|
|
@@ -5805,7 +5830,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5805
5830
|
question: string;
|
|
5806
5831
|
}[] | null;
|
|
5807
5832
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
5808
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
5833
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
5809
5834
|
biddingAmount: number | null;
|
|
5810
5835
|
boosted: boolean | null;
|
|
5811
5836
|
boostingAmount: number | null;
|
|
@@ -5814,6 +5839,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5814
5839
|
biddingTaskScheduled: boolean | null;
|
|
5815
5840
|
scheduledBiddingTime: number | null;
|
|
5816
5841
|
checkFeedbackStatusCreatedAt: number | null;
|
|
5842
|
+
biddingScheduledAt: number | null;
|
|
5817
5843
|
feedbackCheckTaskId: string | null;
|
|
5818
5844
|
bidDecision: "rejected" | "proceeded" | null;
|
|
5819
5845
|
rejectedFeedback: string | null;
|
|
@@ -6014,7 +6040,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6014
6040
|
question: string;
|
|
6015
6041
|
}[] | null;
|
|
6016
6042
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
6017
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
6043
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
6018
6044
|
biddingAmount: number | null;
|
|
6019
6045
|
boosted: boolean | null;
|
|
6020
6046
|
boostingAmount: number | null;
|
|
@@ -6023,6 +6049,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6023
6049
|
biddingTaskScheduled: boolean | null;
|
|
6024
6050
|
scheduledBiddingTime: number | null;
|
|
6025
6051
|
checkFeedbackStatusCreatedAt: number | null;
|
|
6052
|
+
biddingScheduledAt: number | null;
|
|
6026
6053
|
feedbackCheckTaskId: string | null;
|
|
6027
6054
|
bidDecision: "rejected" | "proceeded" | null;
|
|
6028
6055
|
rejectedFeedback: string | null;
|
|
@@ -6200,7 +6227,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6200
6227
|
question: string;
|
|
6201
6228
|
}[] | null;
|
|
6202
6229
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
6203
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
6230
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
6204
6231
|
biddingAmount: number | null;
|
|
6205
6232
|
boosted: boolean | null;
|
|
6206
6233
|
boostingAmount: number | null;
|
|
@@ -6209,6 +6236,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6209
6236
|
biddingTaskScheduled: boolean | null;
|
|
6210
6237
|
scheduledBiddingTime: number | null;
|
|
6211
6238
|
checkFeedbackStatusCreatedAt: number | null;
|
|
6239
|
+
biddingScheduledAt: number | null;
|
|
6212
6240
|
feedbackCheckTaskId: string | null;
|
|
6213
6241
|
bidDecision: "rejected" | "proceeded" | null;
|
|
6214
6242
|
rejectedFeedback: string | null;
|
|
@@ -6374,7 +6402,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6374
6402
|
question: string;
|
|
6375
6403
|
}[] | null;
|
|
6376
6404
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
6377
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
6405
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
6378
6406
|
biddingAmount: number | null;
|
|
6379
6407
|
boosted: boolean | null;
|
|
6380
6408
|
boostingAmount: number | null;
|
|
@@ -6383,6 +6411,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6383
6411
|
biddingTaskScheduled: boolean | null;
|
|
6384
6412
|
scheduledBiddingTime: number | null;
|
|
6385
6413
|
checkFeedbackStatusCreatedAt: number | null;
|
|
6414
|
+
biddingScheduledAt: number | null;
|
|
6386
6415
|
feedbackCheckTaskId: string | null;
|
|
6387
6416
|
bidDecision: "rejected" | "proceeded" | null;
|
|
6388
6417
|
rejectedFeedback: string | null;
|
|
@@ -6554,7 +6583,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6554
6583
|
question: string;
|
|
6555
6584
|
}[] | null;
|
|
6556
6585
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
6557
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
6586
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
6558
6587
|
biddingAmount: number | null;
|
|
6559
6588
|
boosted: boolean | null;
|
|
6560
6589
|
boostingAmount: number | null;
|
|
@@ -6563,6 +6592,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6563
6592
|
biddingTaskScheduled: boolean | null;
|
|
6564
6593
|
scheduledBiddingTime: number | null;
|
|
6565
6594
|
checkFeedbackStatusCreatedAt: number | null;
|
|
6595
|
+
biddingScheduledAt: number | null;
|
|
6566
6596
|
feedbackCheckTaskId: string | null;
|
|
6567
6597
|
bidDecision: "rejected" | "proceeded" | null;
|
|
6568
6598
|
rejectedFeedback: string | null;
|
|
@@ -6728,7 +6758,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6728
6758
|
question: string;
|
|
6729
6759
|
}[] | null;
|
|
6730
6760
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
6731
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
6761
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
6732
6762
|
biddingAmount: number | null;
|
|
6733
6763
|
boosted: boolean | null;
|
|
6734
6764
|
boostingAmount: number | null;
|
|
@@ -6737,6 +6767,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6737
6767
|
biddingTaskScheduled: boolean | null;
|
|
6738
6768
|
scheduledBiddingTime: number | null;
|
|
6739
6769
|
checkFeedbackStatusCreatedAt: number | null;
|
|
6770
|
+
biddingScheduledAt: number | null;
|
|
6740
6771
|
feedbackCheckTaskId: string | null;
|
|
6741
6772
|
bidDecision: "rejected" | "proceeded" | null;
|
|
6742
6773
|
rejectedFeedback: string | null;
|
|
@@ -6908,7 +6939,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6908
6939
|
question: string;
|
|
6909
6940
|
}[] | null;
|
|
6910
6941
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
6911
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
6942
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
6912
6943
|
biddingAmount: number | null;
|
|
6913
6944
|
boosted: boolean | null;
|
|
6914
6945
|
boostingAmount: number | null;
|
|
@@ -6917,6 +6948,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6917
6948
|
biddingTaskScheduled: boolean | null;
|
|
6918
6949
|
scheduledBiddingTime: number | null;
|
|
6919
6950
|
checkFeedbackStatusCreatedAt: number | null;
|
|
6951
|
+
biddingScheduledAt: number | null;
|
|
6920
6952
|
feedbackCheckTaskId: string | null;
|
|
6921
6953
|
bidDecision: "rejected" | "proceeded" | null;
|
|
6922
6954
|
rejectedFeedback: string | null;
|
|
@@ -7292,7 +7324,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7292
7324
|
question: string;
|
|
7293
7325
|
}>, "many">>;
|
|
7294
7326
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
7295
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "
|
|
7327
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "won"]>>;
|
|
7296
7328
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
7297
7329
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
7298
7330
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -7304,6 +7336,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7304
7336
|
inQueue: z.ZodNullable<z.ZodBoolean>;
|
|
7305
7337
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
7306
7338
|
checkFeedbackStatusCreatedAt: z.ZodNullable<z.ZodNumber>;
|
|
7339
|
+
biddingScheduledAt: z.ZodNullable<z.ZodNumber>;
|
|
7307
7340
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
7308
7341
|
feedbackCheckTaskId: z.ZodNullable<z.ZodString>;
|
|
7309
7342
|
bidDecision: z.ZodNullable<z.ZodEnum<["proceeded", "rejected"]>>;
|
|
@@ -7478,7 +7511,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7478
7511
|
question: string;
|
|
7479
7512
|
}[] | null;
|
|
7480
7513
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
7481
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
7514
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
7482
7515
|
biddingAmount: number | null;
|
|
7483
7516
|
boosted: boolean | null;
|
|
7484
7517
|
boostingAmount: number | null;
|
|
@@ -7487,6 +7520,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7487
7520
|
biddingTaskScheduled: boolean | null;
|
|
7488
7521
|
scheduledBiddingTime: number | null;
|
|
7489
7522
|
checkFeedbackStatusCreatedAt: number | null;
|
|
7523
|
+
biddingScheduledAt: number | null;
|
|
7490
7524
|
feedbackCheckTaskId: string | null;
|
|
7491
7525
|
bidDecision: "rejected" | "proceeded" | null;
|
|
7492
7526
|
rejectedFeedback: string | null;
|
|
@@ -7638,7 +7672,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7638
7672
|
question: string;
|
|
7639
7673
|
}[] | null;
|
|
7640
7674
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
7641
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
7675
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
7642
7676
|
biddingAmount: number | null;
|
|
7643
7677
|
boosted: boolean | null;
|
|
7644
7678
|
boostingAmount: number | null;
|
|
@@ -7647,6 +7681,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7647
7681
|
biddingTaskScheduled: boolean | null;
|
|
7648
7682
|
scheduledBiddingTime: number | null;
|
|
7649
7683
|
checkFeedbackStatusCreatedAt: number | null;
|
|
7684
|
+
biddingScheduledAt: number | null;
|
|
7650
7685
|
feedbackCheckTaskId: string | null;
|
|
7651
7686
|
bidDecision: "rejected" | "proceeded" | null;
|
|
7652
7687
|
rejectedFeedback: string | null;
|
|
@@ -8018,7 +8053,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8018
8053
|
question: string;
|
|
8019
8054
|
}>, "many">>;
|
|
8020
8055
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
8021
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "
|
|
8056
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "won"]>>;
|
|
8022
8057
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
8023
8058
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
8024
8059
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -8030,6 +8065,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8030
8065
|
inQueue: z.ZodNullable<z.ZodBoolean>;
|
|
8031
8066
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
8032
8067
|
checkFeedbackStatusCreatedAt: z.ZodNullable<z.ZodNumber>;
|
|
8068
|
+
biddingScheduledAt: z.ZodNullable<z.ZodNumber>;
|
|
8033
8069
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
8034
8070
|
feedbackCheckTaskId: z.ZodNullable<z.ZodString>;
|
|
8035
8071
|
bidDecision: z.ZodNullable<z.ZodEnum<["proceeded", "rejected"]>>;
|
|
@@ -8204,7 +8240,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8204
8240
|
question: string;
|
|
8205
8241
|
}[] | null;
|
|
8206
8242
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
8207
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
8243
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
8208
8244
|
biddingAmount: number | null;
|
|
8209
8245
|
boosted: boolean | null;
|
|
8210
8246
|
boostingAmount: number | null;
|
|
@@ -8213,6 +8249,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8213
8249
|
biddingTaskScheduled: boolean | null;
|
|
8214
8250
|
scheduledBiddingTime: number | null;
|
|
8215
8251
|
checkFeedbackStatusCreatedAt: number | null;
|
|
8252
|
+
biddingScheduledAt: number | null;
|
|
8216
8253
|
feedbackCheckTaskId: string | null;
|
|
8217
8254
|
bidDecision: "rejected" | "proceeded" | null;
|
|
8218
8255
|
rejectedFeedback: string | null;
|
|
@@ -8364,7 +8401,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8364
8401
|
question: string;
|
|
8365
8402
|
}[] | null;
|
|
8366
8403
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
8367
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
8404
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
8368
8405
|
biddingAmount: number | null;
|
|
8369
8406
|
boosted: boolean | null;
|
|
8370
8407
|
boostingAmount: number | null;
|
|
@@ -8373,6 +8410,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8373
8410
|
biddingTaskScheduled: boolean | null;
|
|
8374
8411
|
scheduledBiddingTime: number | null;
|
|
8375
8412
|
checkFeedbackStatusCreatedAt: number | null;
|
|
8413
|
+
biddingScheduledAt: number | null;
|
|
8376
8414
|
feedbackCheckTaskId: string | null;
|
|
8377
8415
|
bidDecision: "rejected" | "proceeded" | null;
|
|
8378
8416
|
rejectedFeedback: string | null;
|
|
@@ -8567,7 +8605,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8567
8605
|
question: string;
|
|
8568
8606
|
}[] | null;
|
|
8569
8607
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
8570
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
8608
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
8571
8609
|
biddingAmount: number | null;
|
|
8572
8610
|
boosted: boolean | null;
|
|
8573
8611
|
boostingAmount: number | null;
|
|
@@ -8576,6 +8614,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8576
8614
|
biddingTaskScheduled: boolean | null;
|
|
8577
8615
|
scheduledBiddingTime: number | null;
|
|
8578
8616
|
checkFeedbackStatusCreatedAt: number | null;
|
|
8617
|
+
biddingScheduledAt: number | null;
|
|
8579
8618
|
feedbackCheckTaskId: string | null;
|
|
8580
8619
|
bidDecision: "rejected" | "proceeded" | null;
|
|
8581
8620
|
rejectedFeedback: string | null;
|
|
@@ -8750,7 +8789,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8750
8789
|
question: string;
|
|
8751
8790
|
}[] | null;
|
|
8752
8791
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
8753
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
8792
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
8754
8793
|
biddingAmount: number | null;
|
|
8755
8794
|
boosted: boolean | null;
|
|
8756
8795
|
boostingAmount: number | null;
|
|
@@ -8759,6 +8798,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8759
8798
|
biddingTaskScheduled: boolean | null;
|
|
8760
8799
|
scheduledBiddingTime: number | null;
|
|
8761
8800
|
checkFeedbackStatusCreatedAt: number | null;
|
|
8801
|
+
biddingScheduledAt: number | null;
|
|
8762
8802
|
feedbackCheckTaskId: string | null;
|
|
8763
8803
|
bidDecision: "rejected" | "proceeded" | null;
|
|
8764
8804
|
rejectedFeedback: string | null;
|
|
@@ -8923,7 +8963,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8923
8963
|
question: string;
|
|
8924
8964
|
}[] | null;
|
|
8925
8965
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
8926
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
8966
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
8927
8967
|
biddingAmount: number | null;
|
|
8928
8968
|
boosted: boolean | null;
|
|
8929
8969
|
boostingAmount: number | null;
|
|
@@ -8932,6 +8972,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8932
8972
|
biddingTaskScheduled: boolean | null;
|
|
8933
8973
|
scheduledBiddingTime: number | null;
|
|
8934
8974
|
checkFeedbackStatusCreatedAt: number | null;
|
|
8975
|
+
biddingScheduledAt: number | null;
|
|
8935
8976
|
feedbackCheckTaskId: string | null;
|
|
8936
8977
|
bidDecision: "rejected" | "proceeded" | null;
|
|
8937
8978
|
rejectedFeedback: string | null;
|
|
@@ -9101,7 +9142,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9101
9142
|
question: string;
|
|
9102
9143
|
}[] | null;
|
|
9103
9144
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
9104
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
9145
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
9105
9146
|
biddingAmount: number | null;
|
|
9106
9147
|
boosted: boolean | null;
|
|
9107
9148
|
boostingAmount: number | null;
|
|
@@ -9110,6 +9151,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9110
9151
|
biddingTaskScheduled: boolean | null;
|
|
9111
9152
|
scheduledBiddingTime: number | null;
|
|
9112
9153
|
checkFeedbackStatusCreatedAt: number | null;
|
|
9154
|
+
biddingScheduledAt: number | null;
|
|
9113
9155
|
feedbackCheckTaskId: string | null;
|
|
9114
9156
|
bidDecision: "rejected" | "proceeded" | null;
|
|
9115
9157
|
rejectedFeedback: string | null;
|
|
@@ -9274,7 +9316,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9274
9316
|
question: string;
|
|
9275
9317
|
}[] | null;
|
|
9276
9318
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
9277
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
9319
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
9278
9320
|
biddingAmount: number | null;
|
|
9279
9321
|
boosted: boolean | null;
|
|
9280
9322
|
boostingAmount: number | null;
|
|
@@ -9283,6 +9325,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9283
9325
|
biddingTaskScheduled: boolean | null;
|
|
9284
9326
|
scheduledBiddingTime: number | null;
|
|
9285
9327
|
checkFeedbackStatusCreatedAt: number | null;
|
|
9328
|
+
biddingScheduledAt: number | null;
|
|
9286
9329
|
feedbackCheckTaskId: string | null;
|
|
9287
9330
|
bidDecision: "rejected" | "proceeded" | null;
|
|
9288
9331
|
rejectedFeedback: string | null;
|
|
@@ -9452,7 +9495,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9452
9495
|
question: string;
|
|
9453
9496
|
}[] | null;
|
|
9454
9497
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
9455
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
9498
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
9456
9499
|
biddingAmount: number | null;
|
|
9457
9500
|
boosted: boolean | null;
|
|
9458
9501
|
boostingAmount: number | null;
|
|
@@ -9461,6 +9504,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9461
9504
|
biddingTaskScheduled: boolean | null;
|
|
9462
9505
|
scheduledBiddingTime: number | null;
|
|
9463
9506
|
checkFeedbackStatusCreatedAt: number | null;
|
|
9507
|
+
biddingScheduledAt: number | null;
|
|
9464
9508
|
feedbackCheckTaskId: string | null;
|
|
9465
9509
|
bidDecision: "rejected" | "proceeded" | null;
|
|
9466
9510
|
rejectedFeedback: string | null;
|
|
@@ -9836,7 +9880,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
9836
9880
|
question: string;
|
|
9837
9881
|
}>, "many">>;
|
|
9838
9882
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
9839
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "
|
|
9883
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "won"]>>;
|
|
9840
9884
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
9841
9885
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
9842
9886
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -9848,6 +9892,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
9848
9892
|
inQueue: z.ZodNullable<z.ZodBoolean>;
|
|
9849
9893
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
9850
9894
|
checkFeedbackStatusCreatedAt: z.ZodNullable<z.ZodNumber>;
|
|
9895
|
+
biddingScheduledAt: z.ZodNullable<z.ZodNumber>;
|
|
9851
9896
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
9852
9897
|
feedbackCheckTaskId: z.ZodNullable<z.ZodString>;
|
|
9853
9898
|
bidDecision: z.ZodNullable<z.ZodEnum<["proceeded", "rejected"]>>;
|
|
@@ -10022,7 +10067,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10022
10067
|
question: string;
|
|
10023
10068
|
}[] | null;
|
|
10024
10069
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
10025
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
10070
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
10026
10071
|
biddingAmount: number | null;
|
|
10027
10072
|
boosted: boolean | null;
|
|
10028
10073
|
boostingAmount: number | null;
|
|
@@ -10031,6 +10076,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10031
10076
|
biddingTaskScheduled: boolean | null;
|
|
10032
10077
|
scheduledBiddingTime: number | null;
|
|
10033
10078
|
checkFeedbackStatusCreatedAt: number | null;
|
|
10079
|
+
biddingScheduledAt: number | null;
|
|
10034
10080
|
feedbackCheckTaskId: string | null;
|
|
10035
10081
|
bidDecision: "rejected" | "proceeded" | null;
|
|
10036
10082
|
rejectedFeedback: string | null;
|
|
@@ -10182,7 +10228,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10182
10228
|
question: string;
|
|
10183
10229
|
}[] | null;
|
|
10184
10230
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
10185
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
10231
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
10186
10232
|
biddingAmount: number | null;
|
|
10187
10233
|
boosted: boolean | null;
|
|
10188
10234
|
boostingAmount: number | null;
|
|
@@ -10191,6 +10237,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10191
10237
|
biddingTaskScheduled: boolean | null;
|
|
10192
10238
|
scheduledBiddingTime: number | null;
|
|
10193
10239
|
checkFeedbackStatusCreatedAt: number | null;
|
|
10240
|
+
biddingScheduledAt: number | null;
|
|
10194
10241
|
feedbackCheckTaskId: string | null;
|
|
10195
10242
|
bidDecision: "rejected" | "proceeded" | null;
|
|
10196
10243
|
rejectedFeedback: string | null;
|
|
@@ -10347,7 +10394,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10347
10394
|
question: string;
|
|
10348
10395
|
}[] | null;
|
|
10349
10396
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
10350
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
10397
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
10351
10398
|
biddingAmount: number | null;
|
|
10352
10399
|
boosted: boolean | null;
|
|
10353
10400
|
boostingAmount: number | null;
|
|
@@ -10356,6 +10403,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10356
10403
|
biddingTaskScheduled: boolean | null;
|
|
10357
10404
|
scheduledBiddingTime: number | null;
|
|
10358
10405
|
checkFeedbackStatusCreatedAt: number | null;
|
|
10406
|
+
biddingScheduledAt: number | null;
|
|
10359
10407
|
feedbackCheckTaskId: string | null;
|
|
10360
10408
|
bidDecision: "rejected" | "proceeded" | null;
|
|
10361
10409
|
rejectedFeedback: string | null;
|
|
@@ -10512,7 +10560,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10512
10560
|
question: string;
|
|
10513
10561
|
}[] | null;
|
|
10514
10562
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
10515
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "
|
|
10563
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
10516
10564
|
biddingAmount: number | null;
|
|
10517
10565
|
boosted: boolean | null;
|
|
10518
10566
|
boostingAmount: number | null;
|
|
@@ -10521,6 +10569,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10521
10569
|
biddingTaskScheduled: boolean | null;
|
|
10522
10570
|
scheduledBiddingTime: number | null;
|
|
10523
10571
|
checkFeedbackStatusCreatedAt: number | null;
|
|
10572
|
+
biddingScheduledAt: number | null;
|
|
10524
10573
|
feedbackCheckTaskId: string | null;
|
|
10525
10574
|
bidDecision: "rejected" | "proceeded" | null;
|
|
10526
10575
|
rejectedFeedback: string | null;
|