lancer-shared 1.2.266 → 1.2.267
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.cjs.js +23 -0
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +21 -1
- package/dist/bundle.esm.js.map +1 -1
- package/dist/schemas/agent/index.d.ts +18 -11
- package/dist/schemas/bidder/bid.d.ts +207 -121
- package/dist/schemas/bidder/exceptions/index.d.ts +3 -1
- package/dist/schemas/bidder/exceptions/job-already-hired.exception.d.ts +5 -0
- package/dist/schemas/campaign/campaign-analytics.d.ts +82 -47
- package/dist/schemas/campaign/campaign-chat-bot.d.ts +11 -11
- package/dist/schemas/campaign/campaign.d.ts +24 -15
- package/dist/schemas/lead/already-hired-action.d.ts +3 -0
- package/dist/schemas/lead/index.d.ts +72 -42
- package/dist/schemas/lead/lead-status.d.ts +7 -7
- package/dist/schemas/logger/log-event.d.ts +5 -5
- package/dist/schemas/scraper/scrape-payload.d.ts +32 -20
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -392,7 +395,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
392
395
|
question: string;
|
|
393
396
|
}>, "many">>;
|
|
394
397
|
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"]>>;
|
|
398
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>>;
|
|
396
399
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
397
400
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
398
401
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -423,6 +426,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
423
426
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
424
427
|
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
425
428
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
429
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
426
430
|
bidConfig: z.ZodObject<{
|
|
427
431
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
428
432
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
@@ -439,7 +443,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
439
443
|
}, "strip", z.ZodTypeAny, {
|
|
440
444
|
appliedFromQueue: boolean | null;
|
|
441
445
|
biddingDelayInMinutes: number | null;
|
|
442
|
-
bidWithWarning: "
|
|
446
|
+
bidWithWarning: "skip" | "bid";
|
|
443
447
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
444
448
|
biddingHourlyRatePercentage: number | null;
|
|
445
449
|
biddingFixedHourlyRate: number | null;
|
|
@@ -449,6 +453,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
449
453
|
maximumBoost: number | null;
|
|
450
454
|
minBoost: number | null;
|
|
451
455
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
456
|
+
alreadyHiredAction: "skip" | "bid";
|
|
452
457
|
bidConfig: {
|
|
453
458
|
contractorName: string | null;
|
|
454
459
|
agencyName: string | null;
|
|
@@ -457,7 +462,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
457
462
|
}, {
|
|
458
463
|
appliedFromQueue: boolean | null;
|
|
459
464
|
biddingDelayInMinutes: number | null;
|
|
460
|
-
bidWithWarning: "
|
|
465
|
+
bidWithWarning: "skip" | "bid";
|
|
461
466
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
462
467
|
biddingHourlyRatePercentage: number | null;
|
|
463
468
|
biddingFixedHourlyRate: number | null;
|
|
@@ -467,6 +472,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
467
472
|
maximumBoost: number | null;
|
|
468
473
|
minBoost: number | null;
|
|
469
474
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
475
|
+
alreadyHiredAction: "skip" | "bid";
|
|
470
476
|
bidConfig: {
|
|
471
477
|
contractorName: string | null;
|
|
472
478
|
agencyName: string | null;
|
|
@@ -580,7 +586,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
580
586
|
question: string;
|
|
581
587
|
}[] | null;
|
|
582
588
|
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;
|
|
589
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
584
590
|
biddingAmount: number | null;
|
|
585
591
|
boosted: boolean | null;
|
|
586
592
|
boostingAmount: number | null;
|
|
@@ -597,7 +603,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
597
603
|
leadBiddingConfig: {
|
|
598
604
|
appliedFromQueue: boolean | null;
|
|
599
605
|
biddingDelayInMinutes: number | null;
|
|
600
|
-
bidWithWarning: "
|
|
606
|
+
bidWithWarning: "skip" | "bid";
|
|
601
607
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
602
608
|
biddingHourlyRatePercentage: number | null;
|
|
603
609
|
biddingFixedHourlyRate: number | null;
|
|
@@ -607,6 +613,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
607
613
|
maximumBoost: number | null;
|
|
608
614
|
minBoost: number | null;
|
|
609
615
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
616
|
+
alreadyHiredAction: "skip" | "bid";
|
|
610
617
|
bidConfig: {
|
|
611
618
|
contractorName: string | null;
|
|
612
619
|
agencyName: string | null;
|
|
@@ -742,7 +749,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
742
749
|
question: string;
|
|
743
750
|
}[] | null;
|
|
744
751
|
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;
|
|
752
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
746
753
|
biddingAmount: number | null;
|
|
747
754
|
boosted: boolean | null;
|
|
748
755
|
boostingAmount: number | null;
|
|
@@ -759,7 +766,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
759
766
|
leadBiddingConfig: {
|
|
760
767
|
appliedFromQueue: boolean | null;
|
|
761
768
|
biddingDelayInMinutes: number | null;
|
|
762
|
-
bidWithWarning: "
|
|
769
|
+
bidWithWarning: "skip" | "bid";
|
|
763
770
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
764
771
|
biddingHourlyRatePercentage: number | null;
|
|
765
772
|
biddingFixedHourlyRate: number | null;
|
|
@@ -769,6 +776,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
769
776
|
maximumBoost: number | null;
|
|
770
777
|
minBoost: number | null;
|
|
771
778
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
779
|
+
alreadyHiredAction: "skip" | "bid";
|
|
772
780
|
bidConfig: {
|
|
773
781
|
contractorName: string | null;
|
|
774
782
|
agencyName: string | null;
|
|
@@ -1118,7 +1126,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1118
1126
|
question: string;
|
|
1119
1127
|
}>, "many">>;
|
|
1120
1128
|
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"]>>;
|
|
1129
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>>;
|
|
1122
1130
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
1123
1131
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
1124
1132
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1149,6 +1157,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1149
1157
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
1150
1158
|
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
1151
1159
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
1160
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
1152
1161
|
bidConfig: z.ZodObject<{
|
|
1153
1162
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
1154
1163
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
@@ -1165,7 +1174,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1165
1174
|
}, "strip", z.ZodTypeAny, {
|
|
1166
1175
|
appliedFromQueue: boolean | null;
|
|
1167
1176
|
biddingDelayInMinutes: number | null;
|
|
1168
|
-
bidWithWarning: "
|
|
1177
|
+
bidWithWarning: "skip" | "bid";
|
|
1169
1178
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1170
1179
|
biddingHourlyRatePercentage: number | null;
|
|
1171
1180
|
biddingFixedHourlyRate: number | null;
|
|
@@ -1175,6 +1184,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1175
1184
|
maximumBoost: number | null;
|
|
1176
1185
|
minBoost: number | null;
|
|
1177
1186
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1187
|
+
alreadyHiredAction: "skip" | "bid";
|
|
1178
1188
|
bidConfig: {
|
|
1179
1189
|
contractorName: string | null;
|
|
1180
1190
|
agencyName: string | null;
|
|
@@ -1183,7 +1193,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1183
1193
|
}, {
|
|
1184
1194
|
appliedFromQueue: boolean | null;
|
|
1185
1195
|
biddingDelayInMinutes: number | null;
|
|
1186
|
-
bidWithWarning: "
|
|
1196
|
+
bidWithWarning: "skip" | "bid";
|
|
1187
1197
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1188
1198
|
biddingHourlyRatePercentage: number | null;
|
|
1189
1199
|
biddingFixedHourlyRate: number | null;
|
|
@@ -1193,6 +1203,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1193
1203
|
maximumBoost: number | null;
|
|
1194
1204
|
minBoost: number | null;
|
|
1195
1205
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1206
|
+
alreadyHiredAction: "skip" | "bid";
|
|
1196
1207
|
bidConfig: {
|
|
1197
1208
|
contractorName: string | null;
|
|
1198
1209
|
agencyName: string | null;
|
|
@@ -1306,7 +1317,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1306
1317
|
question: string;
|
|
1307
1318
|
}[] | null;
|
|
1308
1319
|
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;
|
|
1320
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
1310
1321
|
biddingAmount: number | null;
|
|
1311
1322
|
boosted: boolean | null;
|
|
1312
1323
|
boostingAmount: number | null;
|
|
@@ -1323,7 +1334,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1323
1334
|
leadBiddingConfig: {
|
|
1324
1335
|
appliedFromQueue: boolean | null;
|
|
1325
1336
|
biddingDelayInMinutes: number | null;
|
|
1326
|
-
bidWithWarning: "
|
|
1337
|
+
bidWithWarning: "skip" | "bid";
|
|
1327
1338
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1328
1339
|
biddingHourlyRatePercentage: number | null;
|
|
1329
1340
|
biddingFixedHourlyRate: number | null;
|
|
@@ -1333,6 +1344,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1333
1344
|
maximumBoost: number | null;
|
|
1334
1345
|
minBoost: number | null;
|
|
1335
1346
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1347
|
+
alreadyHiredAction: "skip" | "bid";
|
|
1336
1348
|
bidConfig: {
|
|
1337
1349
|
contractorName: string | null;
|
|
1338
1350
|
agencyName: string | null;
|
|
@@ -1468,7 +1480,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1468
1480
|
question: string;
|
|
1469
1481
|
}[] | null;
|
|
1470
1482
|
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;
|
|
1483
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
1472
1484
|
biddingAmount: number | null;
|
|
1473
1485
|
boosted: boolean | null;
|
|
1474
1486
|
boostingAmount: number | null;
|
|
@@ -1485,7 +1497,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1485
1497
|
leadBiddingConfig: {
|
|
1486
1498
|
appliedFromQueue: boolean | null;
|
|
1487
1499
|
biddingDelayInMinutes: number | null;
|
|
1488
|
-
bidWithWarning: "
|
|
1500
|
+
bidWithWarning: "skip" | "bid";
|
|
1489
1501
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1490
1502
|
biddingHourlyRatePercentage: number | null;
|
|
1491
1503
|
biddingFixedHourlyRate: number | null;
|
|
@@ -1495,6 +1507,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1495
1507
|
maximumBoost: number | null;
|
|
1496
1508
|
minBoost: number | null;
|
|
1497
1509
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1510
|
+
alreadyHiredAction: "skip" | "bid";
|
|
1498
1511
|
bidConfig: {
|
|
1499
1512
|
contractorName: string | null;
|
|
1500
1513
|
agencyName: string | null;
|
|
@@ -1635,7 +1648,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1635
1648
|
question: string;
|
|
1636
1649
|
}[] | null;
|
|
1637
1650
|
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;
|
|
1651
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
1639
1652
|
biddingAmount: number | null;
|
|
1640
1653
|
boosted: boolean | null;
|
|
1641
1654
|
boostingAmount: number | null;
|
|
@@ -1652,7 +1665,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1652
1665
|
leadBiddingConfig: {
|
|
1653
1666
|
appliedFromQueue: boolean | null;
|
|
1654
1667
|
biddingDelayInMinutes: number | null;
|
|
1655
|
-
bidWithWarning: "
|
|
1668
|
+
bidWithWarning: "skip" | "bid";
|
|
1656
1669
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1657
1670
|
biddingHourlyRatePercentage: number | null;
|
|
1658
1671
|
biddingFixedHourlyRate: number | null;
|
|
@@ -1662,6 +1675,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1662
1675
|
maximumBoost: number | null;
|
|
1663
1676
|
minBoost: number | null;
|
|
1664
1677
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1678
|
+
alreadyHiredAction: "skip" | "bid";
|
|
1665
1679
|
bidConfig: {
|
|
1666
1680
|
contractorName: string | null;
|
|
1667
1681
|
agencyName: string | null;
|
|
@@ -1802,7 +1816,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1802
1816
|
question: string;
|
|
1803
1817
|
}[] | null;
|
|
1804
1818
|
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;
|
|
1819
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
1806
1820
|
biddingAmount: number | null;
|
|
1807
1821
|
boosted: boolean | null;
|
|
1808
1822
|
boostingAmount: number | null;
|
|
@@ -1819,7 +1833,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1819
1833
|
leadBiddingConfig: {
|
|
1820
1834
|
appliedFromQueue: boolean | null;
|
|
1821
1835
|
biddingDelayInMinutes: number | null;
|
|
1822
|
-
bidWithWarning: "
|
|
1836
|
+
bidWithWarning: "skip" | "bid";
|
|
1823
1837
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1824
1838
|
biddingHourlyRatePercentage: number | null;
|
|
1825
1839
|
biddingFixedHourlyRate: number | null;
|
|
@@ -1829,6 +1843,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1829
1843
|
maximumBoost: number | null;
|
|
1830
1844
|
minBoost: number | null;
|
|
1831
1845
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1846
|
+
alreadyHiredAction: "skip" | "bid";
|
|
1832
1847
|
bidConfig: {
|
|
1833
1848
|
contractorName: string | null;
|
|
1834
1849
|
agencyName: string | null;
|
|
@@ -2721,7 +2736,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2721
2736
|
question: string;
|
|
2722
2737
|
}>, "many">>;
|
|
2723
2738
|
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"]>>;
|
|
2739
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>>;
|
|
2725
2740
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
2726
2741
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
2727
2742
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -2752,6 +2767,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2752
2767
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
2753
2768
|
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
2754
2769
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
2770
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
2755
2771
|
bidConfig: z.ZodObject<{
|
|
2756
2772
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
2757
2773
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
@@ -2768,7 +2784,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2768
2784
|
}, "strip", z.ZodTypeAny, {
|
|
2769
2785
|
appliedFromQueue: boolean | null;
|
|
2770
2786
|
biddingDelayInMinutes: number | null;
|
|
2771
|
-
bidWithWarning: "
|
|
2787
|
+
bidWithWarning: "skip" | "bid";
|
|
2772
2788
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2773
2789
|
biddingHourlyRatePercentage: number | null;
|
|
2774
2790
|
biddingFixedHourlyRate: number | null;
|
|
@@ -2778,6 +2794,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2778
2794
|
maximumBoost: number | null;
|
|
2779
2795
|
minBoost: number | null;
|
|
2780
2796
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2797
|
+
alreadyHiredAction: "skip" | "bid";
|
|
2781
2798
|
bidConfig: {
|
|
2782
2799
|
contractorName: string | null;
|
|
2783
2800
|
agencyName: string | null;
|
|
@@ -2786,7 +2803,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2786
2803
|
}, {
|
|
2787
2804
|
appliedFromQueue: boolean | null;
|
|
2788
2805
|
biddingDelayInMinutes: number | null;
|
|
2789
|
-
bidWithWarning: "
|
|
2806
|
+
bidWithWarning: "skip" | "bid";
|
|
2790
2807
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2791
2808
|
biddingHourlyRatePercentage: number | null;
|
|
2792
2809
|
biddingFixedHourlyRate: number | null;
|
|
@@ -2796,6 +2813,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2796
2813
|
maximumBoost: number | null;
|
|
2797
2814
|
minBoost: number | null;
|
|
2798
2815
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2816
|
+
alreadyHiredAction: "skip" | "bid";
|
|
2799
2817
|
bidConfig: {
|
|
2800
2818
|
contractorName: string | null;
|
|
2801
2819
|
agencyName: string | null;
|
|
@@ -2909,7 +2927,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2909
2927
|
question: string;
|
|
2910
2928
|
}[] | null;
|
|
2911
2929
|
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;
|
|
2930
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
2913
2931
|
biddingAmount: number | null;
|
|
2914
2932
|
boosted: boolean | null;
|
|
2915
2933
|
boostingAmount: number | null;
|
|
@@ -2926,7 +2944,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2926
2944
|
leadBiddingConfig: {
|
|
2927
2945
|
appliedFromQueue: boolean | null;
|
|
2928
2946
|
biddingDelayInMinutes: number | null;
|
|
2929
|
-
bidWithWarning: "
|
|
2947
|
+
bidWithWarning: "skip" | "bid";
|
|
2930
2948
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2931
2949
|
biddingHourlyRatePercentage: number | null;
|
|
2932
2950
|
biddingFixedHourlyRate: number | null;
|
|
@@ -2936,6 +2954,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2936
2954
|
maximumBoost: number | null;
|
|
2937
2955
|
minBoost: number | null;
|
|
2938
2956
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2957
|
+
alreadyHiredAction: "skip" | "bid";
|
|
2939
2958
|
bidConfig: {
|
|
2940
2959
|
contractorName: string | null;
|
|
2941
2960
|
agencyName: string | null;
|
|
@@ -3071,7 +3090,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3071
3090
|
question: string;
|
|
3072
3091
|
}[] | null;
|
|
3073
3092
|
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;
|
|
3093
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
3075
3094
|
biddingAmount: number | null;
|
|
3076
3095
|
boosted: boolean | null;
|
|
3077
3096
|
boostingAmount: number | null;
|
|
@@ -3088,7 +3107,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3088
3107
|
leadBiddingConfig: {
|
|
3089
3108
|
appliedFromQueue: boolean | null;
|
|
3090
3109
|
biddingDelayInMinutes: number | null;
|
|
3091
|
-
bidWithWarning: "
|
|
3110
|
+
bidWithWarning: "skip" | "bid";
|
|
3092
3111
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3093
3112
|
biddingHourlyRatePercentage: number | null;
|
|
3094
3113
|
biddingFixedHourlyRate: number | null;
|
|
@@ -3098,6 +3117,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3098
3117
|
maximumBoost: number | null;
|
|
3099
3118
|
minBoost: number | null;
|
|
3100
3119
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
3120
|
+
alreadyHiredAction: "skip" | "bid";
|
|
3101
3121
|
bidConfig: {
|
|
3102
3122
|
contractorName: string | null;
|
|
3103
3123
|
agencyName: string | null;
|
|
@@ -3350,7 +3370,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3350
3370
|
question: string;
|
|
3351
3371
|
}[] | null;
|
|
3352
3372
|
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;
|
|
3373
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
3354
3374
|
biddingAmount: number | null;
|
|
3355
3375
|
boosted: boolean | null;
|
|
3356
3376
|
boostingAmount: number | null;
|
|
@@ -3367,7 +3387,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3367
3387
|
leadBiddingConfig: {
|
|
3368
3388
|
appliedFromQueue: boolean | null;
|
|
3369
3389
|
biddingDelayInMinutes: number | null;
|
|
3370
|
-
bidWithWarning: "
|
|
3390
|
+
bidWithWarning: "skip" | "bid";
|
|
3371
3391
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3372
3392
|
biddingHourlyRatePercentage: number | null;
|
|
3373
3393
|
biddingFixedHourlyRate: number | null;
|
|
@@ -3377,6 +3397,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3377
3397
|
maximumBoost: number | null;
|
|
3378
3398
|
minBoost: number | null;
|
|
3379
3399
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
3400
|
+
alreadyHiredAction: "skip" | "bid";
|
|
3380
3401
|
bidConfig: {
|
|
3381
3402
|
contractorName: string | null;
|
|
3382
3403
|
agencyName: string | null;
|
|
@@ -3630,7 +3651,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3630
3651
|
question: string;
|
|
3631
3652
|
}[] | null;
|
|
3632
3653
|
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;
|
|
3654
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
3634
3655
|
biddingAmount: number | null;
|
|
3635
3656
|
boosted: boolean | null;
|
|
3636
3657
|
boostingAmount: number | null;
|
|
@@ -3647,7 +3668,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3647
3668
|
leadBiddingConfig: {
|
|
3648
3669
|
appliedFromQueue: boolean | null;
|
|
3649
3670
|
biddingDelayInMinutes: number | null;
|
|
3650
|
-
bidWithWarning: "
|
|
3671
|
+
bidWithWarning: "skip" | "bid";
|
|
3651
3672
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3652
3673
|
biddingHourlyRatePercentage: number | null;
|
|
3653
3674
|
biddingFixedHourlyRate: number | null;
|
|
@@ -3657,6 +3678,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3657
3678
|
maximumBoost: number | null;
|
|
3658
3679
|
minBoost: number | null;
|
|
3659
3680
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
3681
|
+
alreadyHiredAction: "skip" | "bid";
|
|
3660
3682
|
bidConfig: {
|
|
3661
3683
|
contractorName: string | null;
|
|
3662
3684
|
agencyName: string | null;
|
|
@@ -4031,7 +4053,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4031
4053
|
question: string;
|
|
4032
4054
|
}>, "many">>;
|
|
4033
4055
|
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"]>>;
|
|
4056
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>>;
|
|
4035
4057
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
4036
4058
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
4037
4059
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -4062,6 +4084,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4062
4084
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
4063
4085
|
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
4064
4086
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
4087
|
+
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
4065
4088
|
bidConfig: z.ZodObject<{
|
|
4066
4089
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
4067
4090
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
@@ -4078,7 +4101,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4078
4101
|
}, "strip", z.ZodTypeAny, {
|
|
4079
4102
|
appliedFromQueue: boolean | null;
|
|
4080
4103
|
biddingDelayInMinutes: number | null;
|
|
4081
|
-
bidWithWarning: "
|
|
4104
|
+
bidWithWarning: "skip" | "bid";
|
|
4082
4105
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4083
4106
|
biddingHourlyRatePercentage: number | null;
|
|
4084
4107
|
biddingFixedHourlyRate: number | null;
|
|
@@ -4088,6 +4111,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4088
4111
|
maximumBoost: number | null;
|
|
4089
4112
|
minBoost: number | null;
|
|
4090
4113
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4114
|
+
alreadyHiredAction: "skip" | "bid";
|
|
4091
4115
|
bidConfig: {
|
|
4092
4116
|
contractorName: string | null;
|
|
4093
4117
|
agencyName: string | null;
|
|
@@ -4096,7 +4120,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4096
4120
|
}, {
|
|
4097
4121
|
appliedFromQueue: boolean | null;
|
|
4098
4122
|
biddingDelayInMinutes: number | null;
|
|
4099
|
-
bidWithWarning: "
|
|
4123
|
+
bidWithWarning: "skip" | "bid";
|
|
4100
4124
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4101
4125
|
biddingHourlyRatePercentage: number | null;
|
|
4102
4126
|
biddingFixedHourlyRate: number | null;
|
|
@@ -4106,6 +4130,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4106
4130
|
maximumBoost: number | null;
|
|
4107
4131
|
minBoost: number | null;
|
|
4108
4132
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4133
|
+
alreadyHiredAction: "skip" | "bid";
|
|
4109
4134
|
bidConfig: {
|
|
4110
4135
|
contractorName: string | null;
|
|
4111
4136
|
agencyName: string | null;
|
|
@@ -4219,7 +4244,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4219
4244
|
question: string;
|
|
4220
4245
|
}[] | null;
|
|
4221
4246
|
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;
|
|
4247
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
4223
4248
|
biddingAmount: number | null;
|
|
4224
4249
|
boosted: boolean | null;
|
|
4225
4250
|
boostingAmount: number | null;
|
|
@@ -4236,7 +4261,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4236
4261
|
leadBiddingConfig: {
|
|
4237
4262
|
appliedFromQueue: boolean | null;
|
|
4238
4263
|
biddingDelayInMinutes: number | null;
|
|
4239
|
-
bidWithWarning: "
|
|
4264
|
+
bidWithWarning: "skip" | "bid";
|
|
4240
4265
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4241
4266
|
biddingHourlyRatePercentage: number | null;
|
|
4242
4267
|
biddingFixedHourlyRate: number | null;
|
|
@@ -4246,6 +4271,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4246
4271
|
maximumBoost: number | null;
|
|
4247
4272
|
minBoost: number | null;
|
|
4248
4273
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4274
|
+
alreadyHiredAction: "skip" | "bid";
|
|
4249
4275
|
bidConfig: {
|
|
4250
4276
|
contractorName: string | null;
|
|
4251
4277
|
agencyName: string | null;
|
|
@@ -4381,7 +4407,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4381
4407
|
question: string;
|
|
4382
4408
|
}[] | null;
|
|
4383
4409
|
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;
|
|
4410
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
4385
4411
|
biddingAmount: number | null;
|
|
4386
4412
|
boosted: boolean | null;
|
|
4387
4413
|
boostingAmount: number | null;
|
|
@@ -4398,7 +4424,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4398
4424
|
leadBiddingConfig: {
|
|
4399
4425
|
appliedFromQueue: boolean | null;
|
|
4400
4426
|
biddingDelayInMinutes: number | null;
|
|
4401
|
-
bidWithWarning: "
|
|
4427
|
+
bidWithWarning: "skip" | "bid";
|
|
4402
4428
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4403
4429
|
biddingHourlyRatePercentage: number | null;
|
|
4404
4430
|
biddingFixedHourlyRate: number | null;
|
|
@@ -4408,6 +4434,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4408
4434
|
maximumBoost: number | null;
|
|
4409
4435
|
minBoost: number | null;
|
|
4410
4436
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4437
|
+
alreadyHiredAction: "skip" | "bid";
|
|
4411
4438
|
bidConfig: {
|
|
4412
4439
|
contractorName: string | null;
|
|
4413
4440
|
agencyName: string | null;
|
|
@@ -4558,7 +4585,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4558
4585
|
question: string;
|
|
4559
4586
|
}[] | null;
|
|
4560
4587
|
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;
|
|
4588
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
4562
4589
|
biddingAmount: number | null;
|
|
4563
4590
|
boosted: boolean | null;
|
|
4564
4591
|
boostingAmount: number | null;
|
|
@@ -4575,7 +4602,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4575
4602
|
leadBiddingConfig: {
|
|
4576
4603
|
appliedFromQueue: boolean | null;
|
|
4577
4604
|
biddingDelayInMinutes: number | null;
|
|
4578
|
-
bidWithWarning: "
|
|
4605
|
+
bidWithWarning: "skip" | "bid";
|
|
4579
4606
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4580
4607
|
biddingHourlyRatePercentage: number | null;
|
|
4581
4608
|
biddingFixedHourlyRate: number | null;
|
|
@@ -4585,6 +4612,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4585
4612
|
maximumBoost: number | null;
|
|
4586
4613
|
minBoost: number | null;
|
|
4587
4614
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4615
|
+
alreadyHiredAction: "skip" | "bid";
|
|
4588
4616
|
bidConfig: {
|
|
4589
4617
|
contractorName: string | null;
|
|
4590
4618
|
agencyName: string | null;
|
|
@@ -4727,7 +4755,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4727
4755
|
question: string;
|
|
4728
4756
|
}[] | null;
|
|
4729
4757
|
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;
|
|
4758
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "biddingScheduled" | "alreadyHired" | "won" | null;
|
|
4731
4759
|
biddingAmount: number | null;
|
|
4732
4760
|
boosted: boolean | null;
|
|
4733
4761
|
boostingAmount: number | null;
|
|
@@ -4744,7 +4772,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4744
4772
|
leadBiddingConfig: {
|
|
4745
4773
|
appliedFromQueue: boolean | null;
|
|
4746
4774
|
biddingDelayInMinutes: number | null;
|
|
4747
|
-
bidWithWarning: "
|
|
4775
|
+
bidWithWarning: "skip" | "bid";
|
|
4748
4776
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4749
4777
|
biddingHourlyRatePercentage: number | null;
|
|
4750
4778
|
biddingFixedHourlyRate: number | null;
|
|
@@ -4754,6 +4782,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4754
4782
|
maximumBoost: number | null;
|
|
4755
4783
|
minBoost: number | null;
|
|
4756
4784
|
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4785
|
+
alreadyHiredAction: "skip" | "bid";
|
|
4757
4786
|
bidConfig: {
|
|
4758
4787
|
contractorName: string | null;
|
|
4759
4788
|
agencyName: string | null;
|
|
@@ -4810,4 +4839,5 @@ export type GenerateLeadCountsRequest = z.infer<typeof generateLeadCountsRequest
|
|
|
4810
4839
|
export type GetCampaignLeadsResponse = z.infer<typeof getCampaignLeadsResponseSchema>;
|
|
4811
4840
|
export type LeadBiddingConfig = z.infer<typeof leadBiddingConfigSchema>;
|
|
4812
4841
|
export type GetCampaignLeadsStatus = z.infer<typeof getCampaignLeadsStatusEnum>;
|
|
4842
|
+
export * from './already-hired-action';
|
|
4813
4843
|
export * from './lead-status';
|