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
|
@@ -23,6 +23,7 @@ export declare const leadBiddingConfigSchema: z.ZodObject<{
|
|
|
23
23
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
24
24
|
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
25
25
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
26
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
26
27
|
bidConfig: z.ZodObject<{
|
|
27
28
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
28
29
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
@@ -39,7 +40,7 @@ export declare const leadBiddingConfigSchema: z.ZodObject<{
|
|
|
39
40
|
}, "strip", z.ZodTypeAny, {
|
|
40
41
|
appliedFromQueue: boolean | null;
|
|
41
42
|
biddingDelayInMinutes: number | null;
|
|
42
|
-
bidWithWarning: "
|
|
43
|
+
bidWithWarning: "skip" | "bid";
|
|
43
44
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
44
45
|
biddingHourlyRatePercentage: number | null;
|
|
45
46
|
biddingFixedHourlyRate: number | null;
|
|
@@ -49,6 +50,7 @@ export declare const leadBiddingConfigSchema: z.ZodObject<{
|
|
|
49
50
|
maximumBoost: number | null;
|
|
50
51
|
minBoost: number | null;
|
|
51
52
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
53
|
+
alreadyHiredAction: "skip" | "bid";
|
|
52
54
|
bidConfig: {
|
|
53
55
|
contractorName: string | null;
|
|
54
56
|
agencyName: string | null;
|
|
@@ -57,7 +59,7 @@ export declare const leadBiddingConfigSchema: z.ZodObject<{
|
|
|
57
59
|
}, {
|
|
58
60
|
appliedFromQueue: boolean | null;
|
|
59
61
|
biddingDelayInMinutes: number | null;
|
|
60
|
-
bidWithWarning: "
|
|
62
|
+
bidWithWarning: "skip" | "bid";
|
|
61
63
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
62
64
|
biddingHourlyRatePercentage: number | null;
|
|
63
65
|
biddingFixedHourlyRate: number | null;
|
|
@@ -67,6 +69,7 @@ export declare const leadBiddingConfigSchema: z.ZodObject<{
|
|
|
67
69
|
maximumBoost: number | null;
|
|
68
70
|
minBoost: number | null;
|
|
69
71
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
72
|
+
alreadyHiredAction: "skip" | "bid";
|
|
70
73
|
bidConfig: {
|
|
71
74
|
contractorName: string | null;
|
|
72
75
|
agencyName: string | null;
|
|
@@ -149,6 +152,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
149
152
|
companySize: z.ZodNullable<z.ZodString>;
|
|
150
153
|
enterpriseClient: z.ZodNullable<z.ZodBoolean>;
|
|
151
154
|
avgHourlyRatePaid: z.ZodNullable<z.ZodNumber>;
|
|
155
|
+
companyId: z.ZodNullable<z.ZodString>;
|
|
152
156
|
}, "strip", z.ZodTypeAny, {
|
|
153
157
|
country: string | null;
|
|
154
158
|
region: string | null;
|
|
@@ -167,6 +171,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
167
171
|
memberSince: string | null;
|
|
168
172
|
companyIndustry: string | null;
|
|
169
173
|
avgHourlyRatePaid: number | null;
|
|
174
|
+
companyId: string | null;
|
|
170
175
|
}, {
|
|
171
176
|
country: string | null;
|
|
172
177
|
region: string | null;
|
|
@@ -185,6 +190,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
185
190
|
memberSince: string | null;
|
|
186
191
|
companyIndustry: string | null;
|
|
187
192
|
avgHourlyRatePaid: number | null;
|
|
193
|
+
companyId: string | null;
|
|
188
194
|
}>>;
|
|
189
195
|
vendorQualifications: z.ZodNullable<z.ZodObject<{
|
|
190
196
|
location: z.ZodNullable<z.ZodString>;
|
|
@@ -392,7 +398,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
392
398
|
question: string;
|
|
393
399
|
}>, "many">>;
|
|
394
400
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
395
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "won"]>>;
|
|
401
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>>;
|
|
396
402
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
397
403
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
398
404
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -423,6 +429,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
423
429
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
424
430
|
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
425
431
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
432
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
426
433
|
bidConfig: z.ZodObject<{
|
|
427
434
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
428
435
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
@@ -439,7 +446,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
439
446
|
}, "strip", z.ZodTypeAny, {
|
|
440
447
|
appliedFromQueue: boolean | null;
|
|
441
448
|
biddingDelayInMinutes: number | null;
|
|
442
|
-
bidWithWarning: "
|
|
449
|
+
bidWithWarning: "skip" | "bid";
|
|
443
450
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
444
451
|
biddingHourlyRatePercentage: number | null;
|
|
445
452
|
biddingFixedHourlyRate: number | null;
|
|
@@ -449,6 +456,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
449
456
|
maximumBoost: number | null;
|
|
450
457
|
minBoost: number | null;
|
|
451
458
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
459
|
+
alreadyHiredAction: "skip" | "bid";
|
|
452
460
|
bidConfig: {
|
|
453
461
|
contractorName: string | null;
|
|
454
462
|
agencyName: string | null;
|
|
@@ -457,7 +465,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
457
465
|
}, {
|
|
458
466
|
appliedFromQueue: boolean | null;
|
|
459
467
|
biddingDelayInMinutes: number | null;
|
|
460
|
-
bidWithWarning: "
|
|
468
|
+
bidWithWarning: "skip" | "bid";
|
|
461
469
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
462
470
|
biddingHourlyRatePercentage: number | null;
|
|
463
471
|
biddingFixedHourlyRate: number | null;
|
|
@@ -467,6 +475,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
467
475
|
maximumBoost: number | null;
|
|
468
476
|
minBoost: number | null;
|
|
469
477
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
478
|
+
alreadyHiredAction: "skip" | "bid";
|
|
470
479
|
bidConfig: {
|
|
471
480
|
contractorName: string | null;
|
|
472
481
|
agencyName: string | null;
|
|
@@ -516,6 +525,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
516
525
|
memberSince: string | null;
|
|
517
526
|
companyIndustry: string | null;
|
|
518
527
|
avgHourlyRatePaid: number | null;
|
|
528
|
+
companyId: string | null;
|
|
519
529
|
} | null;
|
|
520
530
|
vendorQualifications: {
|
|
521
531
|
location: string | null;
|
|
@@ -580,7 +590,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
580
590
|
question: string;
|
|
581
591
|
}[] | null;
|
|
582
592
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
583
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
593
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
584
594
|
biddingAmount: number | null;
|
|
585
595
|
boosted: boolean | null;
|
|
586
596
|
boostingAmount: number | null;
|
|
@@ -597,7 +607,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
597
607
|
leadBiddingConfig: {
|
|
598
608
|
appliedFromQueue: boolean | null;
|
|
599
609
|
biddingDelayInMinutes: number | null;
|
|
600
|
-
bidWithWarning: "
|
|
610
|
+
bidWithWarning: "skip" | "bid";
|
|
601
611
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
602
612
|
biddingHourlyRatePercentage: number | null;
|
|
603
613
|
biddingFixedHourlyRate: number | null;
|
|
@@ -607,6 +617,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
607
617
|
maximumBoost: number | null;
|
|
608
618
|
minBoost: number | null;
|
|
609
619
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
620
|
+
alreadyHiredAction: "skip" | "bid";
|
|
610
621
|
bidConfig: {
|
|
611
622
|
contractorName: string | null;
|
|
612
623
|
agencyName: string | null;
|
|
@@ -678,6 +689,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
678
689
|
memberSince: string | null;
|
|
679
690
|
companyIndustry: string | null;
|
|
680
691
|
avgHourlyRatePaid: number | null;
|
|
692
|
+
companyId: string | null;
|
|
681
693
|
} | null;
|
|
682
694
|
vendorQualifications: {
|
|
683
695
|
location: string | null;
|
|
@@ -742,7 +754,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
742
754
|
question: string;
|
|
743
755
|
}[] | null;
|
|
744
756
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
745
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
757
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
746
758
|
biddingAmount: number | null;
|
|
747
759
|
boosted: boolean | null;
|
|
748
760
|
boostingAmount: number | null;
|
|
@@ -759,7 +771,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
759
771
|
leadBiddingConfig: {
|
|
760
772
|
appliedFromQueue: boolean | null;
|
|
761
773
|
biddingDelayInMinutes: number | null;
|
|
762
|
-
bidWithWarning: "
|
|
774
|
+
bidWithWarning: "skip" | "bid";
|
|
763
775
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
764
776
|
biddingHourlyRatePercentage: number | null;
|
|
765
777
|
biddingFixedHourlyRate: number | null;
|
|
@@ -769,6 +781,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
769
781
|
maximumBoost: number | null;
|
|
770
782
|
minBoost: number | null;
|
|
771
783
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
784
|
+
alreadyHiredAction: "skip" | "bid";
|
|
772
785
|
bidConfig: {
|
|
773
786
|
contractorName: string | null;
|
|
774
787
|
agencyName: string | null;
|
|
@@ -875,6 +888,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
875
888
|
companySize: z.ZodNullable<z.ZodString>;
|
|
876
889
|
enterpriseClient: z.ZodNullable<z.ZodBoolean>;
|
|
877
890
|
avgHourlyRatePaid: z.ZodNullable<z.ZodNumber>;
|
|
891
|
+
companyId: z.ZodNullable<z.ZodString>;
|
|
878
892
|
}, "strip", z.ZodTypeAny, {
|
|
879
893
|
country: string | null;
|
|
880
894
|
region: string | null;
|
|
@@ -893,6 +907,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
893
907
|
memberSince: string | null;
|
|
894
908
|
companyIndustry: string | null;
|
|
895
909
|
avgHourlyRatePaid: number | null;
|
|
910
|
+
companyId: string | null;
|
|
896
911
|
}, {
|
|
897
912
|
country: string | null;
|
|
898
913
|
region: string | null;
|
|
@@ -911,6 +926,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
911
926
|
memberSince: string | null;
|
|
912
927
|
companyIndustry: string | null;
|
|
913
928
|
avgHourlyRatePaid: number | null;
|
|
929
|
+
companyId: string | null;
|
|
914
930
|
}>>;
|
|
915
931
|
vendorQualifications: z.ZodNullable<z.ZodObject<{
|
|
916
932
|
location: z.ZodNullable<z.ZodString>;
|
|
@@ -1118,7 +1134,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1118
1134
|
question: string;
|
|
1119
1135
|
}>, "many">>;
|
|
1120
1136
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
1121
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "won"]>>;
|
|
1137
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>>;
|
|
1122
1138
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
1123
1139
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
1124
1140
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1149,6 +1165,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1149
1165
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
1150
1166
|
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
1151
1167
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
1168
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
1152
1169
|
bidConfig: z.ZodObject<{
|
|
1153
1170
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
1154
1171
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
@@ -1165,7 +1182,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1165
1182
|
}, "strip", z.ZodTypeAny, {
|
|
1166
1183
|
appliedFromQueue: boolean | null;
|
|
1167
1184
|
biddingDelayInMinutes: number | null;
|
|
1168
|
-
bidWithWarning: "
|
|
1185
|
+
bidWithWarning: "skip" | "bid";
|
|
1169
1186
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1170
1187
|
biddingHourlyRatePercentage: number | null;
|
|
1171
1188
|
biddingFixedHourlyRate: number | null;
|
|
@@ -1175,6 +1192,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1175
1192
|
maximumBoost: number | null;
|
|
1176
1193
|
minBoost: number | null;
|
|
1177
1194
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1195
|
+
alreadyHiredAction: "skip" | "bid";
|
|
1178
1196
|
bidConfig: {
|
|
1179
1197
|
contractorName: string | null;
|
|
1180
1198
|
agencyName: string | null;
|
|
@@ -1183,7 +1201,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1183
1201
|
}, {
|
|
1184
1202
|
appliedFromQueue: boolean | null;
|
|
1185
1203
|
biddingDelayInMinutes: number | null;
|
|
1186
|
-
bidWithWarning: "
|
|
1204
|
+
bidWithWarning: "skip" | "bid";
|
|
1187
1205
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1188
1206
|
biddingHourlyRatePercentage: number | null;
|
|
1189
1207
|
biddingFixedHourlyRate: number | null;
|
|
@@ -1193,6 +1211,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1193
1211
|
maximumBoost: number | null;
|
|
1194
1212
|
minBoost: number | null;
|
|
1195
1213
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1214
|
+
alreadyHiredAction: "skip" | "bid";
|
|
1196
1215
|
bidConfig: {
|
|
1197
1216
|
contractorName: string | null;
|
|
1198
1217
|
agencyName: string | null;
|
|
@@ -1242,6 +1261,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1242
1261
|
memberSince: string | null;
|
|
1243
1262
|
companyIndustry: string | null;
|
|
1244
1263
|
avgHourlyRatePaid: number | null;
|
|
1264
|
+
companyId: string | null;
|
|
1245
1265
|
} | null;
|
|
1246
1266
|
vendorQualifications: {
|
|
1247
1267
|
location: string | null;
|
|
@@ -1306,7 +1326,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1306
1326
|
question: string;
|
|
1307
1327
|
}[] | null;
|
|
1308
1328
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
1309
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
1329
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
1310
1330
|
biddingAmount: number | null;
|
|
1311
1331
|
boosted: boolean | null;
|
|
1312
1332
|
boostingAmount: number | null;
|
|
@@ -1323,7 +1343,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1323
1343
|
leadBiddingConfig: {
|
|
1324
1344
|
appliedFromQueue: boolean | null;
|
|
1325
1345
|
biddingDelayInMinutes: number | null;
|
|
1326
|
-
bidWithWarning: "
|
|
1346
|
+
bidWithWarning: "skip" | "bid";
|
|
1327
1347
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1328
1348
|
biddingHourlyRatePercentage: number | null;
|
|
1329
1349
|
biddingFixedHourlyRate: number | null;
|
|
@@ -1333,6 +1353,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1333
1353
|
maximumBoost: number | null;
|
|
1334
1354
|
minBoost: number | null;
|
|
1335
1355
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1356
|
+
alreadyHiredAction: "skip" | "bid";
|
|
1336
1357
|
bidConfig: {
|
|
1337
1358
|
contractorName: string | null;
|
|
1338
1359
|
agencyName: string | null;
|
|
@@ -1404,6 +1425,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1404
1425
|
memberSince: string | null;
|
|
1405
1426
|
companyIndustry: string | null;
|
|
1406
1427
|
avgHourlyRatePaid: number | null;
|
|
1428
|
+
companyId: string | null;
|
|
1407
1429
|
} | null;
|
|
1408
1430
|
vendorQualifications: {
|
|
1409
1431
|
location: string | null;
|
|
@@ -1468,7 +1490,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1468
1490
|
question: string;
|
|
1469
1491
|
}[] | null;
|
|
1470
1492
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
1471
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
1493
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
1472
1494
|
biddingAmount: number | null;
|
|
1473
1495
|
boosted: boolean | null;
|
|
1474
1496
|
boostingAmount: number | null;
|
|
@@ -1485,7 +1507,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1485
1507
|
leadBiddingConfig: {
|
|
1486
1508
|
appliedFromQueue: boolean | null;
|
|
1487
1509
|
biddingDelayInMinutes: number | null;
|
|
1488
|
-
bidWithWarning: "
|
|
1510
|
+
bidWithWarning: "skip" | "bid";
|
|
1489
1511
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1490
1512
|
biddingHourlyRatePercentage: number | null;
|
|
1491
1513
|
biddingFixedHourlyRate: number | null;
|
|
@@ -1495,6 +1517,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1495
1517
|
maximumBoost: number | null;
|
|
1496
1518
|
minBoost: number | null;
|
|
1497
1519
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1520
|
+
alreadyHiredAction: "skip" | "bid";
|
|
1498
1521
|
bidConfig: {
|
|
1499
1522
|
contractorName: string | null;
|
|
1500
1523
|
agencyName: string | null;
|
|
@@ -1571,6 +1594,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1571
1594
|
memberSince: string | null;
|
|
1572
1595
|
companyIndustry: string | null;
|
|
1573
1596
|
avgHourlyRatePaid: number | null;
|
|
1597
|
+
companyId: string | null;
|
|
1574
1598
|
} | null;
|
|
1575
1599
|
vendorQualifications: {
|
|
1576
1600
|
location: string | null;
|
|
@@ -1635,7 +1659,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1635
1659
|
question: string;
|
|
1636
1660
|
}[] | null;
|
|
1637
1661
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
1638
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
1662
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
1639
1663
|
biddingAmount: number | null;
|
|
1640
1664
|
boosted: boolean | null;
|
|
1641
1665
|
boostingAmount: number | null;
|
|
@@ -1652,7 +1676,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1652
1676
|
leadBiddingConfig: {
|
|
1653
1677
|
appliedFromQueue: boolean | null;
|
|
1654
1678
|
biddingDelayInMinutes: number | null;
|
|
1655
|
-
bidWithWarning: "
|
|
1679
|
+
bidWithWarning: "skip" | "bid";
|
|
1656
1680
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1657
1681
|
biddingHourlyRatePercentage: number | null;
|
|
1658
1682
|
biddingFixedHourlyRate: number | null;
|
|
@@ -1662,6 +1686,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1662
1686
|
maximumBoost: number | null;
|
|
1663
1687
|
minBoost: number | null;
|
|
1664
1688
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1689
|
+
alreadyHiredAction: "skip" | "bid";
|
|
1665
1690
|
bidConfig: {
|
|
1666
1691
|
contractorName: string | null;
|
|
1667
1692
|
agencyName: string | null;
|
|
@@ -1738,6 +1763,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1738
1763
|
memberSince: string | null;
|
|
1739
1764
|
companyIndustry: string | null;
|
|
1740
1765
|
avgHourlyRatePaid: number | null;
|
|
1766
|
+
companyId: string | null;
|
|
1741
1767
|
} | null;
|
|
1742
1768
|
vendorQualifications: {
|
|
1743
1769
|
location: string | null;
|
|
@@ -1802,7 +1828,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1802
1828
|
question: string;
|
|
1803
1829
|
}[] | null;
|
|
1804
1830
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
1805
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
1831
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
1806
1832
|
biddingAmount: number | null;
|
|
1807
1833
|
boosted: boolean | null;
|
|
1808
1834
|
boostingAmount: number | null;
|
|
@@ -1819,7 +1845,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1819
1845
|
leadBiddingConfig: {
|
|
1820
1846
|
appliedFromQueue: boolean | null;
|
|
1821
1847
|
biddingDelayInMinutes: number | null;
|
|
1822
|
-
bidWithWarning: "
|
|
1848
|
+
bidWithWarning: "skip" | "bid";
|
|
1823
1849
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1824
1850
|
biddingHourlyRatePercentage: number | null;
|
|
1825
1851
|
biddingFixedHourlyRate: number | null;
|
|
@@ -1829,6 +1855,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1829
1855
|
maximumBoost: number | null;
|
|
1830
1856
|
minBoost: number | null;
|
|
1831
1857
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1858
|
+
alreadyHiredAction: "skip" | "bid";
|
|
1832
1859
|
bidConfig: {
|
|
1833
1860
|
contractorName: string | null;
|
|
1834
1861
|
agencyName: string | null;
|
|
@@ -1956,6 +1983,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
1956
1983
|
companySize: z.ZodNullable<z.ZodString>;
|
|
1957
1984
|
enterpriseClient: z.ZodNullable<z.ZodBoolean>;
|
|
1958
1985
|
avgHourlyRatePaid: z.ZodNullable<z.ZodNumber>;
|
|
1986
|
+
companyId: z.ZodNullable<z.ZodString>;
|
|
1959
1987
|
}, "strip", z.ZodTypeAny, {
|
|
1960
1988
|
country: string | null;
|
|
1961
1989
|
region: string | null;
|
|
@@ -1974,6 +2002,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
1974
2002
|
memberSince: string | null;
|
|
1975
2003
|
companyIndustry: string | null;
|
|
1976
2004
|
avgHourlyRatePaid: number | null;
|
|
2005
|
+
companyId: string | null;
|
|
1977
2006
|
}, {
|
|
1978
2007
|
country: string | null;
|
|
1979
2008
|
region: string | null;
|
|
@@ -1992,6 +2021,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
1992
2021
|
memberSince: string | null;
|
|
1993
2022
|
companyIndustry: string | null;
|
|
1994
2023
|
avgHourlyRatePaid: number | null;
|
|
2024
|
+
companyId: string | null;
|
|
1995
2025
|
}>>;
|
|
1996
2026
|
vendorQualifications: z.ZodNullable<z.ZodObject<{
|
|
1997
2027
|
location: z.ZodNullable<z.ZodString>;
|
|
@@ -2217,6 +2247,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2217
2247
|
memberSince: string | null;
|
|
2218
2248
|
companyIndustry: string | null;
|
|
2219
2249
|
avgHourlyRatePaid: number | null;
|
|
2250
|
+
companyId: string | null;
|
|
2220
2251
|
} | null;
|
|
2221
2252
|
vendorQualifications: {
|
|
2222
2253
|
location: string | null;
|
|
@@ -2329,6 +2360,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2329
2360
|
memberSince: string | null;
|
|
2330
2361
|
companyIndustry: string | null;
|
|
2331
2362
|
avgHourlyRatePaid: number | null;
|
|
2363
|
+
companyId: string | null;
|
|
2332
2364
|
} | null;
|
|
2333
2365
|
vendorQualifications: {
|
|
2334
2366
|
location: string | null;
|
|
@@ -2478,6 +2510,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2478
2510
|
companySize: z.ZodNullable<z.ZodString>;
|
|
2479
2511
|
enterpriseClient: z.ZodNullable<z.ZodBoolean>;
|
|
2480
2512
|
avgHourlyRatePaid: z.ZodNullable<z.ZodNumber>;
|
|
2513
|
+
companyId: z.ZodNullable<z.ZodString>;
|
|
2481
2514
|
}, "strip", z.ZodTypeAny, {
|
|
2482
2515
|
country: string | null;
|
|
2483
2516
|
region: string | null;
|
|
@@ -2496,6 +2529,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2496
2529
|
memberSince: string | null;
|
|
2497
2530
|
companyIndustry: string | null;
|
|
2498
2531
|
avgHourlyRatePaid: number | null;
|
|
2532
|
+
companyId: string | null;
|
|
2499
2533
|
}, {
|
|
2500
2534
|
country: string | null;
|
|
2501
2535
|
region: string | null;
|
|
@@ -2514,6 +2548,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2514
2548
|
memberSince: string | null;
|
|
2515
2549
|
companyIndustry: string | null;
|
|
2516
2550
|
avgHourlyRatePaid: number | null;
|
|
2551
|
+
companyId: string | null;
|
|
2517
2552
|
}>>;
|
|
2518
2553
|
vendorQualifications: z.ZodNullable<z.ZodObject<{
|
|
2519
2554
|
location: z.ZodNullable<z.ZodString>;
|
|
@@ -2721,7 +2756,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2721
2756
|
question: string;
|
|
2722
2757
|
}>, "many">>;
|
|
2723
2758
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
2724
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "won"]>>;
|
|
2759
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>>;
|
|
2725
2760
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
2726
2761
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
2727
2762
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -2752,6 +2787,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2752
2787
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
2753
2788
|
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
2754
2789
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
2790
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
2755
2791
|
bidConfig: z.ZodObject<{
|
|
2756
2792
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
2757
2793
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
@@ -2768,7 +2804,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2768
2804
|
}, "strip", z.ZodTypeAny, {
|
|
2769
2805
|
appliedFromQueue: boolean | null;
|
|
2770
2806
|
biddingDelayInMinutes: number | null;
|
|
2771
|
-
bidWithWarning: "
|
|
2807
|
+
bidWithWarning: "skip" | "bid";
|
|
2772
2808
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2773
2809
|
biddingHourlyRatePercentage: number | null;
|
|
2774
2810
|
biddingFixedHourlyRate: number | null;
|
|
@@ -2778,6 +2814,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2778
2814
|
maximumBoost: number | null;
|
|
2779
2815
|
minBoost: number | null;
|
|
2780
2816
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2817
|
+
alreadyHiredAction: "skip" | "bid";
|
|
2781
2818
|
bidConfig: {
|
|
2782
2819
|
contractorName: string | null;
|
|
2783
2820
|
agencyName: string | null;
|
|
@@ -2786,7 +2823,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2786
2823
|
}, {
|
|
2787
2824
|
appliedFromQueue: boolean | null;
|
|
2788
2825
|
biddingDelayInMinutes: number | null;
|
|
2789
|
-
bidWithWarning: "
|
|
2826
|
+
bidWithWarning: "skip" | "bid";
|
|
2790
2827
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2791
2828
|
biddingHourlyRatePercentage: number | null;
|
|
2792
2829
|
biddingFixedHourlyRate: number | null;
|
|
@@ -2796,6 +2833,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2796
2833
|
maximumBoost: number | null;
|
|
2797
2834
|
minBoost: number | null;
|
|
2798
2835
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2836
|
+
alreadyHiredAction: "skip" | "bid";
|
|
2799
2837
|
bidConfig: {
|
|
2800
2838
|
contractorName: string | null;
|
|
2801
2839
|
agencyName: string | null;
|
|
@@ -2845,6 +2883,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2845
2883
|
memberSince: string | null;
|
|
2846
2884
|
companyIndustry: string | null;
|
|
2847
2885
|
avgHourlyRatePaid: number | null;
|
|
2886
|
+
companyId: string | null;
|
|
2848
2887
|
} | null;
|
|
2849
2888
|
vendorQualifications: {
|
|
2850
2889
|
location: string | null;
|
|
@@ -2909,7 +2948,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2909
2948
|
question: string;
|
|
2910
2949
|
}[] | null;
|
|
2911
2950
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
2912
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
2951
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
2913
2952
|
biddingAmount: number | null;
|
|
2914
2953
|
boosted: boolean | null;
|
|
2915
2954
|
boostingAmount: number | null;
|
|
@@ -2926,7 +2965,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2926
2965
|
leadBiddingConfig: {
|
|
2927
2966
|
appliedFromQueue: boolean | null;
|
|
2928
2967
|
biddingDelayInMinutes: number | null;
|
|
2929
|
-
bidWithWarning: "
|
|
2968
|
+
bidWithWarning: "skip" | "bid";
|
|
2930
2969
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2931
2970
|
biddingHourlyRatePercentage: number | null;
|
|
2932
2971
|
biddingFixedHourlyRate: number | null;
|
|
@@ -2936,6 +2975,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2936
2975
|
maximumBoost: number | null;
|
|
2937
2976
|
minBoost: number | null;
|
|
2938
2977
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2978
|
+
alreadyHiredAction: "skip" | "bid";
|
|
2939
2979
|
bidConfig: {
|
|
2940
2980
|
contractorName: string | null;
|
|
2941
2981
|
agencyName: string | null;
|
|
@@ -3007,6 +3047,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3007
3047
|
memberSince: string | null;
|
|
3008
3048
|
companyIndustry: string | null;
|
|
3009
3049
|
avgHourlyRatePaid: number | null;
|
|
3050
|
+
companyId: string | null;
|
|
3010
3051
|
} | null;
|
|
3011
3052
|
vendorQualifications: {
|
|
3012
3053
|
location: string | null;
|
|
@@ -3071,7 +3112,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3071
3112
|
question: string;
|
|
3072
3113
|
}[] | null;
|
|
3073
3114
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
3074
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
3115
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
3075
3116
|
biddingAmount: number | null;
|
|
3076
3117
|
boosted: boolean | null;
|
|
3077
3118
|
boostingAmount: number | null;
|
|
@@ -3088,7 +3129,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3088
3129
|
leadBiddingConfig: {
|
|
3089
3130
|
appliedFromQueue: boolean | null;
|
|
3090
3131
|
biddingDelayInMinutes: number | null;
|
|
3091
|
-
bidWithWarning: "
|
|
3132
|
+
bidWithWarning: "skip" | "bid";
|
|
3092
3133
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3093
3134
|
biddingHourlyRatePercentage: number | null;
|
|
3094
3135
|
biddingFixedHourlyRate: number | null;
|
|
@@ -3098,6 +3139,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3098
3139
|
maximumBoost: number | null;
|
|
3099
3140
|
minBoost: number | null;
|
|
3100
3141
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
3142
|
+
alreadyHiredAction: "skip" | "bid";
|
|
3101
3143
|
bidConfig: {
|
|
3102
3144
|
contractorName: string | null;
|
|
3103
3145
|
agencyName: string | null;
|
|
@@ -3170,6 +3212,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3170
3212
|
memberSince: string | null;
|
|
3171
3213
|
companyIndustry: string | null;
|
|
3172
3214
|
avgHourlyRatePaid: number | null;
|
|
3215
|
+
companyId: string | null;
|
|
3173
3216
|
} | null;
|
|
3174
3217
|
vendorQualifications: {
|
|
3175
3218
|
location: string | null;
|
|
@@ -3286,6 +3329,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3286
3329
|
memberSince: string | null;
|
|
3287
3330
|
companyIndustry: string | null;
|
|
3288
3331
|
avgHourlyRatePaid: number | null;
|
|
3332
|
+
companyId: string | null;
|
|
3289
3333
|
} | null;
|
|
3290
3334
|
vendorQualifications: {
|
|
3291
3335
|
location: string | null;
|
|
@@ -3350,7 +3394,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3350
3394
|
question: string;
|
|
3351
3395
|
}[] | null;
|
|
3352
3396
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
3353
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
3397
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
3354
3398
|
biddingAmount: number | null;
|
|
3355
3399
|
boosted: boolean | null;
|
|
3356
3400
|
boostingAmount: number | null;
|
|
@@ -3367,7 +3411,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3367
3411
|
leadBiddingConfig: {
|
|
3368
3412
|
appliedFromQueue: boolean | null;
|
|
3369
3413
|
biddingDelayInMinutes: number | null;
|
|
3370
|
-
bidWithWarning: "
|
|
3414
|
+
bidWithWarning: "skip" | "bid";
|
|
3371
3415
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3372
3416
|
biddingHourlyRatePercentage: number | null;
|
|
3373
3417
|
biddingFixedHourlyRate: number | null;
|
|
@@ -3377,6 +3421,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3377
3421
|
maximumBoost: number | null;
|
|
3378
3422
|
minBoost: number | null;
|
|
3379
3423
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
3424
|
+
alreadyHiredAction: "skip" | "bid";
|
|
3380
3425
|
bidConfig: {
|
|
3381
3426
|
contractorName: string | null;
|
|
3382
3427
|
agencyName: string | null;
|
|
@@ -3450,6 +3495,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3450
3495
|
memberSince: string | null;
|
|
3451
3496
|
companyIndustry: string | null;
|
|
3452
3497
|
avgHourlyRatePaid: number | null;
|
|
3498
|
+
companyId: string | null;
|
|
3453
3499
|
} | null;
|
|
3454
3500
|
vendorQualifications: {
|
|
3455
3501
|
location: string | null;
|
|
@@ -3566,6 +3612,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3566
3612
|
memberSince: string | null;
|
|
3567
3613
|
companyIndustry: string | null;
|
|
3568
3614
|
avgHourlyRatePaid: number | null;
|
|
3615
|
+
companyId: string | null;
|
|
3569
3616
|
} | null;
|
|
3570
3617
|
vendorQualifications: {
|
|
3571
3618
|
location: string | null;
|
|
@@ -3630,7 +3677,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3630
3677
|
question: string;
|
|
3631
3678
|
}[] | null;
|
|
3632
3679
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
3633
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
3680
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
3634
3681
|
biddingAmount: number | null;
|
|
3635
3682
|
boosted: boolean | null;
|
|
3636
3683
|
boostingAmount: number | null;
|
|
@@ -3647,7 +3694,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3647
3694
|
leadBiddingConfig: {
|
|
3648
3695
|
appliedFromQueue: boolean | null;
|
|
3649
3696
|
biddingDelayInMinutes: number | null;
|
|
3650
|
-
bidWithWarning: "
|
|
3697
|
+
bidWithWarning: "skip" | "bid";
|
|
3651
3698
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3652
3699
|
biddingHourlyRatePercentage: number | null;
|
|
3653
3700
|
biddingFixedHourlyRate: number | null;
|
|
@@ -3657,6 +3704,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3657
3704
|
maximumBoost: number | null;
|
|
3658
3705
|
minBoost: number | null;
|
|
3659
3706
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
3707
|
+
alreadyHiredAction: "skip" | "bid";
|
|
3660
3708
|
bidConfig: {
|
|
3661
3709
|
contractorName: string | null;
|
|
3662
3710
|
agencyName: string | null;
|
|
@@ -3788,6 +3836,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
3788
3836
|
companySize: z.ZodNullable<z.ZodString>;
|
|
3789
3837
|
enterpriseClient: z.ZodNullable<z.ZodBoolean>;
|
|
3790
3838
|
avgHourlyRatePaid: z.ZodNullable<z.ZodNumber>;
|
|
3839
|
+
companyId: z.ZodNullable<z.ZodString>;
|
|
3791
3840
|
}, "strip", z.ZodTypeAny, {
|
|
3792
3841
|
country: string | null;
|
|
3793
3842
|
region: string | null;
|
|
@@ -3806,6 +3855,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
3806
3855
|
memberSince: string | null;
|
|
3807
3856
|
companyIndustry: string | null;
|
|
3808
3857
|
avgHourlyRatePaid: number | null;
|
|
3858
|
+
companyId: string | null;
|
|
3809
3859
|
}, {
|
|
3810
3860
|
country: string | null;
|
|
3811
3861
|
region: string | null;
|
|
@@ -3824,6 +3874,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
3824
3874
|
memberSince: string | null;
|
|
3825
3875
|
companyIndustry: string | null;
|
|
3826
3876
|
avgHourlyRatePaid: number | null;
|
|
3877
|
+
companyId: string | null;
|
|
3827
3878
|
}>>;
|
|
3828
3879
|
vendorQualifications: z.ZodNullable<z.ZodObject<{
|
|
3829
3880
|
location: z.ZodNullable<z.ZodString>;
|
|
@@ -4031,7 +4082,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4031
4082
|
question: string;
|
|
4032
4083
|
}>, "many">>;
|
|
4033
4084
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
4034
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "won"]>>;
|
|
4085
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>>;
|
|
4035
4086
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
4036
4087
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
4037
4088
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -4062,6 +4113,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4062
4113
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
4063
4114
|
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
4064
4115
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
4116
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
4065
4117
|
bidConfig: z.ZodObject<{
|
|
4066
4118
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
4067
4119
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
@@ -4078,7 +4130,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4078
4130
|
}, "strip", z.ZodTypeAny, {
|
|
4079
4131
|
appliedFromQueue: boolean | null;
|
|
4080
4132
|
biddingDelayInMinutes: number | null;
|
|
4081
|
-
bidWithWarning: "
|
|
4133
|
+
bidWithWarning: "skip" | "bid";
|
|
4082
4134
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4083
4135
|
biddingHourlyRatePercentage: number | null;
|
|
4084
4136
|
biddingFixedHourlyRate: number | null;
|
|
@@ -4088,6 +4140,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4088
4140
|
maximumBoost: number | null;
|
|
4089
4141
|
minBoost: number | null;
|
|
4090
4142
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4143
|
+
alreadyHiredAction: "skip" | "bid";
|
|
4091
4144
|
bidConfig: {
|
|
4092
4145
|
contractorName: string | null;
|
|
4093
4146
|
agencyName: string | null;
|
|
@@ -4096,7 +4149,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4096
4149
|
}, {
|
|
4097
4150
|
appliedFromQueue: boolean | null;
|
|
4098
4151
|
biddingDelayInMinutes: number | null;
|
|
4099
|
-
bidWithWarning: "
|
|
4152
|
+
bidWithWarning: "skip" | "bid";
|
|
4100
4153
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4101
4154
|
biddingHourlyRatePercentage: number | null;
|
|
4102
4155
|
biddingFixedHourlyRate: number | null;
|
|
@@ -4106,6 +4159,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4106
4159
|
maximumBoost: number | null;
|
|
4107
4160
|
minBoost: number | null;
|
|
4108
4161
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4162
|
+
alreadyHiredAction: "skip" | "bid";
|
|
4109
4163
|
bidConfig: {
|
|
4110
4164
|
contractorName: string | null;
|
|
4111
4165
|
agencyName: string | null;
|
|
@@ -4155,6 +4209,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4155
4209
|
memberSince: string | null;
|
|
4156
4210
|
companyIndustry: string | null;
|
|
4157
4211
|
avgHourlyRatePaid: number | null;
|
|
4212
|
+
companyId: string | null;
|
|
4158
4213
|
} | null;
|
|
4159
4214
|
vendorQualifications: {
|
|
4160
4215
|
location: string | null;
|
|
@@ -4219,7 +4274,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4219
4274
|
question: string;
|
|
4220
4275
|
}[] | null;
|
|
4221
4276
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
4222
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
4277
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
4223
4278
|
biddingAmount: number | null;
|
|
4224
4279
|
boosted: boolean | null;
|
|
4225
4280
|
boostingAmount: number | null;
|
|
@@ -4236,7 +4291,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4236
4291
|
leadBiddingConfig: {
|
|
4237
4292
|
appliedFromQueue: boolean | null;
|
|
4238
4293
|
biddingDelayInMinutes: number | null;
|
|
4239
|
-
bidWithWarning: "
|
|
4294
|
+
bidWithWarning: "skip" | "bid";
|
|
4240
4295
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4241
4296
|
biddingHourlyRatePercentage: number | null;
|
|
4242
4297
|
biddingFixedHourlyRate: number | null;
|
|
@@ -4246,6 +4301,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4246
4301
|
maximumBoost: number | null;
|
|
4247
4302
|
minBoost: number | null;
|
|
4248
4303
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4304
|
+
alreadyHiredAction: "skip" | "bid";
|
|
4249
4305
|
bidConfig: {
|
|
4250
4306
|
contractorName: string | null;
|
|
4251
4307
|
agencyName: string | null;
|
|
@@ -4317,6 +4373,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4317
4373
|
memberSince: string | null;
|
|
4318
4374
|
companyIndustry: string | null;
|
|
4319
4375
|
avgHourlyRatePaid: number | null;
|
|
4376
|
+
companyId: string | null;
|
|
4320
4377
|
} | null;
|
|
4321
4378
|
vendorQualifications: {
|
|
4322
4379
|
location: string | null;
|
|
@@ -4381,7 +4438,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4381
4438
|
question: string;
|
|
4382
4439
|
}[] | null;
|
|
4383
4440
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
4384
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
4441
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
4385
4442
|
biddingAmount: number | null;
|
|
4386
4443
|
boosted: boolean | null;
|
|
4387
4444
|
boostingAmount: number | null;
|
|
@@ -4398,7 +4455,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4398
4455
|
leadBiddingConfig: {
|
|
4399
4456
|
appliedFromQueue: boolean | null;
|
|
4400
4457
|
biddingDelayInMinutes: number | null;
|
|
4401
|
-
bidWithWarning: "
|
|
4458
|
+
bidWithWarning: "skip" | "bid";
|
|
4402
4459
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4403
4460
|
biddingHourlyRatePercentage: number | null;
|
|
4404
4461
|
biddingFixedHourlyRate: number | null;
|
|
@@ -4408,6 +4465,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4408
4465
|
maximumBoost: number | null;
|
|
4409
4466
|
minBoost: number | null;
|
|
4410
4467
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4468
|
+
alreadyHiredAction: "skip" | "bid";
|
|
4411
4469
|
bidConfig: {
|
|
4412
4470
|
contractorName: string | null;
|
|
4413
4471
|
agencyName: string | null;
|
|
@@ -4494,6 +4552,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4494
4552
|
memberSince: string | null;
|
|
4495
4553
|
companyIndustry: string | null;
|
|
4496
4554
|
avgHourlyRatePaid: number | null;
|
|
4555
|
+
companyId: string | null;
|
|
4497
4556
|
} | null;
|
|
4498
4557
|
vendorQualifications: {
|
|
4499
4558
|
location: string | null;
|
|
@@ -4558,7 +4617,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4558
4617
|
question: string;
|
|
4559
4618
|
}[] | null;
|
|
4560
4619
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
4561
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
4620
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
4562
4621
|
biddingAmount: number | null;
|
|
4563
4622
|
boosted: boolean | null;
|
|
4564
4623
|
boostingAmount: number | null;
|
|
@@ -4575,7 +4634,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4575
4634
|
leadBiddingConfig: {
|
|
4576
4635
|
appliedFromQueue: boolean | null;
|
|
4577
4636
|
biddingDelayInMinutes: number | null;
|
|
4578
|
-
bidWithWarning: "
|
|
4637
|
+
bidWithWarning: "skip" | "bid";
|
|
4579
4638
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4580
4639
|
biddingHourlyRatePercentage: number | null;
|
|
4581
4640
|
biddingFixedHourlyRate: number | null;
|
|
@@ -4585,6 +4644,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4585
4644
|
maximumBoost: number | null;
|
|
4586
4645
|
minBoost: number | null;
|
|
4587
4646
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4647
|
+
alreadyHiredAction: "skip" | "bid";
|
|
4588
4648
|
bidConfig: {
|
|
4589
4649
|
contractorName: string | null;
|
|
4590
4650
|
agencyName: string | null;
|
|
@@ -4663,6 +4723,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4663
4723
|
memberSince: string | null;
|
|
4664
4724
|
companyIndustry: string | null;
|
|
4665
4725
|
avgHourlyRatePaid: number | null;
|
|
4726
|
+
companyId: string | null;
|
|
4666
4727
|
} | null;
|
|
4667
4728
|
vendorQualifications: {
|
|
4668
4729
|
location: string | null;
|
|
@@ -4727,7 +4788,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4727
4788
|
question: string;
|
|
4728
4789
|
}[] | null;
|
|
4729
4790
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
4730
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "won" | null;
|
|
4791
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
4731
4792
|
biddingAmount: number | null;
|
|
4732
4793
|
boosted: boolean | null;
|
|
4733
4794
|
boostingAmount: number | null;
|
|
@@ -4744,7 +4805,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4744
4805
|
leadBiddingConfig: {
|
|
4745
4806
|
appliedFromQueue: boolean | null;
|
|
4746
4807
|
biddingDelayInMinutes: number | null;
|
|
4747
|
-
bidWithWarning: "
|
|
4808
|
+
bidWithWarning: "skip" | "bid";
|
|
4748
4809
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4749
4810
|
biddingHourlyRatePercentage: number | null;
|
|
4750
4811
|
biddingFixedHourlyRate: number | null;
|
|
@@ -4754,6 +4815,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4754
4815
|
maximumBoost: number | null;
|
|
4755
4816
|
minBoost: number | null;
|
|
4756
4817
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4818
|
+
alreadyHiredAction: "skip" | "bid";
|
|
4757
4819
|
bidConfig: {
|
|
4758
4820
|
contractorName: string | null;
|
|
4759
4821
|
agencyName: string | null;
|
|
@@ -4810,4 +4872,5 @@ export type GenerateLeadCountsRequest = z.infer<typeof generateLeadCountsRequest
|
|
|
4810
4872
|
export type GetCampaignLeadsResponse = z.infer<typeof getCampaignLeadsResponseSchema>;
|
|
4811
4873
|
export type LeadBiddingConfig = z.infer<typeof leadBiddingConfigSchema>;
|
|
4812
4874
|
export type GetCampaignLeadsStatus = z.infer<typeof getCampaignLeadsStatusEnum>;
|
|
4875
|
+
export * from './already-hired-action';
|
|
4813
4876
|
export * from './lead-status';
|