lancer-shared 1.2.266 → 1.2.267
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 +23 -0
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +21 -1
- package/dist/bundle.esm.js.map +1 -1
- package/dist/schemas/agent/index.d.ts +18 -11
- package/dist/schemas/bidder/bid.d.ts +207 -121
- package/dist/schemas/bidder/exceptions/index.d.ts +3 -1
- package/dist/schemas/bidder/exceptions/job-already-hired.exception.d.ts +5 -0
- package/dist/schemas/campaign/campaign-analytics.d.ts +82 -47
- package/dist/schemas/campaign/campaign-chat-bot.d.ts +11 -11
- package/dist/schemas/campaign/campaign.d.ts +24 -15
- package/dist/schemas/lead/already-hired-action.d.ts +3 -0
- package/dist/schemas/lead/index.d.ts +72 -42
- 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 +32 -20
- package/package.json +1 -1
|
@@ -322,7 +322,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
322
322
|
question: string;
|
|
323
323
|
}>, "many">>;
|
|
324
324
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
325
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "won"]>>;
|
|
325
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>>;
|
|
326
326
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
327
327
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
328
328
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -353,6 +353,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
353
353
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
354
354
|
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
355
355
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
356
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
356
357
|
bidConfig: z.ZodObject<{
|
|
357
358
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
358
359
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
@@ -369,7 +370,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
369
370
|
}, "strip", z.ZodTypeAny, {
|
|
370
371
|
appliedFromQueue: boolean | null;
|
|
371
372
|
biddingDelayInMinutes: number | null;
|
|
372
|
-
bidWithWarning: "
|
|
373
|
+
bidWithWarning: "skip" | "bid";
|
|
373
374
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
374
375
|
biddingHourlyRatePercentage: number | null;
|
|
375
376
|
biddingFixedHourlyRate: number | null;
|
|
@@ -379,6 +380,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
379
380
|
maximumBoost: number | null;
|
|
380
381
|
minBoost: number | null;
|
|
381
382
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
383
|
+
alreadyHiredAction: "skip" | "bid";
|
|
382
384
|
bidConfig: {
|
|
383
385
|
contractorName: string | null;
|
|
384
386
|
agencyName: string | null;
|
|
@@ -387,7 +389,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
387
389
|
}, {
|
|
388
390
|
appliedFromQueue: boolean | null;
|
|
389
391
|
biddingDelayInMinutes: number | null;
|
|
390
|
-
bidWithWarning: "
|
|
392
|
+
bidWithWarning: "skip" | "bid";
|
|
391
393
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
392
394
|
biddingHourlyRatePercentage: number | null;
|
|
393
395
|
biddingFixedHourlyRate: number | null;
|
|
@@ -397,6 +399,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
397
399
|
maximumBoost: number | null;
|
|
398
400
|
minBoost: number | null;
|
|
399
401
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
402
|
+
alreadyHiredAction: "skip" | "bid";
|
|
400
403
|
bidConfig: {
|
|
401
404
|
contractorName: string | null;
|
|
402
405
|
agencyName: string | null;
|
|
@@ -510,7 +513,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
510
513
|
question: string;
|
|
511
514
|
}[] | null;
|
|
512
515
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
513
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
516
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
514
517
|
biddingAmount: number | null;
|
|
515
518
|
boosted: boolean | null;
|
|
516
519
|
boostingAmount: number | null;
|
|
@@ -527,7 +530,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
527
530
|
leadBiddingConfig: {
|
|
528
531
|
appliedFromQueue: boolean | null;
|
|
529
532
|
biddingDelayInMinutes: number | null;
|
|
530
|
-
bidWithWarning: "
|
|
533
|
+
bidWithWarning: "skip" | "bid";
|
|
531
534
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
532
535
|
biddingHourlyRatePercentage: number | null;
|
|
533
536
|
biddingFixedHourlyRate: number | null;
|
|
@@ -537,6 +540,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
537
540
|
maximumBoost: number | null;
|
|
538
541
|
minBoost: number | null;
|
|
539
542
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
543
|
+
alreadyHiredAction: "skip" | "bid";
|
|
540
544
|
bidConfig: {
|
|
541
545
|
contractorName: string | null;
|
|
542
546
|
agencyName: string | null;
|
|
@@ -672,7 +676,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
672
676
|
question: string;
|
|
673
677
|
}[] | null;
|
|
674
678
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
675
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
679
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
676
680
|
biddingAmount: number | null;
|
|
677
681
|
boosted: boolean | null;
|
|
678
682
|
boostingAmount: number | null;
|
|
@@ -689,7 +693,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
689
693
|
leadBiddingConfig: {
|
|
690
694
|
appliedFromQueue: boolean | null;
|
|
691
695
|
biddingDelayInMinutes: number | null;
|
|
692
|
-
bidWithWarning: "
|
|
696
|
+
bidWithWarning: "skip" | "bid";
|
|
693
697
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
694
698
|
biddingHourlyRatePercentage: number | null;
|
|
695
699
|
biddingFixedHourlyRate: number | null;
|
|
@@ -699,6 +703,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
699
703
|
maximumBoost: number | null;
|
|
700
704
|
minBoost: number | null;
|
|
701
705
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
706
|
+
alreadyHiredAction: "skip" | "bid";
|
|
702
707
|
bidConfig: {
|
|
703
708
|
contractorName: string | null;
|
|
704
709
|
agencyName: string | null;
|
|
@@ -749,6 +754,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
749
754
|
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
750
755
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
751
756
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
757
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
752
758
|
isHourlyRate: z.ZodBoolean;
|
|
753
759
|
jobMinHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
754
760
|
jobMaxHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
@@ -756,7 +762,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
756
762
|
}, "strip", z.ZodTypeAny, {
|
|
757
763
|
campaignId: string;
|
|
758
764
|
organizationId: string;
|
|
759
|
-
bidWithWarning: "
|
|
765
|
+
bidWithWarning: "skip" | "bid";
|
|
760
766
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
761
767
|
biddingHourlyRatePercentage: number | null;
|
|
762
768
|
biddingFixedHourlyRate: number | null;
|
|
@@ -765,6 +771,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
765
771
|
connectsAbovePrevious: number | null;
|
|
766
772
|
maximumBoost: number | null;
|
|
767
773
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
774
|
+
alreadyHiredAction: "skip" | "bid";
|
|
768
775
|
questionAnswerPairs: {
|
|
769
776
|
answer: string;
|
|
770
777
|
question: string;
|
|
@@ -877,7 +884,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
877
884
|
question: string;
|
|
878
885
|
}[] | null;
|
|
879
886
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
880
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
887
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
881
888
|
biddingAmount: number | null;
|
|
882
889
|
boosted: boolean | null;
|
|
883
890
|
boostingAmount: number | null;
|
|
@@ -894,7 +901,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
894
901
|
leadBiddingConfig: {
|
|
895
902
|
appliedFromQueue: boolean | null;
|
|
896
903
|
biddingDelayInMinutes: number | null;
|
|
897
|
-
bidWithWarning: "
|
|
904
|
+
bidWithWarning: "skip" | "bid";
|
|
898
905
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
899
906
|
biddingHourlyRatePercentage: number | null;
|
|
900
907
|
biddingFixedHourlyRate: number | null;
|
|
@@ -904,6 +911,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
904
911
|
maximumBoost: number | null;
|
|
905
912
|
minBoost: number | null;
|
|
906
913
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
914
|
+
alreadyHiredAction: "skip" | "bid";
|
|
907
915
|
bidConfig: {
|
|
908
916
|
contractorName: string | null;
|
|
909
917
|
agencyName: string | null;
|
|
@@ -941,7 +949,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
941
949
|
}, {
|
|
942
950
|
campaignId: string;
|
|
943
951
|
organizationId: string;
|
|
944
|
-
bidWithWarning: "
|
|
952
|
+
bidWithWarning: "skip" | "bid";
|
|
945
953
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
946
954
|
biddingHourlyRatePercentage: number | null;
|
|
947
955
|
biddingFixedHourlyRate: number | null;
|
|
@@ -950,6 +958,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
950
958
|
connectsAbovePrevious: number | null;
|
|
951
959
|
maximumBoost: number | null;
|
|
952
960
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
961
|
+
alreadyHiredAction: "skip" | "bid";
|
|
953
962
|
questionAnswerPairs: {
|
|
954
963
|
answer: string;
|
|
955
964
|
question: string;
|
|
@@ -1062,7 +1071,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
1062
1071
|
question: string;
|
|
1063
1072
|
}[] | null;
|
|
1064
1073
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
1065
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
1074
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
1066
1075
|
biddingAmount: number | null;
|
|
1067
1076
|
boosted: boolean | null;
|
|
1068
1077
|
boostingAmount: number | null;
|
|
@@ -1079,7 +1088,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
1079
1088
|
leadBiddingConfig: {
|
|
1080
1089
|
appliedFromQueue: boolean | null;
|
|
1081
1090
|
biddingDelayInMinutes: number | null;
|
|
1082
|
-
bidWithWarning: "
|
|
1091
|
+
bidWithWarning: "skip" | "bid";
|
|
1083
1092
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1084
1093
|
biddingHourlyRatePercentage: number | null;
|
|
1085
1094
|
biddingFixedHourlyRate: number | null;
|
|
@@ -1089,6 +1098,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
1089
1098
|
maximumBoost: number | null;
|
|
1090
1099
|
minBoost: number | null;
|
|
1091
1100
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1101
|
+
alreadyHiredAction: "skip" | "bid";
|
|
1092
1102
|
bidConfig: {
|
|
1093
1103
|
contractorName: string | null;
|
|
1094
1104
|
agencyName: string | null;
|
|
@@ -1446,7 +1456,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1446
1456
|
question: string;
|
|
1447
1457
|
}>, "many">>;
|
|
1448
1458
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
1449
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "won"]>>;
|
|
1459
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>>;
|
|
1450
1460
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
1451
1461
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
1452
1462
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1477,6 +1487,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1477
1487
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
1478
1488
|
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
1479
1489
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
1490
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
1480
1491
|
bidConfig: z.ZodObject<{
|
|
1481
1492
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
1482
1493
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
@@ -1493,7 +1504,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1493
1504
|
}, "strip", z.ZodTypeAny, {
|
|
1494
1505
|
appliedFromQueue: boolean | null;
|
|
1495
1506
|
biddingDelayInMinutes: number | null;
|
|
1496
|
-
bidWithWarning: "
|
|
1507
|
+
bidWithWarning: "skip" | "bid";
|
|
1497
1508
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1498
1509
|
biddingHourlyRatePercentage: number | null;
|
|
1499
1510
|
biddingFixedHourlyRate: number | null;
|
|
@@ -1503,6 +1514,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1503
1514
|
maximumBoost: number | null;
|
|
1504
1515
|
minBoost: number | null;
|
|
1505
1516
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1517
|
+
alreadyHiredAction: "skip" | "bid";
|
|
1506
1518
|
bidConfig: {
|
|
1507
1519
|
contractorName: string | null;
|
|
1508
1520
|
agencyName: string | null;
|
|
@@ -1511,7 +1523,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1511
1523
|
}, {
|
|
1512
1524
|
appliedFromQueue: boolean | null;
|
|
1513
1525
|
biddingDelayInMinutes: number | null;
|
|
1514
|
-
bidWithWarning: "
|
|
1526
|
+
bidWithWarning: "skip" | "bid";
|
|
1515
1527
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1516
1528
|
biddingHourlyRatePercentage: number | null;
|
|
1517
1529
|
biddingFixedHourlyRate: number | null;
|
|
@@ -1521,6 +1533,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1521
1533
|
maximumBoost: number | null;
|
|
1522
1534
|
minBoost: number | null;
|
|
1523
1535
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1536
|
+
alreadyHiredAction: "skip" | "bid";
|
|
1524
1537
|
bidConfig: {
|
|
1525
1538
|
contractorName: string | null;
|
|
1526
1539
|
agencyName: string | null;
|
|
@@ -1634,7 +1647,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1634
1647
|
question: string;
|
|
1635
1648
|
}[] | null;
|
|
1636
1649
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
1637
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
1650
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
1638
1651
|
biddingAmount: number | null;
|
|
1639
1652
|
boosted: boolean | null;
|
|
1640
1653
|
boostingAmount: number | null;
|
|
@@ -1651,7 +1664,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1651
1664
|
leadBiddingConfig: {
|
|
1652
1665
|
appliedFromQueue: boolean | null;
|
|
1653
1666
|
biddingDelayInMinutes: number | null;
|
|
1654
|
-
bidWithWarning: "
|
|
1667
|
+
bidWithWarning: "skip" | "bid";
|
|
1655
1668
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1656
1669
|
biddingHourlyRatePercentage: number | null;
|
|
1657
1670
|
biddingFixedHourlyRate: number | null;
|
|
@@ -1661,6 +1674,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1661
1674
|
maximumBoost: number | null;
|
|
1662
1675
|
minBoost: number | null;
|
|
1663
1676
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1677
|
+
alreadyHiredAction: "skip" | "bid";
|
|
1664
1678
|
bidConfig: {
|
|
1665
1679
|
contractorName: string | null;
|
|
1666
1680
|
agencyName: string | null;
|
|
@@ -1796,7 +1810,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1796
1810
|
question: string;
|
|
1797
1811
|
}[] | null;
|
|
1798
1812
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
1799
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
1813
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
1800
1814
|
biddingAmount: number | null;
|
|
1801
1815
|
boosted: boolean | null;
|
|
1802
1816
|
boostingAmount: number | null;
|
|
@@ -1813,7 +1827,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1813
1827
|
leadBiddingConfig: {
|
|
1814
1828
|
appliedFromQueue: boolean | null;
|
|
1815
1829
|
biddingDelayInMinutes: number | null;
|
|
1816
|
-
bidWithWarning: "
|
|
1830
|
+
bidWithWarning: "skip" | "bid";
|
|
1817
1831
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1818
1832
|
biddingHourlyRatePercentage: number | null;
|
|
1819
1833
|
biddingFixedHourlyRate: number | null;
|
|
@@ -1823,6 +1837,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1823
1837
|
maximumBoost: number | null;
|
|
1824
1838
|
minBoost: number | null;
|
|
1825
1839
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1840
|
+
alreadyHiredAction: "skip" | "bid";
|
|
1826
1841
|
bidConfig: {
|
|
1827
1842
|
contractorName: string | null;
|
|
1828
1843
|
agencyName: string | null;
|
|
@@ -1873,6 +1888,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1873
1888
|
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
1874
1889
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
1875
1890
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
1891
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
1876
1892
|
isHourlyRate: z.ZodBoolean;
|
|
1877
1893
|
jobMinHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
1878
1894
|
jobMaxHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1880,7 +1896,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1880
1896
|
}, "strip", z.ZodTypeAny, {
|
|
1881
1897
|
campaignId: string;
|
|
1882
1898
|
organizationId: string;
|
|
1883
|
-
bidWithWarning: "
|
|
1899
|
+
bidWithWarning: "skip" | "bid";
|
|
1884
1900
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1885
1901
|
biddingHourlyRatePercentage: number | null;
|
|
1886
1902
|
biddingFixedHourlyRate: number | null;
|
|
@@ -1889,6 +1905,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1889
1905
|
connectsAbovePrevious: number | null;
|
|
1890
1906
|
maximumBoost: number | null;
|
|
1891
1907
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1908
|
+
alreadyHiredAction: "skip" | "bid";
|
|
1892
1909
|
questionAnswerPairs: {
|
|
1893
1910
|
answer: string;
|
|
1894
1911
|
question: string;
|
|
@@ -2001,7 +2018,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
2001
2018
|
question: string;
|
|
2002
2019
|
}[] | null;
|
|
2003
2020
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
2004
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
2021
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
2005
2022
|
biddingAmount: number | null;
|
|
2006
2023
|
boosted: boolean | null;
|
|
2007
2024
|
boostingAmount: number | null;
|
|
@@ -2018,7 +2035,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
2018
2035
|
leadBiddingConfig: {
|
|
2019
2036
|
appliedFromQueue: boolean | null;
|
|
2020
2037
|
biddingDelayInMinutes: number | null;
|
|
2021
|
-
bidWithWarning: "
|
|
2038
|
+
bidWithWarning: "skip" | "bid";
|
|
2022
2039
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2023
2040
|
biddingHourlyRatePercentage: number | null;
|
|
2024
2041
|
biddingFixedHourlyRate: number | null;
|
|
@@ -2028,6 +2045,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
2028
2045
|
maximumBoost: number | null;
|
|
2029
2046
|
minBoost: number | null;
|
|
2030
2047
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2048
|
+
alreadyHiredAction: "skip" | "bid";
|
|
2031
2049
|
bidConfig: {
|
|
2032
2050
|
contractorName: string | null;
|
|
2033
2051
|
agencyName: string | null;
|
|
@@ -2065,7 +2083,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
2065
2083
|
}, {
|
|
2066
2084
|
campaignId: string;
|
|
2067
2085
|
organizationId: string;
|
|
2068
|
-
bidWithWarning: "
|
|
2086
|
+
bidWithWarning: "skip" | "bid";
|
|
2069
2087
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2070
2088
|
biddingHourlyRatePercentage: number | null;
|
|
2071
2089
|
biddingFixedHourlyRate: number | null;
|
|
@@ -2074,6 +2092,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
2074
2092
|
connectsAbovePrevious: number | null;
|
|
2075
2093
|
maximumBoost: number | null;
|
|
2076
2094
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2095
|
+
alreadyHiredAction: "skip" | "bid";
|
|
2077
2096
|
questionAnswerPairs: {
|
|
2078
2097
|
answer: string;
|
|
2079
2098
|
question: string;
|
|
@@ -2186,7 +2205,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
2186
2205
|
question: string;
|
|
2187
2206
|
}[] | null;
|
|
2188
2207
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
2189
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
2208
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
2190
2209
|
biddingAmount: number | null;
|
|
2191
2210
|
boosted: boolean | null;
|
|
2192
2211
|
boostingAmount: number | null;
|
|
@@ -2203,7 +2222,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
2203
2222
|
leadBiddingConfig: {
|
|
2204
2223
|
appliedFromQueue: boolean | null;
|
|
2205
2224
|
biddingDelayInMinutes: number | null;
|
|
2206
|
-
bidWithWarning: "
|
|
2225
|
+
bidWithWarning: "skip" | "bid";
|
|
2207
2226
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2208
2227
|
biddingHourlyRatePercentage: number | null;
|
|
2209
2228
|
biddingFixedHourlyRate: number | null;
|
|
@@ -2213,6 +2232,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
2213
2232
|
maximumBoost: number | null;
|
|
2214
2233
|
minBoost: number | null;
|
|
2215
2234
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2235
|
+
alreadyHiredAction: "skip" | "bid";
|
|
2216
2236
|
bidConfig: {
|
|
2217
2237
|
contractorName: string | null;
|
|
2218
2238
|
agencyName: string | null;
|
|
@@ -2570,7 +2590,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2570
2590
|
question: string;
|
|
2571
2591
|
}>, "many">>;
|
|
2572
2592
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
2573
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "won"]>>;
|
|
2593
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>>;
|
|
2574
2594
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
2575
2595
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
2576
2596
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -2601,6 +2621,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2601
2621
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
2602
2622
|
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
2603
2623
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
2624
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
2604
2625
|
bidConfig: z.ZodObject<{
|
|
2605
2626
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
2606
2627
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
@@ -2617,7 +2638,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2617
2638
|
}, "strip", z.ZodTypeAny, {
|
|
2618
2639
|
appliedFromQueue: boolean | null;
|
|
2619
2640
|
biddingDelayInMinutes: number | null;
|
|
2620
|
-
bidWithWarning: "
|
|
2641
|
+
bidWithWarning: "skip" | "bid";
|
|
2621
2642
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2622
2643
|
biddingHourlyRatePercentage: number | null;
|
|
2623
2644
|
biddingFixedHourlyRate: number | null;
|
|
@@ -2627,6 +2648,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2627
2648
|
maximumBoost: number | null;
|
|
2628
2649
|
minBoost: number | null;
|
|
2629
2650
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2651
|
+
alreadyHiredAction: "skip" | "bid";
|
|
2630
2652
|
bidConfig: {
|
|
2631
2653
|
contractorName: string | null;
|
|
2632
2654
|
agencyName: string | null;
|
|
@@ -2635,7 +2657,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2635
2657
|
}, {
|
|
2636
2658
|
appliedFromQueue: boolean | null;
|
|
2637
2659
|
biddingDelayInMinutes: number | null;
|
|
2638
|
-
bidWithWarning: "
|
|
2660
|
+
bidWithWarning: "skip" | "bid";
|
|
2639
2661
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2640
2662
|
biddingHourlyRatePercentage: number | null;
|
|
2641
2663
|
biddingFixedHourlyRate: number | null;
|
|
@@ -2645,6 +2667,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2645
2667
|
maximumBoost: number | null;
|
|
2646
2668
|
minBoost: number | null;
|
|
2647
2669
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2670
|
+
alreadyHiredAction: "skip" | "bid";
|
|
2648
2671
|
bidConfig: {
|
|
2649
2672
|
contractorName: string | null;
|
|
2650
2673
|
agencyName: string | null;
|
|
@@ -2758,7 +2781,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2758
2781
|
question: string;
|
|
2759
2782
|
}[] | null;
|
|
2760
2783
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
2761
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
2784
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
2762
2785
|
biddingAmount: number | null;
|
|
2763
2786
|
boosted: boolean | null;
|
|
2764
2787
|
boostingAmount: number | null;
|
|
@@ -2775,7 +2798,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2775
2798
|
leadBiddingConfig: {
|
|
2776
2799
|
appliedFromQueue: boolean | null;
|
|
2777
2800
|
biddingDelayInMinutes: number | null;
|
|
2778
|
-
bidWithWarning: "
|
|
2801
|
+
bidWithWarning: "skip" | "bid";
|
|
2779
2802
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2780
2803
|
biddingHourlyRatePercentage: number | null;
|
|
2781
2804
|
biddingFixedHourlyRate: number | null;
|
|
@@ -2785,6 +2808,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2785
2808
|
maximumBoost: number | null;
|
|
2786
2809
|
minBoost: number | null;
|
|
2787
2810
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2811
|
+
alreadyHiredAction: "skip" | "bid";
|
|
2788
2812
|
bidConfig: {
|
|
2789
2813
|
contractorName: string | null;
|
|
2790
2814
|
agencyName: string | null;
|
|
@@ -2920,7 +2944,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2920
2944
|
question: string;
|
|
2921
2945
|
}[] | null;
|
|
2922
2946
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
2923
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
2947
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
2924
2948
|
biddingAmount: number | null;
|
|
2925
2949
|
boosted: boolean | null;
|
|
2926
2950
|
boostingAmount: number | null;
|
|
@@ -2937,7 +2961,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2937
2961
|
leadBiddingConfig: {
|
|
2938
2962
|
appliedFromQueue: boolean | null;
|
|
2939
2963
|
biddingDelayInMinutes: number | null;
|
|
2940
|
-
bidWithWarning: "
|
|
2964
|
+
bidWithWarning: "skip" | "bid";
|
|
2941
2965
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2942
2966
|
biddingHourlyRatePercentage: number | null;
|
|
2943
2967
|
biddingFixedHourlyRate: number | null;
|
|
@@ -2947,6 +2971,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2947
2971
|
maximumBoost: number | null;
|
|
2948
2972
|
minBoost: number | null;
|
|
2949
2973
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2974
|
+
alreadyHiredAction: "skip" | "bid";
|
|
2950
2975
|
bidConfig: {
|
|
2951
2976
|
contractorName: string | null;
|
|
2952
2977
|
agencyName: string | null;
|
|
@@ -2997,6 +3022,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2997
3022
|
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
2998
3023
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
2999
3024
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
3025
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
3000
3026
|
isHourlyRate: z.ZodBoolean;
|
|
3001
3027
|
jobMinHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
3002
3028
|
jobMaxHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
@@ -3010,7 +3036,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3010
3036
|
organizationId: string;
|
|
3011
3037
|
contractorName: string;
|
|
3012
3038
|
agencyName: string;
|
|
3013
|
-
bidWithWarning: "
|
|
3039
|
+
bidWithWarning: "skip" | "bid";
|
|
3014
3040
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3015
3041
|
biddingHourlyRatePercentage: number | null;
|
|
3016
3042
|
biddingFixedHourlyRate: number | null;
|
|
@@ -3019,6 +3045,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3019
3045
|
connectsAbovePrevious: number | null;
|
|
3020
3046
|
maximumBoost: number | null;
|
|
3021
3047
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
3048
|
+
alreadyHiredAction: "skip" | "bid";
|
|
3022
3049
|
questionAnswerPairs: {
|
|
3023
3050
|
answer: string;
|
|
3024
3051
|
question: string;
|
|
@@ -3131,7 +3158,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3131
3158
|
question: string;
|
|
3132
3159
|
}[] | null;
|
|
3133
3160
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
3134
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
3161
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
3135
3162
|
biddingAmount: number | null;
|
|
3136
3163
|
boosted: boolean | null;
|
|
3137
3164
|
boostingAmount: number | null;
|
|
@@ -3148,7 +3175,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3148
3175
|
leadBiddingConfig: {
|
|
3149
3176
|
appliedFromQueue: boolean | null;
|
|
3150
3177
|
biddingDelayInMinutes: number | null;
|
|
3151
|
-
bidWithWarning: "
|
|
3178
|
+
bidWithWarning: "skip" | "bid";
|
|
3152
3179
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3153
3180
|
biddingHourlyRatePercentage: number | null;
|
|
3154
3181
|
biddingFixedHourlyRate: number | null;
|
|
@@ -3158,6 +3185,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3158
3185
|
maximumBoost: number | null;
|
|
3159
3186
|
minBoost: number | null;
|
|
3160
3187
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
3188
|
+
alreadyHiredAction: "skip" | "bid";
|
|
3161
3189
|
bidConfig: {
|
|
3162
3190
|
contractorName: string | null;
|
|
3163
3191
|
agencyName: string | null;
|
|
@@ -3198,7 +3226,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3198
3226
|
organizationId: string;
|
|
3199
3227
|
contractorName: string;
|
|
3200
3228
|
agencyName: string;
|
|
3201
|
-
bidWithWarning: "
|
|
3229
|
+
bidWithWarning: "skip" | "bid";
|
|
3202
3230
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3203
3231
|
biddingHourlyRatePercentage: number | null;
|
|
3204
3232
|
biddingFixedHourlyRate: number | null;
|
|
@@ -3207,6 +3235,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3207
3235
|
connectsAbovePrevious: number | null;
|
|
3208
3236
|
maximumBoost: number | null;
|
|
3209
3237
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
3238
|
+
alreadyHiredAction: "skip" | "bid";
|
|
3210
3239
|
questionAnswerPairs: {
|
|
3211
3240
|
answer: string;
|
|
3212
3241
|
question: string;
|
|
@@ -3319,7 +3348,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3319
3348
|
question: string;
|
|
3320
3349
|
}[] | null;
|
|
3321
3350
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
3322
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
3351
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
3323
3352
|
biddingAmount: number | null;
|
|
3324
3353
|
boosted: boolean | null;
|
|
3325
3354
|
boostingAmount: number | null;
|
|
@@ -3336,7 +3365,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3336
3365
|
leadBiddingConfig: {
|
|
3337
3366
|
appliedFromQueue: boolean | null;
|
|
3338
3367
|
biddingDelayInMinutes: number | null;
|
|
3339
|
-
bidWithWarning: "
|
|
3368
|
+
bidWithWarning: "skip" | "bid";
|
|
3340
3369
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3341
3370
|
biddingHourlyRatePercentage: number | null;
|
|
3342
3371
|
biddingFixedHourlyRate: number | null;
|
|
@@ -3346,6 +3375,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3346
3375
|
maximumBoost: number | null;
|
|
3347
3376
|
minBoost: number | null;
|
|
3348
3377
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
3378
|
+
alreadyHiredAction: "skip" | "bid";
|
|
3349
3379
|
bidConfig: {
|
|
3350
3380
|
contractorName: string | null;
|
|
3351
3381
|
agencyName: string | null;
|
|
@@ -3704,7 +3734,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3704
3734
|
question: string;
|
|
3705
3735
|
}>, "many">>;
|
|
3706
3736
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
3707
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "won"]>>;
|
|
3737
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>>;
|
|
3708
3738
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
3709
3739
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
3710
3740
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -3735,6 +3765,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3735
3765
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
3736
3766
|
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
3737
3767
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
3768
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
3738
3769
|
bidConfig: z.ZodObject<{
|
|
3739
3770
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
3740
3771
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
@@ -3751,7 +3782,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3751
3782
|
}, "strip", z.ZodTypeAny, {
|
|
3752
3783
|
appliedFromQueue: boolean | null;
|
|
3753
3784
|
biddingDelayInMinutes: number | null;
|
|
3754
|
-
bidWithWarning: "
|
|
3785
|
+
bidWithWarning: "skip" | "bid";
|
|
3755
3786
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3756
3787
|
biddingHourlyRatePercentage: number | null;
|
|
3757
3788
|
biddingFixedHourlyRate: number | null;
|
|
@@ -3761,6 +3792,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3761
3792
|
maximumBoost: number | null;
|
|
3762
3793
|
minBoost: number | null;
|
|
3763
3794
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
3795
|
+
alreadyHiredAction: "skip" | "bid";
|
|
3764
3796
|
bidConfig: {
|
|
3765
3797
|
contractorName: string | null;
|
|
3766
3798
|
agencyName: string | null;
|
|
@@ -3769,7 +3801,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3769
3801
|
}, {
|
|
3770
3802
|
appliedFromQueue: boolean | null;
|
|
3771
3803
|
biddingDelayInMinutes: number | null;
|
|
3772
|
-
bidWithWarning: "
|
|
3804
|
+
bidWithWarning: "skip" | "bid";
|
|
3773
3805
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3774
3806
|
biddingHourlyRatePercentage: number | null;
|
|
3775
3807
|
biddingFixedHourlyRate: number | null;
|
|
@@ -3779,6 +3811,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3779
3811
|
maximumBoost: number | null;
|
|
3780
3812
|
minBoost: number | null;
|
|
3781
3813
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
3814
|
+
alreadyHiredAction: "skip" | "bid";
|
|
3782
3815
|
bidConfig: {
|
|
3783
3816
|
contractorName: string | null;
|
|
3784
3817
|
agencyName: string | null;
|
|
@@ -3892,7 +3925,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3892
3925
|
question: string;
|
|
3893
3926
|
}[] | null;
|
|
3894
3927
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
3895
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
3928
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
3896
3929
|
biddingAmount: number | null;
|
|
3897
3930
|
boosted: boolean | null;
|
|
3898
3931
|
boostingAmount: number | null;
|
|
@@ -3909,7 +3942,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3909
3942
|
leadBiddingConfig: {
|
|
3910
3943
|
appliedFromQueue: boolean | null;
|
|
3911
3944
|
biddingDelayInMinutes: number | null;
|
|
3912
|
-
bidWithWarning: "
|
|
3945
|
+
bidWithWarning: "skip" | "bid";
|
|
3913
3946
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3914
3947
|
biddingHourlyRatePercentage: number | null;
|
|
3915
3948
|
biddingFixedHourlyRate: number | null;
|
|
@@ -3919,6 +3952,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3919
3952
|
maximumBoost: number | null;
|
|
3920
3953
|
minBoost: number | null;
|
|
3921
3954
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
3955
|
+
alreadyHiredAction: "skip" | "bid";
|
|
3922
3956
|
bidConfig: {
|
|
3923
3957
|
contractorName: string | null;
|
|
3924
3958
|
agencyName: string | null;
|
|
@@ -4054,7 +4088,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
4054
4088
|
question: string;
|
|
4055
4089
|
}[] | null;
|
|
4056
4090
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
4057
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
4091
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
4058
4092
|
biddingAmount: number | null;
|
|
4059
4093
|
boosted: boolean | null;
|
|
4060
4094
|
boostingAmount: number | null;
|
|
@@ -4071,7 +4105,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
4071
4105
|
leadBiddingConfig: {
|
|
4072
4106
|
appliedFromQueue: boolean | null;
|
|
4073
4107
|
biddingDelayInMinutes: number | null;
|
|
4074
|
-
bidWithWarning: "
|
|
4108
|
+
bidWithWarning: "skip" | "bid";
|
|
4075
4109
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4076
4110
|
biddingHourlyRatePercentage: number | null;
|
|
4077
4111
|
biddingFixedHourlyRate: number | null;
|
|
@@ -4081,6 +4115,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
4081
4115
|
maximumBoost: number | null;
|
|
4082
4116
|
minBoost: number | null;
|
|
4083
4117
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4118
|
+
alreadyHiredAction: "skip" | "bid";
|
|
4084
4119
|
bidConfig: {
|
|
4085
4120
|
contractorName: string | null;
|
|
4086
4121
|
agencyName: string | null;
|
|
@@ -4226,7 +4261,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
4226
4261
|
question: string;
|
|
4227
4262
|
}[] | null;
|
|
4228
4263
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
4229
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
4264
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
4230
4265
|
biddingAmount: number | null;
|
|
4231
4266
|
boosted: boolean | null;
|
|
4232
4267
|
boostingAmount: number | null;
|
|
@@ -4243,7 +4278,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
4243
4278
|
leadBiddingConfig: {
|
|
4244
4279
|
appliedFromQueue: boolean | null;
|
|
4245
4280
|
biddingDelayInMinutes: number | null;
|
|
4246
|
-
bidWithWarning: "
|
|
4281
|
+
bidWithWarning: "skip" | "bid";
|
|
4247
4282
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4248
4283
|
biddingHourlyRatePercentage: number | null;
|
|
4249
4284
|
biddingFixedHourlyRate: number | null;
|
|
@@ -4253,6 +4288,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
4253
4288
|
maximumBoost: number | null;
|
|
4254
4289
|
minBoost: number | null;
|
|
4255
4290
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4291
|
+
alreadyHiredAction: "skip" | "bid";
|
|
4256
4292
|
bidConfig: {
|
|
4257
4293
|
contractorName: string | null;
|
|
4258
4294
|
agencyName: string | null;
|
|
@@ -4395,7 +4431,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
4395
4431
|
question: string;
|
|
4396
4432
|
}[] | null;
|
|
4397
4433
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
4398
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
4434
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
4399
4435
|
biddingAmount: number | null;
|
|
4400
4436
|
boosted: boolean | null;
|
|
4401
4437
|
boostingAmount: number | null;
|
|
@@ -4412,7 +4448,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
4412
4448
|
leadBiddingConfig: {
|
|
4413
4449
|
appliedFromQueue: boolean | null;
|
|
4414
4450
|
biddingDelayInMinutes: number | null;
|
|
4415
|
-
bidWithWarning: "
|
|
4451
|
+
bidWithWarning: "skip" | "bid";
|
|
4416
4452
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4417
4453
|
biddingHourlyRatePercentage: number | null;
|
|
4418
4454
|
biddingFixedHourlyRate: number | null;
|
|
@@ -4422,6 +4458,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
4422
4458
|
maximumBoost: number | null;
|
|
4423
4459
|
minBoost: number | null;
|
|
4424
4460
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4461
|
+
alreadyHiredAction: "skip" | "bid";
|
|
4425
4462
|
bidConfig: {
|
|
4426
4463
|
contractorName: string | null;
|
|
4427
4464
|
agencyName: string | null;
|
|
@@ -4774,7 +4811,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4774
4811
|
question: string;
|
|
4775
4812
|
}>, "many">>;
|
|
4776
4813
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
4777
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "won"]>>;
|
|
4814
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>>;
|
|
4778
4815
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
4779
4816
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
4780
4817
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -4805,6 +4842,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4805
4842
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
4806
4843
|
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
4807
4844
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
4845
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
4808
4846
|
bidConfig: z.ZodObject<{
|
|
4809
4847
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
4810
4848
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
@@ -4821,7 +4859,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4821
4859
|
}, "strip", z.ZodTypeAny, {
|
|
4822
4860
|
appliedFromQueue: boolean | null;
|
|
4823
4861
|
biddingDelayInMinutes: number | null;
|
|
4824
|
-
bidWithWarning: "
|
|
4862
|
+
bidWithWarning: "skip" | "bid";
|
|
4825
4863
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4826
4864
|
biddingHourlyRatePercentage: number | null;
|
|
4827
4865
|
biddingFixedHourlyRate: number | null;
|
|
@@ -4831,6 +4869,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4831
4869
|
maximumBoost: number | null;
|
|
4832
4870
|
minBoost: number | null;
|
|
4833
4871
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4872
|
+
alreadyHiredAction: "skip" | "bid";
|
|
4834
4873
|
bidConfig: {
|
|
4835
4874
|
contractorName: string | null;
|
|
4836
4875
|
agencyName: string | null;
|
|
@@ -4839,7 +4878,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4839
4878
|
}, {
|
|
4840
4879
|
appliedFromQueue: boolean | null;
|
|
4841
4880
|
biddingDelayInMinutes: number | null;
|
|
4842
|
-
bidWithWarning: "
|
|
4881
|
+
bidWithWarning: "skip" | "bid";
|
|
4843
4882
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4844
4883
|
biddingHourlyRatePercentage: number | null;
|
|
4845
4884
|
biddingFixedHourlyRate: number | null;
|
|
@@ -4849,6 +4888,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4849
4888
|
maximumBoost: number | null;
|
|
4850
4889
|
minBoost: number | null;
|
|
4851
4890
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4891
|
+
alreadyHiredAction: "skip" | "bid";
|
|
4852
4892
|
bidConfig: {
|
|
4853
4893
|
contractorName: string | null;
|
|
4854
4894
|
agencyName: string | null;
|
|
@@ -4962,7 +5002,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4962
5002
|
question: string;
|
|
4963
5003
|
}[] | null;
|
|
4964
5004
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
4965
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
5005
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
4966
5006
|
biddingAmount: number | null;
|
|
4967
5007
|
boosted: boolean | null;
|
|
4968
5008
|
boostingAmount: number | null;
|
|
@@ -4979,7 +5019,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4979
5019
|
leadBiddingConfig: {
|
|
4980
5020
|
appliedFromQueue: boolean | null;
|
|
4981
5021
|
biddingDelayInMinutes: number | null;
|
|
4982
|
-
bidWithWarning: "
|
|
5022
|
+
bidWithWarning: "skip" | "bid";
|
|
4983
5023
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4984
5024
|
biddingHourlyRatePercentage: number | null;
|
|
4985
5025
|
biddingFixedHourlyRate: number | null;
|
|
@@ -4989,6 +5029,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4989
5029
|
maximumBoost: number | null;
|
|
4990
5030
|
minBoost: number | null;
|
|
4991
5031
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5032
|
+
alreadyHiredAction: "skip" | "bid";
|
|
4992
5033
|
bidConfig: {
|
|
4993
5034
|
contractorName: string | null;
|
|
4994
5035
|
agencyName: string | null;
|
|
@@ -5124,7 +5165,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5124
5165
|
question: string;
|
|
5125
5166
|
}[] | null;
|
|
5126
5167
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
5127
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
5168
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
5128
5169
|
biddingAmount: number | null;
|
|
5129
5170
|
boosted: boolean | null;
|
|
5130
5171
|
boostingAmount: number | null;
|
|
@@ -5141,7 +5182,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5141
5182
|
leadBiddingConfig: {
|
|
5142
5183
|
appliedFromQueue: boolean | null;
|
|
5143
5184
|
biddingDelayInMinutes: number | null;
|
|
5144
|
-
bidWithWarning: "
|
|
5185
|
+
bidWithWarning: "skip" | "bid";
|
|
5145
5186
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5146
5187
|
biddingHourlyRatePercentage: number | null;
|
|
5147
5188
|
biddingFixedHourlyRate: number | null;
|
|
@@ -5151,6 +5192,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5151
5192
|
maximumBoost: number | null;
|
|
5152
5193
|
minBoost: number | null;
|
|
5153
5194
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5195
|
+
alreadyHiredAction: "skip" | "bid";
|
|
5154
5196
|
bidConfig: {
|
|
5155
5197
|
contractorName: string | null;
|
|
5156
5198
|
agencyName: string | null;
|
|
@@ -5506,7 +5548,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5506
5548
|
question: string;
|
|
5507
5549
|
}>, "many">>;
|
|
5508
5550
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
5509
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "won"]>>;
|
|
5551
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>>;
|
|
5510
5552
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
5511
5553
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
5512
5554
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -5537,6 +5579,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5537
5579
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
5538
5580
|
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
5539
5581
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
5582
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
5540
5583
|
bidConfig: z.ZodObject<{
|
|
5541
5584
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
5542
5585
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
@@ -5553,7 +5596,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5553
5596
|
}, "strip", z.ZodTypeAny, {
|
|
5554
5597
|
appliedFromQueue: boolean | null;
|
|
5555
5598
|
biddingDelayInMinutes: number | null;
|
|
5556
|
-
bidWithWarning: "
|
|
5599
|
+
bidWithWarning: "skip" | "bid";
|
|
5557
5600
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5558
5601
|
biddingHourlyRatePercentage: number | null;
|
|
5559
5602
|
biddingFixedHourlyRate: number | null;
|
|
@@ -5563,6 +5606,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5563
5606
|
maximumBoost: number | null;
|
|
5564
5607
|
minBoost: number | null;
|
|
5565
5608
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5609
|
+
alreadyHiredAction: "skip" | "bid";
|
|
5566
5610
|
bidConfig: {
|
|
5567
5611
|
contractorName: string | null;
|
|
5568
5612
|
agencyName: string | null;
|
|
@@ -5571,7 +5615,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5571
5615
|
}, {
|
|
5572
5616
|
appliedFromQueue: boolean | null;
|
|
5573
5617
|
biddingDelayInMinutes: number | null;
|
|
5574
|
-
bidWithWarning: "
|
|
5618
|
+
bidWithWarning: "skip" | "bid";
|
|
5575
5619
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5576
5620
|
biddingHourlyRatePercentage: number | null;
|
|
5577
5621
|
biddingFixedHourlyRate: number | null;
|
|
@@ -5581,6 +5625,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5581
5625
|
maximumBoost: number | null;
|
|
5582
5626
|
minBoost: number | null;
|
|
5583
5627
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5628
|
+
alreadyHiredAction: "skip" | "bid";
|
|
5584
5629
|
bidConfig: {
|
|
5585
5630
|
contractorName: string | null;
|
|
5586
5631
|
agencyName: string | null;
|
|
@@ -5694,7 +5739,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5694
5739
|
question: string;
|
|
5695
5740
|
}[] | null;
|
|
5696
5741
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
5697
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
5742
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
5698
5743
|
biddingAmount: number | null;
|
|
5699
5744
|
boosted: boolean | null;
|
|
5700
5745
|
boostingAmount: number | null;
|
|
@@ -5711,7 +5756,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5711
5756
|
leadBiddingConfig: {
|
|
5712
5757
|
appliedFromQueue: boolean | null;
|
|
5713
5758
|
biddingDelayInMinutes: number | null;
|
|
5714
|
-
bidWithWarning: "
|
|
5759
|
+
bidWithWarning: "skip" | "bid";
|
|
5715
5760
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5716
5761
|
biddingHourlyRatePercentage: number | null;
|
|
5717
5762
|
biddingFixedHourlyRate: number | null;
|
|
@@ -5721,6 +5766,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5721
5766
|
maximumBoost: number | null;
|
|
5722
5767
|
minBoost: number | null;
|
|
5723
5768
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5769
|
+
alreadyHiredAction: "skip" | "bid";
|
|
5724
5770
|
bidConfig: {
|
|
5725
5771
|
contractorName: string | null;
|
|
5726
5772
|
agencyName: string | null;
|
|
@@ -5856,7 +5902,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5856
5902
|
question: string;
|
|
5857
5903
|
}[] | null;
|
|
5858
5904
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
5859
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
5905
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
5860
5906
|
biddingAmount: number | null;
|
|
5861
5907
|
boosted: boolean | null;
|
|
5862
5908
|
boostingAmount: number | null;
|
|
@@ -5873,7 +5919,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5873
5919
|
leadBiddingConfig: {
|
|
5874
5920
|
appliedFromQueue: boolean | null;
|
|
5875
5921
|
biddingDelayInMinutes: number | null;
|
|
5876
|
-
bidWithWarning: "
|
|
5922
|
+
bidWithWarning: "skip" | "bid";
|
|
5877
5923
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5878
5924
|
biddingHourlyRatePercentage: number | null;
|
|
5879
5925
|
biddingFixedHourlyRate: number | null;
|
|
@@ -5883,6 +5929,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5883
5929
|
maximumBoost: number | null;
|
|
5884
5930
|
minBoost: number | null;
|
|
5885
5931
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5932
|
+
alreadyHiredAction: "skip" | "bid";
|
|
5886
5933
|
bidConfig: {
|
|
5887
5934
|
contractorName: string | null;
|
|
5888
5935
|
agencyName: string | null;
|
|
@@ -5933,6 +5980,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5933
5980
|
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
5934
5981
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
5935
5982
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
5983
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
5936
5984
|
isHourlyRate: z.ZodBoolean;
|
|
5937
5985
|
jobMinHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
5938
5986
|
jobMaxHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
@@ -5946,7 +5994,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5946
5994
|
organizationId: string;
|
|
5947
5995
|
contractorName: string;
|
|
5948
5996
|
agencyName: string;
|
|
5949
|
-
bidWithWarning: "
|
|
5997
|
+
bidWithWarning: "skip" | "bid";
|
|
5950
5998
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5951
5999
|
biddingHourlyRatePercentage: number | null;
|
|
5952
6000
|
biddingFixedHourlyRate: number | null;
|
|
@@ -5955,6 +6003,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5955
6003
|
connectsAbovePrevious: number | null;
|
|
5956
6004
|
maximumBoost: number | null;
|
|
5957
6005
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6006
|
+
alreadyHiredAction: "skip" | "bid";
|
|
5958
6007
|
questionAnswerPairs: {
|
|
5959
6008
|
answer: string;
|
|
5960
6009
|
question: string;
|
|
@@ -6067,7 +6116,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6067
6116
|
question: string;
|
|
6068
6117
|
}[] | null;
|
|
6069
6118
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
6070
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
6119
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
6071
6120
|
biddingAmount: number | null;
|
|
6072
6121
|
boosted: boolean | null;
|
|
6073
6122
|
boostingAmount: number | null;
|
|
@@ -6084,7 +6133,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6084
6133
|
leadBiddingConfig: {
|
|
6085
6134
|
appliedFromQueue: boolean | null;
|
|
6086
6135
|
biddingDelayInMinutes: number | null;
|
|
6087
|
-
bidWithWarning: "
|
|
6136
|
+
bidWithWarning: "skip" | "bid";
|
|
6088
6137
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6089
6138
|
biddingHourlyRatePercentage: number | null;
|
|
6090
6139
|
biddingFixedHourlyRate: number | null;
|
|
@@ -6094,6 +6143,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6094
6143
|
maximumBoost: number | null;
|
|
6095
6144
|
minBoost: number | null;
|
|
6096
6145
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6146
|
+
alreadyHiredAction: "skip" | "bid";
|
|
6097
6147
|
bidConfig: {
|
|
6098
6148
|
contractorName: string | null;
|
|
6099
6149
|
agencyName: string | null;
|
|
@@ -6134,7 +6184,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6134
6184
|
organizationId: string;
|
|
6135
6185
|
contractorName: string;
|
|
6136
6186
|
agencyName: string;
|
|
6137
|
-
bidWithWarning: "
|
|
6187
|
+
bidWithWarning: "skip" | "bid";
|
|
6138
6188
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6139
6189
|
biddingHourlyRatePercentage: number | null;
|
|
6140
6190
|
biddingFixedHourlyRate: number | null;
|
|
@@ -6143,6 +6193,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6143
6193
|
connectsAbovePrevious: number | null;
|
|
6144
6194
|
maximumBoost: number | null;
|
|
6145
6195
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6196
|
+
alreadyHiredAction: "skip" | "bid";
|
|
6146
6197
|
questionAnswerPairs: {
|
|
6147
6198
|
answer: string;
|
|
6148
6199
|
question: string;
|
|
@@ -6255,7 +6306,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6255
6306
|
question: string;
|
|
6256
6307
|
}[] | null;
|
|
6257
6308
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
6258
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
6309
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
6259
6310
|
biddingAmount: number | null;
|
|
6260
6311
|
boosted: boolean | null;
|
|
6261
6312
|
boostingAmount: number | null;
|
|
@@ -6272,7 +6323,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6272
6323
|
leadBiddingConfig: {
|
|
6273
6324
|
appliedFromQueue: boolean | null;
|
|
6274
6325
|
biddingDelayInMinutes: number | null;
|
|
6275
|
-
bidWithWarning: "
|
|
6326
|
+
bidWithWarning: "skip" | "bid";
|
|
6276
6327
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6277
6328
|
biddingHourlyRatePercentage: number | null;
|
|
6278
6329
|
biddingFixedHourlyRate: number | null;
|
|
@@ -6282,6 +6333,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6282
6333
|
maximumBoost: number | null;
|
|
6283
6334
|
minBoost: number | null;
|
|
6284
6335
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6336
|
+
alreadyHiredAction: "skip" | "bid";
|
|
6285
6337
|
bidConfig: {
|
|
6286
6338
|
contractorName: string | null;
|
|
6287
6339
|
agencyName: string | null;
|
|
@@ -6431,7 +6483,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6431
6483
|
question: string;
|
|
6432
6484
|
}[] | null;
|
|
6433
6485
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
6434
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
6486
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
6435
6487
|
biddingAmount: number | null;
|
|
6436
6488
|
boosted: boolean | null;
|
|
6437
6489
|
boostingAmount: number | null;
|
|
@@ -6448,7 +6500,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6448
6500
|
leadBiddingConfig: {
|
|
6449
6501
|
appliedFromQueue: boolean | null;
|
|
6450
6502
|
biddingDelayInMinutes: number | null;
|
|
6451
|
-
bidWithWarning: "
|
|
6503
|
+
bidWithWarning: "skip" | "bid";
|
|
6452
6504
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6453
6505
|
biddingHourlyRatePercentage: number | null;
|
|
6454
6506
|
biddingFixedHourlyRate: number | null;
|
|
@@ -6458,6 +6510,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6458
6510
|
maximumBoost: number | null;
|
|
6459
6511
|
minBoost: number | null;
|
|
6460
6512
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6513
|
+
alreadyHiredAction: "skip" | "bid";
|
|
6461
6514
|
bidConfig: {
|
|
6462
6515
|
contractorName: string | null;
|
|
6463
6516
|
agencyName: string | null;
|
|
@@ -6492,7 +6545,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6492
6545
|
organizationId: string;
|
|
6493
6546
|
contractorName: string;
|
|
6494
6547
|
agencyName: string;
|
|
6495
|
-
bidWithWarning: "
|
|
6548
|
+
bidWithWarning: "skip" | "bid";
|
|
6496
6549
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6497
6550
|
biddingHourlyRatePercentage: number | null;
|
|
6498
6551
|
biddingFixedHourlyRate: number | null;
|
|
@@ -6501,6 +6554,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6501
6554
|
connectsAbovePrevious: number | null;
|
|
6502
6555
|
maximumBoost: number | null;
|
|
6503
6556
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6557
|
+
alreadyHiredAction: "skip" | "bid";
|
|
6504
6558
|
questionAnswerPairs: {
|
|
6505
6559
|
answer: string;
|
|
6506
6560
|
question: string;
|
|
@@ -6613,7 +6667,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6613
6667
|
question: string;
|
|
6614
6668
|
}[] | null;
|
|
6615
6669
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
6616
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
6670
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
6617
6671
|
biddingAmount: number | null;
|
|
6618
6672
|
boosted: boolean | null;
|
|
6619
6673
|
boostingAmount: number | null;
|
|
@@ -6630,7 +6684,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6630
6684
|
leadBiddingConfig: {
|
|
6631
6685
|
appliedFromQueue: boolean | null;
|
|
6632
6686
|
biddingDelayInMinutes: number | null;
|
|
6633
|
-
bidWithWarning: "
|
|
6687
|
+
bidWithWarning: "skip" | "bid";
|
|
6634
6688
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6635
6689
|
biddingHourlyRatePercentage: number | null;
|
|
6636
6690
|
biddingFixedHourlyRate: number | null;
|
|
@@ -6640,6 +6694,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6640
6694
|
maximumBoost: number | null;
|
|
6641
6695
|
minBoost: number | null;
|
|
6642
6696
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6697
|
+
alreadyHiredAction: "skip" | "bid";
|
|
6643
6698
|
bidConfig: {
|
|
6644
6699
|
contractorName: string | null;
|
|
6645
6700
|
agencyName: string | null;
|
|
@@ -6789,7 +6844,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6789
6844
|
question: string;
|
|
6790
6845
|
}[] | null;
|
|
6791
6846
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
6792
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
6847
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
6793
6848
|
biddingAmount: number | null;
|
|
6794
6849
|
boosted: boolean | null;
|
|
6795
6850
|
boostingAmount: number | null;
|
|
@@ -6806,7 +6861,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6806
6861
|
leadBiddingConfig: {
|
|
6807
6862
|
appliedFromQueue: boolean | null;
|
|
6808
6863
|
biddingDelayInMinutes: number | null;
|
|
6809
|
-
bidWithWarning: "
|
|
6864
|
+
bidWithWarning: "skip" | "bid";
|
|
6810
6865
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6811
6866
|
biddingHourlyRatePercentage: number | null;
|
|
6812
6867
|
biddingFixedHourlyRate: number | null;
|
|
@@ -6816,6 +6871,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6816
6871
|
maximumBoost: number | null;
|
|
6817
6872
|
minBoost: number | null;
|
|
6818
6873
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6874
|
+
alreadyHiredAction: "skip" | "bid";
|
|
6819
6875
|
bidConfig: {
|
|
6820
6876
|
contractorName: string | null;
|
|
6821
6877
|
agencyName: string | null;
|
|
@@ -6850,7 +6906,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6850
6906
|
organizationId: string;
|
|
6851
6907
|
contractorName: string;
|
|
6852
6908
|
agencyName: string;
|
|
6853
|
-
bidWithWarning: "
|
|
6909
|
+
bidWithWarning: "skip" | "bid";
|
|
6854
6910
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6855
6911
|
biddingHourlyRatePercentage: number | null;
|
|
6856
6912
|
biddingFixedHourlyRate: number | null;
|
|
@@ -6859,6 +6915,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6859
6915
|
connectsAbovePrevious: number | null;
|
|
6860
6916
|
maximumBoost: number | null;
|
|
6861
6917
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6918
|
+
alreadyHiredAction: "skip" | "bid";
|
|
6862
6919
|
questionAnswerPairs: {
|
|
6863
6920
|
answer: string;
|
|
6864
6921
|
question: string;
|
|
@@ -6971,7 +7028,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6971
7028
|
question: string;
|
|
6972
7029
|
}[] | null;
|
|
6973
7030
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
6974
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
7031
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
6975
7032
|
biddingAmount: number | null;
|
|
6976
7033
|
boosted: boolean | null;
|
|
6977
7034
|
boostingAmount: number | null;
|
|
@@ -6988,7 +7045,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6988
7045
|
leadBiddingConfig: {
|
|
6989
7046
|
appliedFromQueue: boolean | null;
|
|
6990
7047
|
biddingDelayInMinutes: number | null;
|
|
6991
|
-
bidWithWarning: "
|
|
7048
|
+
bidWithWarning: "skip" | "bid";
|
|
6992
7049
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6993
7050
|
biddingHourlyRatePercentage: number | null;
|
|
6994
7051
|
biddingFixedHourlyRate: number | null;
|
|
@@ -6998,6 +7055,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6998
7055
|
maximumBoost: number | null;
|
|
6999
7056
|
minBoost: number | null;
|
|
7000
7057
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7058
|
+
alreadyHiredAction: "skip" | "bid";
|
|
7001
7059
|
bidConfig: {
|
|
7002
7060
|
contractorName: string | null;
|
|
7003
7061
|
agencyName: string | null;
|
|
@@ -7357,7 +7415,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7357
7415
|
question: string;
|
|
7358
7416
|
}>, "many">>;
|
|
7359
7417
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
7360
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "won"]>>;
|
|
7418
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>>;
|
|
7361
7419
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
7362
7420
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
7363
7421
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -7388,6 +7446,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7388
7446
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
7389
7447
|
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
7390
7448
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
7449
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
7391
7450
|
bidConfig: z.ZodObject<{
|
|
7392
7451
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
7393
7452
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
@@ -7404,7 +7463,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7404
7463
|
}, "strip", z.ZodTypeAny, {
|
|
7405
7464
|
appliedFromQueue: boolean | null;
|
|
7406
7465
|
biddingDelayInMinutes: number | null;
|
|
7407
|
-
bidWithWarning: "
|
|
7466
|
+
bidWithWarning: "skip" | "bid";
|
|
7408
7467
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
7409
7468
|
biddingHourlyRatePercentage: number | null;
|
|
7410
7469
|
biddingFixedHourlyRate: number | null;
|
|
@@ -7414,6 +7473,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7414
7473
|
maximumBoost: number | null;
|
|
7415
7474
|
minBoost: number | null;
|
|
7416
7475
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7476
|
+
alreadyHiredAction: "skip" | "bid";
|
|
7417
7477
|
bidConfig: {
|
|
7418
7478
|
contractorName: string | null;
|
|
7419
7479
|
agencyName: string | null;
|
|
@@ -7422,7 +7482,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7422
7482
|
}, {
|
|
7423
7483
|
appliedFromQueue: boolean | null;
|
|
7424
7484
|
biddingDelayInMinutes: number | null;
|
|
7425
|
-
bidWithWarning: "
|
|
7485
|
+
bidWithWarning: "skip" | "bid";
|
|
7426
7486
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
7427
7487
|
biddingHourlyRatePercentage: number | null;
|
|
7428
7488
|
biddingFixedHourlyRate: number | null;
|
|
@@ -7432,6 +7492,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7432
7492
|
maximumBoost: number | null;
|
|
7433
7493
|
minBoost: number | null;
|
|
7434
7494
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7495
|
+
alreadyHiredAction: "skip" | "bid";
|
|
7435
7496
|
bidConfig: {
|
|
7436
7497
|
contractorName: string | null;
|
|
7437
7498
|
agencyName: string | null;
|
|
@@ -7545,7 +7606,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7545
7606
|
question: string;
|
|
7546
7607
|
}[] | null;
|
|
7547
7608
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
7548
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
7609
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
7549
7610
|
biddingAmount: number | null;
|
|
7550
7611
|
boosted: boolean | null;
|
|
7551
7612
|
boostingAmount: number | null;
|
|
@@ -7562,7 +7623,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7562
7623
|
leadBiddingConfig: {
|
|
7563
7624
|
appliedFromQueue: boolean | null;
|
|
7564
7625
|
biddingDelayInMinutes: number | null;
|
|
7565
|
-
bidWithWarning: "
|
|
7626
|
+
bidWithWarning: "skip" | "bid";
|
|
7566
7627
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
7567
7628
|
biddingHourlyRatePercentage: number | null;
|
|
7568
7629
|
biddingFixedHourlyRate: number | null;
|
|
@@ -7572,6 +7633,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7572
7633
|
maximumBoost: number | null;
|
|
7573
7634
|
minBoost: number | null;
|
|
7574
7635
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7636
|
+
alreadyHiredAction: "skip" | "bid";
|
|
7575
7637
|
bidConfig: {
|
|
7576
7638
|
contractorName: string | null;
|
|
7577
7639
|
agencyName: string | null;
|
|
@@ -7707,7 +7769,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7707
7769
|
question: string;
|
|
7708
7770
|
}[] | null;
|
|
7709
7771
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
7710
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
7772
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
7711
7773
|
biddingAmount: number | null;
|
|
7712
7774
|
boosted: boolean | null;
|
|
7713
7775
|
boostingAmount: number | null;
|
|
@@ -7724,7 +7786,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7724
7786
|
leadBiddingConfig: {
|
|
7725
7787
|
appliedFromQueue: boolean | null;
|
|
7726
7788
|
biddingDelayInMinutes: number | null;
|
|
7727
|
-
bidWithWarning: "
|
|
7789
|
+
bidWithWarning: "skip" | "bid";
|
|
7728
7790
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
7729
7791
|
biddingHourlyRatePercentage: number | null;
|
|
7730
7792
|
biddingFixedHourlyRate: number | null;
|
|
@@ -7734,6 +7796,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7734
7796
|
maximumBoost: number | null;
|
|
7735
7797
|
minBoost: number | null;
|
|
7736
7798
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7799
|
+
alreadyHiredAction: "skip" | "bid";
|
|
7737
7800
|
bidConfig: {
|
|
7738
7801
|
contractorName: string | null;
|
|
7739
7802
|
agencyName: string | null;
|
|
@@ -8089,7 +8152,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8089
8152
|
question: string;
|
|
8090
8153
|
}>, "many">>;
|
|
8091
8154
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
8092
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "won"]>>;
|
|
8155
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>>;
|
|
8093
8156
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
8094
8157
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
8095
8158
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -8120,6 +8183,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8120
8183
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
8121
8184
|
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
8122
8185
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
8186
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
8123
8187
|
bidConfig: z.ZodObject<{
|
|
8124
8188
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
8125
8189
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
@@ -8136,7 +8200,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8136
8200
|
}, "strip", z.ZodTypeAny, {
|
|
8137
8201
|
appliedFromQueue: boolean | null;
|
|
8138
8202
|
biddingDelayInMinutes: number | null;
|
|
8139
|
-
bidWithWarning: "
|
|
8203
|
+
bidWithWarning: "skip" | "bid";
|
|
8140
8204
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8141
8205
|
biddingHourlyRatePercentage: number | null;
|
|
8142
8206
|
biddingFixedHourlyRate: number | null;
|
|
@@ -8146,6 +8210,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8146
8210
|
maximumBoost: number | null;
|
|
8147
8211
|
minBoost: number | null;
|
|
8148
8212
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8213
|
+
alreadyHiredAction: "skip" | "bid";
|
|
8149
8214
|
bidConfig: {
|
|
8150
8215
|
contractorName: string | null;
|
|
8151
8216
|
agencyName: string | null;
|
|
@@ -8154,7 +8219,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8154
8219
|
}, {
|
|
8155
8220
|
appliedFromQueue: boolean | null;
|
|
8156
8221
|
biddingDelayInMinutes: number | null;
|
|
8157
|
-
bidWithWarning: "
|
|
8222
|
+
bidWithWarning: "skip" | "bid";
|
|
8158
8223
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8159
8224
|
biddingHourlyRatePercentage: number | null;
|
|
8160
8225
|
biddingFixedHourlyRate: number | null;
|
|
@@ -8164,6 +8229,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8164
8229
|
maximumBoost: number | null;
|
|
8165
8230
|
minBoost: number | null;
|
|
8166
8231
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8232
|
+
alreadyHiredAction: "skip" | "bid";
|
|
8167
8233
|
bidConfig: {
|
|
8168
8234
|
contractorName: string | null;
|
|
8169
8235
|
agencyName: string | null;
|
|
@@ -8277,7 +8343,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8277
8343
|
question: string;
|
|
8278
8344
|
}[] | null;
|
|
8279
8345
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
8280
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
8346
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
8281
8347
|
biddingAmount: number | null;
|
|
8282
8348
|
boosted: boolean | null;
|
|
8283
8349
|
boostingAmount: number | null;
|
|
@@ -8294,7 +8360,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8294
8360
|
leadBiddingConfig: {
|
|
8295
8361
|
appliedFromQueue: boolean | null;
|
|
8296
8362
|
biddingDelayInMinutes: number | null;
|
|
8297
|
-
bidWithWarning: "
|
|
8363
|
+
bidWithWarning: "skip" | "bid";
|
|
8298
8364
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8299
8365
|
biddingHourlyRatePercentage: number | null;
|
|
8300
8366
|
biddingFixedHourlyRate: number | null;
|
|
@@ -8304,6 +8370,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8304
8370
|
maximumBoost: number | null;
|
|
8305
8371
|
minBoost: number | null;
|
|
8306
8372
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8373
|
+
alreadyHiredAction: "skip" | "bid";
|
|
8307
8374
|
bidConfig: {
|
|
8308
8375
|
contractorName: string | null;
|
|
8309
8376
|
agencyName: string | null;
|
|
@@ -8439,7 +8506,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8439
8506
|
question: string;
|
|
8440
8507
|
}[] | null;
|
|
8441
8508
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
8442
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
8509
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
8443
8510
|
biddingAmount: number | null;
|
|
8444
8511
|
boosted: boolean | null;
|
|
8445
8512
|
boostingAmount: number | null;
|
|
@@ -8456,7 +8523,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8456
8523
|
leadBiddingConfig: {
|
|
8457
8524
|
appliedFromQueue: boolean | null;
|
|
8458
8525
|
biddingDelayInMinutes: number | null;
|
|
8459
|
-
bidWithWarning: "
|
|
8526
|
+
bidWithWarning: "skip" | "bid";
|
|
8460
8527
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8461
8528
|
biddingHourlyRatePercentage: number | null;
|
|
8462
8529
|
biddingFixedHourlyRate: number | null;
|
|
@@ -8466,6 +8533,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8466
8533
|
maximumBoost: number | null;
|
|
8467
8534
|
minBoost: number | null;
|
|
8468
8535
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8536
|
+
alreadyHiredAction: "skip" | "bid";
|
|
8469
8537
|
bidConfig: {
|
|
8470
8538
|
contractorName: string | null;
|
|
8471
8539
|
agencyName: string | null;
|
|
@@ -8516,6 +8584,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8516
8584
|
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
8517
8585
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
8518
8586
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
8587
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
8519
8588
|
isHourlyRate: z.ZodBoolean;
|
|
8520
8589
|
jobMinHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
8521
8590
|
jobMaxHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
@@ -8523,7 +8592,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8523
8592
|
}, "strip", z.ZodTypeAny, {
|
|
8524
8593
|
campaignId: string;
|
|
8525
8594
|
organizationId: string;
|
|
8526
|
-
bidWithWarning: "
|
|
8595
|
+
bidWithWarning: "skip" | "bid";
|
|
8527
8596
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8528
8597
|
biddingHourlyRatePercentage: number | null;
|
|
8529
8598
|
biddingFixedHourlyRate: number | null;
|
|
@@ -8532,6 +8601,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8532
8601
|
connectsAbovePrevious: number | null;
|
|
8533
8602
|
maximumBoost: number | null;
|
|
8534
8603
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8604
|
+
alreadyHiredAction: "skip" | "bid";
|
|
8535
8605
|
questionAnswerPairs: {
|
|
8536
8606
|
answer: string;
|
|
8537
8607
|
question: string;
|
|
@@ -8644,7 +8714,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8644
8714
|
question: string;
|
|
8645
8715
|
}[] | null;
|
|
8646
8716
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
8647
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
8717
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
8648
8718
|
biddingAmount: number | null;
|
|
8649
8719
|
boosted: boolean | null;
|
|
8650
8720
|
boostingAmount: number | null;
|
|
@@ -8661,7 +8731,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8661
8731
|
leadBiddingConfig: {
|
|
8662
8732
|
appliedFromQueue: boolean | null;
|
|
8663
8733
|
biddingDelayInMinutes: number | null;
|
|
8664
|
-
bidWithWarning: "
|
|
8734
|
+
bidWithWarning: "skip" | "bid";
|
|
8665
8735
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8666
8736
|
biddingHourlyRatePercentage: number | null;
|
|
8667
8737
|
biddingFixedHourlyRate: number | null;
|
|
@@ -8671,6 +8741,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8671
8741
|
maximumBoost: number | null;
|
|
8672
8742
|
minBoost: number | null;
|
|
8673
8743
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8744
|
+
alreadyHiredAction: "skip" | "bid";
|
|
8674
8745
|
bidConfig: {
|
|
8675
8746
|
contractorName: string | null;
|
|
8676
8747
|
agencyName: string | null;
|
|
@@ -8708,7 +8779,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8708
8779
|
}, {
|
|
8709
8780
|
campaignId: string;
|
|
8710
8781
|
organizationId: string;
|
|
8711
|
-
bidWithWarning: "
|
|
8782
|
+
bidWithWarning: "skip" | "bid";
|
|
8712
8783
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8713
8784
|
biddingHourlyRatePercentage: number | null;
|
|
8714
8785
|
biddingFixedHourlyRate: number | null;
|
|
@@ -8717,6 +8788,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8717
8788
|
connectsAbovePrevious: number | null;
|
|
8718
8789
|
maximumBoost: number | null;
|
|
8719
8790
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8791
|
+
alreadyHiredAction: "skip" | "bid";
|
|
8720
8792
|
questionAnswerPairs: {
|
|
8721
8793
|
answer: string;
|
|
8722
8794
|
question: string;
|
|
@@ -8829,7 +8901,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8829
8901
|
question: string;
|
|
8830
8902
|
}[] | null;
|
|
8831
8903
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
8832
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
8904
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
8833
8905
|
biddingAmount: number | null;
|
|
8834
8906
|
boosted: boolean | null;
|
|
8835
8907
|
boostingAmount: number | null;
|
|
@@ -8846,7 +8918,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8846
8918
|
leadBiddingConfig: {
|
|
8847
8919
|
appliedFromQueue: boolean | null;
|
|
8848
8920
|
biddingDelayInMinutes: number | null;
|
|
8849
|
-
bidWithWarning: "
|
|
8921
|
+
bidWithWarning: "skip" | "bid";
|
|
8850
8922
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8851
8923
|
biddingHourlyRatePercentage: number | null;
|
|
8852
8924
|
biddingFixedHourlyRate: number | null;
|
|
@@ -8856,6 +8928,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8856
8928
|
maximumBoost: number | null;
|
|
8857
8929
|
minBoost: number | null;
|
|
8858
8930
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8931
|
+
alreadyHiredAction: "skip" | "bid";
|
|
8859
8932
|
bidConfig: {
|
|
8860
8933
|
contractorName: string | null;
|
|
8861
8934
|
agencyName: string | null;
|
|
@@ -9004,7 +9077,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9004
9077
|
question: string;
|
|
9005
9078
|
}[] | null;
|
|
9006
9079
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
9007
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
9080
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
9008
9081
|
biddingAmount: number | null;
|
|
9009
9082
|
boosted: boolean | null;
|
|
9010
9083
|
boostingAmount: number | null;
|
|
@@ -9021,7 +9094,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9021
9094
|
leadBiddingConfig: {
|
|
9022
9095
|
appliedFromQueue: boolean | null;
|
|
9023
9096
|
biddingDelayInMinutes: number | null;
|
|
9024
|
-
bidWithWarning: "
|
|
9097
|
+
bidWithWarning: "skip" | "bid";
|
|
9025
9098
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9026
9099
|
biddingHourlyRatePercentage: number | null;
|
|
9027
9100
|
biddingFixedHourlyRate: number | null;
|
|
@@ -9031,6 +9104,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9031
9104
|
maximumBoost: number | null;
|
|
9032
9105
|
minBoost: number | null;
|
|
9033
9106
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
9107
|
+
alreadyHiredAction: "skip" | "bid";
|
|
9034
9108
|
bidConfig: {
|
|
9035
9109
|
contractorName: string | null;
|
|
9036
9110
|
agencyName: string | null;
|
|
@@ -9063,7 +9137,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9063
9137
|
proposalData: {
|
|
9064
9138
|
campaignId: string;
|
|
9065
9139
|
organizationId: string;
|
|
9066
|
-
bidWithWarning: "
|
|
9140
|
+
bidWithWarning: "skip" | "bid";
|
|
9067
9141
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9068
9142
|
biddingHourlyRatePercentage: number | null;
|
|
9069
9143
|
biddingFixedHourlyRate: number | null;
|
|
@@ -9072,6 +9146,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9072
9146
|
connectsAbovePrevious: number | null;
|
|
9073
9147
|
maximumBoost: number | null;
|
|
9074
9148
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
9149
|
+
alreadyHiredAction: "skip" | "bid";
|
|
9075
9150
|
questionAnswerPairs: {
|
|
9076
9151
|
answer: string;
|
|
9077
9152
|
question: string;
|
|
@@ -9184,7 +9259,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9184
9259
|
question: string;
|
|
9185
9260
|
}[] | null;
|
|
9186
9261
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
9187
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
9262
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
9188
9263
|
biddingAmount: number | null;
|
|
9189
9264
|
boosted: boolean | null;
|
|
9190
9265
|
boostingAmount: number | null;
|
|
@@ -9201,7 +9276,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9201
9276
|
leadBiddingConfig: {
|
|
9202
9277
|
appliedFromQueue: boolean | null;
|
|
9203
9278
|
biddingDelayInMinutes: number | null;
|
|
9204
|
-
bidWithWarning: "
|
|
9279
|
+
bidWithWarning: "skip" | "bid";
|
|
9205
9280
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9206
9281
|
biddingHourlyRatePercentage: number | null;
|
|
9207
9282
|
biddingFixedHourlyRate: number | null;
|
|
@@ -9211,6 +9286,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9211
9286
|
maximumBoost: number | null;
|
|
9212
9287
|
minBoost: number | null;
|
|
9213
9288
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
9289
|
+
alreadyHiredAction: "skip" | "bid";
|
|
9214
9290
|
bidConfig: {
|
|
9215
9291
|
contractorName: string | null;
|
|
9216
9292
|
agencyName: string | null;
|
|
@@ -9359,7 +9435,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9359
9435
|
question: string;
|
|
9360
9436
|
}[] | null;
|
|
9361
9437
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
9362
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
9438
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
9363
9439
|
biddingAmount: number | null;
|
|
9364
9440
|
boosted: boolean | null;
|
|
9365
9441
|
boostingAmount: number | null;
|
|
@@ -9376,7 +9452,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9376
9452
|
leadBiddingConfig: {
|
|
9377
9453
|
appliedFromQueue: boolean | null;
|
|
9378
9454
|
biddingDelayInMinutes: number | null;
|
|
9379
|
-
bidWithWarning: "
|
|
9455
|
+
bidWithWarning: "skip" | "bid";
|
|
9380
9456
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9381
9457
|
biddingHourlyRatePercentage: number | null;
|
|
9382
9458
|
biddingFixedHourlyRate: number | null;
|
|
@@ -9386,6 +9462,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9386
9462
|
maximumBoost: number | null;
|
|
9387
9463
|
minBoost: number | null;
|
|
9388
9464
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
9465
|
+
alreadyHiredAction: "skip" | "bid";
|
|
9389
9466
|
bidConfig: {
|
|
9390
9467
|
contractorName: string | null;
|
|
9391
9468
|
agencyName: string | null;
|
|
@@ -9418,7 +9495,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9418
9495
|
proposalData: {
|
|
9419
9496
|
campaignId: string;
|
|
9420
9497
|
organizationId: string;
|
|
9421
|
-
bidWithWarning: "
|
|
9498
|
+
bidWithWarning: "skip" | "bid";
|
|
9422
9499
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9423
9500
|
biddingHourlyRatePercentage: number | null;
|
|
9424
9501
|
biddingFixedHourlyRate: number | null;
|
|
@@ -9427,6 +9504,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9427
9504
|
connectsAbovePrevious: number | null;
|
|
9428
9505
|
maximumBoost: number | null;
|
|
9429
9506
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
9507
|
+
alreadyHiredAction: "skip" | "bid";
|
|
9430
9508
|
questionAnswerPairs: {
|
|
9431
9509
|
answer: string;
|
|
9432
9510
|
question: string;
|
|
@@ -9539,7 +9617,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9539
9617
|
question: string;
|
|
9540
9618
|
}[] | null;
|
|
9541
9619
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
9542
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
9620
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
9543
9621
|
biddingAmount: number | null;
|
|
9544
9622
|
boosted: boolean | null;
|
|
9545
9623
|
boostingAmount: number | null;
|
|
@@ -9556,7 +9634,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9556
9634
|
leadBiddingConfig: {
|
|
9557
9635
|
appliedFromQueue: boolean | null;
|
|
9558
9636
|
biddingDelayInMinutes: number | null;
|
|
9559
|
-
bidWithWarning: "
|
|
9637
|
+
bidWithWarning: "skip" | "bid";
|
|
9560
9638
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9561
9639
|
biddingHourlyRatePercentage: number | null;
|
|
9562
9640
|
biddingFixedHourlyRate: number | null;
|
|
@@ -9566,6 +9644,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9566
9644
|
maximumBoost: number | null;
|
|
9567
9645
|
minBoost: number | null;
|
|
9568
9646
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
9647
|
+
alreadyHiredAction: "skip" | "bid";
|
|
9569
9648
|
bidConfig: {
|
|
9570
9649
|
contractorName: string | null;
|
|
9571
9650
|
agencyName: string | null;
|
|
@@ -9925,7 +10004,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
9925
10004
|
question: string;
|
|
9926
10005
|
}>, "many">>;
|
|
9927
10006
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
9928
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "won"]>>;
|
|
10007
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>>;
|
|
9929
10008
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
9930
10009
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
9931
10010
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -9956,6 +10035,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
9956
10035
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
9957
10036
|
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
9958
10037
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
10038
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
9959
10039
|
bidConfig: z.ZodObject<{
|
|
9960
10040
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
9961
10041
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
@@ -9972,7 +10052,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
9972
10052
|
}, "strip", z.ZodTypeAny, {
|
|
9973
10053
|
appliedFromQueue: boolean | null;
|
|
9974
10054
|
biddingDelayInMinutes: number | null;
|
|
9975
|
-
bidWithWarning: "
|
|
10055
|
+
bidWithWarning: "skip" | "bid";
|
|
9976
10056
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9977
10057
|
biddingHourlyRatePercentage: number | null;
|
|
9978
10058
|
biddingFixedHourlyRate: number | null;
|
|
@@ -9982,6 +10062,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
9982
10062
|
maximumBoost: number | null;
|
|
9983
10063
|
minBoost: number | null;
|
|
9984
10064
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
10065
|
+
alreadyHiredAction: "skip" | "bid";
|
|
9985
10066
|
bidConfig: {
|
|
9986
10067
|
contractorName: string | null;
|
|
9987
10068
|
agencyName: string | null;
|
|
@@ -9990,7 +10071,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
9990
10071
|
}, {
|
|
9991
10072
|
appliedFromQueue: boolean | null;
|
|
9992
10073
|
biddingDelayInMinutes: number | null;
|
|
9993
|
-
bidWithWarning: "
|
|
10074
|
+
bidWithWarning: "skip" | "bid";
|
|
9994
10075
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9995
10076
|
biddingHourlyRatePercentage: number | null;
|
|
9996
10077
|
biddingFixedHourlyRate: number | null;
|
|
@@ -10000,6 +10081,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10000
10081
|
maximumBoost: number | null;
|
|
10001
10082
|
minBoost: number | null;
|
|
10002
10083
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
10084
|
+
alreadyHiredAction: "skip" | "bid";
|
|
10003
10085
|
bidConfig: {
|
|
10004
10086
|
contractorName: string | null;
|
|
10005
10087
|
agencyName: string | null;
|
|
@@ -10113,7 +10195,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10113
10195
|
question: string;
|
|
10114
10196
|
}[] | null;
|
|
10115
10197
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
10116
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
10198
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
10117
10199
|
biddingAmount: number | null;
|
|
10118
10200
|
boosted: boolean | null;
|
|
10119
10201
|
boostingAmount: number | null;
|
|
@@ -10130,7 +10212,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10130
10212
|
leadBiddingConfig: {
|
|
10131
10213
|
appliedFromQueue: boolean | null;
|
|
10132
10214
|
biddingDelayInMinutes: number | null;
|
|
10133
|
-
bidWithWarning: "
|
|
10215
|
+
bidWithWarning: "skip" | "bid";
|
|
10134
10216
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
10135
10217
|
biddingHourlyRatePercentage: number | null;
|
|
10136
10218
|
biddingFixedHourlyRate: number | null;
|
|
@@ -10140,6 +10222,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10140
10222
|
maximumBoost: number | null;
|
|
10141
10223
|
minBoost: number | null;
|
|
10142
10224
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
10225
|
+
alreadyHiredAction: "skip" | "bid";
|
|
10143
10226
|
bidConfig: {
|
|
10144
10227
|
contractorName: string | null;
|
|
10145
10228
|
agencyName: string | null;
|
|
@@ -10275,7 +10358,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10275
10358
|
question: string;
|
|
10276
10359
|
}[] | null;
|
|
10277
10360
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
10278
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
10361
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
10279
10362
|
biddingAmount: number | null;
|
|
10280
10363
|
boosted: boolean | null;
|
|
10281
10364
|
boostingAmount: number | null;
|
|
@@ -10292,7 +10375,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10292
10375
|
leadBiddingConfig: {
|
|
10293
10376
|
appliedFromQueue: boolean | null;
|
|
10294
10377
|
biddingDelayInMinutes: number | null;
|
|
10295
|
-
bidWithWarning: "
|
|
10378
|
+
bidWithWarning: "skip" | "bid";
|
|
10296
10379
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
10297
10380
|
biddingHourlyRatePercentage: number | null;
|
|
10298
10381
|
biddingFixedHourlyRate: number | null;
|
|
@@ -10302,6 +10385,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10302
10385
|
maximumBoost: number | null;
|
|
10303
10386
|
minBoost: number | null;
|
|
10304
10387
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
10388
|
+
alreadyHiredAction: "skip" | "bid";
|
|
10305
10389
|
bidConfig: {
|
|
10306
10390
|
contractorName: string | null;
|
|
10307
10391
|
agencyName: string | null;
|
|
@@ -10442,7 +10526,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10442
10526
|
question: string;
|
|
10443
10527
|
}[] | null;
|
|
10444
10528
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
10445
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
10529
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
10446
10530
|
biddingAmount: number | null;
|
|
10447
10531
|
boosted: boolean | null;
|
|
10448
10532
|
boostingAmount: number | null;
|
|
@@ -10459,7 +10543,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10459
10543
|
leadBiddingConfig: {
|
|
10460
10544
|
appliedFromQueue: boolean | null;
|
|
10461
10545
|
biddingDelayInMinutes: number | null;
|
|
10462
|
-
bidWithWarning: "
|
|
10546
|
+
bidWithWarning: "skip" | "bid";
|
|
10463
10547
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
10464
10548
|
biddingHourlyRatePercentage: number | null;
|
|
10465
10549
|
biddingFixedHourlyRate: number | null;
|
|
@@ -10469,6 +10553,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10469
10553
|
maximumBoost: number | null;
|
|
10470
10554
|
minBoost: number | null;
|
|
10471
10555
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
10556
|
+
alreadyHiredAction: "skip" | "bid";
|
|
10472
10557
|
bidConfig: {
|
|
10473
10558
|
contractorName: string | null;
|
|
10474
10559
|
agencyName: string | null;
|
|
@@ -10609,7 +10694,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10609
10694
|
question: string;
|
|
10610
10695
|
}[] | null;
|
|
10611
10696
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
10612
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
10697
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
10613
10698
|
biddingAmount: number | null;
|
|
10614
10699
|
boosted: boolean | null;
|
|
10615
10700
|
boostingAmount: number | null;
|
|
@@ -10626,7 +10711,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10626
10711
|
leadBiddingConfig: {
|
|
10627
10712
|
appliedFromQueue: boolean | null;
|
|
10628
10713
|
biddingDelayInMinutes: number | null;
|
|
10629
|
-
bidWithWarning: "
|
|
10714
|
+
bidWithWarning: "skip" | "bid";
|
|
10630
10715
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
10631
10716
|
biddingHourlyRatePercentage: number | null;
|
|
10632
10717
|
biddingFixedHourlyRate: number | null;
|
|
@@ -10636,6 +10721,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10636
10721
|
maximumBoost: number | null;
|
|
10637
10722
|
minBoost: number | null;
|
|
10638
10723
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
10724
|
+
alreadyHiredAction: "skip" | "bid";
|
|
10639
10725
|
bidConfig: {
|
|
10640
10726
|
contractorName: string | null;
|
|
10641
10727
|
agencyName: string | null;
|