lancer-shared 1.2.201 → 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 +14 -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-analytics.d.ts +29 -29
- package/dist/schemas/campaign/campaign.d.ts +9 -9
- package/dist/schemas/lead/index.d.ts +18 -18
- package/dist/schemas/lead/lead-status.d.ts +7 -7
- package/dist/schemas/logger/log-event.d.ts +5 -5
- package/dist/schemas/scraper/scrape-payload.d.ts +10 -10
- package/package.json +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -12714,6 +12714,7 @@ const leadStatusEnum = z.enum([
|
|
|
12714
12714
|
'dailyLimitReached',
|
|
12715
12715
|
'boostAboveMaxConnects',
|
|
12716
12716
|
'privateJob',
|
|
12717
|
+
'noLongerAvailable',
|
|
12717
12718
|
'viewed',
|
|
12718
12719
|
'replied',
|
|
12719
12720
|
'won',
|
|
@@ -13309,6 +13310,7 @@ const updateCampaignAnalyticsSchema = z.object({
|
|
|
13309
13310
|
'dailyLimitReached',
|
|
13310
13311
|
'privateJob',
|
|
13311
13312
|
'insufficientConnects',
|
|
13313
|
+
'noLongerAvailable',
|
|
13312
13314
|
'won',
|
|
13313
13315
|
'leadsAnalyzed',
|
|
13314
13316
|
'leadsFailed',
|
|
@@ -14117,6 +14119,16 @@ function invalidJobUrlException(message) {
|
|
|
14117
14119
|
return new InvalidJobUrlException(message);
|
|
14118
14120
|
}
|
|
14119
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
|
+
|
|
14120
14132
|
class LoginFailedException extends Error {
|
|
14121
14133
|
code = 'LOGIN_FAILED_EXCEPTION';
|
|
14122
14134
|
constructor(message) {
|
|
@@ -23731,6 +23743,7 @@ exports.InvalidGoogleOAuthTokenException = InvalidGoogleOAuthTokenException;
|
|
|
23731
23743
|
exports.InvalidJobUrlException = InvalidJobUrlException;
|
|
23732
23744
|
exports.JOB_FILTER_OPTIONS = JOB_FILTER_OPTIONS;
|
|
23733
23745
|
exports.JobIsPrivateException = JobIsPrivateException;
|
|
23746
|
+
exports.JobNoLongerAvailableException = JobNoLongerAvailableException;
|
|
23734
23747
|
exports.LogEventTypeEnum = LogEventTypeEnum;
|
|
23735
23748
|
exports.LoginFailedException = LoginFailedException;
|
|
23736
23749
|
exports.MultiloginAuthenticationException = MultiloginAuthenticationException;
|
|
@@ -23930,6 +23943,7 @@ exports.jobDetailsStateSchema = jobDetailsStateSchema;
|
|
|
23930
23943
|
exports.jobFiltersSchema = jobFiltersSchema;
|
|
23931
23944
|
exports.jobIsPrivateException = jobIsPrivateException;
|
|
23932
23945
|
exports.jobListingSchema = jobListingSchema;
|
|
23946
|
+
exports.jobNoLongerAvailableException = jobNoLongerAvailableException;
|
|
23933
23947
|
exports.jobQualityScoreSchema = jobQualityScoreSchema;
|
|
23934
23948
|
exports.jobSkillsSchema = jobSkillsSchema;
|
|
23935
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;
|