lancer-shared 1.2.202 → 1.2.203
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 +12 -0
- package/dist/schemas/agent/index.d.ts +5 -5
- package/dist/schemas/bidder/bid.d.ts +44 -44
- package/dist/schemas/bidder/exceptions/index.d.ts +3 -1
- package/dist/schemas/bidder/exceptions/job-no-longer-available.exception.d.ts +5 -0
- package/dist/schemas/campaign/campaign.d.ts +9 -9
- package/dist/schemas/lead/index.d.ts +18 -18
- package/dist/schemas/logger/log-event.d.ts +5 -5
- package/dist/schemas/scraper/scrape-payload.d.ts +10 -10
- package/package.json +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -14119,6 +14119,16 @@ function invalidJobUrlException(message) {
|
|
|
14119
14119
|
return new InvalidJobUrlException(message);
|
|
14120
14120
|
}
|
|
14121
14121
|
|
|
14122
|
+
class JobNoLongerAvailableException extends Error {
|
|
14123
|
+
code = 'JOB_NO_LONGER_AVAILABLE_EXCEPTION';
|
|
14124
|
+
constructor(message) {
|
|
14125
|
+
super(message);
|
|
14126
|
+
}
|
|
14127
|
+
}
|
|
14128
|
+
function jobNoLongerAvailableException(message) {
|
|
14129
|
+
return new JobNoLongerAvailableException(message);
|
|
14130
|
+
}
|
|
14131
|
+
|
|
14122
14132
|
class LoginFailedException extends Error {
|
|
14123
14133
|
code = 'LOGIN_FAILED_EXCEPTION';
|
|
14124
14134
|
constructor(message) {
|
|
@@ -23733,6 +23743,7 @@ exports.InvalidGoogleOAuthTokenException = InvalidGoogleOAuthTokenException;
|
|
|
23733
23743
|
exports.InvalidJobUrlException = InvalidJobUrlException;
|
|
23734
23744
|
exports.JOB_FILTER_OPTIONS = JOB_FILTER_OPTIONS;
|
|
23735
23745
|
exports.JobIsPrivateException = JobIsPrivateException;
|
|
23746
|
+
exports.JobNoLongerAvailableException = JobNoLongerAvailableException;
|
|
23736
23747
|
exports.LogEventTypeEnum = LogEventTypeEnum;
|
|
23737
23748
|
exports.LoginFailedException = LoginFailedException;
|
|
23738
23749
|
exports.MultiloginAuthenticationException = MultiloginAuthenticationException;
|
|
@@ -23932,6 +23943,7 @@ exports.jobDetailsStateSchema = jobDetailsStateSchema;
|
|
|
23932
23943
|
exports.jobFiltersSchema = jobFiltersSchema;
|
|
23933
23944
|
exports.jobIsPrivateException = jobIsPrivateException;
|
|
23934
23945
|
exports.jobListingSchema = jobListingSchema;
|
|
23946
|
+
exports.jobNoLongerAvailableException = jobNoLongerAvailableException;
|
|
23935
23947
|
exports.jobQualityScoreSchema = jobQualityScoreSchema;
|
|
23936
23948
|
exports.jobSkillsSchema = jobSkillsSchema;
|
|
23937
23949
|
exports.jobStatusOrder = jobStatusOrder;
|
|
@@ -419,7 +419,7 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
419
419
|
answer: string;
|
|
420
420
|
}>, "many">>;
|
|
421
421
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
422
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "viewed", "replied", "won"]>>;
|
|
422
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "viewed", "replied", "won"]>>;
|
|
423
423
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
424
424
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
425
425
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -533,7 +533,7 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
533
533
|
suitabilityReason: string | null;
|
|
534
534
|
proposal: string | null;
|
|
535
535
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
536
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
536
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
537
537
|
biddingAmount: number | null;
|
|
538
538
|
boosted: boolean | null;
|
|
539
539
|
boostingAmount: number | null;
|
|
@@ -668,7 +668,7 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
668
668
|
suitabilityReason: string | null;
|
|
669
669
|
proposal: string | null;
|
|
670
670
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
671
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
671
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
672
672
|
biddingAmount: number | null;
|
|
673
673
|
boosted: boolean | null;
|
|
674
674
|
boostingAmount: number | null;
|
|
@@ -819,7 +819,7 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
819
819
|
suitabilityReason: string | null;
|
|
820
820
|
proposal: string | null;
|
|
821
821
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
822
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
822
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
823
823
|
biddingAmount: number | null;
|
|
824
824
|
boosted: boolean | null;
|
|
825
825
|
boostingAmount: number | null;
|
|
@@ -964,7 +964,7 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
964
964
|
suitabilityReason: string | null;
|
|
965
965
|
proposal: string | null;
|
|
966
966
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
967
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
967
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
968
968
|
biddingAmount: number | null;
|
|
969
969
|
boosted: boolean | null;
|
|
970
970
|
boostingAmount: number | null;
|
|
@@ -321,7 +321,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
321
321
|
answer: 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", "viewed", "replied", "won"]>>;
|
|
324
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "viewed", "replied", "won"]>>;
|
|
325
325
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
326
326
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
327
327
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -435,7 +435,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
435
435
|
answer: string;
|
|
436
436
|
}[] | null;
|
|
437
437
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
438
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
438
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
439
439
|
biddingAmount: number | null;
|
|
440
440
|
boosted: boolean | null;
|
|
441
441
|
boostingAmount: number | null;
|
|
@@ -570,7 +570,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
570
570
|
answer: string;
|
|
571
571
|
}[] | null;
|
|
572
572
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
573
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
573
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
574
574
|
biddingAmount: number | null;
|
|
575
575
|
boosted: boolean | null;
|
|
576
576
|
boostingAmount: number | null;
|
|
@@ -738,7 +738,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
738
738
|
answer: string;
|
|
739
739
|
}[] | null;
|
|
740
740
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
741
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
741
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
742
742
|
biddingAmount: number | null;
|
|
743
743
|
boosted: boolean | null;
|
|
744
744
|
boostingAmount: number | null;
|
|
@@ -896,7 +896,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
896
896
|
answer: string;
|
|
897
897
|
}[] | null;
|
|
898
898
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
899
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
899
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
900
900
|
biddingAmount: number | null;
|
|
901
901
|
boosted: boolean | null;
|
|
902
902
|
boostingAmount: number | null;
|
|
@@ -1266,7 +1266,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1266
1266
|
answer: string;
|
|
1267
1267
|
}>, "many">>;
|
|
1268
1268
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
1269
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "viewed", "replied", "won"]>>;
|
|
1269
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "viewed", "replied", "won"]>>;
|
|
1270
1270
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
1271
1271
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
1272
1272
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1380,7 +1380,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1380
1380
|
answer: string;
|
|
1381
1381
|
}[] | null;
|
|
1382
1382
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
1383
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
1383
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
1384
1384
|
biddingAmount: number | null;
|
|
1385
1385
|
boosted: boolean | null;
|
|
1386
1386
|
boostingAmount: number | null;
|
|
@@ -1515,7 +1515,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1515
1515
|
answer: string;
|
|
1516
1516
|
}[] | null;
|
|
1517
1517
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
1518
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
1518
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
1519
1519
|
biddingAmount: number | null;
|
|
1520
1520
|
boosted: boolean | null;
|
|
1521
1521
|
boostingAmount: number | null;
|
|
@@ -1683,7 +1683,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1683
1683
|
answer: string;
|
|
1684
1684
|
}[] | null;
|
|
1685
1685
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
1686
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
1686
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
1687
1687
|
biddingAmount: number | null;
|
|
1688
1688
|
boosted: boolean | null;
|
|
1689
1689
|
boostingAmount: number | null;
|
|
@@ -1841,7 +1841,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1841
1841
|
answer: string;
|
|
1842
1842
|
}[] | null;
|
|
1843
1843
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
1844
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
1844
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
1845
1845
|
biddingAmount: number | null;
|
|
1846
1846
|
boosted: boolean | null;
|
|
1847
1847
|
boostingAmount: number | null;
|
|
@@ -2211,7 +2211,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2211
2211
|
answer: string;
|
|
2212
2212
|
}>, "many">>;
|
|
2213
2213
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
2214
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "viewed", "replied", "won"]>>;
|
|
2214
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "viewed", "replied", "won"]>>;
|
|
2215
2215
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
2216
2216
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
2217
2217
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -2325,7 +2325,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2325
2325
|
answer: string;
|
|
2326
2326
|
}[] | null;
|
|
2327
2327
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
2328
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
2328
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
2329
2329
|
biddingAmount: number | null;
|
|
2330
2330
|
boosted: boolean | null;
|
|
2331
2331
|
boostingAmount: number | null;
|
|
@@ -2460,7 +2460,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2460
2460
|
answer: string;
|
|
2461
2461
|
}[] | null;
|
|
2462
2462
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
2463
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
2463
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
2464
2464
|
biddingAmount: number | null;
|
|
2465
2465
|
boosted: boolean | null;
|
|
2466
2466
|
boostingAmount: number | null;
|
|
@@ -2632,7 +2632,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2632
2632
|
answer: string;
|
|
2633
2633
|
}[] | null;
|
|
2634
2634
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
2635
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
2635
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
2636
2636
|
biddingAmount: number | null;
|
|
2637
2637
|
boosted: boolean | null;
|
|
2638
2638
|
boostingAmount: number | null;
|
|
@@ -2793,7 +2793,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2793
2793
|
answer: string;
|
|
2794
2794
|
}[] | null;
|
|
2795
2795
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
2796
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
2796
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
2797
2797
|
biddingAmount: number | null;
|
|
2798
2798
|
boosted: boolean | null;
|
|
2799
2799
|
boostingAmount: number | null;
|
|
@@ -3166,7 +3166,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3166
3166
|
answer: string;
|
|
3167
3167
|
}>, "many">>;
|
|
3168
3168
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
3169
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "viewed", "replied", "won"]>>;
|
|
3169
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "viewed", "replied", "won"]>>;
|
|
3170
3170
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
3171
3171
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
3172
3172
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -3280,7 +3280,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3280
3280
|
answer: string;
|
|
3281
3281
|
}[] | null;
|
|
3282
3282
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
3283
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
3283
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
3284
3284
|
biddingAmount: number | null;
|
|
3285
3285
|
boosted: boolean | null;
|
|
3286
3286
|
boostingAmount: number | null;
|
|
@@ -3415,7 +3415,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3415
3415
|
answer: string;
|
|
3416
3416
|
}[] | null;
|
|
3417
3417
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
3418
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
3418
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
3419
3419
|
biddingAmount: number | null;
|
|
3420
3420
|
boosted: boolean | null;
|
|
3421
3421
|
boostingAmount: number | null;
|
|
@@ -3558,7 +3558,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3558
3558
|
answer: string;
|
|
3559
3559
|
}[] | null;
|
|
3560
3560
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
3561
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
3561
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
3562
3562
|
biddingAmount: number | null;
|
|
3563
3563
|
boosted: boolean | null;
|
|
3564
3564
|
boostingAmount: number | null;
|
|
@@ -3700,7 +3700,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3700
3700
|
answer: string;
|
|
3701
3701
|
}[] | null;
|
|
3702
3702
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
3703
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
3703
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
3704
3704
|
biddingAmount: number | null;
|
|
3705
3705
|
boosted: boolean | null;
|
|
3706
3706
|
boostingAmount: number | null;
|
|
@@ -4057,7 +4057,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4057
4057
|
answer: string;
|
|
4058
4058
|
}>, "many">>;
|
|
4059
4059
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
4060
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "viewed", "replied", "won"]>>;
|
|
4060
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "viewed", "replied", "won"]>>;
|
|
4061
4061
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
4062
4062
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
4063
4063
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -4171,7 +4171,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4171
4171
|
answer: string;
|
|
4172
4172
|
}[] | null;
|
|
4173
4173
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
4174
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
4174
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
4175
4175
|
biddingAmount: number | null;
|
|
4176
4176
|
boosted: boolean | null;
|
|
4177
4177
|
boostingAmount: number | null;
|
|
@@ -4306,7 +4306,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4306
4306
|
answer: string;
|
|
4307
4307
|
}[] | null;
|
|
4308
4308
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
4309
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
4309
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
4310
4310
|
biddingAmount: number | null;
|
|
4311
4311
|
boosted: boolean | null;
|
|
4312
4312
|
boostingAmount: number | null;
|
|
@@ -4664,7 +4664,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4664
4664
|
answer: string;
|
|
4665
4665
|
}>, "many">>;
|
|
4666
4666
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
4667
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "viewed", "replied", "won"]>>;
|
|
4667
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "viewed", "replied", "won"]>>;
|
|
4668
4668
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
4669
4669
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
4670
4670
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -4778,7 +4778,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4778
4778
|
answer: string;
|
|
4779
4779
|
}[] | null;
|
|
4780
4780
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
4781
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
4781
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
4782
4782
|
biddingAmount: number | null;
|
|
4783
4783
|
boosted: boolean | null;
|
|
4784
4784
|
boostingAmount: number | null;
|
|
@@ -4913,7 +4913,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4913
4913
|
answer: string;
|
|
4914
4914
|
}[] | null;
|
|
4915
4915
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
4916
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
4916
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
4917
4917
|
biddingAmount: number | null;
|
|
4918
4918
|
boosted: boolean | null;
|
|
4919
4919
|
boostingAmount: number | null;
|
|
@@ -5085,7 +5085,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5085
5085
|
answer: string;
|
|
5086
5086
|
}[] | null;
|
|
5087
5087
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
5088
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
5088
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
5089
5089
|
biddingAmount: number | null;
|
|
5090
5090
|
boosted: boolean | null;
|
|
5091
5091
|
boostingAmount: number | null;
|
|
@@ -5246,7 +5246,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5246
5246
|
answer: string;
|
|
5247
5247
|
}[] | null;
|
|
5248
5248
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
5249
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
5249
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
5250
5250
|
biddingAmount: number | null;
|
|
5251
5251
|
boosted: boolean | null;
|
|
5252
5252
|
boostingAmount: number | null;
|
|
@@ -5405,7 +5405,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5405
5405
|
answer: string;
|
|
5406
5406
|
}[] | null;
|
|
5407
5407
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
5408
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
5408
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
5409
5409
|
biddingAmount: number | null;
|
|
5410
5410
|
boosted: boolean | null;
|
|
5411
5411
|
boostingAmount: number | null;
|
|
@@ -5550,7 +5550,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5550
5550
|
answer: string;
|
|
5551
5551
|
}[] | null;
|
|
5552
5552
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
5553
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
5553
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
5554
5554
|
biddingAmount: number | null;
|
|
5555
5555
|
boosted: boolean | null;
|
|
5556
5556
|
boostingAmount: number | null;
|
|
@@ -5709,7 +5709,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5709
5709
|
answer: string;
|
|
5710
5710
|
}[] | null;
|
|
5711
5711
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
5712
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
5712
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
5713
5713
|
biddingAmount: number | null;
|
|
5714
5714
|
boosted: boolean | null;
|
|
5715
5715
|
boostingAmount: number | null;
|
|
@@ -5854,7 +5854,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5854
5854
|
answer: string;
|
|
5855
5855
|
}[] | null;
|
|
5856
5856
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
5857
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
5857
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
5858
5858
|
biddingAmount: number | null;
|
|
5859
5859
|
boosted: boolean | null;
|
|
5860
5860
|
boostingAmount: number | null;
|
|
@@ -6228,7 +6228,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
6228
6228
|
answer: string;
|
|
6229
6229
|
}>, "many">>;
|
|
6230
6230
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
6231
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "viewed", "replied", "won"]>>;
|
|
6231
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "viewed", "replied", "won"]>>;
|
|
6232
6232
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
6233
6233
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
6234
6234
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -6342,7 +6342,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
6342
6342
|
answer: string;
|
|
6343
6343
|
}[] | null;
|
|
6344
6344
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
6345
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
6345
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
6346
6346
|
biddingAmount: number | null;
|
|
6347
6347
|
boosted: boolean | null;
|
|
6348
6348
|
boostingAmount: number | null;
|
|
@@ -6477,7 +6477,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
6477
6477
|
answer: string;
|
|
6478
6478
|
}[] | null;
|
|
6479
6479
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
6480
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
6480
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
6481
6481
|
biddingAmount: number | null;
|
|
6482
6482
|
boosted: boolean | null;
|
|
6483
6483
|
boostingAmount: number | null;
|
|
@@ -6835,7 +6835,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
6835
6835
|
answer: string;
|
|
6836
6836
|
}>, "many">>;
|
|
6837
6837
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
6838
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "viewed", "replied", "won"]>>;
|
|
6838
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "viewed", "replied", "won"]>>;
|
|
6839
6839
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
6840
6840
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
6841
6841
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -6949,7 +6949,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
6949
6949
|
answer: string;
|
|
6950
6950
|
}[] | null;
|
|
6951
6951
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
6952
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
6952
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
6953
6953
|
biddingAmount: number | null;
|
|
6954
6954
|
boosted: boolean | null;
|
|
6955
6955
|
boostingAmount: number | null;
|
|
@@ -7084,7 +7084,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7084
7084
|
answer: string;
|
|
7085
7085
|
}[] | null;
|
|
7086
7086
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
7087
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
7087
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
7088
7088
|
biddingAmount: number | null;
|
|
7089
7089
|
boosted: boolean | null;
|
|
7090
7090
|
boostingAmount: number | null;
|
|
@@ -7252,7 +7252,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7252
7252
|
answer: string;
|
|
7253
7253
|
}[] | null;
|
|
7254
7254
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
7255
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
7255
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
7256
7256
|
biddingAmount: number | null;
|
|
7257
7257
|
boosted: boolean | null;
|
|
7258
7258
|
boostingAmount: number | null;
|
|
@@ -7410,7 +7410,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7410
7410
|
answer: string;
|
|
7411
7411
|
}[] | null;
|
|
7412
7412
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
7413
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
7413
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
7414
7414
|
biddingAmount: number | null;
|
|
7415
7415
|
boosted: boolean | null;
|
|
7416
7416
|
boostingAmount: number | null;
|
|
@@ -7566,7 +7566,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7566
7566
|
answer: string;
|
|
7567
7567
|
}[] | null;
|
|
7568
7568
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
7569
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
7569
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
7570
7570
|
biddingAmount: number | null;
|
|
7571
7571
|
boosted: boolean | null;
|
|
7572
7572
|
boostingAmount: number | null;
|
|
@@ -7711,7 +7711,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7711
7711
|
answer: string;
|
|
7712
7712
|
}[] | null;
|
|
7713
7713
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
7714
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
7714
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
7715
7715
|
biddingAmount: number | null;
|
|
7716
7716
|
boosted: boolean | null;
|
|
7717
7717
|
boostingAmount: number | null;
|
|
@@ -7867,7 +7867,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7867
7867
|
answer: string;
|
|
7868
7868
|
}[] | null;
|
|
7869
7869
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
7870
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
7870
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
7871
7871
|
biddingAmount: number | null;
|
|
7872
7872
|
boosted: boolean | null;
|
|
7873
7873
|
boostingAmount: number | null;
|
|
@@ -8012,7 +8012,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8012
8012
|
answer: string;
|
|
8013
8013
|
}[] | null;
|
|
8014
8014
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
8015
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won" | null;
|
|
8015
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
8016
8016
|
biddingAmount: number | null;
|
|
8017
8017
|
boosted: boolean | null;
|
|
8018
8018
|
boostingAmount: number | null;
|
|
@@ -11,6 +11,7 @@ import { InitBrowserException } from './init-browser.exception';
|
|
|
11
11
|
import { InsufficientConnectsException } from './insufficient-connects.exception';
|
|
12
12
|
import { InvalidCredentialsException } from './invalid-credentials.exception';
|
|
13
13
|
import { InvalidJobUrlException } from './invalid-job-url.exception';
|
|
14
|
+
import { JobNoLongerAvailableException } from './job-no-longer-available.exception';
|
|
14
15
|
import { LoginFailedException } from './login-failed.exception';
|
|
15
16
|
import { MultiloginAuthenticationException } from './multilogin-authentication.exception';
|
|
16
17
|
import { NavigationTimeoutException } from './navigation-timeout.exception';
|
|
@@ -44,6 +45,7 @@ export * from './init-browser.exception';
|
|
|
44
45
|
export * from './insufficient-connects.exception';
|
|
45
46
|
export * from './invalid-credentials.exception';
|
|
46
47
|
export * from './invalid-job-url.exception';
|
|
48
|
+
export * from './job-no-longer-available.exception';
|
|
47
49
|
export * from './login-failed.exception';
|
|
48
50
|
export * from './multilogin-authentication.exception';
|
|
49
51
|
export * from './navigation-timeout.exception';
|
|
@@ -64,4 +66,4 @@ export * from './selector-not-found.exception';
|
|
|
64
66
|
export * from './typed-value-not-matching.exception';
|
|
65
67
|
export * from './typing-input-field.exception';
|
|
66
68
|
export * from './wait-for-function-timeout.exception';
|
|
67
|
-
export type BiddingError = CloudflareChallengeFailedException | DeleteMultiloginProfileException | DropdownOptionNotPresentException | ElementNotClickableException | EvaluateFunctionException | GetMultiloginBrowserException | InitBrowserException | InsufficientConnectsException | InvalidJobUrlException | LoginFailedException | NavigationTimeoutException | NewBrowserPageException | NewPageException | GoToUrlException | ParseConnectsException | ProposalErrorAlertException | ProposalFormWarningAlertException | ProposalSubmitFailedException | PuppeteerConnectionErrorException | QuestionPairNotMatchingException | SelectAgencyException | SelectContractorException | SelectorNotFoundError | TypedValueInFieldNotMatchingException | TypingInputFieldException | WaitForFunctionTimeoutError | IncorrectSecurityQuestionAnswerException | EvaluateElementException | MultiloginAuthenticationException | InvalidCredentialsException | ProposalGenerationFailedException | BoostAboveMaxConnectsException | PrivateJobException;
|
|
69
|
+
export type BiddingError = CloudflareChallengeFailedException | DeleteMultiloginProfileException | DropdownOptionNotPresentException | ElementNotClickableException | EvaluateFunctionException | GetMultiloginBrowserException | InitBrowserException | InsufficientConnectsException | InvalidJobUrlException | LoginFailedException | NavigationTimeoutException | NewBrowserPageException | NewPageException | GoToUrlException | ParseConnectsException | ProposalErrorAlertException | ProposalFormWarningAlertException | ProposalSubmitFailedException | PuppeteerConnectionErrorException | QuestionPairNotMatchingException | SelectAgencyException | SelectContractorException | SelectorNotFoundError | TypedValueInFieldNotMatchingException | TypingInputFieldException | WaitForFunctionTimeoutError | IncorrectSecurityQuestionAnswerException | EvaluateElementException | MultiloginAuthenticationException | InvalidCredentialsException | ProposalGenerationFailedException | BoostAboveMaxConnectsException | PrivateJobException | JobNoLongerAvailableException;
|
|
@@ -335,7 +335,7 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
335
335
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
336
336
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
337
337
|
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
338
|
-
leadCounts: z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "viewed", "replied", "won"]>, z.ZodNumber>>;
|
|
338
|
+
leadCounts: z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "viewed", "replied", "won"]>, z.ZodNumber>>;
|
|
339
339
|
expenses: z.ZodObject<{
|
|
340
340
|
biddingAmount: z.ZodDefault<z.ZodNumber>;
|
|
341
341
|
boostingAmount: z.ZodDefault<z.ZodNumber>;
|
|
@@ -510,7 +510,7 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
510
510
|
biddingFixedHourlyRate: number | null;
|
|
511
511
|
biddingHourlyRatePercentage: number | null;
|
|
512
512
|
bidWithWarning: "bid" | "skip";
|
|
513
|
-
leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won", number>> | null;
|
|
513
|
+
leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won", number>> | null;
|
|
514
514
|
expenses: {
|
|
515
515
|
biddingAmount: number;
|
|
516
516
|
boostingAmount: number;
|
|
@@ -620,7 +620,7 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
620
620
|
biddingFixedHourlyRate: number | null;
|
|
621
621
|
biddingHourlyRatePercentage: number | null;
|
|
622
622
|
bidWithWarning: "bid" | "skip";
|
|
623
|
-
leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won", number>> | null;
|
|
623
|
+
leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won", number>> | null;
|
|
624
624
|
expenses: {
|
|
625
625
|
biddingAmount?: number | undefined;
|
|
626
626
|
boostingAmount?: number | undefined;
|
|
@@ -956,7 +956,7 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
956
956
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
957
957
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
958
958
|
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
959
|
-
leadCounts: z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "viewed", "replied", "won"]>, z.ZodNumber>>;
|
|
959
|
+
leadCounts: z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "viewed", "replied", "won"]>, z.ZodNumber>>;
|
|
960
960
|
expenses: z.ZodObject<{
|
|
961
961
|
biddingAmount: z.ZodDefault<z.ZodNumber>;
|
|
962
962
|
boostingAmount: z.ZodDefault<z.ZodNumber>;
|
|
@@ -1128,7 +1128,7 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
1128
1128
|
biddingFixedHourlyRate: number | null;
|
|
1129
1129
|
biddingHourlyRatePercentage: number | null;
|
|
1130
1130
|
bidWithWarning: "bid" | "skip";
|
|
1131
|
-
leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won", number>> | null;
|
|
1131
|
+
leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won", number>> | null;
|
|
1132
1132
|
expenses: {
|
|
1133
1133
|
biddingAmount: number;
|
|
1134
1134
|
boostingAmount: number;
|
|
@@ -1229,7 +1229,7 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
1229
1229
|
biddingFixedHourlyRate: number | null;
|
|
1230
1230
|
biddingHourlyRatePercentage: number | null;
|
|
1231
1231
|
bidWithWarning: "bid" | "skip";
|
|
1232
|
-
leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won", number>> | null;
|
|
1232
|
+
leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won", number>> | null;
|
|
1233
1233
|
expenses: {
|
|
1234
1234
|
biddingAmount?: number | undefined;
|
|
1235
1235
|
boostingAmount?: number | undefined;
|
|
@@ -1539,7 +1539,7 @@ export declare const updateCampaignSchema: z.ZodObject<{
|
|
|
1539
1539
|
biddingFixedHourlyRate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1540
1540
|
biddingHourlyRatePercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1541
1541
|
bidWithWarning: z.ZodOptional<z.ZodEnum<["bid", "skip"]>>;
|
|
1542
|
-
leadCounts: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "viewed", "replied", "won"]>, z.ZodNumber>>>;
|
|
1542
|
+
leadCounts: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "viewed", "replied", "won"]>, z.ZodNumber>>>;
|
|
1543
1543
|
expenses: z.ZodOptional<z.ZodObject<{
|
|
1544
1544
|
biddingAmount: z.ZodDefault<z.ZodNumber>;
|
|
1545
1545
|
boostingAmount: z.ZodDefault<z.ZodNumber>;
|
|
@@ -1712,7 +1712,7 @@ export declare const updateCampaignSchema: z.ZodObject<{
|
|
|
1712
1712
|
biddingFixedHourlyRate?: number | null | undefined;
|
|
1713
1713
|
biddingHourlyRatePercentage?: number | null | undefined;
|
|
1714
1714
|
bidWithWarning?: "bid" | "skip" | undefined;
|
|
1715
|
-
leadCounts?: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won", number>> | null | undefined;
|
|
1715
|
+
leadCounts?: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won", number>> | null | undefined;
|
|
1716
1716
|
expenses?: {
|
|
1717
1717
|
biddingAmount: number;
|
|
1718
1718
|
boostingAmount: number;
|
|
@@ -1825,7 +1825,7 @@ export declare const updateCampaignSchema: z.ZodObject<{
|
|
|
1825
1825
|
biddingFixedHourlyRate?: number | null | undefined;
|
|
1826
1826
|
biddingHourlyRatePercentage?: number | null | undefined;
|
|
1827
1827
|
bidWithWarning?: "bid" | "skip" | undefined;
|
|
1828
|
-
leadCounts?: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "viewed" | "replied" | "won", number>> | null | undefined;
|
|
1828
|
+
leadCounts?: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "viewed" | "replied" | "won", number>> | null | undefined;
|
|
1829
1829
|
expenses?: {
|
|
1830
1830
|
biddingAmount?: number | undefined;
|
|
1831
1831
|
boostingAmount?: number | undefined;
|
|
@@ -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", "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,7 +443,7 @@ 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" | "viewed" | "replied" | "won" | null;
|
|
447
447
|
biddingAmount: number | null;
|
|
448
448
|
boosted: boolean | null;
|
|
449
449
|
boostingAmount: number | null;
|
|
@@ -578,7 +578,7 @@ 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" | "viewed" | "replied" | "won" | null;
|
|
582
582
|
biddingAmount: number | null;
|
|
583
583
|
boosted: boolean | null;
|
|
584
584
|
boostingAmount: number | null;
|
|
@@ -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", "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,7 +1044,7 @@ 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" | "viewed" | "replied" | "won" | null;
|
|
1048
1048
|
biddingAmount: number | null;
|
|
1049
1049
|
boosted: boolean | null;
|
|
1050
1050
|
boostingAmount: number | null;
|
|
@@ -1179,7 +1179,7 @@ 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" | "viewed" | "replied" | "won" | null;
|
|
1183
1183
|
biddingAmount: number | null;
|
|
1184
1184
|
boosted: boolean | null;
|
|
1185
1185
|
boostingAmount: number | null;
|
|
@@ -1319,7 +1319,7 @@ 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" | "viewed" | "replied" | "won" | null;
|
|
1323
1323
|
biddingAmount: number | null;
|
|
1324
1324
|
boosted: boolean | null;
|
|
1325
1325
|
boostingAmount: number | null;
|
|
@@ -1459,7 +1459,7 @@ 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" | "viewed" | "replied" | "won" | null;
|
|
1463
1463
|
biddingAmount: number | null;
|
|
1464
1464
|
boosted: boolean | null;
|
|
1465
1465
|
boostingAmount: number | null;
|
|
@@ -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", "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,7 +2465,7 @@ 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" | "viewed" | "replied" | "won" | null;
|
|
2469
2469
|
biddingAmount: number | null;
|
|
2470
2470
|
boosted: boolean | null;
|
|
2471
2471
|
boostingAmount: number | null;
|
|
@@ -2600,7 +2600,7 @@ 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" | "viewed" | "replied" | "won" | null;
|
|
2604
2604
|
biddingAmount: number | null;
|
|
2605
2605
|
boosted: boolean | null;
|
|
2606
2606
|
boostingAmount: number | null;
|
|
@@ -2851,7 +2851,7 @@ 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" | "viewed" | "replied" | "won" | null;
|
|
2855
2855
|
biddingAmount: number | null;
|
|
2856
2856
|
boosted: boolean | null;
|
|
2857
2857
|
boostingAmount: number | null;
|
|
@@ -3102,7 +3102,7 @@ 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" | "viewed" | "replied" | "won" | null;
|
|
3106
3106
|
biddingAmount: number | null;
|
|
3107
3107
|
boosted: boolean | null;
|
|
3108
3108
|
boostingAmount: number | null;
|
|
@@ -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", "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,7 +3584,7 @@ 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" | "viewed" | "replied" | "won" | null;
|
|
3588
3588
|
biddingAmount: number | null;
|
|
3589
3589
|
boosted: boolean | null;
|
|
3590
3590
|
boostingAmount: number | null;
|
|
@@ -3719,7 +3719,7 @@ 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" | "viewed" | "replied" | "won" | null;
|
|
3723
3723
|
biddingAmount: number | null;
|
|
3724
3724
|
boosted: boolean | null;
|
|
3725
3725
|
boostingAmount: number | null;
|
|
@@ -3869,7 +3869,7 @@ 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" | "viewed" | "replied" | "won" | null;
|
|
3873
3873
|
biddingAmount: number | null;
|
|
3874
3874
|
boosted: boolean | null;
|
|
3875
3875
|
boostingAmount: number | null;
|
|
@@ -4011,7 +4011,7 @@ 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" | "viewed" | "replied" | "won" | null;
|
|
4015
4015
|
biddingAmount: number | null;
|
|
4016
4016
|
boosted: boolean | null;
|
|
4017
4017
|
boostingAmount: number | null;
|
|
@@ -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", "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" | "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" | "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" | "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" | "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", "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" | "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" | "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", "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,7 +1786,7 @@ 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" | "viewed" | "replied" | "won" | null;
|
|
1790
1790
|
biddingTaskScheduled: boolean | null;
|
|
1791
1791
|
scheduledBiddingTime: number | null;
|
|
1792
1792
|
feedbackCheckTaskId: string | null;
|
|
@@ -1921,7 +1921,7 @@ 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" | "viewed" | "replied" | "won" | null;
|
|
1925
1925
|
biddingTaskScheduled: boolean | null;
|
|
1926
1926
|
scheduledBiddingTime: number | null;
|
|
1927
1927
|
feedbackCheckTaskId: string | null;
|
|
@@ -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" | "viewed" | "replied" | "won", number>> | null;
|
|
2141
2141
|
expenses: {
|
|
2142
2142
|
biddingAmount: number;
|
|
2143
2143
|
boostingAmount: number;
|
|
@@ -2342,7 +2342,7 @@ 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" | "viewed" | "replied" | "won" | null;
|
|
2346
2346
|
biddingTaskScheduled: boolean | null;
|
|
2347
2347
|
scheduledBiddingTime: number | null;
|
|
2348
2348
|
feedbackCheckTaskId: string | null;
|
|
@@ -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" | "viewed" | "replied" | "won", number>> | null;
|
|
2479
2479
|
expenses: {
|
|
2480
2480
|
biddingAmount?: number | undefined;
|
|
2481
2481
|
boostingAmount?: number | undefined;
|
|
@@ -2685,7 +2685,7 @@ 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" | "viewed" | "replied" | "won" | null;
|
|
2689
2689
|
biddingTaskScheduled: boolean | null;
|
|
2690
2690
|
scheduledBiddingTime: number | null;
|
|
2691
2691
|
feedbackCheckTaskId: string | null;
|