lancer-shared 1.2.203 → 1.2.205
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.cjs.js +37 -1
- package/dist/constants/routes.d.ts +1 -1
- package/dist/schemas/agent/index.d.ts +9 -9
- package/dist/schemas/bidder/bid.d.ts +104 -80
- package/dist/schemas/bidder/exceptions/index.d.ts +5 -1
- package/dist/schemas/bidder/exceptions/job-already-bidded-on.exception.d.ts +5 -0
- package/dist/schemas/campaign/campaign-analytics.d.ts +29 -29
- package/dist/schemas/campaign/campaign.d.ts +9 -9
- package/dist/schemas/lead/index.d.ts +32 -32
- package/dist/schemas/lead/lead-status.d.ts +7 -7
- package/dist/schemas/logger/log-event.d.ts +5 -5
- package/dist/schemas/scraper/scrape-payload.d.ts +14 -14
- package/package.json +1 -1
|
@@ -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", "noLongerAvailable", "viewed", "replied", "won"]>>;
|
|
324
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "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,14 +435,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
438
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
439
439
|
biddingAmount: number | null;
|
|
440
440
|
boosted: boolean | null;
|
|
441
441
|
boostingAmount: number | null;
|
|
442
442
|
biddingTaskScheduled: boolean | null;
|
|
443
443
|
scheduledBiddingTime: number | null;
|
|
444
444
|
feedbackCheckTaskId: string | null;
|
|
445
|
-
bidDecision: "
|
|
445
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
446
446
|
rejectedFeedback: string | null;
|
|
447
447
|
applicationId: string | null;
|
|
448
448
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -570,14 +570,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
573
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
574
574
|
biddingAmount: number | null;
|
|
575
575
|
boosted: boolean | null;
|
|
576
576
|
boostingAmount: number | null;
|
|
577
577
|
biddingTaskScheduled: boolean | null;
|
|
578
578
|
scheduledBiddingTime: number | null;
|
|
579
579
|
feedbackCheckTaskId: string | null;
|
|
580
|
-
bidDecision: "
|
|
580
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
581
581
|
rejectedFeedback: string | null;
|
|
582
582
|
applicationId: string | null;
|
|
583
583
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -738,14 +738,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
741
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
742
742
|
biddingAmount: number | null;
|
|
743
743
|
boosted: boolean | null;
|
|
744
744
|
boostingAmount: number | null;
|
|
745
745
|
biddingTaskScheduled: boolean | null;
|
|
746
746
|
scheduledBiddingTime: number | null;
|
|
747
747
|
feedbackCheckTaskId: string | null;
|
|
748
|
-
bidDecision: "
|
|
748
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
749
749
|
rejectedFeedback: string | null;
|
|
750
750
|
applicationId: string | null;
|
|
751
751
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -896,14 +896,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
899
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
900
900
|
biddingAmount: number | null;
|
|
901
901
|
boosted: boolean | null;
|
|
902
902
|
boostingAmount: number | null;
|
|
903
903
|
biddingTaskScheduled: boolean | null;
|
|
904
904
|
scheduledBiddingTime: number | null;
|
|
905
905
|
feedbackCheckTaskId: string | null;
|
|
906
|
-
bidDecision: "
|
|
906
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
907
907
|
rejectedFeedback: string | null;
|
|
908
908
|
applicationId: string | null;
|
|
909
909
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -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", "noLongerAvailable", "viewed", "replied", "won"]>>;
|
|
1269
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "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,14 +1380,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
1383
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
1384
1384
|
biddingAmount: number | null;
|
|
1385
1385
|
boosted: boolean | null;
|
|
1386
1386
|
boostingAmount: number | null;
|
|
1387
1387
|
biddingTaskScheduled: boolean | null;
|
|
1388
1388
|
scheduledBiddingTime: number | null;
|
|
1389
1389
|
feedbackCheckTaskId: string | null;
|
|
1390
|
-
bidDecision: "
|
|
1390
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
1391
1391
|
rejectedFeedback: string | null;
|
|
1392
1392
|
applicationId: string | null;
|
|
1393
1393
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -1515,14 +1515,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
1518
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
1519
1519
|
biddingAmount: number | null;
|
|
1520
1520
|
boosted: boolean | null;
|
|
1521
1521
|
boostingAmount: number | null;
|
|
1522
1522
|
biddingTaskScheduled: boolean | null;
|
|
1523
1523
|
scheduledBiddingTime: number | null;
|
|
1524
1524
|
feedbackCheckTaskId: string | null;
|
|
1525
|
-
bidDecision: "
|
|
1525
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
1526
1526
|
rejectedFeedback: string | null;
|
|
1527
1527
|
applicationId: string | null;
|
|
1528
1528
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -1683,14 +1683,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
1686
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
1687
1687
|
biddingAmount: number | null;
|
|
1688
1688
|
boosted: boolean | null;
|
|
1689
1689
|
boostingAmount: number | null;
|
|
1690
1690
|
biddingTaskScheduled: boolean | null;
|
|
1691
1691
|
scheduledBiddingTime: number | null;
|
|
1692
1692
|
feedbackCheckTaskId: string | null;
|
|
1693
|
-
bidDecision: "
|
|
1693
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
1694
1694
|
rejectedFeedback: string | null;
|
|
1695
1695
|
applicationId: string | null;
|
|
1696
1696
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -1841,14 +1841,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
1844
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
1845
1845
|
biddingAmount: number | null;
|
|
1846
1846
|
boosted: boolean | null;
|
|
1847
1847
|
boostingAmount: number | null;
|
|
1848
1848
|
biddingTaskScheduled: boolean | null;
|
|
1849
1849
|
scheduledBiddingTime: number | null;
|
|
1850
1850
|
feedbackCheckTaskId: string | null;
|
|
1851
|
-
bidDecision: "
|
|
1851
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
1852
1852
|
rejectedFeedback: string | null;
|
|
1853
1853
|
applicationId: string | null;
|
|
1854
1854
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -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", "noLongerAvailable", "viewed", "replied", "won"]>>;
|
|
2214
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "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,14 +2325,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
2328
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
2329
2329
|
biddingAmount: number | null;
|
|
2330
2330
|
boosted: boolean | null;
|
|
2331
2331
|
boostingAmount: number | null;
|
|
2332
2332
|
biddingTaskScheduled: boolean | null;
|
|
2333
2333
|
scheduledBiddingTime: number | null;
|
|
2334
2334
|
feedbackCheckTaskId: string | null;
|
|
2335
|
-
bidDecision: "
|
|
2335
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
2336
2336
|
rejectedFeedback: string | null;
|
|
2337
2337
|
applicationId: string | null;
|
|
2338
2338
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -2460,14 +2460,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
2463
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
2464
2464
|
biddingAmount: number | null;
|
|
2465
2465
|
boosted: boolean | null;
|
|
2466
2466
|
boostingAmount: number | null;
|
|
2467
2467
|
biddingTaskScheduled: boolean | null;
|
|
2468
2468
|
scheduledBiddingTime: number | null;
|
|
2469
2469
|
feedbackCheckTaskId: string | null;
|
|
2470
|
-
bidDecision: "
|
|
2470
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
2471
2471
|
rejectedFeedback: string | null;
|
|
2472
2472
|
applicationId: string | null;
|
|
2473
2473
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -2632,14 +2632,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
2635
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
2636
2636
|
biddingAmount: number | null;
|
|
2637
2637
|
boosted: boolean | null;
|
|
2638
2638
|
boostingAmount: number | null;
|
|
2639
2639
|
biddingTaskScheduled: boolean | null;
|
|
2640
2640
|
scheduledBiddingTime: number | null;
|
|
2641
2641
|
feedbackCheckTaskId: string | null;
|
|
2642
|
-
bidDecision: "
|
|
2642
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
2643
2643
|
rejectedFeedback: string | null;
|
|
2644
2644
|
applicationId: string | null;
|
|
2645
2645
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -2793,14 +2793,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
2796
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
2797
2797
|
biddingAmount: number | null;
|
|
2798
2798
|
boosted: boolean | null;
|
|
2799
2799
|
boostingAmount: number | null;
|
|
2800
2800
|
biddingTaskScheduled: boolean | null;
|
|
2801
2801
|
scheduledBiddingTime: number | null;
|
|
2802
2802
|
feedbackCheckTaskId: string | null;
|
|
2803
|
-
bidDecision: "
|
|
2803
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
2804
2804
|
rejectedFeedback: string | null;
|
|
2805
2805
|
applicationId: string | null;
|
|
2806
2806
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -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", "noLongerAvailable", "viewed", "replied", "won"]>>;
|
|
3169
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "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,14 +3280,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
3283
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
3284
3284
|
biddingAmount: number | null;
|
|
3285
3285
|
boosted: boolean | null;
|
|
3286
3286
|
boostingAmount: number | null;
|
|
3287
3287
|
biddingTaskScheduled: boolean | null;
|
|
3288
3288
|
scheduledBiddingTime: number | null;
|
|
3289
3289
|
feedbackCheckTaskId: string | null;
|
|
3290
|
-
bidDecision: "
|
|
3290
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
3291
3291
|
rejectedFeedback: string | null;
|
|
3292
3292
|
applicationId: string | null;
|
|
3293
3293
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -3415,14 +3415,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
3418
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
3419
3419
|
biddingAmount: number | null;
|
|
3420
3420
|
boosted: boolean | null;
|
|
3421
3421
|
boostingAmount: number | null;
|
|
3422
3422
|
biddingTaskScheduled: boolean | null;
|
|
3423
3423
|
scheduledBiddingTime: number | null;
|
|
3424
3424
|
feedbackCheckTaskId: string | null;
|
|
3425
|
-
bidDecision: "
|
|
3425
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
3426
3426
|
rejectedFeedback: string | null;
|
|
3427
3427
|
applicationId: string | null;
|
|
3428
3428
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -3558,14 +3558,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
3561
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
3562
3562
|
biddingAmount: number | null;
|
|
3563
3563
|
boosted: boolean | null;
|
|
3564
3564
|
boostingAmount: number | null;
|
|
3565
3565
|
biddingTaskScheduled: boolean | null;
|
|
3566
3566
|
scheduledBiddingTime: number | null;
|
|
3567
3567
|
feedbackCheckTaskId: string | null;
|
|
3568
|
-
bidDecision: "
|
|
3568
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
3569
3569
|
rejectedFeedback: string | null;
|
|
3570
3570
|
applicationId: string | null;
|
|
3571
3571
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -3700,14 +3700,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
3703
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
3704
3704
|
biddingAmount: number | null;
|
|
3705
3705
|
boosted: boolean | null;
|
|
3706
3706
|
boostingAmount: number | null;
|
|
3707
3707
|
biddingTaskScheduled: boolean | null;
|
|
3708
3708
|
scheduledBiddingTime: number | null;
|
|
3709
3709
|
feedbackCheckTaskId: string | null;
|
|
3710
|
-
bidDecision: "
|
|
3710
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
3711
3711
|
rejectedFeedback: string | null;
|
|
3712
3712
|
applicationId: string | null;
|
|
3713
3713
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -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", "noLongerAvailable", "viewed", "replied", "won"]>>;
|
|
4060
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "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,14 +4171,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
4174
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
4175
4175
|
biddingAmount: number | null;
|
|
4176
4176
|
boosted: boolean | null;
|
|
4177
4177
|
boostingAmount: number | null;
|
|
4178
4178
|
biddingTaskScheduled: boolean | null;
|
|
4179
4179
|
scheduledBiddingTime: number | null;
|
|
4180
4180
|
feedbackCheckTaskId: string | null;
|
|
4181
|
-
bidDecision: "
|
|
4181
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
4182
4182
|
rejectedFeedback: string | null;
|
|
4183
4183
|
applicationId: string | null;
|
|
4184
4184
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -4306,14 +4306,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
4309
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
4310
4310
|
biddingAmount: number | null;
|
|
4311
4311
|
boosted: boolean | null;
|
|
4312
4312
|
boostingAmount: number | null;
|
|
4313
4313
|
biddingTaskScheduled: boolean | null;
|
|
4314
4314
|
scheduledBiddingTime: number | null;
|
|
4315
4315
|
feedbackCheckTaskId: string | null;
|
|
4316
|
-
bidDecision: "
|
|
4316
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
4317
4317
|
rejectedFeedback: string | null;
|
|
4318
4318
|
applicationId: string | null;
|
|
4319
4319
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -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", "noLongerAvailable", "viewed", "replied", "won"]>>;
|
|
4667
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "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,14 +4778,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
4781
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
4782
4782
|
biddingAmount: number | null;
|
|
4783
4783
|
boosted: boolean | null;
|
|
4784
4784
|
boostingAmount: number | null;
|
|
4785
4785
|
biddingTaskScheduled: boolean | null;
|
|
4786
4786
|
scheduledBiddingTime: number | null;
|
|
4787
4787
|
feedbackCheckTaskId: string | null;
|
|
4788
|
-
bidDecision: "
|
|
4788
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
4789
4789
|
rejectedFeedback: string | null;
|
|
4790
4790
|
applicationId: string | null;
|
|
4791
4791
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -4913,14 +4913,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
4916
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
4917
4917
|
biddingAmount: number | null;
|
|
4918
4918
|
boosted: boolean | null;
|
|
4919
4919
|
boostingAmount: number | null;
|
|
4920
4920
|
biddingTaskScheduled: boolean | null;
|
|
4921
4921
|
scheduledBiddingTime: number | null;
|
|
4922
4922
|
feedbackCheckTaskId: string | null;
|
|
4923
|
-
bidDecision: "
|
|
4923
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
4924
4924
|
rejectedFeedback: string | null;
|
|
4925
4925
|
applicationId: string | null;
|
|
4926
4926
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -5085,14 +5085,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
5088
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
5089
5089
|
biddingAmount: number | null;
|
|
5090
5090
|
boosted: boolean | null;
|
|
5091
5091
|
boostingAmount: number | null;
|
|
5092
5092
|
biddingTaskScheduled: boolean | null;
|
|
5093
5093
|
scheduledBiddingTime: number | null;
|
|
5094
5094
|
feedbackCheckTaskId: string | null;
|
|
5095
|
-
bidDecision: "
|
|
5095
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
5096
5096
|
rejectedFeedback: string | null;
|
|
5097
5097
|
applicationId: string | null;
|
|
5098
5098
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -5246,14 +5246,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
5249
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
5250
5250
|
biddingAmount: number | null;
|
|
5251
5251
|
boosted: boolean | null;
|
|
5252
5252
|
boostingAmount: number | null;
|
|
5253
5253
|
biddingTaskScheduled: boolean | null;
|
|
5254
5254
|
scheduledBiddingTime: number | null;
|
|
5255
5255
|
feedbackCheckTaskId: string | null;
|
|
5256
|
-
bidDecision: "
|
|
5256
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
5257
5257
|
rejectedFeedback: string | null;
|
|
5258
5258
|
applicationId: string | null;
|
|
5259
5259
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -5405,14 +5405,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
5408
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
5409
5409
|
biddingAmount: number | null;
|
|
5410
5410
|
boosted: boolean | null;
|
|
5411
5411
|
boostingAmount: number | null;
|
|
5412
5412
|
biddingTaskScheduled: boolean | null;
|
|
5413
5413
|
scheduledBiddingTime: number | null;
|
|
5414
5414
|
feedbackCheckTaskId: string | null;
|
|
5415
|
-
bidDecision: "
|
|
5415
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
5416
5416
|
rejectedFeedback: string | null;
|
|
5417
5417
|
applicationId: string | null;
|
|
5418
5418
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -5550,14 +5550,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
5553
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
5554
5554
|
biddingAmount: number | null;
|
|
5555
5555
|
boosted: boolean | null;
|
|
5556
5556
|
boostingAmount: number | null;
|
|
5557
5557
|
biddingTaskScheduled: boolean | null;
|
|
5558
5558
|
scheduledBiddingTime: number | null;
|
|
5559
5559
|
feedbackCheckTaskId: string | null;
|
|
5560
|
-
bidDecision: "
|
|
5560
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
5561
5561
|
rejectedFeedback: string | null;
|
|
5562
5562
|
applicationId: string | null;
|
|
5563
5563
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -5709,14 +5709,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
5712
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
5713
5713
|
biddingAmount: number | null;
|
|
5714
5714
|
boosted: boolean | null;
|
|
5715
5715
|
boostingAmount: number | null;
|
|
5716
5716
|
biddingTaskScheduled: boolean | null;
|
|
5717
5717
|
scheduledBiddingTime: number | null;
|
|
5718
5718
|
feedbackCheckTaskId: string | null;
|
|
5719
|
-
bidDecision: "
|
|
5719
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
5720
5720
|
rejectedFeedback: string | null;
|
|
5721
5721
|
applicationId: string | null;
|
|
5722
5722
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -5854,14 +5854,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
5857
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
5858
5858
|
biddingAmount: number | null;
|
|
5859
5859
|
boosted: boolean | null;
|
|
5860
5860
|
boostingAmount: number | null;
|
|
5861
5861
|
biddingTaskScheduled: boolean | null;
|
|
5862
5862
|
scheduledBiddingTime: number | null;
|
|
5863
5863
|
feedbackCheckTaskId: string | null;
|
|
5864
|
-
bidDecision: "
|
|
5864
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
5865
5865
|
rejectedFeedback: string | null;
|
|
5866
5866
|
applicationId: string | null;
|
|
5867
5867
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -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", "noLongerAvailable", "viewed", "replied", "won"]>>;
|
|
6231
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "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,14 +6342,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
6345
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
6346
6346
|
biddingAmount: number | null;
|
|
6347
6347
|
boosted: boolean | null;
|
|
6348
6348
|
boostingAmount: number | null;
|
|
6349
6349
|
biddingTaskScheduled: boolean | null;
|
|
6350
6350
|
scheduledBiddingTime: number | null;
|
|
6351
6351
|
feedbackCheckTaskId: string | null;
|
|
6352
|
-
bidDecision: "
|
|
6352
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
6353
6353
|
rejectedFeedback: string | null;
|
|
6354
6354
|
applicationId: string | null;
|
|
6355
6355
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -6477,14 +6477,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
6480
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
6481
6481
|
biddingAmount: number | null;
|
|
6482
6482
|
boosted: boolean | null;
|
|
6483
6483
|
boostingAmount: number | null;
|
|
6484
6484
|
biddingTaskScheduled: boolean | null;
|
|
6485
6485
|
scheduledBiddingTime: number | null;
|
|
6486
6486
|
feedbackCheckTaskId: string | null;
|
|
6487
|
-
bidDecision: "
|
|
6487
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
6488
6488
|
rejectedFeedback: string | null;
|
|
6489
6489
|
applicationId: string | null;
|
|
6490
6490
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -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", "noLongerAvailable", "viewed", "replied", "won"]>>;
|
|
6838
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "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,14 +6949,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
6952
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
6953
6953
|
biddingAmount: number | null;
|
|
6954
6954
|
boosted: boolean | null;
|
|
6955
6955
|
boostingAmount: number | null;
|
|
6956
6956
|
biddingTaskScheduled: boolean | null;
|
|
6957
6957
|
scheduledBiddingTime: number | null;
|
|
6958
6958
|
feedbackCheckTaskId: string | null;
|
|
6959
|
-
bidDecision: "
|
|
6959
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
6960
6960
|
rejectedFeedback: string | null;
|
|
6961
6961
|
applicationId: string | null;
|
|
6962
6962
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -7084,14 +7084,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
7087
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
7088
7088
|
biddingAmount: number | null;
|
|
7089
7089
|
boosted: boolean | null;
|
|
7090
7090
|
boostingAmount: number | null;
|
|
7091
7091
|
biddingTaskScheduled: boolean | null;
|
|
7092
7092
|
scheduledBiddingTime: number | null;
|
|
7093
7093
|
feedbackCheckTaskId: string | null;
|
|
7094
|
-
bidDecision: "
|
|
7094
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
7095
7095
|
rejectedFeedback: string | null;
|
|
7096
7096
|
applicationId: string | null;
|
|
7097
7097
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -7252,14 +7252,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
7255
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
7256
7256
|
biddingAmount: number | null;
|
|
7257
7257
|
boosted: boolean | null;
|
|
7258
7258
|
boostingAmount: number | null;
|
|
7259
7259
|
biddingTaskScheduled: boolean | null;
|
|
7260
7260
|
scheduledBiddingTime: number | null;
|
|
7261
7261
|
feedbackCheckTaskId: string | null;
|
|
7262
|
-
bidDecision: "
|
|
7262
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
7263
7263
|
rejectedFeedback: string | null;
|
|
7264
7264
|
applicationId: string | null;
|
|
7265
7265
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -7410,14 +7410,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
7413
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
7414
7414
|
biddingAmount: number | null;
|
|
7415
7415
|
boosted: boolean | null;
|
|
7416
7416
|
boostingAmount: number | null;
|
|
7417
7417
|
biddingTaskScheduled: boolean | null;
|
|
7418
7418
|
scheduledBiddingTime: number | null;
|
|
7419
7419
|
feedbackCheckTaskId: string | null;
|
|
7420
|
-
bidDecision: "
|
|
7420
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
7421
7421
|
rejectedFeedback: string | null;
|
|
7422
7422
|
applicationId: string | null;
|
|
7423
7423
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -7566,14 +7566,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
7569
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
7570
7570
|
biddingAmount: number | null;
|
|
7571
7571
|
boosted: boolean | null;
|
|
7572
7572
|
boostingAmount: number | null;
|
|
7573
7573
|
biddingTaskScheduled: boolean | null;
|
|
7574
7574
|
scheduledBiddingTime: number | null;
|
|
7575
7575
|
feedbackCheckTaskId: string | null;
|
|
7576
|
-
bidDecision: "
|
|
7576
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
7577
7577
|
rejectedFeedback: string | null;
|
|
7578
7578
|
applicationId: string | null;
|
|
7579
7579
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -7711,14 +7711,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
7714
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
7715
7715
|
biddingAmount: number | null;
|
|
7716
7716
|
boosted: boolean | null;
|
|
7717
7717
|
boostingAmount: number | null;
|
|
7718
7718
|
biddingTaskScheduled: boolean | null;
|
|
7719
7719
|
scheduledBiddingTime: number | null;
|
|
7720
7720
|
feedbackCheckTaskId: string | null;
|
|
7721
|
-
bidDecision: "
|
|
7721
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
7722
7722
|
rejectedFeedback: string | null;
|
|
7723
7723
|
applicationId: string | null;
|
|
7724
7724
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -7867,14 +7867,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
7870
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
7871
7871
|
biddingAmount: number | null;
|
|
7872
7872
|
boosted: boolean | null;
|
|
7873
7873
|
boostingAmount: number | null;
|
|
7874
7874
|
biddingTaskScheduled: boolean | null;
|
|
7875
7875
|
scheduledBiddingTime: number | null;
|
|
7876
7876
|
feedbackCheckTaskId: string | null;
|
|
7877
|
-
bidDecision: "
|
|
7877
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
7878
7878
|
rejectedFeedback: string | null;
|
|
7879
7879
|
applicationId: string | null;
|
|
7880
7880
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -8012,14 +8012,14 @@ 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" | "noLongerAvailable" | "viewed" | "replied" | "won" | null;
|
|
8015
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
|
|
8016
8016
|
biddingAmount: number | null;
|
|
8017
8017
|
boosted: boolean | null;
|
|
8018
8018
|
boostingAmount: number | null;
|
|
8019
8019
|
biddingTaskScheduled: boolean | null;
|
|
8020
8020
|
scheduledBiddingTime: number | null;
|
|
8021
8021
|
feedbackCheckTaskId: string | null;
|
|
8022
|
-
bidDecision: "
|
|
8022
|
+
bidDecision: "rejected" | "proceeded" | null;
|
|
8023
8023
|
rejectedFeedback: string | null;
|
|
8024
8024
|
applicationId: string | null;
|
|
8025
8025
|
activity?: Partial<Record<"4h" | "24h", {
|
|
@@ -8075,6 +8075,26 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
8075
8075
|
campaignId: string;
|
|
8076
8076
|
leadId: string;
|
|
8077
8077
|
}>;
|
|
8078
|
+
export declare const getBiddingProcessingEventFromAnotherCampaignsPayloadSchema: z.ZodObject<{
|
|
8079
|
+
organizationId: z.ZodString;
|
|
8080
|
+
campaignId: z.ZodString;
|
|
8081
|
+
jobUrl: z.ZodString;
|
|
8082
|
+
}, "strip", z.ZodTypeAny, {
|
|
8083
|
+
organizationId: string;
|
|
8084
|
+
campaignId: string;
|
|
8085
|
+
jobUrl: string;
|
|
8086
|
+
}, {
|
|
8087
|
+
organizationId: string;
|
|
8088
|
+
campaignId: string;
|
|
8089
|
+
jobUrl: string;
|
|
8090
|
+
}>;
|
|
8091
|
+
export declare const getBiddingProcessingEventFromAnotherCampaignsResponseSchema: z.ZodObject<{
|
|
8092
|
+
exists: z.ZodBoolean;
|
|
8093
|
+
}, "strip", z.ZodTypeAny, {
|
|
8094
|
+
exists: boolean;
|
|
8095
|
+
}, {
|
|
8096
|
+
exists: boolean;
|
|
8097
|
+
}>;
|
|
8078
8098
|
export interface BidPayload extends z.infer<typeof bidPayloadSchema> {
|
|
8079
8099
|
lead: Lead;
|
|
8080
8100
|
}
|
|
@@ -8096,3 +8116,7 @@ export interface FreelancerBidProposalData extends z.infer<typeof freelancerBidP
|
|
|
8096
8116
|
export interface BidDto extends z.infer<typeof bidDtoSchema> {
|
|
8097
8117
|
lead: Lead;
|
|
8098
8118
|
}
|
|
8119
|
+
export interface GetBiddingProcessingEventFromAnotherCampaignsPayload extends z.infer<typeof getBiddingProcessingEventFromAnotherCampaignsPayloadSchema> {
|
|
8120
|
+
}
|
|
8121
|
+
export interface GetBiddingProcessingEventFromAnotherCampaignsResponse extends z.infer<typeof getBiddingProcessingEventFromAnotherCampaignsResponseSchema> {
|
|
8122
|
+
}
|