lancer-shared 1.2.266 → 1.2.268
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 +25 -11
- package/dist/schemas/bidder/bid.d.ts +274 -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 +109 -47
- package/dist/schemas/campaign/campaign-chat-bot.d.ts +11 -11
- package/dist/schemas/campaign/campaign.d.ts +24 -15
- package/dist/schemas/job/index.d.ts +8 -0
- package/dist/schemas/lead/already-hired-action.d.ts +3 -0
- package/dist/schemas/lead/index.d.ts +105 -42
- package/dist/schemas/lead/lead-status.d.ts +7 -7
- package/dist/schemas/logger/feed/feed-job-enrich.d.ts +7 -0
- package/dist/schemas/logger/log-event.d.ts +5 -5
- package/dist/schemas/scraper/scrape-payload.d.ts +39 -20
- package/dist/schemas/scraper/scrape-result.d.ts +7 -0
- package/package.json +1 -1
|
@@ -79,6 +79,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
79
79
|
companySize: z.ZodNullable<z.ZodString>;
|
|
80
80
|
enterpriseClient: z.ZodNullable<z.ZodBoolean>;
|
|
81
81
|
avgHourlyRatePaid: z.ZodNullable<z.ZodNumber>;
|
|
82
|
+
companyId: z.ZodNullable<z.ZodString>;
|
|
82
83
|
}, "strip", z.ZodTypeAny, {
|
|
83
84
|
country: string | null;
|
|
84
85
|
region: string | null;
|
|
@@ -97,6 +98,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
97
98
|
memberSince: string | null;
|
|
98
99
|
companyIndustry: string | null;
|
|
99
100
|
avgHourlyRatePaid: number | null;
|
|
101
|
+
companyId: string | null;
|
|
100
102
|
}, {
|
|
101
103
|
country: string | null;
|
|
102
104
|
region: string | null;
|
|
@@ -115,6 +117,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
115
117
|
memberSince: string | null;
|
|
116
118
|
companyIndustry: string | null;
|
|
117
119
|
avgHourlyRatePaid: number | null;
|
|
120
|
+
companyId: string | null;
|
|
118
121
|
}>>;
|
|
119
122
|
vendorQualifications: z.ZodNullable<z.ZodObject<{
|
|
120
123
|
location: z.ZodNullable<z.ZodString>;
|
|
@@ -322,7 +325,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
322
325
|
question: string;
|
|
323
326
|
}>, "many">>;
|
|
324
327
|
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"]>>;
|
|
328
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>>;
|
|
326
329
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
327
330
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
328
331
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -353,6 +356,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
353
356
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
354
357
|
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
355
358
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
359
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
356
360
|
bidConfig: z.ZodObject<{
|
|
357
361
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
358
362
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
@@ -369,7 +373,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
369
373
|
}, "strip", z.ZodTypeAny, {
|
|
370
374
|
appliedFromQueue: boolean | null;
|
|
371
375
|
biddingDelayInMinutes: number | null;
|
|
372
|
-
bidWithWarning: "
|
|
376
|
+
bidWithWarning: "skip" | "bid";
|
|
373
377
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
374
378
|
biddingHourlyRatePercentage: number | null;
|
|
375
379
|
biddingFixedHourlyRate: number | null;
|
|
@@ -379,6 +383,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
379
383
|
maximumBoost: number | null;
|
|
380
384
|
minBoost: number | null;
|
|
381
385
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
386
|
+
alreadyHiredAction: "skip" | "bid";
|
|
382
387
|
bidConfig: {
|
|
383
388
|
contractorName: string | null;
|
|
384
389
|
agencyName: string | null;
|
|
@@ -387,7 +392,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
387
392
|
}, {
|
|
388
393
|
appliedFromQueue: boolean | null;
|
|
389
394
|
biddingDelayInMinutes: number | null;
|
|
390
|
-
bidWithWarning: "
|
|
395
|
+
bidWithWarning: "skip" | "bid";
|
|
391
396
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
392
397
|
biddingHourlyRatePercentage: number | null;
|
|
393
398
|
biddingFixedHourlyRate: number | null;
|
|
@@ -397,6 +402,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
397
402
|
maximumBoost: number | null;
|
|
398
403
|
minBoost: number | null;
|
|
399
404
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
405
|
+
alreadyHiredAction: "skip" | "bid";
|
|
400
406
|
bidConfig: {
|
|
401
407
|
contractorName: string | null;
|
|
402
408
|
agencyName: string | null;
|
|
@@ -446,6 +452,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
446
452
|
memberSince: string | null;
|
|
447
453
|
companyIndustry: string | null;
|
|
448
454
|
avgHourlyRatePaid: number | null;
|
|
455
|
+
companyId: string | null;
|
|
449
456
|
} | null;
|
|
450
457
|
vendorQualifications: {
|
|
451
458
|
location: string | null;
|
|
@@ -510,7 +517,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
510
517
|
question: string;
|
|
511
518
|
}[] | null;
|
|
512
519
|
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;
|
|
520
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
514
521
|
biddingAmount: number | null;
|
|
515
522
|
boosted: boolean | null;
|
|
516
523
|
boostingAmount: number | null;
|
|
@@ -527,7 +534,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
527
534
|
leadBiddingConfig: {
|
|
528
535
|
appliedFromQueue: boolean | null;
|
|
529
536
|
biddingDelayInMinutes: number | null;
|
|
530
|
-
bidWithWarning: "
|
|
537
|
+
bidWithWarning: "skip" | "bid";
|
|
531
538
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
532
539
|
biddingHourlyRatePercentage: number | null;
|
|
533
540
|
biddingFixedHourlyRate: number | null;
|
|
@@ -537,6 +544,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
537
544
|
maximumBoost: number | null;
|
|
538
545
|
minBoost: number | null;
|
|
539
546
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
547
|
+
alreadyHiredAction: "skip" | "bid";
|
|
540
548
|
bidConfig: {
|
|
541
549
|
contractorName: string | null;
|
|
542
550
|
agencyName: string | null;
|
|
@@ -608,6 +616,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
608
616
|
memberSince: string | null;
|
|
609
617
|
companyIndustry: string | null;
|
|
610
618
|
avgHourlyRatePaid: number | null;
|
|
619
|
+
companyId: string | null;
|
|
611
620
|
} | null;
|
|
612
621
|
vendorQualifications: {
|
|
613
622
|
location: string | null;
|
|
@@ -672,7 +681,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
672
681
|
question: string;
|
|
673
682
|
}[] | null;
|
|
674
683
|
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;
|
|
684
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
676
685
|
biddingAmount: number | null;
|
|
677
686
|
boosted: boolean | null;
|
|
678
687
|
boostingAmount: number | null;
|
|
@@ -689,7 +698,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
689
698
|
leadBiddingConfig: {
|
|
690
699
|
appliedFromQueue: boolean | null;
|
|
691
700
|
biddingDelayInMinutes: number | null;
|
|
692
|
-
bidWithWarning: "
|
|
701
|
+
bidWithWarning: "skip" | "bid";
|
|
693
702
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
694
703
|
biddingHourlyRatePercentage: number | null;
|
|
695
704
|
biddingFixedHourlyRate: number | null;
|
|
@@ -699,6 +708,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
699
708
|
maximumBoost: number | null;
|
|
700
709
|
minBoost: number | null;
|
|
701
710
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
711
|
+
alreadyHiredAction: "skip" | "bid";
|
|
702
712
|
bidConfig: {
|
|
703
713
|
contractorName: string | null;
|
|
704
714
|
agencyName: string | null;
|
|
@@ -749,6 +759,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
749
759
|
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
750
760
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
751
761
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
762
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
752
763
|
isHourlyRate: z.ZodBoolean;
|
|
753
764
|
jobMinHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
754
765
|
jobMaxHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
@@ -756,7 +767,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
756
767
|
}, "strip", z.ZodTypeAny, {
|
|
757
768
|
campaignId: string;
|
|
758
769
|
organizationId: string;
|
|
759
|
-
bidWithWarning: "
|
|
770
|
+
bidWithWarning: "skip" | "bid";
|
|
760
771
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
761
772
|
biddingHourlyRatePercentage: number | null;
|
|
762
773
|
biddingFixedHourlyRate: number | null;
|
|
@@ -765,6 +776,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
765
776
|
connectsAbovePrevious: number | null;
|
|
766
777
|
maximumBoost: number | null;
|
|
767
778
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
779
|
+
alreadyHiredAction: "skip" | "bid";
|
|
768
780
|
questionAnswerPairs: {
|
|
769
781
|
answer: string;
|
|
770
782
|
question: string;
|
|
@@ -813,6 +825,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
813
825
|
memberSince: string | null;
|
|
814
826
|
companyIndustry: string | null;
|
|
815
827
|
avgHourlyRatePaid: number | null;
|
|
828
|
+
companyId: string | null;
|
|
816
829
|
} | null;
|
|
817
830
|
vendorQualifications: {
|
|
818
831
|
location: string | null;
|
|
@@ -877,7 +890,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
877
890
|
question: string;
|
|
878
891
|
}[] | null;
|
|
879
892
|
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;
|
|
893
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
881
894
|
biddingAmount: number | null;
|
|
882
895
|
boosted: boolean | null;
|
|
883
896
|
boostingAmount: number | null;
|
|
@@ -894,7 +907,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
894
907
|
leadBiddingConfig: {
|
|
895
908
|
appliedFromQueue: boolean | null;
|
|
896
909
|
biddingDelayInMinutes: number | null;
|
|
897
|
-
bidWithWarning: "
|
|
910
|
+
bidWithWarning: "skip" | "bid";
|
|
898
911
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
899
912
|
biddingHourlyRatePercentage: number | null;
|
|
900
913
|
biddingFixedHourlyRate: number | null;
|
|
@@ -904,6 +917,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
904
917
|
maximumBoost: number | null;
|
|
905
918
|
minBoost: number | null;
|
|
906
919
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
920
|
+
alreadyHiredAction: "skip" | "bid";
|
|
907
921
|
bidConfig: {
|
|
908
922
|
contractorName: string | null;
|
|
909
923
|
agencyName: string | null;
|
|
@@ -941,7 +955,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
941
955
|
}, {
|
|
942
956
|
campaignId: string;
|
|
943
957
|
organizationId: string;
|
|
944
|
-
bidWithWarning: "
|
|
958
|
+
bidWithWarning: "skip" | "bid";
|
|
945
959
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
946
960
|
biddingHourlyRatePercentage: number | null;
|
|
947
961
|
biddingFixedHourlyRate: number | null;
|
|
@@ -950,6 +964,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
950
964
|
connectsAbovePrevious: number | null;
|
|
951
965
|
maximumBoost: number | null;
|
|
952
966
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
967
|
+
alreadyHiredAction: "skip" | "bid";
|
|
953
968
|
questionAnswerPairs: {
|
|
954
969
|
answer: string;
|
|
955
970
|
question: string;
|
|
@@ -998,6 +1013,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
998
1013
|
memberSince: string | null;
|
|
999
1014
|
companyIndustry: string | null;
|
|
1000
1015
|
avgHourlyRatePaid: number | null;
|
|
1016
|
+
companyId: string | null;
|
|
1001
1017
|
} | null;
|
|
1002
1018
|
vendorQualifications: {
|
|
1003
1019
|
location: string | null;
|
|
@@ -1062,7 +1078,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
1062
1078
|
question: string;
|
|
1063
1079
|
}[] | null;
|
|
1064
1080
|
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;
|
|
1081
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
1066
1082
|
biddingAmount: number | null;
|
|
1067
1083
|
boosted: boolean | null;
|
|
1068
1084
|
boostingAmount: number | null;
|
|
@@ -1079,7 +1095,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
1079
1095
|
leadBiddingConfig: {
|
|
1080
1096
|
appliedFromQueue: boolean | null;
|
|
1081
1097
|
biddingDelayInMinutes: number | null;
|
|
1082
|
-
bidWithWarning: "
|
|
1098
|
+
bidWithWarning: "skip" | "bid";
|
|
1083
1099
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1084
1100
|
biddingHourlyRatePercentage: number | null;
|
|
1085
1101
|
biddingFixedHourlyRate: number | null;
|
|
@@ -1089,6 +1105,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
1089
1105
|
maximumBoost: number | null;
|
|
1090
1106
|
minBoost: number | null;
|
|
1091
1107
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1108
|
+
alreadyHiredAction: "skip" | "bid";
|
|
1092
1109
|
bidConfig: {
|
|
1093
1110
|
contractorName: string | null;
|
|
1094
1111
|
agencyName: string | null;
|
|
@@ -1203,6 +1220,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1203
1220
|
companySize: z.ZodNullable<z.ZodString>;
|
|
1204
1221
|
enterpriseClient: z.ZodNullable<z.ZodBoolean>;
|
|
1205
1222
|
avgHourlyRatePaid: z.ZodNullable<z.ZodNumber>;
|
|
1223
|
+
companyId: z.ZodNullable<z.ZodString>;
|
|
1206
1224
|
}, "strip", z.ZodTypeAny, {
|
|
1207
1225
|
country: string | null;
|
|
1208
1226
|
region: string | null;
|
|
@@ -1221,6 +1239,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1221
1239
|
memberSince: string | null;
|
|
1222
1240
|
companyIndustry: string | null;
|
|
1223
1241
|
avgHourlyRatePaid: number | null;
|
|
1242
|
+
companyId: string | null;
|
|
1224
1243
|
}, {
|
|
1225
1244
|
country: string | null;
|
|
1226
1245
|
region: string | null;
|
|
@@ -1239,6 +1258,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1239
1258
|
memberSince: string | null;
|
|
1240
1259
|
companyIndustry: string | null;
|
|
1241
1260
|
avgHourlyRatePaid: number | null;
|
|
1261
|
+
companyId: string | null;
|
|
1242
1262
|
}>>;
|
|
1243
1263
|
vendorQualifications: z.ZodNullable<z.ZodObject<{
|
|
1244
1264
|
location: z.ZodNullable<z.ZodString>;
|
|
@@ -1446,7 +1466,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1446
1466
|
question: string;
|
|
1447
1467
|
}>, "many">>;
|
|
1448
1468
|
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"]>>;
|
|
1469
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>>;
|
|
1450
1470
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
1451
1471
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
1452
1472
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1477,6 +1497,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1477
1497
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
1478
1498
|
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
1479
1499
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
1500
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
1480
1501
|
bidConfig: z.ZodObject<{
|
|
1481
1502
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
1482
1503
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
@@ -1493,7 +1514,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1493
1514
|
}, "strip", z.ZodTypeAny, {
|
|
1494
1515
|
appliedFromQueue: boolean | null;
|
|
1495
1516
|
biddingDelayInMinutes: number | null;
|
|
1496
|
-
bidWithWarning: "
|
|
1517
|
+
bidWithWarning: "skip" | "bid";
|
|
1497
1518
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1498
1519
|
biddingHourlyRatePercentage: number | null;
|
|
1499
1520
|
biddingFixedHourlyRate: number | null;
|
|
@@ -1503,6 +1524,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1503
1524
|
maximumBoost: number | null;
|
|
1504
1525
|
minBoost: number | null;
|
|
1505
1526
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1527
|
+
alreadyHiredAction: "skip" | "bid";
|
|
1506
1528
|
bidConfig: {
|
|
1507
1529
|
contractorName: string | null;
|
|
1508
1530
|
agencyName: string | null;
|
|
@@ -1511,7 +1533,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1511
1533
|
}, {
|
|
1512
1534
|
appliedFromQueue: boolean | null;
|
|
1513
1535
|
biddingDelayInMinutes: number | null;
|
|
1514
|
-
bidWithWarning: "
|
|
1536
|
+
bidWithWarning: "skip" | "bid";
|
|
1515
1537
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1516
1538
|
biddingHourlyRatePercentage: number | null;
|
|
1517
1539
|
biddingFixedHourlyRate: number | null;
|
|
@@ -1521,6 +1543,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1521
1543
|
maximumBoost: number | null;
|
|
1522
1544
|
minBoost: number | null;
|
|
1523
1545
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1546
|
+
alreadyHiredAction: "skip" | "bid";
|
|
1524
1547
|
bidConfig: {
|
|
1525
1548
|
contractorName: string | null;
|
|
1526
1549
|
agencyName: string | null;
|
|
@@ -1570,6 +1593,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1570
1593
|
memberSince: string | null;
|
|
1571
1594
|
companyIndustry: string | null;
|
|
1572
1595
|
avgHourlyRatePaid: number | null;
|
|
1596
|
+
companyId: string | null;
|
|
1573
1597
|
} | null;
|
|
1574
1598
|
vendorQualifications: {
|
|
1575
1599
|
location: string | null;
|
|
@@ -1634,7 +1658,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1634
1658
|
question: string;
|
|
1635
1659
|
}[] | null;
|
|
1636
1660
|
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;
|
|
1661
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
1638
1662
|
biddingAmount: number | null;
|
|
1639
1663
|
boosted: boolean | null;
|
|
1640
1664
|
boostingAmount: number | null;
|
|
@@ -1651,7 +1675,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1651
1675
|
leadBiddingConfig: {
|
|
1652
1676
|
appliedFromQueue: boolean | null;
|
|
1653
1677
|
biddingDelayInMinutes: number | null;
|
|
1654
|
-
bidWithWarning: "
|
|
1678
|
+
bidWithWarning: "skip" | "bid";
|
|
1655
1679
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1656
1680
|
biddingHourlyRatePercentage: number | null;
|
|
1657
1681
|
biddingFixedHourlyRate: number | null;
|
|
@@ -1661,6 +1685,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1661
1685
|
maximumBoost: number | null;
|
|
1662
1686
|
minBoost: number | null;
|
|
1663
1687
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1688
|
+
alreadyHiredAction: "skip" | "bid";
|
|
1664
1689
|
bidConfig: {
|
|
1665
1690
|
contractorName: string | null;
|
|
1666
1691
|
agencyName: string | null;
|
|
@@ -1732,6 +1757,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1732
1757
|
memberSince: string | null;
|
|
1733
1758
|
companyIndustry: string | null;
|
|
1734
1759
|
avgHourlyRatePaid: number | null;
|
|
1760
|
+
companyId: string | null;
|
|
1735
1761
|
} | null;
|
|
1736
1762
|
vendorQualifications: {
|
|
1737
1763
|
location: string | null;
|
|
@@ -1796,7 +1822,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1796
1822
|
question: string;
|
|
1797
1823
|
}[] | null;
|
|
1798
1824
|
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;
|
|
1825
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
1800
1826
|
biddingAmount: number | null;
|
|
1801
1827
|
boosted: boolean | null;
|
|
1802
1828
|
boostingAmount: number | null;
|
|
@@ -1813,7 +1839,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1813
1839
|
leadBiddingConfig: {
|
|
1814
1840
|
appliedFromQueue: boolean | null;
|
|
1815
1841
|
biddingDelayInMinutes: number | null;
|
|
1816
|
-
bidWithWarning: "
|
|
1842
|
+
bidWithWarning: "skip" | "bid";
|
|
1817
1843
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1818
1844
|
biddingHourlyRatePercentage: number | null;
|
|
1819
1845
|
biddingFixedHourlyRate: number | null;
|
|
@@ -1823,6 +1849,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1823
1849
|
maximumBoost: number | null;
|
|
1824
1850
|
minBoost: number | null;
|
|
1825
1851
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1852
|
+
alreadyHiredAction: "skip" | "bid";
|
|
1826
1853
|
bidConfig: {
|
|
1827
1854
|
contractorName: string | null;
|
|
1828
1855
|
agencyName: string | null;
|
|
@@ -1873,6 +1900,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1873
1900
|
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
1874
1901
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
1875
1902
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
1903
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
1876
1904
|
isHourlyRate: z.ZodBoolean;
|
|
1877
1905
|
jobMinHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
1878
1906
|
jobMaxHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1880,7 +1908,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1880
1908
|
}, "strip", z.ZodTypeAny, {
|
|
1881
1909
|
campaignId: string;
|
|
1882
1910
|
organizationId: string;
|
|
1883
|
-
bidWithWarning: "
|
|
1911
|
+
bidWithWarning: "skip" | "bid";
|
|
1884
1912
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1885
1913
|
biddingHourlyRatePercentage: number | null;
|
|
1886
1914
|
biddingFixedHourlyRate: number | null;
|
|
@@ -1889,6 +1917,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1889
1917
|
connectsAbovePrevious: number | null;
|
|
1890
1918
|
maximumBoost: number | null;
|
|
1891
1919
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1920
|
+
alreadyHiredAction: "skip" | "bid";
|
|
1892
1921
|
questionAnswerPairs: {
|
|
1893
1922
|
answer: string;
|
|
1894
1923
|
question: string;
|
|
@@ -1937,6 +1966,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1937
1966
|
memberSince: string | null;
|
|
1938
1967
|
companyIndustry: string | null;
|
|
1939
1968
|
avgHourlyRatePaid: number | null;
|
|
1969
|
+
companyId: string | null;
|
|
1940
1970
|
} | null;
|
|
1941
1971
|
vendorQualifications: {
|
|
1942
1972
|
location: string | null;
|
|
@@ -2001,7 +2031,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
2001
2031
|
question: string;
|
|
2002
2032
|
}[] | null;
|
|
2003
2033
|
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;
|
|
2034
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
2005
2035
|
biddingAmount: number | null;
|
|
2006
2036
|
boosted: boolean | null;
|
|
2007
2037
|
boostingAmount: number | null;
|
|
@@ -2018,7 +2048,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
2018
2048
|
leadBiddingConfig: {
|
|
2019
2049
|
appliedFromQueue: boolean | null;
|
|
2020
2050
|
biddingDelayInMinutes: number | null;
|
|
2021
|
-
bidWithWarning: "
|
|
2051
|
+
bidWithWarning: "skip" | "bid";
|
|
2022
2052
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2023
2053
|
biddingHourlyRatePercentage: number | null;
|
|
2024
2054
|
biddingFixedHourlyRate: number | null;
|
|
@@ -2028,6 +2058,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
2028
2058
|
maximumBoost: number | null;
|
|
2029
2059
|
minBoost: number | null;
|
|
2030
2060
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2061
|
+
alreadyHiredAction: "skip" | "bid";
|
|
2031
2062
|
bidConfig: {
|
|
2032
2063
|
contractorName: string | null;
|
|
2033
2064
|
agencyName: string | null;
|
|
@@ -2065,7 +2096,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
2065
2096
|
}, {
|
|
2066
2097
|
campaignId: string;
|
|
2067
2098
|
organizationId: string;
|
|
2068
|
-
bidWithWarning: "
|
|
2099
|
+
bidWithWarning: "skip" | "bid";
|
|
2069
2100
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2070
2101
|
biddingHourlyRatePercentage: number | null;
|
|
2071
2102
|
biddingFixedHourlyRate: number | null;
|
|
@@ -2074,6 +2105,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
2074
2105
|
connectsAbovePrevious: number | null;
|
|
2075
2106
|
maximumBoost: number | null;
|
|
2076
2107
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2108
|
+
alreadyHiredAction: "skip" | "bid";
|
|
2077
2109
|
questionAnswerPairs: {
|
|
2078
2110
|
answer: string;
|
|
2079
2111
|
question: string;
|
|
@@ -2122,6 +2154,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
2122
2154
|
memberSince: string | null;
|
|
2123
2155
|
companyIndustry: string | null;
|
|
2124
2156
|
avgHourlyRatePaid: number | null;
|
|
2157
|
+
companyId: string | null;
|
|
2125
2158
|
} | null;
|
|
2126
2159
|
vendorQualifications: {
|
|
2127
2160
|
location: string | null;
|
|
@@ -2186,7 +2219,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
2186
2219
|
question: string;
|
|
2187
2220
|
}[] | null;
|
|
2188
2221
|
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;
|
|
2222
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
2190
2223
|
biddingAmount: number | null;
|
|
2191
2224
|
boosted: boolean | null;
|
|
2192
2225
|
boostingAmount: number | null;
|
|
@@ -2203,7 +2236,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
2203
2236
|
leadBiddingConfig: {
|
|
2204
2237
|
appliedFromQueue: boolean | null;
|
|
2205
2238
|
biddingDelayInMinutes: number | null;
|
|
2206
|
-
bidWithWarning: "
|
|
2239
|
+
bidWithWarning: "skip" | "bid";
|
|
2207
2240
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2208
2241
|
biddingHourlyRatePercentage: number | null;
|
|
2209
2242
|
biddingFixedHourlyRate: number | null;
|
|
@@ -2213,6 +2246,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
2213
2246
|
maximumBoost: number | null;
|
|
2214
2247
|
minBoost: number | null;
|
|
2215
2248
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2249
|
+
alreadyHiredAction: "skip" | "bid";
|
|
2216
2250
|
bidConfig: {
|
|
2217
2251
|
contractorName: string | null;
|
|
2218
2252
|
agencyName: string | null;
|
|
@@ -2327,6 +2361,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2327
2361
|
companySize: z.ZodNullable<z.ZodString>;
|
|
2328
2362
|
enterpriseClient: z.ZodNullable<z.ZodBoolean>;
|
|
2329
2363
|
avgHourlyRatePaid: z.ZodNullable<z.ZodNumber>;
|
|
2364
|
+
companyId: z.ZodNullable<z.ZodString>;
|
|
2330
2365
|
}, "strip", z.ZodTypeAny, {
|
|
2331
2366
|
country: string | null;
|
|
2332
2367
|
region: string | null;
|
|
@@ -2345,6 +2380,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2345
2380
|
memberSince: string | null;
|
|
2346
2381
|
companyIndustry: string | null;
|
|
2347
2382
|
avgHourlyRatePaid: number | null;
|
|
2383
|
+
companyId: string | null;
|
|
2348
2384
|
}, {
|
|
2349
2385
|
country: string | null;
|
|
2350
2386
|
region: string | null;
|
|
@@ -2363,6 +2399,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2363
2399
|
memberSince: string | null;
|
|
2364
2400
|
companyIndustry: string | null;
|
|
2365
2401
|
avgHourlyRatePaid: number | null;
|
|
2402
|
+
companyId: string | null;
|
|
2366
2403
|
}>>;
|
|
2367
2404
|
vendorQualifications: z.ZodNullable<z.ZodObject<{
|
|
2368
2405
|
location: z.ZodNullable<z.ZodString>;
|
|
@@ -2570,7 +2607,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2570
2607
|
question: string;
|
|
2571
2608
|
}>, "many">>;
|
|
2572
2609
|
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"]>>;
|
|
2610
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>>;
|
|
2574
2611
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
2575
2612
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
2576
2613
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -2601,6 +2638,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2601
2638
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
2602
2639
|
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
2603
2640
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
2641
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
2604
2642
|
bidConfig: z.ZodObject<{
|
|
2605
2643
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
2606
2644
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
@@ -2617,7 +2655,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2617
2655
|
}, "strip", z.ZodTypeAny, {
|
|
2618
2656
|
appliedFromQueue: boolean | null;
|
|
2619
2657
|
biddingDelayInMinutes: number | null;
|
|
2620
|
-
bidWithWarning: "
|
|
2658
|
+
bidWithWarning: "skip" | "bid";
|
|
2621
2659
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2622
2660
|
biddingHourlyRatePercentage: number | null;
|
|
2623
2661
|
biddingFixedHourlyRate: number | null;
|
|
@@ -2627,6 +2665,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2627
2665
|
maximumBoost: number | null;
|
|
2628
2666
|
minBoost: number | null;
|
|
2629
2667
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2668
|
+
alreadyHiredAction: "skip" | "bid";
|
|
2630
2669
|
bidConfig: {
|
|
2631
2670
|
contractorName: string | null;
|
|
2632
2671
|
agencyName: string | null;
|
|
@@ -2635,7 +2674,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2635
2674
|
}, {
|
|
2636
2675
|
appliedFromQueue: boolean | null;
|
|
2637
2676
|
biddingDelayInMinutes: number | null;
|
|
2638
|
-
bidWithWarning: "
|
|
2677
|
+
bidWithWarning: "skip" | "bid";
|
|
2639
2678
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2640
2679
|
biddingHourlyRatePercentage: number | null;
|
|
2641
2680
|
biddingFixedHourlyRate: number | null;
|
|
@@ -2645,6 +2684,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2645
2684
|
maximumBoost: number | null;
|
|
2646
2685
|
minBoost: number | null;
|
|
2647
2686
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2687
|
+
alreadyHiredAction: "skip" | "bid";
|
|
2648
2688
|
bidConfig: {
|
|
2649
2689
|
contractorName: string | null;
|
|
2650
2690
|
agencyName: string | null;
|
|
@@ -2694,6 +2734,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2694
2734
|
memberSince: string | null;
|
|
2695
2735
|
companyIndustry: string | null;
|
|
2696
2736
|
avgHourlyRatePaid: number | null;
|
|
2737
|
+
companyId: string | null;
|
|
2697
2738
|
} | null;
|
|
2698
2739
|
vendorQualifications: {
|
|
2699
2740
|
location: string | null;
|
|
@@ -2758,7 +2799,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2758
2799
|
question: string;
|
|
2759
2800
|
}[] | null;
|
|
2760
2801
|
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;
|
|
2802
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
2762
2803
|
biddingAmount: number | null;
|
|
2763
2804
|
boosted: boolean | null;
|
|
2764
2805
|
boostingAmount: number | null;
|
|
@@ -2775,7 +2816,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2775
2816
|
leadBiddingConfig: {
|
|
2776
2817
|
appliedFromQueue: boolean | null;
|
|
2777
2818
|
biddingDelayInMinutes: number | null;
|
|
2778
|
-
bidWithWarning: "
|
|
2819
|
+
bidWithWarning: "skip" | "bid";
|
|
2779
2820
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2780
2821
|
biddingHourlyRatePercentage: number | null;
|
|
2781
2822
|
biddingFixedHourlyRate: number | null;
|
|
@@ -2785,6 +2826,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2785
2826
|
maximumBoost: number | null;
|
|
2786
2827
|
minBoost: number | null;
|
|
2787
2828
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2829
|
+
alreadyHiredAction: "skip" | "bid";
|
|
2788
2830
|
bidConfig: {
|
|
2789
2831
|
contractorName: string | null;
|
|
2790
2832
|
agencyName: string | null;
|
|
@@ -2856,6 +2898,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2856
2898
|
memberSince: string | null;
|
|
2857
2899
|
companyIndustry: string | null;
|
|
2858
2900
|
avgHourlyRatePaid: number | null;
|
|
2901
|
+
companyId: string | null;
|
|
2859
2902
|
} | null;
|
|
2860
2903
|
vendorQualifications: {
|
|
2861
2904
|
location: string | null;
|
|
@@ -2920,7 +2963,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2920
2963
|
question: string;
|
|
2921
2964
|
}[] | null;
|
|
2922
2965
|
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;
|
|
2966
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
2924
2967
|
biddingAmount: number | null;
|
|
2925
2968
|
boosted: boolean | null;
|
|
2926
2969
|
boostingAmount: number | null;
|
|
@@ -2937,7 +2980,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2937
2980
|
leadBiddingConfig: {
|
|
2938
2981
|
appliedFromQueue: boolean | null;
|
|
2939
2982
|
biddingDelayInMinutes: number | null;
|
|
2940
|
-
bidWithWarning: "
|
|
2983
|
+
bidWithWarning: "skip" | "bid";
|
|
2941
2984
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2942
2985
|
biddingHourlyRatePercentage: number | null;
|
|
2943
2986
|
biddingFixedHourlyRate: number | null;
|
|
@@ -2947,6 +2990,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2947
2990
|
maximumBoost: number | null;
|
|
2948
2991
|
minBoost: number | null;
|
|
2949
2992
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2993
|
+
alreadyHiredAction: "skip" | "bid";
|
|
2950
2994
|
bidConfig: {
|
|
2951
2995
|
contractorName: string | null;
|
|
2952
2996
|
agencyName: string | null;
|
|
@@ -2997,6 +3041,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2997
3041
|
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
2998
3042
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
2999
3043
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
3044
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
3000
3045
|
isHourlyRate: z.ZodBoolean;
|
|
3001
3046
|
jobMinHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
3002
3047
|
jobMaxHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
@@ -3010,7 +3055,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3010
3055
|
organizationId: string;
|
|
3011
3056
|
contractorName: string;
|
|
3012
3057
|
agencyName: string;
|
|
3013
|
-
bidWithWarning: "
|
|
3058
|
+
bidWithWarning: "skip" | "bid";
|
|
3014
3059
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3015
3060
|
biddingHourlyRatePercentage: number | null;
|
|
3016
3061
|
biddingFixedHourlyRate: number | null;
|
|
@@ -3019,6 +3064,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3019
3064
|
connectsAbovePrevious: number | null;
|
|
3020
3065
|
maximumBoost: number | null;
|
|
3021
3066
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
3067
|
+
alreadyHiredAction: "skip" | "bid";
|
|
3022
3068
|
questionAnswerPairs: {
|
|
3023
3069
|
answer: string;
|
|
3024
3070
|
question: string;
|
|
@@ -3067,6 +3113,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3067
3113
|
memberSince: string | null;
|
|
3068
3114
|
companyIndustry: string | null;
|
|
3069
3115
|
avgHourlyRatePaid: number | null;
|
|
3116
|
+
companyId: string | null;
|
|
3070
3117
|
} | null;
|
|
3071
3118
|
vendorQualifications: {
|
|
3072
3119
|
location: string | null;
|
|
@@ -3131,7 +3178,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3131
3178
|
question: string;
|
|
3132
3179
|
}[] | null;
|
|
3133
3180
|
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;
|
|
3181
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
3135
3182
|
biddingAmount: number | null;
|
|
3136
3183
|
boosted: boolean | null;
|
|
3137
3184
|
boostingAmount: number | null;
|
|
@@ -3148,7 +3195,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3148
3195
|
leadBiddingConfig: {
|
|
3149
3196
|
appliedFromQueue: boolean | null;
|
|
3150
3197
|
biddingDelayInMinutes: number | null;
|
|
3151
|
-
bidWithWarning: "
|
|
3198
|
+
bidWithWarning: "skip" | "bid";
|
|
3152
3199
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3153
3200
|
biddingHourlyRatePercentage: number | null;
|
|
3154
3201
|
biddingFixedHourlyRate: number | null;
|
|
@@ -3158,6 +3205,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3158
3205
|
maximumBoost: number | null;
|
|
3159
3206
|
minBoost: number | null;
|
|
3160
3207
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
3208
|
+
alreadyHiredAction: "skip" | "bid";
|
|
3161
3209
|
bidConfig: {
|
|
3162
3210
|
contractorName: string | null;
|
|
3163
3211
|
agencyName: string | null;
|
|
@@ -3198,7 +3246,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3198
3246
|
organizationId: string;
|
|
3199
3247
|
contractorName: string;
|
|
3200
3248
|
agencyName: string;
|
|
3201
|
-
bidWithWarning: "
|
|
3249
|
+
bidWithWarning: "skip" | "bid";
|
|
3202
3250
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3203
3251
|
biddingHourlyRatePercentage: number | null;
|
|
3204
3252
|
biddingFixedHourlyRate: number | null;
|
|
@@ -3207,6 +3255,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3207
3255
|
connectsAbovePrevious: number | null;
|
|
3208
3256
|
maximumBoost: number | null;
|
|
3209
3257
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
3258
|
+
alreadyHiredAction: "skip" | "bid";
|
|
3210
3259
|
questionAnswerPairs: {
|
|
3211
3260
|
answer: string;
|
|
3212
3261
|
question: string;
|
|
@@ -3255,6 +3304,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3255
3304
|
memberSince: string | null;
|
|
3256
3305
|
companyIndustry: string | null;
|
|
3257
3306
|
avgHourlyRatePaid: number | null;
|
|
3307
|
+
companyId: string | null;
|
|
3258
3308
|
} | null;
|
|
3259
3309
|
vendorQualifications: {
|
|
3260
3310
|
location: string | null;
|
|
@@ -3319,7 +3369,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3319
3369
|
question: string;
|
|
3320
3370
|
}[] | null;
|
|
3321
3371
|
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;
|
|
3372
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
3323
3373
|
biddingAmount: number | null;
|
|
3324
3374
|
boosted: boolean | null;
|
|
3325
3375
|
boostingAmount: number | null;
|
|
@@ -3336,7 +3386,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3336
3386
|
leadBiddingConfig: {
|
|
3337
3387
|
appliedFromQueue: boolean | null;
|
|
3338
3388
|
biddingDelayInMinutes: number | null;
|
|
3339
|
-
bidWithWarning: "
|
|
3389
|
+
bidWithWarning: "skip" | "bid";
|
|
3340
3390
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3341
3391
|
biddingHourlyRatePercentage: number | null;
|
|
3342
3392
|
biddingFixedHourlyRate: number | null;
|
|
@@ -3346,6 +3396,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3346
3396
|
maximumBoost: number | null;
|
|
3347
3397
|
minBoost: number | null;
|
|
3348
3398
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
3399
|
+
alreadyHiredAction: "skip" | "bid";
|
|
3349
3400
|
bidConfig: {
|
|
3350
3401
|
contractorName: string | null;
|
|
3351
3402
|
agencyName: string | null;
|
|
@@ -3461,6 +3512,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3461
3512
|
companySize: z.ZodNullable<z.ZodString>;
|
|
3462
3513
|
enterpriseClient: z.ZodNullable<z.ZodBoolean>;
|
|
3463
3514
|
avgHourlyRatePaid: z.ZodNullable<z.ZodNumber>;
|
|
3515
|
+
companyId: z.ZodNullable<z.ZodString>;
|
|
3464
3516
|
}, "strip", z.ZodTypeAny, {
|
|
3465
3517
|
country: string | null;
|
|
3466
3518
|
region: string | null;
|
|
@@ -3479,6 +3531,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3479
3531
|
memberSince: string | null;
|
|
3480
3532
|
companyIndustry: string | null;
|
|
3481
3533
|
avgHourlyRatePaid: number | null;
|
|
3534
|
+
companyId: string | null;
|
|
3482
3535
|
}, {
|
|
3483
3536
|
country: string | null;
|
|
3484
3537
|
region: string | null;
|
|
@@ -3497,6 +3550,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3497
3550
|
memberSince: string | null;
|
|
3498
3551
|
companyIndustry: string | null;
|
|
3499
3552
|
avgHourlyRatePaid: number | null;
|
|
3553
|
+
companyId: string | null;
|
|
3500
3554
|
}>>;
|
|
3501
3555
|
vendorQualifications: z.ZodNullable<z.ZodObject<{
|
|
3502
3556
|
location: z.ZodNullable<z.ZodString>;
|
|
@@ -3704,7 +3758,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3704
3758
|
question: string;
|
|
3705
3759
|
}>, "many">>;
|
|
3706
3760
|
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"]>>;
|
|
3761
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>>;
|
|
3708
3762
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
3709
3763
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
3710
3764
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -3735,6 +3789,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3735
3789
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
3736
3790
|
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
3737
3791
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
3792
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
3738
3793
|
bidConfig: z.ZodObject<{
|
|
3739
3794
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
3740
3795
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
@@ -3751,7 +3806,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3751
3806
|
}, "strip", z.ZodTypeAny, {
|
|
3752
3807
|
appliedFromQueue: boolean | null;
|
|
3753
3808
|
biddingDelayInMinutes: number | null;
|
|
3754
|
-
bidWithWarning: "
|
|
3809
|
+
bidWithWarning: "skip" | "bid";
|
|
3755
3810
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3756
3811
|
biddingHourlyRatePercentage: number | null;
|
|
3757
3812
|
biddingFixedHourlyRate: number | null;
|
|
@@ -3761,6 +3816,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3761
3816
|
maximumBoost: number | null;
|
|
3762
3817
|
minBoost: number | null;
|
|
3763
3818
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
3819
|
+
alreadyHiredAction: "skip" | "bid";
|
|
3764
3820
|
bidConfig: {
|
|
3765
3821
|
contractorName: string | null;
|
|
3766
3822
|
agencyName: string | null;
|
|
@@ -3769,7 +3825,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3769
3825
|
}, {
|
|
3770
3826
|
appliedFromQueue: boolean | null;
|
|
3771
3827
|
biddingDelayInMinutes: number | null;
|
|
3772
|
-
bidWithWarning: "
|
|
3828
|
+
bidWithWarning: "skip" | "bid";
|
|
3773
3829
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3774
3830
|
biddingHourlyRatePercentage: number | null;
|
|
3775
3831
|
biddingFixedHourlyRate: number | null;
|
|
@@ -3779,6 +3835,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3779
3835
|
maximumBoost: number | null;
|
|
3780
3836
|
minBoost: number | null;
|
|
3781
3837
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
3838
|
+
alreadyHiredAction: "skip" | "bid";
|
|
3782
3839
|
bidConfig: {
|
|
3783
3840
|
contractorName: string | null;
|
|
3784
3841
|
agencyName: string | null;
|
|
@@ -3828,6 +3885,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3828
3885
|
memberSince: string | null;
|
|
3829
3886
|
companyIndustry: string | null;
|
|
3830
3887
|
avgHourlyRatePaid: number | null;
|
|
3888
|
+
companyId: string | null;
|
|
3831
3889
|
} | null;
|
|
3832
3890
|
vendorQualifications: {
|
|
3833
3891
|
location: string | null;
|
|
@@ -3892,7 +3950,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3892
3950
|
question: string;
|
|
3893
3951
|
}[] | null;
|
|
3894
3952
|
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;
|
|
3953
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
3896
3954
|
biddingAmount: number | null;
|
|
3897
3955
|
boosted: boolean | null;
|
|
3898
3956
|
boostingAmount: number | null;
|
|
@@ -3909,7 +3967,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3909
3967
|
leadBiddingConfig: {
|
|
3910
3968
|
appliedFromQueue: boolean | null;
|
|
3911
3969
|
biddingDelayInMinutes: number | null;
|
|
3912
|
-
bidWithWarning: "
|
|
3970
|
+
bidWithWarning: "skip" | "bid";
|
|
3913
3971
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3914
3972
|
biddingHourlyRatePercentage: number | null;
|
|
3915
3973
|
biddingFixedHourlyRate: number | null;
|
|
@@ -3919,6 +3977,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3919
3977
|
maximumBoost: number | null;
|
|
3920
3978
|
minBoost: number | null;
|
|
3921
3979
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
3980
|
+
alreadyHiredAction: "skip" | "bid";
|
|
3922
3981
|
bidConfig: {
|
|
3923
3982
|
contractorName: string | null;
|
|
3924
3983
|
agencyName: string | null;
|
|
@@ -3990,6 +4049,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3990
4049
|
memberSince: string | null;
|
|
3991
4050
|
companyIndustry: string | null;
|
|
3992
4051
|
avgHourlyRatePaid: number | null;
|
|
4052
|
+
companyId: string | null;
|
|
3993
4053
|
} | null;
|
|
3994
4054
|
vendorQualifications: {
|
|
3995
4055
|
location: string | null;
|
|
@@ -4054,7 +4114,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
4054
4114
|
question: string;
|
|
4055
4115
|
}[] | null;
|
|
4056
4116
|
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;
|
|
4117
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
4058
4118
|
biddingAmount: number | null;
|
|
4059
4119
|
boosted: boolean | null;
|
|
4060
4120
|
boostingAmount: number | null;
|
|
@@ -4071,7 +4131,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
4071
4131
|
leadBiddingConfig: {
|
|
4072
4132
|
appliedFromQueue: boolean | null;
|
|
4073
4133
|
biddingDelayInMinutes: number | null;
|
|
4074
|
-
bidWithWarning: "
|
|
4134
|
+
bidWithWarning: "skip" | "bid";
|
|
4075
4135
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4076
4136
|
biddingHourlyRatePercentage: number | null;
|
|
4077
4137
|
biddingFixedHourlyRate: number | null;
|
|
@@ -4081,6 +4141,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
4081
4141
|
maximumBoost: number | null;
|
|
4082
4142
|
minBoost: number | null;
|
|
4083
4143
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4144
|
+
alreadyHiredAction: "skip" | "bid";
|
|
4084
4145
|
bidConfig: {
|
|
4085
4146
|
contractorName: string | null;
|
|
4086
4147
|
agencyName: string | null;
|
|
@@ -4162,6 +4223,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
4162
4223
|
memberSince: string | null;
|
|
4163
4224
|
companyIndustry: string | null;
|
|
4164
4225
|
avgHourlyRatePaid: number | null;
|
|
4226
|
+
companyId: string | null;
|
|
4165
4227
|
} | null;
|
|
4166
4228
|
vendorQualifications: {
|
|
4167
4229
|
location: string | null;
|
|
@@ -4226,7 +4288,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
4226
4288
|
question: string;
|
|
4227
4289
|
}[] | null;
|
|
4228
4290
|
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;
|
|
4291
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
4230
4292
|
biddingAmount: number | null;
|
|
4231
4293
|
boosted: boolean | null;
|
|
4232
4294
|
boostingAmount: number | null;
|
|
@@ -4243,7 +4305,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
4243
4305
|
leadBiddingConfig: {
|
|
4244
4306
|
appliedFromQueue: boolean | null;
|
|
4245
4307
|
biddingDelayInMinutes: number | null;
|
|
4246
|
-
bidWithWarning: "
|
|
4308
|
+
bidWithWarning: "skip" | "bid";
|
|
4247
4309
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4248
4310
|
biddingHourlyRatePercentage: number | null;
|
|
4249
4311
|
biddingFixedHourlyRate: number | null;
|
|
@@ -4253,6 +4315,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
4253
4315
|
maximumBoost: number | null;
|
|
4254
4316
|
minBoost: number | null;
|
|
4255
4317
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4318
|
+
alreadyHiredAction: "skip" | "bid";
|
|
4256
4319
|
bidConfig: {
|
|
4257
4320
|
contractorName: string | null;
|
|
4258
4321
|
agencyName: string | null;
|
|
@@ -4331,6 +4394,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
4331
4394
|
memberSince: string | null;
|
|
4332
4395
|
companyIndustry: string | null;
|
|
4333
4396
|
avgHourlyRatePaid: number | null;
|
|
4397
|
+
companyId: string | null;
|
|
4334
4398
|
} | null;
|
|
4335
4399
|
vendorQualifications: {
|
|
4336
4400
|
location: string | null;
|
|
@@ -4395,7 +4459,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
4395
4459
|
question: string;
|
|
4396
4460
|
}[] | null;
|
|
4397
4461
|
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;
|
|
4462
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
4399
4463
|
biddingAmount: number | null;
|
|
4400
4464
|
boosted: boolean | null;
|
|
4401
4465
|
boostingAmount: number | null;
|
|
@@ -4412,7 +4476,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
4412
4476
|
leadBiddingConfig: {
|
|
4413
4477
|
appliedFromQueue: boolean | null;
|
|
4414
4478
|
biddingDelayInMinutes: number | null;
|
|
4415
|
-
bidWithWarning: "
|
|
4479
|
+
bidWithWarning: "skip" | "bid";
|
|
4416
4480
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4417
4481
|
biddingHourlyRatePercentage: number | null;
|
|
4418
4482
|
biddingFixedHourlyRate: number | null;
|
|
@@ -4422,6 +4486,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
4422
4486
|
maximumBoost: number | null;
|
|
4423
4487
|
minBoost: number | null;
|
|
4424
4488
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4489
|
+
alreadyHiredAction: "skip" | "bid";
|
|
4425
4490
|
bidConfig: {
|
|
4426
4491
|
contractorName: string | null;
|
|
4427
4492
|
agencyName: string | null;
|
|
@@ -4531,6 +4596,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4531
4596
|
companySize: z.ZodNullable<z.ZodString>;
|
|
4532
4597
|
enterpriseClient: z.ZodNullable<z.ZodBoolean>;
|
|
4533
4598
|
avgHourlyRatePaid: z.ZodNullable<z.ZodNumber>;
|
|
4599
|
+
companyId: z.ZodNullable<z.ZodString>;
|
|
4534
4600
|
}, "strip", z.ZodTypeAny, {
|
|
4535
4601
|
country: string | null;
|
|
4536
4602
|
region: string | null;
|
|
@@ -4549,6 +4615,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4549
4615
|
memberSince: string | null;
|
|
4550
4616
|
companyIndustry: string | null;
|
|
4551
4617
|
avgHourlyRatePaid: number | null;
|
|
4618
|
+
companyId: string | null;
|
|
4552
4619
|
}, {
|
|
4553
4620
|
country: string | null;
|
|
4554
4621
|
region: string | null;
|
|
@@ -4567,6 +4634,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4567
4634
|
memberSince: string | null;
|
|
4568
4635
|
companyIndustry: string | null;
|
|
4569
4636
|
avgHourlyRatePaid: number | null;
|
|
4637
|
+
companyId: string | null;
|
|
4570
4638
|
}>>;
|
|
4571
4639
|
vendorQualifications: z.ZodNullable<z.ZodObject<{
|
|
4572
4640
|
location: z.ZodNullable<z.ZodString>;
|
|
@@ -4774,7 +4842,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4774
4842
|
question: string;
|
|
4775
4843
|
}>, "many">>;
|
|
4776
4844
|
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"]>>;
|
|
4845
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>>;
|
|
4778
4846
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
4779
4847
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
4780
4848
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -4805,6 +4873,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4805
4873
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
4806
4874
|
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
4807
4875
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
4876
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
4808
4877
|
bidConfig: z.ZodObject<{
|
|
4809
4878
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
4810
4879
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
@@ -4821,7 +4890,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4821
4890
|
}, "strip", z.ZodTypeAny, {
|
|
4822
4891
|
appliedFromQueue: boolean | null;
|
|
4823
4892
|
biddingDelayInMinutes: number | null;
|
|
4824
|
-
bidWithWarning: "
|
|
4893
|
+
bidWithWarning: "skip" | "bid";
|
|
4825
4894
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4826
4895
|
biddingHourlyRatePercentage: number | null;
|
|
4827
4896
|
biddingFixedHourlyRate: number | null;
|
|
@@ -4831,6 +4900,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4831
4900
|
maximumBoost: number | null;
|
|
4832
4901
|
minBoost: number | null;
|
|
4833
4902
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4903
|
+
alreadyHiredAction: "skip" | "bid";
|
|
4834
4904
|
bidConfig: {
|
|
4835
4905
|
contractorName: string | null;
|
|
4836
4906
|
agencyName: string | null;
|
|
@@ -4839,7 +4909,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4839
4909
|
}, {
|
|
4840
4910
|
appliedFromQueue: boolean | null;
|
|
4841
4911
|
biddingDelayInMinutes: number | null;
|
|
4842
|
-
bidWithWarning: "
|
|
4912
|
+
bidWithWarning: "skip" | "bid";
|
|
4843
4913
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4844
4914
|
biddingHourlyRatePercentage: number | null;
|
|
4845
4915
|
biddingFixedHourlyRate: number | null;
|
|
@@ -4849,6 +4919,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4849
4919
|
maximumBoost: number | null;
|
|
4850
4920
|
minBoost: number | null;
|
|
4851
4921
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4922
|
+
alreadyHiredAction: "skip" | "bid";
|
|
4852
4923
|
bidConfig: {
|
|
4853
4924
|
contractorName: string | null;
|
|
4854
4925
|
agencyName: string | null;
|
|
@@ -4898,6 +4969,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4898
4969
|
memberSince: string | null;
|
|
4899
4970
|
companyIndustry: string | null;
|
|
4900
4971
|
avgHourlyRatePaid: number | null;
|
|
4972
|
+
companyId: string | null;
|
|
4901
4973
|
} | null;
|
|
4902
4974
|
vendorQualifications: {
|
|
4903
4975
|
location: string | null;
|
|
@@ -4962,7 +5034,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4962
5034
|
question: string;
|
|
4963
5035
|
}[] | null;
|
|
4964
5036
|
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;
|
|
5037
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
4966
5038
|
biddingAmount: number | null;
|
|
4967
5039
|
boosted: boolean | null;
|
|
4968
5040
|
boostingAmount: number | null;
|
|
@@ -4979,7 +5051,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4979
5051
|
leadBiddingConfig: {
|
|
4980
5052
|
appliedFromQueue: boolean | null;
|
|
4981
5053
|
biddingDelayInMinutes: number | null;
|
|
4982
|
-
bidWithWarning: "
|
|
5054
|
+
bidWithWarning: "skip" | "bid";
|
|
4983
5055
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4984
5056
|
biddingHourlyRatePercentage: number | null;
|
|
4985
5057
|
biddingFixedHourlyRate: number | null;
|
|
@@ -4989,6 +5061,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4989
5061
|
maximumBoost: number | null;
|
|
4990
5062
|
minBoost: number | null;
|
|
4991
5063
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5064
|
+
alreadyHiredAction: "skip" | "bid";
|
|
4992
5065
|
bidConfig: {
|
|
4993
5066
|
contractorName: string | null;
|
|
4994
5067
|
agencyName: string | null;
|
|
@@ -5060,6 +5133,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5060
5133
|
memberSince: string | null;
|
|
5061
5134
|
companyIndustry: string | null;
|
|
5062
5135
|
avgHourlyRatePaid: number | null;
|
|
5136
|
+
companyId: string | null;
|
|
5063
5137
|
} | null;
|
|
5064
5138
|
vendorQualifications: {
|
|
5065
5139
|
location: string | null;
|
|
@@ -5124,7 +5198,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5124
5198
|
question: string;
|
|
5125
5199
|
}[] | null;
|
|
5126
5200
|
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;
|
|
5201
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
5128
5202
|
biddingAmount: number | null;
|
|
5129
5203
|
boosted: boolean | null;
|
|
5130
5204
|
boostingAmount: number | null;
|
|
@@ -5141,7 +5215,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5141
5215
|
leadBiddingConfig: {
|
|
5142
5216
|
appliedFromQueue: boolean | null;
|
|
5143
5217
|
biddingDelayInMinutes: number | null;
|
|
5144
|
-
bidWithWarning: "
|
|
5218
|
+
bidWithWarning: "skip" | "bid";
|
|
5145
5219
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5146
5220
|
biddingHourlyRatePercentage: number | null;
|
|
5147
5221
|
biddingFixedHourlyRate: number | null;
|
|
@@ -5151,6 +5225,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5151
5225
|
maximumBoost: number | null;
|
|
5152
5226
|
minBoost: number | null;
|
|
5153
5227
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5228
|
+
alreadyHiredAction: "skip" | "bid";
|
|
5154
5229
|
bidConfig: {
|
|
5155
5230
|
contractorName: string | null;
|
|
5156
5231
|
agencyName: string | null;
|
|
@@ -5263,6 +5338,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5263
5338
|
companySize: z.ZodNullable<z.ZodString>;
|
|
5264
5339
|
enterpriseClient: z.ZodNullable<z.ZodBoolean>;
|
|
5265
5340
|
avgHourlyRatePaid: z.ZodNullable<z.ZodNumber>;
|
|
5341
|
+
companyId: z.ZodNullable<z.ZodString>;
|
|
5266
5342
|
}, "strip", z.ZodTypeAny, {
|
|
5267
5343
|
country: string | null;
|
|
5268
5344
|
region: string | null;
|
|
@@ -5281,6 +5357,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5281
5357
|
memberSince: string | null;
|
|
5282
5358
|
companyIndustry: string | null;
|
|
5283
5359
|
avgHourlyRatePaid: number | null;
|
|
5360
|
+
companyId: string | null;
|
|
5284
5361
|
}, {
|
|
5285
5362
|
country: string | null;
|
|
5286
5363
|
region: string | null;
|
|
@@ -5299,6 +5376,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5299
5376
|
memberSince: string | null;
|
|
5300
5377
|
companyIndustry: string | null;
|
|
5301
5378
|
avgHourlyRatePaid: number | null;
|
|
5379
|
+
companyId: string | null;
|
|
5302
5380
|
}>>;
|
|
5303
5381
|
vendorQualifications: z.ZodNullable<z.ZodObject<{
|
|
5304
5382
|
location: z.ZodNullable<z.ZodString>;
|
|
@@ -5506,7 +5584,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5506
5584
|
question: string;
|
|
5507
5585
|
}>, "many">>;
|
|
5508
5586
|
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"]>>;
|
|
5587
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>>;
|
|
5510
5588
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
5511
5589
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
5512
5590
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -5537,6 +5615,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5537
5615
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
5538
5616
|
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
5539
5617
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
5618
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
5540
5619
|
bidConfig: z.ZodObject<{
|
|
5541
5620
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
5542
5621
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
@@ -5553,7 +5632,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5553
5632
|
}, "strip", z.ZodTypeAny, {
|
|
5554
5633
|
appliedFromQueue: boolean | null;
|
|
5555
5634
|
biddingDelayInMinutes: number | null;
|
|
5556
|
-
bidWithWarning: "
|
|
5635
|
+
bidWithWarning: "skip" | "bid";
|
|
5557
5636
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5558
5637
|
biddingHourlyRatePercentage: number | null;
|
|
5559
5638
|
biddingFixedHourlyRate: number | null;
|
|
@@ -5563,6 +5642,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5563
5642
|
maximumBoost: number | null;
|
|
5564
5643
|
minBoost: number | null;
|
|
5565
5644
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5645
|
+
alreadyHiredAction: "skip" | "bid";
|
|
5566
5646
|
bidConfig: {
|
|
5567
5647
|
contractorName: string | null;
|
|
5568
5648
|
agencyName: string | null;
|
|
@@ -5571,7 +5651,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5571
5651
|
}, {
|
|
5572
5652
|
appliedFromQueue: boolean | null;
|
|
5573
5653
|
biddingDelayInMinutes: number | null;
|
|
5574
|
-
bidWithWarning: "
|
|
5654
|
+
bidWithWarning: "skip" | "bid";
|
|
5575
5655
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5576
5656
|
biddingHourlyRatePercentage: number | null;
|
|
5577
5657
|
biddingFixedHourlyRate: number | null;
|
|
@@ -5581,6 +5661,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5581
5661
|
maximumBoost: number | null;
|
|
5582
5662
|
minBoost: number | null;
|
|
5583
5663
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5664
|
+
alreadyHiredAction: "skip" | "bid";
|
|
5584
5665
|
bidConfig: {
|
|
5585
5666
|
contractorName: string | null;
|
|
5586
5667
|
agencyName: string | null;
|
|
@@ -5630,6 +5711,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5630
5711
|
memberSince: string | null;
|
|
5631
5712
|
companyIndustry: string | null;
|
|
5632
5713
|
avgHourlyRatePaid: number | null;
|
|
5714
|
+
companyId: string | null;
|
|
5633
5715
|
} | null;
|
|
5634
5716
|
vendorQualifications: {
|
|
5635
5717
|
location: string | null;
|
|
@@ -5694,7 +5776,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5694
5776
|
question: string;
|
|
5695
5777
|
}[] | null;
|
|
5696
5778
|
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;
|
|
5779
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
5698
5780
|
biddingAmount: number | null;
|
|
5699
5781
|
boosted: boolean | null;
|
|
5700
5782
|
boostingAmount: number | null;
|
|
@@ -5711,7 +5793,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5711
5793
|
leadBiddingConfig: {
|
|
5712
5794
|
appliedFromQueue: boolean | null;
|
|
5713
5795
|
biddingDelayInMinutes: number | null;
|
|
5714
|
-
bidWithWarning: "
|
|
5796
|
+
bidWithWarning: "skip" | "bid";
|
|
5715
5797
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5716
5798
|
biddingHourlyRatePercentage: number | null;
|
|
5717
5799
|
biddingFixedHourlyRate: number | null;
|
|
@@ -5721,6 +5803,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5721
5803
|
maximumBoost: number | null;
|
|
5722
5804
|
minBoost: number | null;
|
|
5723
5805
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5806
|
+
alreadyHiredAction: "skip" | "bid";
|
|
5724
5807
|
bidConfig: {
|
|
5725
5808
|
contractorName: string | null;
|
|
5726
5809
|
agencyName: string | null;
|
|
@@ -5792,6 +5875,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5792
5875
|
memberSince: string | null;
|
|
5793
5876
|
companyIndustry: string | null;
|
|
5794
5877
|
avgHourlyRatePaid: number | null;
|
|
5878
|
+
companyId: string | null;
|
|
5795
5879
|
} | null;
|
|
5796
5880
|
vendorQualifications: {
|
|
5797
5881
|
location: string | null;
|
|
@@ -5856,7 +5940,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5856
5940
|
question: string;
|
|
5857
5941
|
}[] | null;
|
|
5858
5942
|
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;
|
|
5943
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
5860
5944
|
biddingAmount: number | null;
|
|
5861
5945
|
boosted: boolean | null;
|
|
5862
5946
|
boostingAmount: number | null;
|
|
@@ -5873,7 +5957,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5873
5957
|
leadBiddingConfig: {
|
|
5874
5958
|
appliedFromQueue: boolean | null;
|
|
5875
5959
|
biddingDelayInMinutes: number | null;
|
|
5876
|
-
bidWithWarning: "
|
|
5960
|
+
bidWithWarning: "skip" | "bid";
|
|
5877
5961
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5878
5962
|
biddingHourlyRatePercentage: number | null;
|
|
5879
5963
|
biddingFixedHourlyRate: number | null;
|
|
@@ -5883,6 +5967,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5883
5967
|
maximumBoost: number | null;
|
|
5884
5968
|
minBoost: number | null;
|
|
5885
5969
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5970
|
+
alreadyHiredAction: "skip" | "bid";
|
|
5886
5971
|
bidConfig: {
|
|
5887
5972
|
contractorName: string | null;
|
|
5888
5973
|
agencyName: string | null;
|
|
@@ -5933,6 +6018,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5933
6018
|
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
5934
6019
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
5935
6020
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
6021
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
5936
6022
|
isHourlyRate: z.ZodBoolean;
|
|
5937
6023
|
jobMinHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
5938
6024
|
jobMaxHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
@@ -5946,7 +6032,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5946
6032
|
organizationId: string;
|
|
5947
6033
|
contractorName: string;
|
|
5948
6034
|
agencyName: string;
|
|
5949
|
-
bidWithWarning: "
|
|
6035
|
+
bidWithWarning: "skip" | "bid";
|
|
5950
6036
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5951
6037
|
biddingHourlyRatePercentage: number | null;
|
|
5952
6038
|
biddingFixedHourlyRate: number | null;
|
|
@@ -5955,6 +6041,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5955
6041
|
connectsAbovePrevious: number | null;
|
|
5956
6042
|
maximumBoost: number | null;
|
|
5957
6043
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6044
|
+
alreadyHiredAction: "skip" | "bid";
|
|
5958
6045
|
questionAnswerPairs: {
|
|
5959
6046
|
answer: string;
|
|
5960
6047
|
question: string;
|
|
@@ -6003,6 +6090,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6003
6090
|
memberSince: string | null;
|
|
6004
6091
|
companyIndustry: string | null;
|
|
6005
6092
|
avgHourlyRatePaid: number | null;
|
|
6093
|
+
companyId: string | null;
|
|
6006
6094
|
} | null;
|
|
6007
6095
|
vendorQualifications: {
|
|
6008
6096
|
location: string | null;
|
|
@@ -6067,7 +6155,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6067
6155
|
question: string;
|
|
6068
6156
|
}[] | null;
|
|
6069
6157
|
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;
|
|
6158
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
6071
6159
|
biddingAmount: number | null;
|
|
6072
6160
|
boosted: boolean | null;
|
|
6073
6161
|
boostingAmount: number | null;
|
|
@@ -6084,7 +6172,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6084
6172
|
leadBiddingConfig: {
|
|
6085
6173
|
appliedFromQueue: boolean | null;
|
|
6086
6174
|
biddingDelayInMinutes: number | null;
|
|
6087
|
-
bidWithWarning: "
|
|
6175
|
+
bidWithWarning: "skip" | "bid";
|
|
6088
6176
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6089
6177
|
biddingHourlyRatePercentage: number | null;
|
|
6090
6178
|
biddingFixedHourlyRate: number | null;
|
|
@@ -6094,6 +6182,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6094
6182
|
maximumBoost: number | null;
|
|
6095
6183
|
minBoost: number | null;
|
|
6096
6184
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6185
|
+
alreadyHiredAction: "skip" | "bid";
|
|
6097
6186
|
bidConfig: {
|
|
6098
6187
|
contractorName: string | null;
|
|
6099
6188
|
agencyName: string | null;
|
|
@@ -6134,7 +6223,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6134
6223
|
organizationId: string;
|
|
6135
6224
|
contractorName: string;
|
|
6136
6225
|
agencyName: string;
|
|
6137
|
-
bidWithWarning: "
|
|
6226
|
+
bidWithWarning: "skip" | "bid";
|
|
6138
6227
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6139
6228
|
biddingHourlyRatePercentage: number | null;
|
|
6140
6229
|
biddingFixedHourlyRate: number | null;
|
|
@@ -6143,6 +6232,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6143
6232
|
connectsAbovePrevious: number | null;
|
|
6144
6233
|
maximumBoost: number | null;
|
|
6145
6234
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6235
|
+
alreadyHiredAction: "skip" | "bid";
|
|
6146
6236
|
questionAnswerPairs: {
|
|
6147
6237
|
answer: string;
|
|
6148
6238
|
question: string;
|
|
@@ -6191,6 +6281,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6191
6281
|
memberSince: string | null;
|
|
6192
6282
|
companyIndustry: string | null;
|
|
6193
6283
|
avgHourlyRatePaid: number | null;
|
|
6284
|
+
companyId: string | null;
|
|
6194
6285
|
} | null;
|
|
6195
6286
|
vendorQualifications: {
|
|
6196
6287
|
location: string | null;
|
|
@@ -6255,7 +6346,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6255
6346
|
question: string;
|
|
6256
6347
|
}[] | null;
|
|
6257
6348
|
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;
|
|
6349
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
6259
6350
|
biddingAmount: number | null;
|
|
6260
6351
|
boosted: boolean | null;
|
|
6261
6352
|
boostingAmount: number | null;
|
|
@@ -6272,7 +6363,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6272
6363
|
leadBiddingConfig: {
|
|
6273
6364
|
appliedFromQueue: boolean | null;
|
|
6274
6365
|
biddingDelayInMinutes: number | null;
|
|
6275
|
-
bidWithWarning: "
|
|
6366
|
+
bidWithWarning: "skip" | "bid";
|
|
6276
6367
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6277
6368
|
biddingHourlyRatePercentage: number | null;
|
|
6278
6369
|
biddingFixedHourlyRate: number | null;
|
|
@@ -6282,6 +6373,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6282
6373
|
maximumBoost: number | null;
|
|
6283
6374
|
minBoost: number | null;
|
|
6284
6375
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6376
|
+
alreadyHiredAction: "skip" | "bid";
|
|
6285
6377
|
bidConfig: {
|
|
6286
6378
|
contractorName: string | null;
|
|
6287
6379
|
agencyName: string | null;
|
|
@@ -6367,6 +6459,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6367
6459
|
memberSince: string | null;
|
|
6368
6460
|
companyIndustry: string | null;
|
|
6369
6461
|
avgHourlyRatePaid: number | null;
|
|
6462
|
+
companyId: string | null;
|
|
6370
6463
|
} | null;
|
|
6371
6464
|
vendorQualifications: {
|
|
6372
6465
|
location: string | null;
|
|
@@ -6431,7 +6524,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6431
6524
|
question: string;
|
|
6432
6525
|
}[] | null;
|
|
6433
6526
|
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;
|
|
6527
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
6435
6528
|
biddingAmount: number | null;
|
|
6436
6529
|
boosted: boolean | null;
|
|
6437
6530
|
boostingAmount: number | null;
|
|
@@ -6448,7 +6541,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6448
6541
|
leadBiddingConfig: {
|
|
6449
6542
|
appliedFromQueue: boolean | null;
|
|
6450
6543
|
biddingDelayInMinutes: number | null;
|
|
6451
|
-
bidWithWarning: "
|
|
6544
|
+
bidWithWarning: "skip" | "bid";
|
|
6452
6545
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6453
6546
|
biddingHourlyRatePercentage: number | null;
|
|
6454
6547
|
biddingFixedHourlyRate: number | null;
|
|
@@ -6458,6 +6551,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6458
6551
|
maximumBoost: number | null;
|
|
6459
6552
|
minBoost: number | null;
|
|
6460
6553
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6554
|
+
alreadyHiredAction: "skip" | "bid";
|
|
6461
6555
|
bidConfig: {
|
|
6462
6556
|
contractorName: string | null;
|
|
6463
6557
|
agencyName: string | null;
|
|
@@ -6492,7 +6586,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6492
6586
|
organizationId: string;
|
|
6493
6587
|
contractorName: string;
|
|
6494
6588
|
agencyName: string;
|
|
6495
|
-
bidWithWarning: "
|
|
6589
|
+
bidWithWarning: "skip" | "bid";
|
|
6496
6590
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6497
6591
|
biddingHourlyRatePercentage: number | null;
|
|
6498
6592
|
biddingFixedHourlyRate: number | null;
|
|
@@ -6501,6 +6595,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6501
6595
|
connectsAbovePrevious: number | null;
|
|
6502
6596
|
maximumBoost: number | null;
|
|
6503
6597
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6598
|
+
alreadyHiredAction: "skip" | "bid";
|
|
6504
6599
|
questionAnswerPairs: {
|
|
6505
6600
|
answer: string;
|
|
6506
6601
|
question: string;
|
|
@@ -6549,6 +6644,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6549
6644
|
memberSince: string | null;
|
|
6550
6645
|
companyIndustry: string | null;
|
|
6551
6646
|
avgHourlyRatePaid: number | null;
|
|
6647
|
+
companyId: string | null;
|
|
6552
6648
|
} | null;
|
|
6553
6649
|
vendorQualifications: {
|
|
6554
6650
|
location: string | null;
|
|
@@ -6613,7 +6709,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6613
6709
|
question: string;
|
|
6614
6710
|
}[] | null;
|
|
6615
6711
|
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;
|
|
6712
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
6617
6713
|
biddingAmount: number | null;
|
|
6618
6714
|
boosted: boolean | null;
|
|
6619
6715
|
boostingAmount: number | null;
|
|
@@ -6630,7 +6726,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6630
6726
|
leadBiddingConfig: {
|
|
6631
6727
|
appliedFromQueue: boolean | null;
|
|
6632
6728
|
biddingDelayInMinutes: number | null;
|
|
6633
|
-
bidWithWarning: "
|
|
6729
|
+
bidWithWarning: "skip" | "bid";
|
|
6634
6730
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6635
6731
|
biddingHourlyRatePercentage: number | null;
|
|
6636
6732
|
biddingFixedHourlyRate: number | null;
|
|
@@ -6640,6 +6736,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6640
6736
|
maximumBoost: number | null;
|
|
6641
6737
|
minBoost: number | null;
|
|
6642
6738
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6739
|
+
alreadyHiredAction: "skip" | "bid";
|
|
6643
6740
|
bidConfig: {
|
|
6644
6741
|
contractorName: string | null;
|
|
6645
6742
|
agencyName: string | null;
|
|
@@ -6725,6 +6822,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6725
6822
|
memberSince: string | null;
|
|
6726
6823
|
companyIndustry: string | null;
|
|
6727
6824
|
avgHourlyRatePaid: number | null;
|
|
6825
|
+
companyId: string | null;
|
|
6728
6826
|
} | null;
|
|
6729
6827
|
vendorQualifications: {
|
|
6730
6828
|
location: string | null;
|
|
@@ -6789,7 +6887,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6789
6887
|
question: string;
|
|
6790
6888
|
}[] | null;
|
|
6791
6889
|
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;
|
|
6890
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
6793
6891
|
biddingAmount: number | null;
|
|
6794
6892
|
boosted: boolean | null;
|
|
6795
6893
|
boostingAmount: number | null;
|
|
@@ -6806,7 +6904,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6806
6904
|
leadBiddingConfig: {
|
|
6807
6905
|
appliedFromQueue: boolean | null;
|
|
6808
6906
|
biddingDelayInMinutes: number | null;
|
|
6809
|
-
bidWithWarning: "
|
|
6907
|
+
bidWithWarning: "skip" | "bid";
|
|
6810
6908
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6811
6909
|
biddingHourlyRatePercentage: number | null;
|
|
6812
6910
|
biddingFixedHourlyRate: number | null;
|
|
@@ -6816,6 +6914,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6816
6914
|
maximumBoost: number | null;
|
|
6817
6915
|
minBoost: number | null;
|
|
6818
6916
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6917
|
+
alreadyHiredAction: "skip" | "bid";
|
|
6819
6918
|
bidConfig: {
|
|
6820
6919
|
contractorName: string | null;
|
|
6821
6920
|
agencyName: string | null;
|
|
@@ -6850,7 +6949,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6850
6949
|
organizationId: string;
|
|
6851
6950
|
contractorName: string;
|
|
6852
6951
|
agencyName: string;
|
|
6853
|
-
bidWithWarning: "
|
|
6952
|
+
bidWithWarning: "skip" | "bid";
|
|
6854
6953
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6855
6954
|
biddingHourlyRatePercentage: number | null;
|
|
6856
6955
|
biddingFixedHourlyRate: number | null;
|
|
@@ -6859,6 +6958,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6859
6958
|
connectsAbovePrevious: number | null;
|
|
6860
6959
|
maximumBoost: number | null;
|
|
6861
6960
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6961
|
+
alreadyHiredAction: "skip" | "bid";
|
|
6862
6962
|
questionAnswerPairs: {
|
|
6863
6963
|
answer: string;
|
|
6864
6964
|
question: string;
|
|
@@ -6907,6 +7007,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6907
7007
|
memberSince: string | null;
|
|
6908
7008
|
companyIndustry: string | null;
|
|
6909
7009
|
avgHourlyRatePaid: number | null;
|
|
7010
|
+
companyId: string | null;
|
|
6910
7011
|
} | null;
|
|
6911
7012
|
vendorQualifications: {
|
|
6912
7013
|
location: string | null;
|
|
@@ -6971,7 +7072,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6971
7072
|
question: string;
|
|
6972
7073
|
}[] | null;
|
|
6973
7074
|
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;
|
|
7075
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
6975
7076
|
biddingAmount: number | null;
|
|
6976
7077
|
boosted: boolean | null;
|
|
6977
7078
|
boostingAmount: number | null;
|
|
@@ -6988,7 +7089,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6988
7089
|
leadBiddingConfig: {
|
|
6989
7090
|
appliedFromQueue: boolean | null;
|
|
6990
7091
|
biddingDelayInMinutes: number | null;
|
|
6991
|
-
bidWithWarning: "
|
|
7092
|
+
bidWithWarning: "skip" | "bid";
|
|
6992
7093
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6993
7094
|
biddingHourlyRatePercentage: number | null;
|
|
6994
7095
|
biddingFixedHourlyRate: number | null;
|
|
@@ -6998,6 +7099,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6998
7099
|
maximumBoost: number | null;
|
|
6999
7100
|
minBoost: number | null;
|
|
7000
7101
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7102
|
+
alreadyHiredAction: "skip" | "bid";
|
|
7001
7103
|
bidConfig: {
|
|
7002
7104
|
contractorName: string | null;
|
|
7003
7105
|
agencyName: string | null;
|
|
@@ -7114,6 +7216,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7114
7216
|
companySize: z.ZodNullable<z.ZodString>;
|
|
7115
7217
|
enterpriseClient: z.ZodNullable<z.ZodBoolean>;
|
|
7116
7218
|
avgHourlyRatePaid: z.ZodNullable<z.ZodNumber>;
|
|
7219
|
+
companyId: z.ZodNullable<z.ZodString>;
|
|
7117
7220
|
}, "strip", z.ZodTypeAny, {
|
|
7118
7221
|
country: string | null;
|
|
7119
7222
|
region: string | null;
|
|
@@ -7132,6 +7235,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7132
7235
|
memberSince: string | null;
|
|
7133
7236
|
companyIndustry: string | null;
|
|
7134
7237
|
avgHourlyRatePaid: number | null;
|
|
7238
|
+
companyId: string | null;
|
|
7135
7239
|
}, {
|
|
7136
7240
|
country: string | null;
|
|
7137
7241
|
region: string | null;
|
|
@@ -7150,6 +7254,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7150
7254
|
memberSince: string | null;
|
|
7151
7255
|
companyIndustry: string | null;
|
|
7152
7256
|
avgHourlyRatePaid: number | null;
|
|
7257
|
+
companyId: string | null;
|
|
7153
7258
|
}>>;
|
|
7154
7259
|
vendorQualifications: z.ZodNullable<z.ZodObject<{
|
|
7155
7260
|
location: z.ZodNullable<z.ZodString>;
|
|
@@ -7357,7 +7462,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7357
7462
|
question: string;
|
|
7358
7463
|
}>, "many">>;
|
|
7359
7464
|
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"]>>;
|
|
7465
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>>;
|
|
7361
7466
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
7362
7467
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
7363
7468
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -7388,6 +7493,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7388
7493
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
7389
7494
|
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
7390
7495
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
7496
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
7391
7497
|
bidConfig: z.ZodObject<{
|
|
7392
7498
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
7393
7499
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
@@ -7404,7 +7510,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7404
7510
|
}, "strip", z.ZodTypeAny, {
|
|
7405
7511
|
appliedFromQueue: boolean | null;
|
|
7406
7512
|
biddingDelayInMinutes: number | null;
|
|
7407
|
-
bidWithWarning: "
|
|
7513
|
+
bidWithWarning: "skip" | "bid";
|
|
7408
7514
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
7409
7515
|
biddingHourlyRatePercentage: number | null;
|
|
7410
7516
|
biddingFixedHourlyRate: number | null;
|
|
@@ -7414,6 +7520,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7414
7520
|
maximumBoost: number | null;
|
|
7415
7521
|
minBoost: number | null;
|
|
7416
7522
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7523
|
+
alreadyHiredAction: "skip" | "bid";
|
|
7417
7524
|
bidConfig: {
|
|
7418
7525
|
contractorName: string | null;
|
|
7419
7526
|
agencyName: string | null;
|
|
@@ -7422,7 +7529,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7422
7529
|
}, {
|
|
7423
7530
|
appliedFromQueue: boolean | null;
|
|
7424
7531
|
biddingDelayInMinutes: number | null;
|
|
7425
|
-
bidWithWarning: "
|
|
7532
|
+
bidWithWarning: "skip" | "bid";
|
|
7426
7533
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
7427
7534
|
biddingHourlyRatePercentage: number | null;
|
|
7428
7535
|
biddingFixedHourlyRate: number | null;
|
|
@@ -7432,6 +7539,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7432
7539
|
maximumBoost: number | null;
|
|
7433
7540
|
minBoost: number | null;
|
|
7434
7541
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7542
|
+
alreadyHiredAction: "skip" | "bid";
|
|
7435
7543
|
bidConfig: {
|
|
7436
7544
|
contractorName: string | null;
|
|
7437
7545
|
agencyName: string | null;
|
|
@@ -7481,6 +7589,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7481
7589
|
memberSince: string | null;
|
|
7482
7590
|
companyIndustry: string | null;
|
|
7483
7591
|
avgHourlyRatePaid: number | null;
|
|
7592
|
+
companyId: string | null;
|
|
7484
7593
|
} | null;
|
|
7485
7594
|
vendorQualifications: {
|
|
7486
7595
|
location: string | null;
|
|
@@ -7545,7 +7654,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7545
7654
|
question: string;
|
|
7546
7655
|
}[] | null;
|
|
7547
7656
|
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;
|
|
7657
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
7549
7658
|
biddingAmount: number | null;
|
|
7550
7659
|
boosted: boolean | null;
|
|
7551
7660
|
boostingAmount: number | null;
|
|
@@ -7562,7 +7671,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7562
7671
|
leadBiddingConfig: {
|
|
7563
7672
|
appliedFromQueue: boolean | null;
|
|
7564
7673
|
biddingDelayInMinutes: number | null;
|
|
7565
|
-
bidWithWarning: "
|
|
7674
|
+
bidWithWarning: "skip" | "bid";
|
|
7566
7675
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
7567
7676
|
biddingHourlyRatePercentage: number | null;
|
|
7568
7677
|
biddingFixedHourlyRate: number | null;
|
|
@@ -7572,6 +7681,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7572
7681
|
maximumBoost: number | null;
|
|
7573
7682
|
minBoost: number | null;
|
|
7574
7683
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7684
|
+
alreadyHiredAction: "skip" | "bid";
|
|
7575
7685
|
bidConfig: {
|
|
7576
7686
|
contractorName: string | null;
|
|
7577
7687
|
agencyName: string | null;
|
|
@@ -7643,6 +7753,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7643
7753
|
memberSince: string | null;
|
|
7644
7754
|
companyIndustry: string | null;
|
|
7645
7755
|
avgHourlyRatePaid: number | null;
|
|
7756
|
+
companyId: string | null;
|
|
7646
7757
|
} | null;
|
|
7647
7758
|
vendorQualifications: {
|
|
7648
7759
|
location: string | null;
|
|
@@ -7707,7 +7818,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7707
7818
|
question: string;
|
|
7708
7819
|
}[] | null;
|
|
7709
7820
|
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;
|
|
7821
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
7711
7822
|
biddingAmount: number | null;
|
|
7712
7823
|
boosted: boolean | null;
|
|
7713
7824
|
boostingAmount: number | null;
|
|
@@ -7724,7 +7835,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7724
7835
|
leadBiddingConfig: {
|
|
7725
7836
|
appliedFromQueue: boolean | null;
|
|
7726
7837
|
biddingDelayInMinutes: number | null;
|
|
7727
|
-
bidWithWarning: "
|
|
7838
|
+
bidWithWarning: "skip" | "bid";
|
|
7728
7839
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
7729
7840
|
biddingHourlyRatePercentage: number | null;
|
|
7730
7841
|
biddingFixedHourlyRate: number | null;
|
|
@@ -7734,6 +7845,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7734
7845
|
maximumBoost: number | null;
|
|
7735
7846
|
minBoost: number | null;
|
|
7736
7847
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7848
|
+
alreadyHiredAction: "skip" | "bid";
|
|
7737
7849
|
bidConfig: {
|
|
7738
7850
|
contractorName: string | null;
|
|
7739
7851
|
agencyName: string | null;
|
|
@@ -7846,6 +7958,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7846
7958
|
companySize: z.ZodNullable<z.ZodString>;
|
|
7847
7959
|
enterpriseClient: z.ZodNullable<z.ZodBoolean>;
|
|
7848
7960
|
avgHourlyRatePaid: z.ZodNullable<z.ZodNumber>;
|
|
7961
|
+
companyId: z.ZodNullable<z.ZodString>;
|
|
7849
7962
|
}, "strip", z.ZodTypeAny, {
|
|
7850
7963
|
country: string | null;
|
|
7851
7964
|
region: string | null;
|
|
@@ -7864,6 +7977,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7864
7977
|
memberSince: string | null;
|
|
7865
7978
|
companyIndustry: string | null;
|
|
7866
7979
|
avgHourlyRatePaid: number | null;
|
|
7980
|
+
companyId: string | null;
|
|
7867
7981
|
}, {
|
|
7868
7982
|
country: string | null;
|
|
7869
7983
|
region: string | null;
|
|
@@ -7882,6 +7996,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7882
7996
|
memberSince: string | null;
|
|
7883
7997
|
companyIndustry: string | null;
|
|
7884
7998
|
avgHourlyRatePaid: number | null;
|
|
7999
|
+
companyId: string | null;
|
|
7885
8000
|
}>>;
|
|
7886
8001
|
vendorQualifications: z.ZodNullable<z.ZodObject<{
|
|
7887
8002
|
location: z.ZodNullable<z.ZodString>;
|
|
@@ -8089,7 +8204,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8089
8204
|
question: string;
|
|
8090
8205
|
}>, "many">>;
|
|
8091
8206
|
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"]>>;
|
|
8207
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>>;
|
|
8093
8208
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
8094
8209
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
8095
8210
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -8120,6 +8235,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8120
8235
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
8121
8236
|
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
8122
8237
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
8238
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
8123
8239
|
bidConfig: z.ZodObject<{
|
|
8124
8240
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
8125
8241
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
@@ -8136,7 +8252,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8136
8252
|
}, "strip", z.ZodTypeAny, {
|
|
8137
8253
|
appliedFromQueue: boolean | null;
|
|
8138
8254
|
biddingDelayInMinutes: number | null;
|
|
8139
|
-
bidWithWarning: "
|
|
8255
|
+
bidWithWarning: "skip" | "bid";
|
|
8140
8256
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8141
8257
|
biddingHourlyRatePercentage: number | null;
|
|
8142
8258
|
biddingFixedHourlyRate: number | null;
|
|
@@ -8146,6 +8262,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8146
8262
|
maximumBoost: number | null;
|
|
8147
8263
|
minBoost: number | null;
|
|
8148
8264
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8265
|
+
alreadyHiredAction: "skip" | "bid";
|
|
8149
8266
|
bidConfig: {
|
|
8150
8267
|
contractorName: string | null;
|
|
8151
8268
|
agencyName: string | null;
|
|
@@ -8154,7 +8271,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8154
8271
|
}, {
|
|
8155
8272
|
appliedFromQueue: boolean | null;
|
|
8156
8273
|
biddingDelayInMinutes: number | null;
|
|
8157
|
-
bidWithWarning: "
|
|
8274
|
+
bidWithWarning: "skip" | "bid";
|
|
8158
8275
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8159
8276
|
biddingHourlyRatePercentage: number | null;
|
|
8160
8277
|
biddingFixedHourlyRate: number | null;
|
|
@@ -8164,6 +8281,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8164
8281
|
maximumBoost: number | null;
|
|
8165
8282
|
minBoost: number | null;
|
|
8166
8283
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8284
|
+
alreadyHiredAction: "skip" | "bid";
|
|
8167
8285
|
bidConfig: {
|
|
8168
8286
|
contractorName: string | null;
|
|
8169
8287
|
agencyName: string | null;
|
|
@@ -8213,6 +8331,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8213
8331
|
memberSince: string | null;
|
|
8214
8332
|
companyIndustry: string | null;
|
|
8215
8333
|
avgHourlyRatePaid: number | null;
|
|
8334
|
+
companyId: string | null;
|
|
8216
8335
|
} | null;
|
|
8217
8336
|
vendorQualifications: {
|
|
8218
8337
|
location: string | null;
|
|
@@ -8277,7 +8396,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8277
8396
|
question: string;
|
|
8278
8397
|
}[] | null;
|
|
8279
8398
|
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;
|
|
8399
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
8281
8400
|
biddingAmount: number | null;
|
|
8282
8401
|
boosted: boolean | null;
|
|
8283
8402
|
boostingAmount: number | null;
|
|
@@ -8294,7 +8413,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8294
8413
|
leadBiddingConfig: {
|
|
8295
8414
|
appliedFromQueue: boolean | null;
|
|
8296
8415
|
biddingDelayInMinutes: number | null;
|
|
8297
|
-
bidWithWarning: "
|
|
8416
|
+
bidWithWarning: "skip" | "bid";
|
|
8298
8417
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8299
8418
|
biddingHourlyRatePercentage: number | null;
|
|
8300
8419
|
biddingFixedHourlyRate: number | null;
|
|
@@ -8304,6 +8423,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8304
8423
|
maximumBoost: number | null;
|
|
8305
8424
|
minBoost: number | null;
|
|
8306
8425
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8426
|
+
alreadyHiredAction: "skip" | "bid";
|
|
8307
8427
|
bidConfig: {
|
|
8308
8428
|
contractorName: string | null;
|
|
8309
8429
|
agencyName: string | null;
|
|
@@ -8375,6 +8495,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8375
8495
|
memberSince: string | null;
|
|
8376
8496
|
companyIndustry: string | null;
|
|
8377
8497
|
avgHourlyRatePaid: number | null;
|
|
8498
|
+
companyId: string | null;
|
|
8378
8499
|
} | null;
|
|
8379
8500
|
vendorQualifications: {
|
|
8380
8501
|
location: string | null;
|
|
@@ -8439,7 +8560,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8439
8560
|
question: string;
|
|
8440
8561
|
}[] | null;
|
|
8441
8562
|
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;
|
|
8563
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
8443
8564
|
biddingAmount: number | null;
|
|
8444
8565
|
boosted: boolean | null;
|
|
8445
8566
|
boostingAmount: number | null;
|
|
@@ -8456,7 +8577,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8456
8577
|
leadBiddingConfig: {
|
|
8457
8578
|
appliedFromQueue: boolean | null;
|
|
8458
8579
|
biddingDelayInMinutes: number | null;
|
|
8459
|
-
bidWithWarning: "
|
|
8580
|
+
bidWithWarning: "skip" | "bid";
|
|
8460
8581
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8461
8582
|
biddingHourlyRatePercentage: number | null;
|
|
8462
8583
|
biddingFixedHourlyRate: number | null;
|
|
@@ -8466,6 +8587,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8466
8587
|
maximumBoost: number | null;
|
|
8467
8588
|
minBoost: number | null;
|
|
8468
8589
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8590
|
+
alreadyHiredAction: "skip" | "bid";
|
|
8469
8591
|
bidConfig: {
|
|
8470
8592
|
contractorName: string | null;
|
|
8471
8593
|
agencyName: string | null;
|
|
@@ -8516,6 +8638,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8516
8638
|
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
8517
8639
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
8518
8640
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
8641
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
8519
8642
|
isHourlyRate: z.ZodBoolean;
|
|
8520
8643
|
jobMinHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
8521
8644
|
jobMaxHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
@@ -8523,7 +8646,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8523
8646
|
}, "strip", z.ZodTypeAny, {
|
|
8524
8647
|
campaignId: string;
|
|
8525
8648
|
organizationId: string;
|
|
8526
|
-
bidWithWarning: "
|
|
8649
|
+
bidWithWarning: "skip" | "bid";
|
|
8527
8650
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8528
8651
|
biddingHourlyRatePercentage: number | null;
|
|
8529
8652
|
biddingFixedHourlyRate: number | null;
|
|
@@ -8532,6 +8655,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8532
8655
|
connectsAbovePrevious: number | null;
|
|
8533
8656
|
maximumBoost: number | null;
|
|
8534
8657
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8658
|
+
alreadyHiredAction: "skip" | "bid";
|
|
8535
8659
|
questionAnswerPairs: {
|
|
8536
8660
|
answer: string;
|
|
8537
8661
|
question: string;
|
|
@@ -8580,6 +8704,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8580
8704
|
memberSince: string | null;
|
|
8581
8705
|
companyIndustry: string | null;
|
|
8582
8706
|
avgHourlyRatePaid: number | null;
|
|
8707
|
+
companyId: string | null;
|
|
8583
8708
|
} | null;
|
|
8584
8709
|
vendorQualifications: {
|
|
8585
8710
|
location: string | null;
|
|
@@ -8644,7 +8769,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8644
8769
|
question: string;
|
|
8645
8770
|
}[] | null;
|
|
8646
8771
|
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;
|
|
8772
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
8648
8773
|
biddingAmount: number | null;
|
|
8649
8774
|
boosted: boolean | null;
|
|
8650
8775
|
boostingAmount: number | null;
|
|
@@ -8661,7 +8786,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8661
8786
|
leadBiddingConfig: {
|
|
8662
8787
|
appliedFromQueue: boolean | null;
|
|
8663
8788
|
biddingDelayInMinutes: number | null;
|
|
8664
|
-
bidWithWarning: "
|
|
8789
|
+
bidWithWarning: "skip" | "bid";
|
|
8665
8790
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8666
8791
|
biddingHourlyRatePercentage: number | null;
|
|
8667
8792
|
biddingFixedHourlyRate: number | null;
|
|
@@ -8671,6 +8796,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8671
8796
|
maximumBoost: number | null;
|
|
8672
8797
|
minBoost: number | null;
|
|
8673
8798
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8799
|
+
alreadyHiredAction: "skip" | "bid";
|
|
8674
8800
|
bidConfig: {
|
|
8675
8801
|
contractorName: string | null;
|
|
8676
8802
|
agencyName: string | null;
|
|
@@ -8708,7 +8834,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8708
8834
|
}, {
|
|
8709
8835
|
campaignId: string;
|
|
8710
8836
|
organizationId: string;
|
|
8711
|
-
bidWithWarning: "
|
|
8837
|
+
bidWithWarning: "skip" | "bid";
|
|
8712
8838
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8713
8839
|
biddingHourlyRatePercentage: number | null;
|
|
8714
8840
|
biddingFixedHourlyRate: number | null;
|
|
@@ -8717,6 +8843,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8717
8843
|
connectsAbovePrevious: number | null;
|
|
8718
8844
|
maximumBoost: number | null;
|
|
8719
8845
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8846
|
+
alreadyHiredAction: "skip" | "bid";
|
|
8720
8847
|
questionAnswerPairs: {
|
|
8721
8848
|
answer: string;
|
|
8722
8849
|
question: string;
|
|
@@ -8765,6 +8892,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8765
8892
|
memberSince: string | null;
|
|
8766
8893
|
companyIndustry: string | null;
|
|
8767
8894
|
avgHourlyRatePaid: number | null;
|
|
8895
|
+
companyId: string | null;
|
|
8768
8896
|
} | null;
|
|
8769
8897
|
vendorQualifications: {
|
|
8770
8898
|
location: string | null;
|
|
@@ -8829,7 +8957,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8829
8957
|
question: string;
|
|
8830
8958
|
}[] | null;
|
|
8831
8959
|
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;
|
|
8960
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
8833
8961
|
biddingAmount: number | null;
|
|
8834
8962
|
boosted: boolean | null;
|
|
8835
8963
|
boostingAmount: number | null;
|
|
@@ -8846,7 +8974,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8846
8974
|
leadBiddingConfig: {
|
|
8847
8975
|
appliedFromQueue: boolean | null;
|
|
8848
8976
|
biddingDelayInMinutes: number | null;
|
|
8849
|
-
bidWithWarning: "
|
|
8977
|
+
bidWithWarning: "skip" | "bid";
|
|
8850
8978
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8851
8979
|
biddingHourlyRatePercentage: number | null;
|
|
8852
8980
|
biddingFixedHourlyRate: number | null;
|
|
@@ -8856,6 +8984,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8856
8984
|
maximumBoost: number | null;
|
|
8857
8985
|
minBoost: number | null;
|
|
8858
8986
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8987
|
+
alreadyHiredAction: "skip" | "bid";
|
|
8859
8988
|
bidConfig: {
|
|
8860
8989
|
contractorName: string | null;
|
|
8861
8990
|
agencyName: string | null;
|
|
@@ -8940,6 +9069,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8940
9069
|
memberSince: string | null;
|
|
8941
9070
|
companyIndustry: string | null;
|
|
8942
9071
|
avgHourlyRatePaid: number | null;
|
|
9072
|
+
companyId: string | null;
|
|
8943
9073
|
} | null;
|
|
8944
9074
|
vendorQualifications: {
|
|
8945
9075
|
location: string | null;
|
|
@@ -9004,7 +9134,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9004
9134
|
question: string;
|
|
9005
9135
|
}[] | null;
|
|
9006
9136
|
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;
|
|
9137
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
9008
9138
|
biddingAmount: number | null;
|
|
9009
9139
|
boosted: boolean | null;
|
|
9010
9140
|
boostingAmount: number | null;
|
|
@@ -9021,7 +9151,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9021
9151
|
leadBiddingConfig: {
|
|
9022
9152
|
appliedFromQueue: boolean | null;
|
|
9023
9153
|
biddingDelayInMinutes: number | null;
|
|
9024
|
-
bidWithWarning: "
|
|
9154
|
+
bidWithWarning: "skip" | "bid";
|
|
9025
9155
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9026
9156
|
biddingHourlyRatePercentage: number | null;
|
|
9027
9157
|
biddingFixedHourlyRate: number | null;
|
|
@@ -9031,6 +9161,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9031
9161
|
maximumBoost: number | null;
|
|
9032
9162
|
minBoost: number | null;
|
|
9033
9163
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
9164
|
+
alreadyHiredAction: "skip" | "bid";
|
|
9034
9165
|
bidConfig: {
|
|
9035
9166
|
contractorName: string | null;
|
|
9036
9167
|
agencyName: string | null;
|
|
@@ -9063,7 +9194,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9063
9194
|
proposalData: {
|
|
9064
9195
|
campaignId: string;
|
|
9065
9196
|
organizationId: string;
|
|
9066
|
-
bidWithWarning: "
|
|
9197
|
+
bidWithWarning: "skip" | "bid";
|
|
9067
9198
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9068
9199
|
biddingHourlyRatePercentage: number | null;
|
|
9069
9200
|
biddingFixedHourlyRate: number | null;
|
|
@@ -9072,6 +9203,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9072
9203
|
connectsAbovePrevious: number | null;
|
|
9073
9204
|
maximumBoost: number | null;
|
|
9074
9205
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
9206
|
+
alreadyHiredAction: "skip" | "bid";
|
|
9075
9207
|
questionAnswerPairs: {
|
|
9076
9208
|
answer: string;
|
|
9077
9209
|
question: string;
|
|
@@ -9120,6 +9252,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9120
9252
|
memberSince: string | null;
|
|
9121
9253
|
companyIndustry: string | null;
|
|
9122
9254
|
avgHourlyRatePaid: number | null;
|
|
9255
|
+
companyId: string | null;
|
|
9123
9256
|
} | null;
|
|
9124
9257
|
vendorQualifications: {
|
|
9125
9258
|
location: string | null;
|
|
@@ -9184,7 +9317,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9184
9317
|
question: string;
|
|
9185
9318
|
}[] | null;
|
|
9186
9319
|
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;
|
|
9320
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
9188
9321
|
biddingAmount: number | null;
|
|
9189
9322
|
boosted: boolean | null;
|
|
9190
9323
|
boostingAmount: number | null;
|
|
@@ -9201,7 +9334,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9201
9334
|
leadBiddingConfig: {
|
|
9202
9335
|
appliedFromQueue: boolean | null;
|
|
9203
9336
|
biddingDelayInMinutes: number | null;
|
|
9204
|
-
bidWithWarning: "
|
|
9337
|
+
bidWithWarning: "skip" | "bid";
|
|
9205
9338
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9206
9339
|
biddingHourlyRatePercentage: number | null;
|
|
9207
9340
|
biddingFixedHourlyRate: number | null;
|
|
@@ -9211,6 +9344,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9211
9344
|
maximumBoost: number | null;
|
|
9212
9345
|
minBoost: number | null;
|
|
9213
9346
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
9347
|
+
alreadyHiredAction: "skip" | "bid";
|
|
9214
9348
|
bidConfig: {
|
|
9215
9349
|
contractorName: string | null;
|
|
9216
9350
|
agencyName: string | null;
|
|
@@ -9295,6 +9429,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9295
9429
|
memberSince: string | null;
|
|
9296
9430
|
companyIndustry: string | null;
|
|
9297
9431
|
avgHourlyRatePaid: number | null;
|
|
9432
|
+
companyId: string | null;
|
|
9298
9433
|
} | null;
|
|
9299
9434
|
vendorQualifications: {
|
|
9300
9435
|
location: string | null;
|
|
@@ -9359,7 +9494,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9359
9494
|
question: string;
|
|
9360
9495
|
}[] | null;
|
|
9361
9496
|
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;
|
|
9497
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
9363
9498
|
biddingAmount: number | null;
|
|
9364
9499
|
boosted: boolean | null;
|
|
9365
9500
|
boostingAmount: number | null;
|
|
@@ -9376,7 +9511,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9376
9511
|
leadBiddingConfig: {
|
|
9377
9512
|
appliedFromQueue: boolean | null;
|
|
9378
9513
|
biddingDelayInMinutes: number | null;
|
|
9379
|
-
bidWithWarning: "
|
|
9514
|
+
bidWithWarning: "skip" | "bid";
|
|
9380
9515
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9381
9516
|
biddingHourlyRatePercentage: number | null;
|
|
9382
9517
|
biddingFixedHourlyRate: number | null;
|
|
@@ -9386,6 +9521,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9386
9521
|
maximumBoost: number | null;
|
|
9387
9522
|
minBoost: number | null;
|
|
9388
9523
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
9524
|
+
alreadyHiredAction: "skip" | "bid";
|
|
9389
9525
|
bidConfig: {
|
|
9390
9526
|
contractorName: string | null;
|
|
9391
9527
|
agencyName: string | null;
|
|
@@ -9418,7 +9554,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9418
9554
|
proposalData: {
|
|
9419
9555
|
campaignId: string;
|
|
9420
9556
|
organizationId: string;
|
|
9421
|
-
bidWithWarning: "
|
|
9557
|
+
bidWithWarning: "skip" | "bid";
|
|
9422
9558
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9423
9559
|
biddingHourlyRatePercentage: number | null;
|
|
9424
9560
|
biddingFixedHourlyRate: number | null;
|
|
@@ -9427,6 +9563,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9427
9563
|
connectsAbovePrevious: number | null;
|
|
9428
9564
|
maximumBoost: number | null;
|
|
9429
9565
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
9566
|
+
alreadyHiredAction: "skip" | "bid";
|
|
9430
9567
|
questionAnswerPairs: {
|
|
9431
9568
|
answer: string;
|
|
9432
9569
|
question: string;
|
|
@@ -9475,6 +9612,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9475
9612
|
memberSince: string | null;
|
|
9476
9613
|
companyIndustry: string | null;
|
|
9477
9614
|
avgHourlyRatePaid: number | null;
|
|
9615
|
+
companyId: string | null;
|
|
9478
9616
|
} | null;
|
|
9479
9617
|
vendorQualifications: {
|
|
9480
9618
|
location: string | null;
|
|
@@ -9539,7 +9677,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9539
9677
|
question: string;
|
|
9540
9678
|
}[] | null;
|
|
9541
9679
|
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;
|
|
9680
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
9543
9681
|
biddingAmount: number | null;
|
|
9544
9682
|
boosted: boolean | null;
|
|
9545
9683
|
boostingAmount: number | null;
|
|
@@ -9556,7 +9694,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9556
9694
|
leadBiddingConfig: {
|
|
9557
9695
|
appliedFromQueue: boolean | null;
|
|
9558
9696
|
biddingDelayInMinutes: number | null;
|
|
9559
|
-
bidWithWarning: "
|
|
9697
|
+
bidWithWarning: "skip" | "bid";
|
|
9560
9698
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9561
9699
|
biddingHourlyRatePercentage: number | null;
|
|
9562
9700
|
biddingFixedHourlyRate: number | null;
|
|
@@ -9566,6 +9704,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9566
9704
|
maximumBoost: number | null;
|
|
9567
9705
|
minBoost: number | null;
|
|
9568
9706
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
9707
|
+
alreadyHiredAction: "skip" | "bid";
|
|
9569
9708
|
bidConfig: {
|
|
9570
9709
|
contractorName: string | null;
|
|
9571
9710
|
agencyName: string | null;
|
|
@@ -9682,6 +9821,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
9682
9821
|
companySize: z.ZodNullable<z.ZodString>;
|
|
9683
9822
|
enterpriseClient: z.ZodNullable<z.ZodBoolean>;
|
|
9684
9823
|
avgHourlyRatePaid: z.ZodNullable<z.ZodNumber>;
|
|
9824
|
+
companyId: z.ZodNullable<z.ZodString>;
|
|
9685
9825
|
}, "strip", z.ZodTypeAny, {
|
|
9686
9826
|
country: string | null;
|
|
9687
9827
|
region: string | null;
|
|
@@ -9700,6 +9840,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
9700
9840
|
memberSince: string | null;
|
|
9701
9841
|
companyIndustry: string | null;
|
|
9702
9842
|
avgHourlyRatePaid: number | null;
|
|
9843
|
+
companyId: string | null;
|
|
9703
9844
|
}, {
|
|
9704
9845
|
country: string | null;
|
|
9705
9846
|
region: string | null;
|
|
@@ -9718,6 +9859,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
9718
9859
|
memberSince: string | null;
|
|
9719
9860
|
companyIndustry: string | null;
|
|
9720
9861
|
avgHourlyRatePaid: number | null;
|
|
9862
|
+
companyId: string | null;
|
|
9721
9863
|
}>>;
|
|
9722
9864
|
vendorQualifications: z.ZodNullable<z.ZodObject<{
|
|
9723
9865
|
location: z.ZodNullable<z.ZodString>;
|
|
@@ -9925,7 +10067,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
9925
10067
|
question: string;
|
|
9926
10068
|
}>, "many">>;
|
|
9927
10069
|
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"]>>;
|
|
10070
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>>;
|
|
9929
10071
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
9930
10072
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
9931
10073
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -9956,6 +10098,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
9956
10098
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
9957
10099
|
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
9958
10100
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
10101
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
9959
10102
|
bidConfig: z.ZodObject<{
|
|
9960
10103
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
9961
10104
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
@@ -9972,7 +10115,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
9972
10115
|
}, "strip", z.ZodTypeAny, {
|
|
9973
10116
|
appliedFromQueue: boolean | null;
|
|
9974
10117
|
biddingDelayInMinutes: number | null;
|
|
9975
|
-
bidWithWarning: "
|
|
10118
|
+
bidWithWarning: "skip" | "bid";
|
|
9976
10119
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9977
10120
|
biddingHourlyRatePercentage: number | null;
|
|
9978
10121
|
biddingFixedHourlyRate: number | null;
|
|
@@ -9982,6 +10125,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
9982
10125
|
maximumBoost: number | null;
|
|
9983
10126
|
minBoost: number | null;
|
|
9984
10127
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
10128
|
+
alreadyHiredAction: "skip" | "bid";
|
|
9985
10129
|
bidConfig: {
|
|
9986
10130
|
contractorName: string | null;
|
|
9987
10131
|
agencyName: string | null;
|
|
@@ -9990,7 +10134,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
9990
10134
|
}, {
|
|
9991
10135
|
appliedFromQueue: boolean | null;
|
|
9992
10136
|
biddingDelayInMinutes: number | null;
|
|
9993
|
-
bidWithWarning: "
|
|
10137
|
+
bidWithWarning: "skip" | "bid";
|
|
9994
10138
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9995
10139
|
biddingHourlyRatePercentage: number | null;
|
|
9996
10140
|
biddingFixedHourlyRate: number | null;
|
|
@@ -10000,6 +10144,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10000
10144
|
maximumBoost: number | null;
|
|
10001
10145
|
minBoost: number | null;
|
|
10002
10146
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
10147
|
+
alreadyHiredAction: "skip" | "bid";
|
|
10003
10148
|
bidConfig: {
|
|
10004
10149
|
contractorName: string | null;
|
|
10005
10150
|
agencyName: string | null;
|
|
@@ -10049,6 +10194,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10049
10194
|
memberSince: string | null;
|
|
10050
10195
|
companyIndustry: string | null;
|
|
10051
10196
|
avgHourlyRatePaid: number | null;
|
|
10197
|
+
companyId: string | null;
|
|
10052
10198
|
} | null;
|
|
10053
10199
|
vendorQualifications: {
|
|
10054
10200
|
location: string | null;
|
|
@@ -10113,7 +10259,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10113
10259
|
question: string;
|
|
10114
10260
|
}[] | null;
|
|
10115
10261
|
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;
|
|
10262
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
10117
10263
|
biddingAmount: number | null;
|
|
10118
10264
|
boosted: boolean | null;
|
|
10119
10265
|
boostingAmount: number | null;
|
|
@@ -10130,7 +10276,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10130
10276
|
leadBiddingConfig: {
|
|
10131
10277
|
appliedFromQueue: boolean | null;
|
|
10132
10278
|
biddingDelayInMinutes: number | null;
|
|
10133
|
-
bidWithWarning: "
|
|
10279
|
+
bidWithWarning: "skip" | "bid";
|
|
10134
10280
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
10135
10281
|
biddingHourlyRatePercentage: number | null;
|
|
10136
10282
|
biddingFixedHourlyRate: number | null;
|
|
@@ -10140,6 +10286,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10140
10286
|
maximumBoost: number | null;
|
|
10141
10287
|
minBoost: number | null;
|
|
10142
10288
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
10289
|
+
alreadyHiredAction: "skip" | "bid";
|
|
10143
10290
|
bidConfig: {
|
|
10144
10291
|
contractorName: string | null;
|
|
10145
10292
|
agencyName: string | null;
|
|
@@ -10211,6 +10358,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10211
10358
|
memberSince: string | null;
|
|
10212
10359
|
companyIndustry: string | null;
|
|
10213
10360
|
avgHourlyRatePaid: number | null;
|
|
10361
|
+
companyId: string | null;
|
|
10214
10362
|
} | null;
|
|
10215
10363
|
vendorQualifications: {
|
|
10216
10364
|
location: string | null;
|
|
@@ -10275,7 +10423,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10275
10423
|
question: string;
|
|
10276
10424
|
}[] | null;
|
|
10277
10425
|
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;
|
|
10426
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
10279
10427
|
biddingAmount: number | null;
|
|
10280
10428
|
boosted: boolean | null;
|
|
10281
10429
|
boostingAmount: number | null;
|
|
@@ -10292,7 +10440,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10292
10440
|
leadBiddingConfig: {
|
|
10293
10441
|
appliedFromQueue: boolean | null;
|
|
10294
10442
|
biddingDelayInMinutes: number | null;
|
|
10295
|
-
bidWithWarning: "
|
|
10443
|
+
bidWithWarning: "skip" | "bid";
|
|
10296
10444
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
10297
10445
|
biddingHourlyRatePercentage: number | null;
|
|
10298
10446
|
biddingFixedHourlyRate: number | null;
|
|
@@ -10302,6 +10450,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10302
10450
|
maximumBoost: number | null;
|
|
10303
10451
|
minBoost: number | null;
|
|
10304
10452
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
10453
|
+
alreadyHiredAction: "skip" | "bid";
|
|
10305
10454
|
bidConfig: {
|
|
10306
10455
|
contractorName: string | null;
|
|
10307
10456
|
agencyName: string | null;
|
|
@@ -10378,6 +10527,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10378
10527
|
memberSince: string | null;
|
|
10379
10528
|
companyIndustry: string | null;
|
|
10380
10529
|
avgHourlyRatePaid: number | null;
|
|
10530
|
+
companyId: string | null;
|
|
10381
10531
|
} | null;
|
|
10382
10532
|
vendorQualifications: {
|
|
10383
10533
|
location: string | null;
|
|
@@ -10442,7 +10592,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10442
10592
|
question: string;
|
|
10443
10593
|
}[] | null;
|
|
10444
10594
|
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;
|
|
10595
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
10446
10596
|
biddingAmount: number | null;
|
|
10447
10597
|
boosted: boolean | null;
|
|
10448
10598
|
boostingAmount: number | null;
|
|
@@ -10459,7 +10609,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10459
10609
|
leadBiddingConfig: {
|
|
10460
10610
|
appliedFromQueue: boolean | null;
|
|
10461
10611
|
biddingDelayInMinutes: number | null;
|
|
10462
|
-
bidWithWarning: "
|
|
10612
|
+
bidWithWarning: "skip" | "bid";
|
|
10463
10613
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
10464
10614
|
biddingHourlyRatePercentage: number | null;
|
|
10465
10615
|
biddingFixedHourlyRate: number | null;
|
|
@@ -10469,6 +10619,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10469
10619
|
maximumBoost: number | null;
|
|
10470
10620
|
minBoost: number | null;
|
|
10471
10621
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
10622
|
+
alreadyHiredAction: "skip" | "bid";
|
|
10472
10623
|
bidConfig: {
|
|
10473
10624
|
contractorName: string | null;
|
|
10474
10625
|
agencyName: string | null;
|
|
@@ -10545,6 +10696,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10545
10696
|
memberSince: string | null;
|
|
10546
10697
|
companyIndustry: string | null;
|
|
10547
10698
|
avgHourlyRatePaid: number | null;
|
|
10699
|
+
companyId: string | null;
|
|
10548
10700
|
} | null;
|
|
10549
10701
|
vendorQualifications: {
|
|
10550
10702
|
location: string | null;
|
|
@@ -10609,7 +10761,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10609
10761
|
question: string;
|
|
10610
10762
|
}[] | null;
|
|
10611
10763
|
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;
|
|
10764
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
10613
10765
|
biddingAmount: number | null;
|
|
10614
10766
|
boosted: boolean | null;
|
|
10615
10767
|
boostingAmount: number | null;
|
|
@@ -10626,7 +10778,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10626
10778
|
leadBiddingConfig: {
|
|
10627
10779
|
appliedFromQueue: boolean | null;
|
|
10628
10780
|
biddingDelayInMinutes: number | null;
|
|
10629
|
-
bidWithWarning: "
|
|
10781
|
+
bidWithWarning: "skip" | "bid";
|
|
10630
10782
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
10631
10783
|
biddingHourlyRatePercentage: number | null;
|
|
10632
10784
|
biddingFixedHourlyRate: number | null;
|
|
@@ -10636,6 +10788,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10636
10788
|
maximumBoost: number | null;
|
|
10637
10789
|
minBoost: number | null;
|
|
10638
10790
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
10791
|
+
alreadyHiredAction: "skip" | "bid";
|
|
10639
10792
|
bidConfig: {
|
|
10640
10793
|
contractorName: string | null;
|
|
10641
10794
|
agencyName: string | null;
|