lancer-shared 1.2.261 → 1.2.262
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.cjs.js +37 -0
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +38 -3
- package/dist/bundle.esm.js.map +1 -1
- package/dist/constants/routes.d.ts +1 -0
- package/dist/schemas/agent/index.d.ts +160 -13
- package/dist/schemas/bidder/bid.d.ts +1631 -255
- package/dist/schemas/campaign/campaign-analytics.d.ts +605 -29
- package/dist/schemas/campaign/campaign.d.ts +120 -120
- package/dist/schemas/lead/index.d.ts +646 -46
- package/dist/schemas/lead/lead-status.d.ts +7 -7
- package/dist/schemas/logger/log-event.d.ts +31 -17
- package/dist/schemas/scraper/scrape-payload.d.ts +224 -80
- package/package.json +1 -1
|
@@ -321,7 +321,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
321
321
|
question: string;
|
|
322
322
|
}>, "many">>;
|
|
323
323
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
324
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "won"]>>;
|
|
324
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingProcessing", "won"]>>;
|
|
325
325
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
326
326
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
327
327
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -332,11 +332,75 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
332
332
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
333
333
|
inQueue: z.ZodNullable<z.ZodBoolean>;
|
|
334
334
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
335
|
+
checkFeedbackStatusCreatedAt: z.ZodNullable<z.ZodNumber>;
|
|
335
336
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
336
337
|
feedbackCheckTaskId: z.ZodNullable<z.ZodString>;
|
|
337
338
|
bidDecision: z.ZodNullable<z.ZodEnum<["proceeded", "rejected"]>>;
|
|
338
339
|
rejectedFeedback: z.ZodNullable<z.ZodString>;
|
|
339
340
|
applicationId: z.ZodNullable<z.ZodString>;
|
|
341
|
+
leadBiddingConfig: z.ZodNullable<z.ZodObject<{
|
|
342
|
+
appliedFromQueue: z.ZodNullable<z.ZodBoolean>;
|
|
343
|
+
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
344
|
+
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
345
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
346
|
+
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
347
|
+
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
348
|
+
boostingEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
349
|
+
boostDownToNthPlace: z.ZodNullable<z.ZodNumber>;
|
|
350
|
+
connectsAbovePrevious: z.ZodNullable<z.ZodNumber>;
|
|
351
|
+
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
352
|
+
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
353
|
+
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
354
|
+
bidConfig: z.ZodObject<{
|
|
355
|
+
agencyName: z.ZodNullable<z.ZodString>;
|
|
356
|
+
contractorName: z.ZodNullable<z.ZodString>;
|
|
357
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
358
|
+
}, "strip", z.ZodTypeAny, {
|
|
359
|
+
contractorName: string | null;
|
|
360
|
+
agencyName: string | null;
|
|
361
|
+
specialisedProfile: string | null;
|
|
362
|
+
}, {
|
|
363
|
+
contractorName: string | null;
|
|
364
|
+
agencyName: string | null;
|
|
365
|
+
specialisedProfile: string | null;
|
|
366
|
+
}>;
|
|
367
|
+
}, "strip", z.ZodTypeAny, {
|
|
368
|
+
appliedFromQueue: boolean | null;
|
|
369
|
+
biddingDelayInMinutes: number | null;
|
|
370
|
+
bidWithWarning: "bid" | "skip";
|
|
371
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
372
|
+
biddingHourlyRatePercentage: number | null;
|
|
373
|
+
biddingFixedHourlyRate: number | null;
|
|
374
|
+
boostingEnabled: boolean | null;
|
|
375
|
+
boostDownToNthPlace: number | null;
|
|
376
|
+
connectsAbovePrevious: number | null;
|
|
377
|
+
maximumBoost: number | null;
|
|
378
|
+
minBoost: number | null;
|
|
379
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
380
|
+
bidConfig: {
|
|
381
|
+
contractorName: string | null;
|
|
382
|
+
agencyName: string | null;
|
|
383
|
+
specialisedProfile: string | null;
|
|
384
|
+
};
|
|
385
|
+
}, {
|
|
386
|
+
appliedFromQueue: boolean | null;
|
|
387
|
+
biddingDelayInMinutes: number | null;
|
|
388
|
+
bidWithWarning: "bid" | "skip";
|
|
389
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
390
|
+
biddingHourlyRatePercentage: number | null;
|
|
391
|
+
biddingFixedHourlyRate: number | null;
|
|
392
|
+
boostingEnabled: boolean | null;
|
|
393
|
+
boostDownToNthPlace: number | null;
|
|
394
|
+
connectsAbovePrevious: number | null;
|
|
395
|
+
maximumBoost: number | null;
|
|
396
|
+
minBoost: number | null;
|
|
397
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
398
|
+
bidConfig: {
|
|
399
|
+
contractorName: string | null;
|
|
400
|
+
agencyName: string | null;
|
|
401
|
+
specialisedProfile: string | null;
|
|
402
|
+
};
|
|
403
|
+
}>>;
|
|
340
404
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
341
405
|
id: string | null;
|
|
342
406
|
title: string | null;
|
|
@@ -432,6 +496,8 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
432
496
|
} | null;
|
|
433
497
|
activityUpdates: 2 | 1 | 3 | null;
|
|
434
498
|
scrapedAt: number | null;
|
|
499
|
+
biddingDelayInMinutes: number | null;
|
|
500
|
+
specialisedProfile: string | null;
|
|
435
501
|
jobId: string;
|
|
436
502
|
suitabilityRating: number | null;
|
|
437
503
|
suitabilityReason: string | null;
|
|
@@ -441,20 +507,38 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
441
507
|
question: string;
|
|
442
508
|
}[] | null;
|
|
443
509
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
444
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
510
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
445
511
|
biddingAmount: number | null;
|
|
446
512
|
boosted: boolean | null;
|
|
447
513
|
boostingAmount: number | null;
|
|
448
514
|
boostedForPlace: number | null;
|
|
449
|
-
specialisedProfile: string | null;
|
|
450
515
|
biddedAt: number | null;
|
|
451
516
|
biddingTaskScheduled: boolean | null;
|
|
452
517
|
scheduledBiddingTime: number | null;
|
|
453
|
-
|
|
518
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
454
519
|
feedbackCheckTaskId: string | null;
|
|
455
520
|
bidDecision: "rejected" | "proceeded" | null;
|
|
456
521
|
rejectedFeedback: string | null;
|
|
457
522
|
applicationId: string | null;
|
|
523
|
+
leadBiddingConfig: {
|
|
524
|
+
appliedFromQueue: boolean | null;
|
|
525
|
+
biddingDelayInMinutes: number | null;
|
|
526
|
+
bidWithWarning: "bid" | "skip";
|
|
527
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
528
|
+
biddingHourlyRatePercentage: number | null;
|
|
529
|
+
biddingFixedHourlyRate: number | null;
|
|
530
|
+
boostingEnabled: boolean | null;
|
|
531
|
+
boostDownToNthPlace: number | null;
|
|
532
|
+
connectsAbovePrevious: number | null;
|
|
533
|
+
maximumBoost: number | null;
|
|
534
|
+
minBoost: number | null;
|
|
535
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
536
|
+
bidConfig: {
|
|
537
|
+
contractorName: string | null;
|
|
538
|
+
agencyName: string | null;
|
|
539
|
+
specialisedProfile: string | null;
|
|
540
|
+
};
|
|
541
|
+
} | null;
|
|
458
542
|
activity?: Partial<Record<"4h" | "24h", {
|
|
459
543
|
updatedAt: number | null;
|
|
460
544
|
unansweredInvites: number | null;
|
|
@@ -572,6 +656,8 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
572
656
|
} | null;
|
|
573
657
|
activityUpdates: 2 | 1 | 3 | null;
|
|
574
658
|
scrapedAt: number | null;
|
|
659
|
+
biddingDelayInMinutes: number | null;
|
|
660
|
+
specialisedProfile: string | null;
|
|
575
661
|
jobId: string;
|
|
576
662
|
suitabilityRating: number | null;
|
|
577
663
|
suitabilityReason: string | null;
|
|
@@ -581,20 +667,38 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
581
667
|
question: string;
|
|
582
668
|
}[] | null;
|
|
583
669
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
584
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
670
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
585
671
|
biddingAmount: number | null;
|
|
586
672
|
boosted: boolean | null;
|
|
587
673
|
boostingAmount: number | null;
|
|
588
674
|
boostedForPlace: number | null;
|
|
589
|
-
specialisedProfile: string | null;
|
|
590
675
|
biddedAt: number | null;
|
|
591
676
|
biddingTaskScheduled: boolean | null;
|
|
592
677
|
scheduledBiddingTime: number | null;
|
|
593
|
-
|
|
678
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
594
679
|
feedbackCheckTaskId: string | null;
|
|
595
680
|
bidDecision: "rejected" | "proceeded" | null;
|
|
596
681
|
rejectedFeedback: string | null;
|
|
597
682
|
applicationId: string | null;
|
|
683
|
+
leadBiddingConfig: {
|
|
684
|
+
appliedFromQueue: boolean | null;
|
|
685
|
+
biddingDelayInMinutes: number | null;
|
|
686
|
+
bidWithWarning: "bid" | "skip";
|
|
687
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
688
|
+
biddingHourlyRatePercentage: number | null;
|
|
689
|
+
biddingFixedHourlyRate: number | null;
|
|
690
|
+
boostingEnabled: boolean | null;
|
|
691
|
+
boostDownToNthPlace: number | null;
|
|
692
|
+
connectsAbovePrevious: number | null;
|
|
693
|
+
maximumBoost: number | null;
|
|
694
|
+
minBoost: number | null;
|
|
695
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
696
|
+
bidConfig: {
|
|
697
|
+
contractorName: string | null;
|
|
698
|
+
agencyName: string | null;
|
|
699
|
+
specialisedProfile: string | null;
|
|
700
|
+
};
|
|
701
|
+
} | null;
|
|
598
702
|
activity?: Partial<Record<"4h" | "24h", {
|
|
599
703
|
updatedAt: number | null;
|
|
600
704
|
unansweredInvites: number | null;
|
|
@@ -646,6 +750,15 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
646
750
|
}, "strip", z.ZodTypeAny, {
|
|
647
751
|
campaignId: string;
|
|
648
752
|
organizationId: string;
|
|
753
|
+
bidWithWarning: "bid" | "skip";
|
|
754
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
755
|
+
biddingHourlyRatePercentage: number | null;
|
|
756
|
+
biddingFixedHourlyRate: number | null;
|
|
757
|
+
boostingEnabled: boolean;
|
|
758
|
+
boostDownToNthPlace: number | null;
|
|
759
|
+
connectsAbovePrevious: number | null;
|
|
760
|
+
maximumBoost: number | null;
|
|
761
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
649
762
|
questionAnswerPairs: {
|
|
650
763
|
answer: string;
|
|
651
764
|
question: string;
|
|
@@ -746,6 +859,8 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
746
859
|
} | null;
|
|
747
860
|
activityUpdates: 2 | 1 | 3 | null;
|
|
748
861
|
scrapedAt: number | null;
|
|
862
|
+
biddingDelayInMinutes: number | null;
|
|
863
|
+
specialisedProfile: string | null;
|
|
749
864
|
jobId: string;
|
|
750
865
|
suitabilityRating: number | null;
|
|
751
866
|
suitabilityReason: string | null;
|
|
@@ -755,20 +870,38 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
755
870
|
question: string;
|
|
756
871
|
}[] | null;
|
|
757
872
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
758
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
873
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
759
874
|
biddingAmount: number | null;
|
|
760
875
|
boosted: boolean | null;
|
|
761
876
|
boostingAmount: number | null;
|
|
762
877
|
boostedForPlace: number | null;
|
|
763
|
-
specialisedProfile: string | null;
|
|
764
878
|
biddedAt: number | null;
|
|
765
879
|
biddingTaskScheduled: boolean | null;
|
|
766
880
|
scheduledBiddingTime: number | null;
|
|
767
|
-
|
|
881
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
768
882
|
feedbackCheckTaskId: string | null;
|
|
769
883
|
bidDecision: "rejected" | "proceeded" | null;
|
|
770
884
|
rejectedFeedback: string | null;
|
|
771
885
|
applicationId: string | null;
|
|
886
|
+
leadBiddingConfig: {
|
|
887
|
+
appliedFromQueue: boolean | null;
|
|
888
|
+
biddingDelayInMinutes: number | null;
|
|
889
|
+
bidWithWarning: "bid" | "skip";
|
|
890
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
891
|
+
biddingHourlyRatePercentage: number | null;
|
|
892
|
+
biddingFixedHourlyRate: number | null;
|
|
893
|
+
boostingEnabled: boolean | null;
|
|
894
|
+
boostDownToNthPlace: number | null;
|
|
895
|
+
connectsAbovePrevious: number | null;
|
|
896
|
+
maximumBoost: number | null;
|
|
897
|
+
minBoost: number | null;
|
|
898
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
899
|
+
bidConfig: {
|
|
900
|
+
contractorName: string | null;
|
|
901
|
+
agencyName: string | null;
|
|
902
|
+
specialisedProfile: string | null;
|
|
903
|
+
};
|
|
904
|
+
} | null;
|
|
772
905
|
activity?: Partial<Record<"4h" | "24h", {
|
|
773
906
|
updatedAt: number | null;
|
|
774
907
|
unansweredInvites: number | null;
|
|
@@ -792,15 +925,6 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
792
925
|
proposalId?: string | undefined;
|
|
793
926
|
wonAmount?: number | undefined;
|
|
794
927
|
};
|
|
795
|
-
boostingEnabled: boolean;
|
|
796
|
-
maximumBoost: number | null;
|
|
797
|
-
boostDownToNthPlace: number | null;
|
|
798
|
-
connectsAbovePrevious: number | null;
|
|
799
|
-
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
800
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
801
|
-
biddingFixedHourlyRate: number | null;
|
|
802
|
-
biddingHourlyRatePercentage: number | null;
|
|
803
|
-
bidWithWarning: "bid" | "skip";
|
|
804
928
|
specialisedProfileOptions: string[];
|
|
805
929
|
minimumBoost: number | null;
|
|
806
930
|
isHourlyRate: boolean;
|
|
@@ -809,6 +933,15 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
809
933
|
}, {
|
|
810
934
|
campaignId: string;
|
|
811
935
|
organizationId: string;
|
|
936
|
+
bidWithWarning: "bid" | "skip";
|
|
937
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
938
|
+
biddingHourlyRatePercentage: number | null;
|
|
939
|
+
biddingFixedHourlyRate: number | null;
|
|
940
|
+
boostingEnabled: boolean;
|
|
941
|
+
boostDownToNthPlace: number | null;
|
|
942
|
+
connectsAbovePrevious: number | null;
|
|
943
|
+
maximumBoost: number | null;
|
|
944
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
812
945
|
questionAnswerPairs: {
|
|
813
946
|
answer: string;
|
|
814
947
|
question: string;
|
|
@@ -909,6 +1042,8 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
909
1042
|
} | null;
|
|
910
1043
|
activityUpdates: 2 | 1 | 3 | null;
|
|
911
1044
|
scrapedAt: number | null;
|
|
1045
|
+
biddingDelayInMinutes: number | null;
|
|
1046
|
+
specialisedProfile: string | null;
|
|
912
1047
|
jobId: string;
|
|
913
1048
|
suitabilityRating: number | null;
|
|
914
1049
|
suitabilityReason: string | null;
|
|
@@ -918,20 +1053,38 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
918
1053
|
question: string;
|
|
919
1054
|
}[] | null;
|
|
920
1055
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
921
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
1056
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
922
1057
|
biddingAmount: number | null;
|
|
923
1058
|
boosted: boolean | null;
|
|
924
1059
|
boostingAmount: number | null;
|
|
925
1060
|
boostedForPlace: number | null;
|
|
926
|
-
specialisedProfile: string | null;
|
|
927
1061
|
biddedAt: number | null;
|
|
928
1062
|
biddingTaskScheduled: boolean | null;
|
|
929
1063
|
scheduledBiddingTime: number | null;
|
|
930
|
-
|
|
1064
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
931
1065
|
feedbackCheckTaskId: string | null;
|
|
932
1066
|
bidDecision: "rejected" | "proceeded" | null;
|
|
933
1067
|
rejectedFeedback: string | null;
|
|
934
1068
|
applicationId: string | null;
|
|
1069
|
+
leadBiddingConfig: {
|
|
1070
|
+
appliedFromQueue: boolean | null;
|
|
1071
|
+
biddingDelayInMinutes: number | null;
|
|
1072
|
+
bidWithWarning: "bid" | "skip";
|
|
1073
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1074
|
+
biddingHourlyRatePercentage: number | null;
|
|
1075
|
+
biddingFixedHourlyRate: number | null;
|
|
1076
|
+
boostingEnabled: boolean | null;
|
|
1077
|
+
boostDownToNthPlace: number | null;
|
|
1078
|
+
connectsAbovePrevious: number | null;
|
|
1079
|
+
maximumBoost: number | null;
|
|
1080
|
+
minBoost: number | null;
|
|
1081
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1082
|
+
bidConfig: {
|
|
1083
|
+
contractorName: string | null;
|
|
1084
|
+
agencyName: string | null;
|
|
1085
|
+
specialisedProfile: string | null;
|
|
1086
|
+
};
|
|
1087
|
+
} | null;
|
|
935
1088
|
activity?: Partial<Record<"4h" | "24h", {
|
|
936
1089
|
updatedAt: number | null;
|
|
937
1090
|
unansweredInvites: number | null;
|
|
@@ -955,15 +1108,6 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
955
1108
|
proposalId?: string | undefined;
|
|
956
1109
|
wonAmount?: number | undefined;
|
|
957
1110
|
};
|
|
958
|
-
boostingEnabled: boolean;
|
|
959
|
-
maximumBoost: number | null;
|
|
960
|
-
boostDownToNthPlace: number | null;
|
|
961
|
-
connectsAbovePrevious: number | null;
|
|
962
|
-
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
963
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
964
|
-
biddingFixedHourlyRate: number | null;
|
|
965
|
-
biddingHourlyRatePercentage: number | null;
|
|
966
|
-
bidWithWarning: "bid" | "skip";
|
|
967
1111
|
specialisedProfileOptions: string[];
|
|
968
1112
|
minimumBoost: number | null;
|
|
969
1113
|
isHourlyRate: boolean;
|
|
@@ -1291,7 +1435,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1291
1435
|
question: string;
|
|
1292
1436
|
}>, "many">>;
|
|
1293
1437
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
1294
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "won"]>>;
|
|
1438
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingProcessing", "won"]>>;
|
|
1295
1439
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
1296
1440
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
1297
1441
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1302,11 +1446,75 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1302
1446
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
1303
1447
|
inQueue: z.ZodNullable<z.ZodBoolean>;
|
|
1304
1448
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
1449
|
+
checkFeedbackStatusCreatedAt: z.ZodNullable<z.ZodNumber>;
|
|
1305
1450
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
1306
1451
|
feedbackCheckTaskId: z.ZodNullable<z.ZodString>;
|
|
1307
1452
|
bidDecision: z.ZodNullable<z.ZodEnum<["proceeded", "rejected"]>>;
|
|
1308
1453
|
rejectedFeedback: z.ZodNullable<z.ZodString>;
|
|
1309
1454
|
applicationId: z.ZodNullable<z.ZodString>;
|
|
1455
|
+
leadBiddingConfig: z.ZodNullable<z.ZodObject<{
|
|
1456
|
+
appliedFromQueue: z.ZodNullable<z.ZodBoolean>;
|
|
1457
|
+
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
1458
|
+
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
1459
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
1460
|
+
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
1461
|
+
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
1462
|
+
boostingEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
1463
|
+
boostDownToNthPlace: z.ZodNullable<z.ZodNumber>;
|
|
1464
|
+
connectsAbovePrevious: z.ZodNullable<z.ZodNumber>;
|
|
1465
|
+
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
1466
|
+
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
1467
|
+
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
1468
|
+
bidConfig: z.ZodObject<{
|
|
1469
|
+
agencyName: z.ZodNullable<z.ZodString>;
|
|
1470
|
+
contractorName: z.ZodNullable<z.ZodString>;
|
|
1471
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
1472
|
+
}, "strip", z.ZodTypeAny, {
|
|
1473
|
+
contractorName: string | null;
|
|
1474
|
+
agencyName: string | null;
|
|
1475
|
+
specialisedProfile: string | null;
|
|
1476
|
+
}, {
|
|
1477
|
+
contractorName: string | null;
|
|
1478
|
+
agencyName: string | null;
|
|
1479
|
+
specialisedProfile: string | null;
|
|
1480
|
+
}>;
|
|
1481
|
+
}, "strip", z.ZodTypeAny, {
|
|
1482
|
+
appliedFromQueue: boolean | null;
|
|
1483
|
+
biddingDelayInMinutes: number | null;
|
|
1484
|
+
bidWithWarning: "bid" | "skip";
|
|
1485
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1486
|
+
biddingHourlyRatePercentage: number | null;
|
|
1487
|
+
biddingFixedHourlyRate: number | null;
|
|
1488
|
+
boostingEnabled: boolean | null;
|
|
1489
|
+
boostDownToNthPlace: number | null;
|
|
1490
|
+
connectsAbovePrevious: number | null;
|
|
1491
|
+
maximumBoost: number | null;
|
|
1492
|
+
minBoost: number | null;
|
|
1493
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1494
|
+
bidConfig: {
|
|
1495
|
+
contractorName: string | null;
|
|
1496
|
+
agencyName: string | null;
|
|
1497
|
+
specialisedProfile: string | null;
|
|
1498
|
+
};
|
|
1499
|
+
}, {
|
|
1500
|
+
appliedFromQueue: boolean | null;
|
|
1501
|
+
biddingDelayInMinutes: number | null;
|
|
1502
|
+
bidWithWarning: "bid" | "skip";
|
|
1503
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1504
|
+
biddingHourlyRatePercentage: number | null;
|
|
1505
|
+
biddingFixedHourlyRate: number | null;
|
|
1506
|
+
boostingEnabled: boolean | null;
|
|
1507
|
+
boostDownToNthPlace: number | null;
|
|
1508
|
+
connectsAbovePrevious: number | null;
|
|
1509
|
+
maximumBoost: number | null;
|
|
1510
|
+
minBoost: number | null;
|
|
1511
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1512
|
+
bidConfig: {
|
|
1513
|
+
contractorName: string | null;
|
|
1514
|
+
agencyName: string | null;
|
|
1515
|
+
specialisedProfile: string | null;
|
|
1516
|
+
};
|
|
1517
|
+
}>>;
|
|
1310
1518
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
1311
1519
|
id: string | null;
|
|
1312
1520
|
title: string | null;
|
|
@@ -1402,6 +1610,8 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1402
1610
|
} | null;
|
|
1403
1611
|
activityUpdates: 2 | 1 | 3 | null;
|
|
1404
1612
|
scrapedAt: number | null;
|
|
1613
|
+
biddingDelayInMinutes: number | null;
|
|
1614
|
+
specialisedProfile: string | null;
|
|
1405
1615
|
jobId: string;
|
|
1406
1616
|
suitabilityRating: number | null;
|
|
1407
1617
|
suitabilityReason: string | null;
|
|
@@ -1411,20 +1621,38 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1411
1621
|
question: string;
|
|
1412
1622
|
}[] | null;
|
|
1413
1623
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
1414
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
1624
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
1415
1625
|
biddingAmount: number | null;
|
|
1416
1626
|
boosted: boolean | null;
|
|
1417
1627
|
boostingAmount: number | null;
|
|
1418
1628
|
boostedForPlace: number | null;
|
|
1419
|
-
specialisedProfile: string | null;
|
|
1420
1629
|
biddedAt: number | null;
|
|
1421
1630
|
biddingTaskScheduled: boolean | null;
|
|
1422
1631
|
scheduledBiddingTime: number | null;
|
|
1423
|
-
|
|
1632
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
1424
1633
|
feedbackCheckTaskId: string | null;
|
|
1425
1634
|
bidDecision: "rejected" | "proceeded" | null;
|
|
1426
1635
|
rejectedFeedback: string | null;
|
|
1427
1636
|
applicationId: string | null;
|
|
1637
|
+
leadBiddingConfig: {
|
|
1638
|
+
appliedFromQueue: boolean | null;
|
|
1639
|
+
biddingDelayInMinutes: number | null;
|
|
1640
|
+
bidWithWarning: "bid" | "skip";
|
|
1641
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1642
|
+
biddingHourlyRatePercentage: number | null;
|
|
1643
|
+
biddingFixedHourlyRate: number | null;
|
|
1644
|
+
boostingEnabled: boolean | null;
|
|
1645
|
+
boostDownToNthPlace: number | null;
|
|
1646
|
+
connectsAbovePrevious: number | null;
|
|
1647
|
+
maximumBoost: number | null;
|
|
1648
|
+
minBoost: number | null;
|
|
1649
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1650
|
+
bidConfig: {
|
|
1651
|
+
contractorName: string | null;
|
|
1652
|
+
agencyName: string | null;
|
|
1653
|
+
specialisedProfile: string | null;
|
|
1654
|
+
};
|
|
1655
|
+
} | null;
|
|
1428
1656
|
activity?: Partial<Record<"4h" | "24h", {
|
|
1429
1657
|
updatedAt: number | null;
|
|
1430
1658
|
unansweredInvites: number | null;
|
|
@@ -1542,6 +1770,8 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1542
1770
|
} | null;
|
|
1543
1771
|
activityUpdates: 2 | 1 | 3 | null;
|
|
1544
1772
|
scrapedAt: number | null;
|
|
1773
|
+
biddingDelayInMinutes: number | null;
|
|
1774
|
+
specialisedProfile: string | null;
|
|
1545
1775
|
jobId: string;
|
|
1546
1776
|
suitabilityRating: number | null;
|
|
1547
1777
|
suitabilityReason: string | null;
|
|
@@ -1551,20 +1781,38 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1551
1781
|
question: string;
|
|
1552
1782
|
}[] | null;
|
|
1553
1783
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
1554
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
1784
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
1555
1785
|
biddingAmount: number | null;
|
|
1556
1786
|
boosted: boolean | null;
|
|
1557
1787
|
boostingAmount: number | null;
|
|
1558
1788
|
boostedForPlace: number | null;
|
|
1559
|
-
specialisedProfile: string | null;
|
|
1560
1789
|
biddedAt: number | null;
|
|
1561
1790
|
biddingTaskScheduled: boolean | null;
|
|
1562
1791
|
scheduledBiddingTime: number | null;
|
|
1563
|
-
|
|
1792
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
1564
1793
|
feedbackCheckTaskId: string | null;
|
|
1565
1794
|
bidDecision: "rejected" | "proceeded" | null;
|
|
1566
1795
|
rejectedFeedback: string | null;
|
|
1567
1796
|
applicationId: string | null;
|
|
1797
|
+
leadBiddingConfig: {
|
|
1798
|
+
appliedFromQueue: boolean | null;
|
|
1799
|
+
biddingDelayInMinutes: number | null;
|
|
1800
|
+
bidWithWarning: "bid" | "skip";
|
|
1801
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1802
|
+
biddingHourlyRatePercentage: number | null;
|
|
1803
|
+
biddingFixedHourlyRate: number | null;
|
|
1804
|
+
boostingEnabled: boolean | null;
|
|
1805
|
+
boostDownToNthPlace: number | null;
|
|
1806
|
+
connectsAbovePrevious: number | null;
|
|
1807
|
+
maximumBoost: number | null;
|
|
1808
|
+
minBoost: number | null;
|
|
1809
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1810
|
+
bidConfig: {
|
|
1811
|
+
contractorName: string | null;
|
|
1812
|
+
agencyName: string | null;
|
|
1813
|
+
specialisedProfile: string | null;
|
|
1814
|
+
};
|
|
1815
|
+
} | null;
|
|
1568
1816
|
activity?: Partial<Record<"4h" | "24h", {
|
|
1569
1817
|
updatedAt: number | null;
|
|
1570
1818
|
unansweredInvites: number | null;
|
|
@@ -1616,6 +1864,15 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1616
1864
|
}, "strip", z.ZodTypeAny, {
|
|
1617
1865
|
campaignId: string;
|
|
1618
1866
|
organizationId: string;
|
|
1867
|
+
bidWithWarning: "bid" | "skip";
|
|
1868
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1869
|
+
biddingHourlyRatePercentage: number | null;
|
|
1870
|
+
biddingFixedHourlyRate: number | null;
|
|
1871
|
+
boostingEnabled: boolean;
|
|
1872
|
+
boostDownToNthPlace: number | null;
|
|
1873
|
+
connectsAbovePrevious: number | null;
|
|
1874
|
+
maximumBoost: number | null;
|
|
1875
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1619
1876
|
questionAnswerPairs: {
|
|
1620
1877
|
answer: string;
|
|
1621
1878
|
question: string;
|
|
@@ -1716,6 +1973,8 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1716
1973
|
} | null;
|
|
1717
1974
|
activityUpdates: 2 | 1 | 3 | null;
|
|
1718
1975
|
scrapedAt: number | null;
|
|
1976
|
+
biddingDelayInMinutes: number | null;
|
|
1977
|
+
specialisedProfile: string | null;
|
|
1719
1978
|
jobId: string;
|
|
1720
1979
|
suitabilityRating: number | null;
|
|
1721
1980
|
suitabilityReason: string | null;
|
|
@@ -1725,20 +1984,38 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1725
1984
|
question: string;
|
|
1726
1985
|
}[] | null;
|
|
1727
1986
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
1728
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
1987
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
1729
1988
|
biddingAmount: number | null;
|
|
1730
1989
|
boosted: boolean | null;
|
|
1731
1990
|
boostingAmount: number | null;
|
|
1732
1991
|
boostedForPlace: number | null;
|
|
1733
|
-
specialisedProfile: string | null;
|
|
1734
1992
|
biddedAt: number | null;
|
|
1735
1993
|
biddingTaskScheduled: boolean | null;
|
|
1736
1994
|
scheduledBiddingTime: number | null;
|
|
1737
|
-
|
|
1995
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
1738
1996
|
feedbackCheckTaskId: string | null;
|
|
1739
1997
|
bidDecision: "rejected" | "proceeded" | null;
|
|
1740
1998
|
rejectedFeedback: string | null;
|
|
1741
1999
|
applicationId: string | null;
|
|
2000
|
+
leadBiddingConfig: {
|
|
2001
|
+
appliedFromQueue: boolean | null;
|
|
2002
|
+
biddingDelayInMinutes: number | null;
|
|
2003
|
+
bidWithWarning: "bid" | "skip";
|
|
2004
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2005
|
+
biddingHourlyRatePercentage: number | null;
|
|
2006
|
+
biddingFixedHourlyRate: number | null;
|
|
2007
|
+
boostingEnabled: boolean | null;
|
|
2008
|
+
boostDownToNthPlace: number | null;
|
|
2009
|
+
connectsAbovePrevious: number | null;
|
|
2010
|
+
maximumBoost: number | null;
|
|
2011
|
+
minBoost: number | null;
|
|
2012
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2013
|
+
bidConfig: {
|
|
2014
|
+
contractorName: string | null;
|
|
2015
|
+
agencyName: string | null;
|
|
2016
|
+
specialisedProfile: string | null;
|
|
2017
|
+
};
|
|
2018
|
+
} | null;
|
|
1742
2019
|
activity?: Partial<Record<"4h" | "24h", {
|
|
1743
2020
|
updatedAt: number | null;
|
|
1744
2021
|
unansweredInvites: number | null;
|
|
@@ -1762,15 +2039,6 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1762
2039
|
proposalId?: string | undefined;
|
|
1763
2040
|
wonAmount?: number | undefined;
|
|
1764
2041
|
};
|
|
1765
|
-
boostingEnabled: boolean;
|
|
1766
|
-
maximumBoost: number | null;
|
|
1767
|
-
boostDownToNthPlace: number | null;
|
|
1768
|
-
connectsAbovePrevious: number | null;
|
|
1769
|
-
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1770
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1771
|
-
biddingFixedHourlyRate: number | null;
|
|
1772
|
-
biddingHourlyRatePercentage: number | null;
|
|
1773
|
-
bidWithWarning: "bid" | "skip";
|
|
1774
2042
|
specialisedProfileOptions: string[];
|
|
1775
2043
|
minimumBoost: number | null;
|
|
1776
2044
|
isHourlyRate: boolean;
|
|
@@ -1779,6 +2047,15 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1779
2047
|
}, {
|
|
1780
2048
|
campaignId: string;
|
|
1781
2049
|
organizationId: string;
|
|
2050
|
+
bidWithWarning: "bid" | "skip";
|
|
2051
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2052
|
+
biddingHourlyRatePercentage: number | null;
|
|
2053
|
+
biddingFixedHourlyRate: number | null;
|
|
2054
|
+
boostingEnabled: boolean;
|
|
2055
|
+
boostDownToNthPlace: number | null;
|
|
2056
|
+
connectsAbovePrevious: number | null;
|
|
2057
|
+
maximumBoost: number | null;
|
|
2058
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1782
2059
|
questionAnswerPairs: {
|
|
1783
2060
|
answer: string;
|
|
1784
2061
|
question: string;
|
|
@@ -1879,6 +2156,8 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1879
2156
|
} | null;
|
|
1880
2157
|
activityUpdates: 2 | 1 | 3 | null;
|
|
1881
2158
|
scrapedAt: number | null;
|
|
2159
|
+
biddingDelayInMinutes: number | null;
|
|
2160
|
+
specialisedProfile: string | null;
|
|
1882
2161
|
jobId: string;
|
|
1883
2162
|
suitabilityRating: number | null;
|
|
1884
2163
|
suitabilityReason: string | null;
|
|
@@ -1888,20 +2167,38 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1888
2167
|
question: string;
|
|
1889
2168
|
}[] | null;
|
|
1890
2169
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
1891
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
2170
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
1892
2171
|
biddingAmount: number | null;
|
|
1893
2172
|
boosted: boolean | null;
|
|
1894
2173
|
boostingAmount: number | null;
|
|
1895
2174
|
boostedForPlace: number | null;
|
|
1896
|
-
specialisedProfile: string | null;
|
|
1897
2175
|
biddedAt: number | null;
|
|
1898
2176
|
biddingTaskScheduled: boolean | null;
|
|
1899
2177
|
scheduledBiddingTime: number | null;
|
|
1900
|
-
|
|
2178
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
1901
2179
|
feedbackCheckTaskId: string | null;
|
|
1902
2180
|
bidDecision: "rejected" | "proceeded" | null;
|
|
1903
2181
|
rejectedFeedback: string | null;
|
|
1904
2182
|
applicationId: string | null;
|
|
2183
|
+
leadBiddingConfig: {
|
|
2184
|
+
appliedFromQueue: boolean | null;
|
|
2185
|
+
biddingDelayInMinutes: number | null;
|
|
2186
|
+
bidWithWarning: "bid" | "skip";
|
|
2187
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2188
|
+
biddingHourlyRatePercentage: number | null;
|
|
2189
|
+
biddingFixedHourlyRate: number | null;
|
|
2190
|
+
boostingEnabled: boolean | null;
|
|
2191
|
+
boostDownToNthPlace: number | null;
|
|
2192
|
+
connectsAbovePrevious: number | null;
|
|
2193
|
+
maximumBoost: number | null;
|
|
2194
|
+
minBoost: number | null;
|
|
2195
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2196
|
+
bidConfig: {
|
|
2197
|
+
contractorName: string | null;
|
|
2198
|
+
agencyName: string | null;
|
|
2199
|
+
specialisedProfile: string | null;
|
|
2200
|
+
};
|
|
2201
|
+
} | null;
|
|
1905
2202
|
activity?: Partial<Record<"4h" | "24h", {
|
|
1906
2203
|
updatedAt: number | null;
|
|
1907
2204
|
unansweredInvites: number | null;
|
|
@@ -1925,15 +2222,6 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1925
2222
|
proposalId?: string | undefined;
|
|
1926
2223
|
wonAmount?: number | undefined;
|
|
1927
2224
|
};
|
|
1928
|
-
boostingEnabled: boolean;
|
|
1929
|
-
maximumBoost: number | null;
|
|
1930
|
-
boostDownToNthPlace: number | null;
|
|
1931
|
-
connectsAbovePrevious: number | null;
|
|
1932
|
-
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1933
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1934
|
-
biddingFixedHourlyRate: number | null;
|
|
1935
|
-
biddingHourlyRatePercentage: number | null;
|
|
1936
|
-
bidWithWarning: "bid" | "skip";
|
|
1937
2225
|
specialisedProfileOptions: string[];
|
|
1938
2226
|
minimumBoost: number | null;
|
|
1939
2227
|
isHourlyRate: boolean;
|
|
@@ -2261,7 +2549,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2261
2549
|
question: string;
|
|
2262
2550
|
}>, "many">>;
|
|
2263
2551
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
2264
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "won"]>>;
|
|
2552
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingProcessing", "won"]>>;
|
|
2265
2553
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
2266
2554
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
2267
2555
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -2272,11 +2560,75 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2272
2560
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
2273
2561
|
inQueue: z.ZodNullable<z.ZodBoolean>;
|
|
2274
2562
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
2563
|
+
checkFeedbackStatusCreatedAt: z.ZodNullable<z.ZodNumber>;
|
|
2275
2564
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
2276
2565
|
feedbackCheckTaskId: z.ZodNullable<z.ZodString>;
|
|
2277
2566
|
bidDecision: z.ZodNullable<z.ZodEnum<["proceeded", "rejected"]>>;
|
|
2278
2567
|
rejectedFeedback: z.ZodNullable<z.ZodString>;
|
|
2279
2568
|
applicationId: z.ZodNullable<z.ZodString>;
|
|
2569
|
+
leadBiddingConfig: z.ZodNullable<z.ZodObject<{
|
|
2570
|
+
appliedFromQueue: z.ZodNullable<z.ZodBoolean>;
|
|
2571
|
+
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
2572
|
+
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
2573
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
2574
|
+
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
2575
|
+
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
2576
|
+
boostingEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
2577
|
+
boostDownToNthPlace: z.ZodNullable<z.ZodNumber>;
|
|
2578
|
+
connectsAbovePrevious: z.ZodNullable<z.ZodNumber>;
|
|
2579
|
+
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
2580
|
+
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
2581
|
+
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
2582
|
+
bidConfig: z.ZodObject<{
|
|
2583
|
+
agencyName: z.ZodNullable<z.ZodString>;
|
|
2584
|
+
contractorName: z.ZodNullable<z.ZodString>;
|
|
2585
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
2586
|
+
}, "strip", z.ZodTypeAny, {
|
|
2587
|
+
contractorName: string | null;
|
|
2588
|
+
agencyName: string | null;
|
|
2589
|
+
specialisedProfile: string | null;
|
|
2590
|
+
}, {
|
|
2591
|
+
contractorName: string | null;
|
|
2592
|
+
agencyName: string | null;
|
|
2593
|
+
specialisedProfile: string | null;
|
|
2594
|
+
}>;
|
|
2595
|
+
}, "strip", z.ZodTypeAny, {
|
|
2596
|
+
appliedFromQueue: boolean | null;
|
|
2597
|
+
biddingDelayInMinutes: number | null;
|
|
2598
|
+
bidWithWarning: "bid" | "skip";
|
|
2599
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2600
|
+
biddingHourlyRatePercentage: number | null;
|
|
2601
|
+
biddingFixedHourlyRate: number | null;
|
|
2602
|
+
boostingEnabled: boolean | null;
|
|
2603
|
+
boostDownToNthPlace: number | null;
|
|
2604
|
+
connectsAbovePrevious: number | null;
|
|
2605
|
+
maximumBoost: number | null;
|
|
2606
|
+
minBoost: number | null;
|
|
2607
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2608
|
+
bidConfig: {
|
|
2609
|
+
contractorName: string | null;
|
|
2610
|
+
agencyName: string | null;
|
|
2611
|
+
specialisedProfile: string | null;
|
|
2612
|
+
};
|
|
2613
|
+
}, {
|
|
2614
|
+
appliedFromQueue: boolean | null;
|
|
2615
|
+
biddingDelayInMinutes: number | null;
|
|
2616
|
+
bidWithWarning: "bid" | "skip";
|
|
2617
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2618
|
+
biddingHourlyRatePercentage: number | null;
|
|
2619
|
+
biddingFixedHourlyRate: number | null;
|
|
2620
|
+
boostingEnabled: boolean | null;
|
|
2621
|
+
boostDownToNthPlace: number | null;
|
|
2622
|
+
connectsAbovePrevious: number | null;
|
|
2623
|
+
maximumBoost: number | null;
|
|
2624
|
+
minBoost: number | null;
|
|
2625
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2626
|
+
bidConfig: {
|
|
2627
|
+
contractorName: string | null;
|
|
2628
|
+
agencyName: string | null;
|
|
2629
|
+
specialisedProfile: string | null;
|
|
2630
|
+
};
|
|
2631
|
+
}>>;
|
|
2280
2632
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
2281
2633
|
id: string | null;
|
|
2282
2634
|
title: string | null;
|
|
@@ -2372,6 +2724,8 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2372
2724
|
} | null;
|
|
2373
2725
|
activityUpdates: 2 | 1 | 3 | null;
|
|
2374
2726
|
scrapedAt: number | null;
|
|
2727
|
+
biddingDelayInMinutes: number | null;
|
|
2728
|
+
specialisedProfile: string | null;
|
|
2375
2729
|
jobId: string;
|
|
2376
2730
|
suitabilityRating: number | null;
|
|
2377
2731
|
suitabilityReason: string | null;
|
|
@@ -2381,20 +2735,38 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2381
2735
|
question: string;
|
|
2382
2736
|
}[] | null;
|
|
2383
2737
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
2384
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
2738
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
2385
2739
|
biddingAmount: number | null;
|
|
2386
2740
|
boosted: boolean | null;
|
|
2387
2741
|
boostingAmount: number | null;
|
|
2388
2742
|
boostedForPlace: number | null;
|
|
2389
|
-
specialisedProfile: string | null;
|
|
2390
2743
|
biddedAt: number | null;
|
|
2391
2744
|
biddingTaskScheduled: boolean | null;
|
|
2392
2745
|
scheduledBiddingTime: number | null;
|
|
2393
|
-
|
|
2746
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
2394
2747
|
feedbackCheckTaskId: string | null;
|
|
2395
2748
|
bidDecision: "rejected" | "proceeded" | null;
|
|
2396
2749
|
rejectedFeedback: string | null;
|
|
2397
2750
|
applicationId: string | null;
|
|
2751
|
+
leadBiddingConfig: {
|
|
2752
|
+
appliedFromQueue: boolean | null;
|
|
2753
|
+
biddingDelayInMinutes: number | null;
|
|
2754
|
+
bidWithWarning: "bid" | "skip";
|
|
2755
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2756
|
+
biddingHourlyRatePercentage: number | null;
|
|
2757
|
+
biddingFixedHourlyRate: number | null;
|
|
2758
|
+
boostingEnabled: boolean | null;
|
|
2759
|
+
boostDownToNthPlace: number | null;
|
|
2760
|
+
connectsAbovePrevious: number | null;
|
|
2761
|
+
maximumBoost: number | null;
|
|
2762
|
+
minBoost: number | null;
|
|
2763
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2764
|
+
bidConfig: {
|
|
2765
|
+
contractorName: string | null;
|
|
2766
|
+
agencyName: string | null;
|
|
2767
|
+
specialisedProfile: string | null;
|
|
2768
|
+
};
|
|
2769
|
+
} | null;
|
|
2398
2770
|
activity?: Partial<Record<"4h" | "24h", {
|
|
2399
2771
|
updatedAt: number | null;
|
|
2400
2772
|
unansweredInvites: number | null;
|
|
@@ -2512,6 +2884,8 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2512
2884
|
} | null;
|
|
2513
2885
|
activityUpdates: 2 | 1 | 3 | null;
|
|
2514
2886
|
scrapedAt: number | null;
|
|
2887
|
+
biddingDelayInMinutes: number | null;
|
|
2888
|
+
specialisedProfile: string | null;
|
|
2515
2889
|
jobId: string;
|
|
2516
2890
|
suitabilityRating: number | null;
|
|
2517
2891
|
suitabilityReason: string | null;
|
|
@@ -2521,20 +2895,38 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2521
2895
|
question: string;
|
|
2522
2896
|
}[] | null;
|
|
2523
2897
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
2524
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
2898
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
2525
2899
|
biddingAmount: number | null;
|
|
2526
2900
|
boosted: boolean | null;
|
|
2527
2901
|
boostingAmount: number | null;
|
|
2528
2902
|
boostedForPlace: number | null;
|
|
2529
|
-
specialisedProfile: string | null;
|
|
2530
2903
|
biddedAt: number | null;
|
|
2531
2904
|
biddingTaskScheduled: boolean | null;
|
|
2532
2905
|
scheduledBiddingTime: number | null;
|
|
2533
|
-
|
|
2906
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
2534
2907
|
feedbackCheckTaskId: string | null;
|
|
2535
2908
|
bidDecision: "rejected" | "proceeded" | null;
|
|
2536
2909
|
rejectedFeedback: string | null;
|
|
2537
2910
|
applicationId: string | null;
|
|
2911
|
+
leadBiddingConfig: {
|
|
2912
|
+
appliedFromQueue: boolean | null;
|
|
2913
|
+
biddingDelayInMinutes: number | null;
|
|
2914
|
+
bidWithWarning: "bid" | "skip";
|
|
2915
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2916
|
+
biddingHourlyRatePercentage: number | null;
|
|
2917
|
+
biddingFixedHourlyRate: number | null;
|
|
2918
|
+
boostingEnabled: boolean | null;
|
|
2919
|
+
boostDownToNthPlace: number | null;
|
|
2920
|
+
connectsAbovePrevious: number | null;
|
|
2921
|
+
maximumBoost: number | null;
|
|
2922
|
+
minBoost: number | null;
|
|
2923
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2924
|
+
bidConfig: {
|
|
2925
|
+
contractorName: string | null;
|
|
2926
|
+
agencyName: string | null;
|
|
2927
|
+
specialisedProfile: string | null;
|
|
2928
|
+
};
|
|
2929
|
+
} | null;
|
|
2538
2930
|
activity?: Partial<Record<"4h" | "24h", {
|
|
2539
2931
|
updatedAt: number | null;
|
|
2540
2932
|
unansweredInvites: number | null;
|
|
@@ -2592,6 +2984,15 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2592
2984
|
organizationId: string;
|
|
2593
2985
|
contractorName: string;
|
|
2594
2986
|
agencyName: string;
|
|
2987
|
+
bidWithWarning: "bid" | "skip";
|
|
2988
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2989
|
+
biddingHourlyRatePercentage: number | null;
|
|
2990
|
+
biddingFixedHourlyRate: number | null;
|
|
2991
|
+
boostingEnabled: boolean;
|
|
2992
|
+
boostDownToNthPlace: number | null;
|
|
2993
|
+
connectsAbovePrevious: number | null;
|
|
2994
|
+
maximumBoost: number | null;
|
|
2995
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2595
2996
|
questionAnswerPairs: {
|
|
2596
2997
|
answer: string;
|
|
2597
2998
|
question: string;
|
|
@@ -2692,6 +3093,8 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2692
3093
|
} | null;
|
|
2693
3094
|
activityUpdates: 2 | 1 | 3 | null;
|
|
2694
3095
|
scrapedAt: number | null;
|
|
3096
|
+
biddingDelayInMinutes: number | null;
|
|
3097
|
+
specialisedProfile: string | null;
|
|
2695
3098
|
jobId: string;
|
|
2696
3099
|
suitabilityRating: number | null;
|
|
2697
3100
|
suitabilityReason: string | null;
|
|
@@ -2701,20 +3104,38 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2701
3104
|
question: string;
|
|
2702
3105
|
}[] | null;
|
|
2703
3106
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
2704
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
3107
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
2705
3108
|
biddingAmount: number | null;
|
|
2706
3109
|
boosted: boolean | null;
|
|
2707
3110
|
boostingAmount: number | null;
|
|
2708
3111
|
boostedForPlace: number | null;
|
|
2709
|
-
specialisedProfile: string | null;
|
|
2710
3112
|
biddedAt: number | null;
|
|
2711
3113
|
biddingTaskScheduled: boolean | null;
|
|
2712
3114
|
scheduledBiddingTime: number | null;
|
|
2713
|
-
|
|
3115
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
2714
3116
|
feedbackCheckTaskId: string | null;
|
|
2715
3117
|
bidDecision: "rejected" | "proceeded" | null;
|
|
2716
3118
|
rejectedFeedback: string | null;
|
|
2717
3119
|
applicationId: string | null;
|
|
3120
|
+
leadBiddingConfig: {
|
|
3121
|
+
appliedFromQueue: boolean | null;
|
|
3122
|
+
biddingDelayInMinutes: number | null;
|
|
3123
|
+
bidWithWarning: "bid" | "skip";
|
|
3124
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3125
|
+
biddingHourlyRatePercentage: number | null;
|
|
3126
|
+
biddingFixedHourlyRate: number | null;
|
|
3127
|
+
boostingEnabled: boolean | null;
|
|
3128
|
+
boostDownToNthPlace: number | null;
|
|
3129
|
+
connectsAbovePrevious: number | null;
|
|
3130
|
+
maximumBoost: number | null;
|
|
3131
|
+
minBoost: number | null;
|
|
3132
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
3133
|
+
bidConfig: {
|
|
3134
|
+
contractorName: string | null;
|
|
3135
|
+
agencyName: string | null;
|
|
3136
|
+
specialisedProfile: string | null;
|
|
3137
|
+
};
|
|
3138
|
+
} | null;
|
|
2718
3139
|
activity?: Partial<Record<"4h" | "24h", {
|
|
2719
3140
|
updatedAt: number | null;
|
|
2720
3141
|
unansweredInvites: number | null;
|
|
@@ -2738,15 +3159,6 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2738
3159
|
proposalId?: string | undefined;
|
|
2739
3160
|
wonAmount?: number | undefined;
|
|
2740
3161
|
};
|
|
2741
|
-
boostingEnabled: boolean;
|
|
2742
|
-
maximumBoost: number | null;
|
|
2743
|
-
boostDownToNthPlace: number | null;
|
|
2744
|
-
connectsAbovePrevious: number | null;
|
|
2745
|
-
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2746
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2747
|
-
biddingFixedHourlyRate: number | null;
|
|
2748
|
-
biddingHourlyRatePercentage: number | null;
|
|
2749
|
-
bidWithWarning: "bid" | "skip";
|
|
2750
3162
|
specialisedProfileOptions: string[];
|
|
2751
3163
|
minimumBoost: number | null;
|
|
2752
3164
|
isHourlyRate: boolean;
|
|
@@ -2758,6 +3170,15 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2758
3170
|
organizationId: string;
|
|
2759
3171
|
contractorName: string;
|
|
2760
3172
|
agencyName: string;
|
|
3173
|
+
bidWithWarning: "bid" | "skip";
|
|
3174
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3175
|
+
biddingHourlyRatePercentage: number | null;
|
|
3176
|
+
biddingFixedHourlyRate: number | null;
|
|
3177
|
+
boostingEnabled: boolean;
|
|
3178
|
+
boostDownToNthPlace: number | null;
|
|
3179
|
+
connectsAbovePrevious: number | null;
|
|
3180
|
+
maximumBoost: number | null;
|
|
3181
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2761
3182
|
questionAnswerPairs: {
|
|
2762
3183
|
answer: string;
|
|
2763
3184
|
question: string;
|
|
@@ -2858,6 +3279,8 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2858
3279
|
} | null;
|
|
2859
3280
|
activityUpdates: 2 | 1 | 3 | null;
|
|
2860
3281
|
scrapedAt: number | null;
|
|
3282
|
+
biddingDelayInMinutes: number | null;
|
|
3283
|
+
specialisedProfile: string | null;
|
|
2861
3284
|
jobId: string;
|
|
2862
3285
|
suitabilityRating: number | null;
|
|
2863
3286
|
suitabilityReason: string | null;
|
|
@@ -2867,20 +3290,38 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2867
3290
|
question: string;
|
|
2868
3291
|
}[] | null;
|
|
2869
3292
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
2870
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
3293
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
2871
3294
|
biddingAmount: number | null;
|
|
2872
3295
|
boosted: boolean | null;
|
|
2873
3296
|
boostingAmount: number | null;
|
|
2874
3297
|
boostedForPlace: number | null;
|
|
2875
|
-
specialisedProfile: string | null;
|
|
2876
3298
|
biddedAt: number | null;
|
|
2877
3299
|
biddingTaskScheduled: boolean | null;
|
|
2878
3300
|
scheduledBiddingTime: number | null;
|
|
2879
|
-
|
|
3301
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
2880
3302
|
feedbackCheckTaskId: string | null;
|
|
2881
3303
|
bidDecision: "rejected" | "proceeded" | null;
|
|
2882
3304
|
rejectedFeedback: string | null;
|
|
2883
3305
|
applicationId: string | null;
|
|
3306
|
+
leadBiddingConfig: {
|
|
3307
|
+
appliedFromQueue: boolean | null;
|
|
3308
|
+
biddingDelayInMinutes: number | null;
|
|
3309
|
+
bidWithWarning: "bid" | "skip";
|
|
3310
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3311
|
+
biddingHourlyRatePercentage: number | null;
|
|
3312
|
+
biddingFixedHourlyRate: number | null;
|
|
3313
|
+
boostingEnabled: boolean | null;
|
|
3314
|
+
boostDownToNthPlace: number | null;
|
|
3315
|
+
connectsAbovePrevious: number | null;
|
|
3316
|
+
maximumBoost: number | null;
|
|
3317
|
+
minBoost: number | null;
|
|
3318
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
3319
|
+
bidConfig: {
|
|
3320
|
+
contractorName: string | null;
|
|
3321
|
+
agencyName: string | null;
|
|
3322
|
+
specialisedProfile: string | null;
|
|
3323
|
+
};
|
|
3324
|
+
} | null;
|
|
2884
3325
|
activity?: Partial<Record<"4h" | "24h", {
|
|
2885
3326
|
updatedAt: number | null;
|
|
2886
3327
|
unansweredInvites: number | null;
|
|
@@ -2904,15 +3345,6 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2904
3345
|
proposalId?: string | undefined;
|
|
2905
3346
|
wonAmount?: number | undefined;
|
|
2906
3347
|
};
|
|
2907
|
-
boostingEnabled: boolean;
|
|
2908
|
-
maximumBoost: number | null;
|
|
2909
|
-
boostDownToNthPlace: number | null;
|
|
2910
|
-
connectsAbovePrevious: number | null;
|
|
2911
|
-
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2912
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2913
|
-
biddingFixedHourlyRate: number | null;
|
|
2914
|
-
biddingHourlyRatePercentage: number | null;
|
|
2915
|
-
bidWithWarning: "bid" | "skip";
|
|
2916
3348
|
specialisedProfileOptions: string[];
|
|
2917
3349
|
minimumBoost: number | null;
|
|
2918
3350
|
isHourlyRate: boolean;
|
|
@@ -3241,7 +3673,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3241
3673
|
question: string;
|
|
3242
3674
|
}>, "many">>;
|
|
3243
3675
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
3244
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "won"]>>;
|
|
3676
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingProcessing", "won"]>>;
|
|
3245
3677
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
3246
3678
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
3247
3679
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -3252,11 +3684,75 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3252
3684
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
3253
3685
|
inQueue: z.ZodNullable<z.ZodBoolean>;
|
|
3254
3686
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
3687
|
+
checkFeedbackStatusCreatedAt: z.ZodNullable<z.ZodNumber>;
|
|
3255
3688
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
3256
3689
|
feedbackCheckTaskId: z.ZodNullable<z.ZodString>;
|
|
3257
3690
|
bidDecision: z.ZodNullable<z.ZodEnum<["proceeded", "rejected"]>>;
|
|
3258
3691
|
rejectedFeedback: z.ZodNullable<z.ZodString>;
|
|
3259
3692
|
applicationId: z.ZodNullable<z.ZodString>;
|
|
3693
|
+
leadBiddingConfig: z.ZodNullable<z.ZodObject<{
|
|
3694
|
+
appliedFromQueue: z.ZodNullable<z.ZodBoolean>;
|
|
3695
|
+
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
3696
|
+
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
3697
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
3698
|
+
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
3699
|
+
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
3700
|
+
boostingEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
3701
|
+
boostDownToNthPlace: z.ZodNullable<z.ZodNumber>;
|
|
3702
|
+
connectsAbovePrevious: z.ZodNullable<z.ZodNumber>;
|
|
3703
|
+
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
3704
|
+
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
3705
|
+
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
3706
|
+
bidConfig: z.ZodObject<{
|
|
3707
|
+
agencyName: z.ZodNullable<z.ZodString>;
|
|
3708
|
+
contractorName: z.ZodNullable<z.ZodString>;
|
|
3709
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
3710
|
+
}, "strip", z.ZodTypeAny, {
|
|
3711
|
+
contractorName: string | null;
|
|
3712
|
+
agencyName: string | null;
|
|
3713
|
+
specialisedProfile: string | null;
|
|
3714
|
+
}, {
|
|
3715
|
+
contractorName: string | null;
|
|
3716
|
+
agencyName: string | null;
|
|
3717
|
+
specialisedProfile: string | null;
|
|
3718
|
+
}>;
|
|
3719
|
+
}, "strip", z.ZodTypeAny, {
|
|
3720
|
+
appliedFromQueue: boolean | null;
|
|
3721
|
+
biddingDelayInMinutes: number | null;
|
|
3722
|
+
bidWithWarning: "bid" | "skip";
|
|
3723
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3724
|
+
biddingHourlyRatePercentage: number | null;
|
|
3725
|
+
biddingFixedHourlyRate: number | null;
|
|
3726
|
+
boostingEnabled: boolean | null;
|
|
3727
|
+
boostDownToNthPlace: number | null;
|
|
3728
|
+
connectsAbovePrevious: number | null;
|
|
3729
|
+
maximumBoost: number | null;
|
|
3730
|
+
minBoost: number | null;
|
|
3731
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
3732
|
+
bidConfig: {
|
|
3733
|
+
contractorName: string | null;
|
|
3734
|
+
agencyName: string | null;
|
|
3735
|
+
specialisedProfile: string | null;
|
|
3736
|
+
};
|
|
3737
|
+
}, {
|
|
3738
|
+
appliedFromQueue: boolean | null;
|
|
3739
|
+
biddingDelayInMinutes: number | null;
|
|
3740
|
+
bidWithWarning: "bid" | "skip";
|
|
3741
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3742
|
+
biddingHourlyRatePercentage: number | null;
|
|
3743
|
+
biddingFixedHourlyRate: number | null;
|
|
3744
|
+
boostingEnabled: boolean | null;
|
|
3745
|
+
boostDownToNthPlace: number | null;
|
|
3746
|
+
connectsAbovePrevious: number | null;
|
|
3747
|
+
maximumBoost: number | null;
|
|
3748
|
+
minBoost: number | null;
|
|
3749
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
3750
|
+
bidConfig: {
|
|
3751
|
+
contractorName: string | null;
|
|
3752
|
+
agencyName: string | null;
|
|
3753
|
+
specialisedProfile: string | null;
|
|
3754
|
+
};
|
|
3755
|
+
}>>;
|
|
3260
3756
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
3261
3757
|
id: string | null;
|
|
3262
3758
|
title: string | null;
|
|
@@ -3352,6 +3848,8 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3352
3848
|
} | null;
|
|
3353
3849
|
activityUpdates: 2 | 1 | 3 | null;
|
|
3354
3850
|
scrapedAt: number | null;
|
|
3851
|
+
biddingDelayInMinutes: number | null;
|
|
3852
|
+
specialisedProfile: string | null;
|
|
3355
3853
|
jobId: string;
|
|
3356
3854
|
suitabilityRating: number | null;
|
|
3357
3855
|
suitabilityReason: string | null;
|
|
@@ -3361,20 +3859,38 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3361
3859
|
question: string;
|
|
3362
3860
|
}[] | null;
|
|
3363
3861
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
3364
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
3862
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
3365
3863
|
biddingAmount: number | null;
|
|
3366
3864
|
boosted: boolean | null;
|
|
3367
3865
|
boostingAmount: number | null;
|
|
3368
3866
|
boostedForPlace: number | null;
|
|
3369
|
-
specialisedProfile: string | null;
|
|
3370
3867
|
biddedAt: number | null;
|
|
3371
3868
|
biddingTaskScheduled: boolean | null;
|
|
3372
3869
|
scheduledBiddingTime: number | null;
|
|
3373
|
-
|
|
3870
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
3374
3871
|
feedbackCheckTaskId: string | null;
|
|
3375
3872
|
bidDecision: "rejected" | "proceeded" | null;
|
|
3376
3873
|
rejectedFeedback: string | null;
|
|
3377
3874
|
applicationId: string | null;
|
|
3875
|
+
leadBiddingConfig: {
|
|
3876
|
+
appliedFromQueue: boolean | null;
|
|
3877
|
+
biddingDelayInMinutes: number | null;
|
|
3878
|
+
bidWithWarning: "bid" | "skip";
|
|
3879
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3880
|
+
biddingHourlyRatePercentage: number | null;
|
|
3881
|
+
biddingFixedHourlyRate: number | null;
|
|
3882
|
+
boostingEnabled: boolean | null;
|
|
3883
|
+
boostDownToNthPlace: number | null;
|
|
3884
|
+
connectsAbovePrevious: number | null;
|
|
3885
|
+
maximumBoost: number | null;
|
|
3886
|
+
minBoost: number | null;
|
|
3887
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
3888
|
+
bidConfig: {
|
|
3889
|
+
contractorName: string | null;
|
|
3890
|
+
agencyName: string | null;
|
|
3891
|
+
specialisedProfile: string | null;
|
|
3892
|
+
};
|
|
3893
|
+
} | null;
|
|
3378
3894
|
activity?: Partial<Record<"4h" | "24h", {
|
|
3379
3895
|
updatedAt: number | null;
|
|
3380
3896
|
unansweredInvites: number | null;
|
|
@@ -3492,6 +4008,8 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3492
4008
|
} | null;
|
|
3493
4009
|
activityUpdates: 2 | 1 | 3 | null;
|
|
3494
4010
|
scrapedAt: number | null;
|
|
4011
|
+
biddingDelayInMinutes: number | null;
|
|
4012
|
+
specialisedProfile: string | null;
|
|
3495
4013
|
jobId: string;
|
|
3496
4014
|
suitabilityRating: number | null;
|
|
3497
4015
|
suitabilityReason: string | null;
|
|
@@ -3501,20 +4019,38 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3501
4019
|
question: string;
|
|
3502
4020
|
}[] | null;
|
|
3503
4021
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
3504
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
4022
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
3505
4023
|
biddingAmount: number | null;
|
|
3506
4024
|
boosted: boolean | null;
|
|
3507
4025
|
boostingAmount: number | null;
|
|
3508
4026
|
boostedForPlace: number | null;
|
|
3509
|
-
specialisedProfile: string | null;
|
|
3510
4027
|
biddedAt: number | null;
|
|
3511
4028
|
biddingTaskScheduled: boolean | null;
|
|
3512
4029
|
scheduledBiddingTime: number | null;
|
|
3513
|
-
|
|
4030
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
3514
4031
|
feedbackCheckTaskId: string | null;
|
|
3515
4032
|
bidDecision: "rejected" | "proceeded" | null;
|
|
3516
4033
|
rejectedFeedback: string | null;
|
|
3517
4034
|
applicationId: string | null;
|
|
4035
|
+
leadBiddingConfig: {
|
|
4036
|
+
appliedFromQueue: boolean | null;
|
|
4037
|
+
biddingDelayInMinutes: number | null;
|
|
4038
|
+
bidWithWarning: "bid" | "skip";
|
|
4039
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4040
|
+
biddingHourlyRatePercentage: number | null;
|
|
4041
|
+
biddingFixedHourlyRate: number | null;
|
|
4042
|
+
boostingEnabled: boolean | null;
|
|
4043
|
+
boostDownToNthPlace: number | null;
|
|
4044
|
+
connectsAbovePrevious: number | null;
|
|
4045
|
+
maximumBoost: number | null;
|
|
4046
|
+
minBoost: number | null;
|
|
4047
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4048
|
+
bidConfig: {
|
|
4049
|
+
contractorName: string | null;
|
|
4050
|
+
agencyName: string | null;
|
|
4051
|
+
specialisedProfile: string | null;
|
|
4052
|
+
};
|
|
4053
|
+
} | null;
|
|
3518
4054
|
activity?: Partial<Record<"4h" | "24h", {
|
|
3519
4055
|
updatedAt: number | null;
|
|
3520
4056
|
unansweredInvites: number | null;
|
|
@@ -3642,6 +4178,8 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3642
4178
|
} | null;
|
|
3643
4179
|
activityUpdates: 2 | 1 | 3 | null;
|
|
3644
4180
|
scrapedAt: number | null;
|
|
4181
|
+
biddingDelayInMinutes: number | null;
|
|
4182
|
+
specialisedProfile: string | null;
|
|
3645
4183
|
jobId: string;
|
|
3646
4184
|
suitabilityRating: number | null;
|
|
3647
4185
|
suitabilityReason: string | null;
|
|
@@ -3651,20 +4189,38 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3651
4189
|
question: string;
|
|
3652
4190
|
}[] | null;
|
|
3653
4191
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
3654
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
4192
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
3655
4193
|
biddingAmount: number | null;
|
|
3656
4194
|
boosted: boolean | null;
|
|
3657
4195
|
boostingAmount: number | null;
|
|
3658
4196
|
boostedForPlace: number | null;
|
|
3659
|
-
specialisedProfile: string | null;
|
|
3660
4197
|
biddedAt: number | null;
|
|
3661
4198
|
biddingTaskScheduled: boolean | null;
|
|
3662
4199
|
scheduledBiddingTime: number | null;
|
|
3663
|
-
|
|
4200
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
3664
4201
|
feedbackCheckTaskId: string | null;
|
|
3665
4202
|
bidDecision: "rejected" | "proceeded" | null;
|
|
3666
4203
|
rejectedFeedback: string | null;
|
|
3667
4204
|
applicationId: string | null;
|
|
4205
|
+
leadBiddingConfig: {
|
|
4206
|
+
appliedFromQueue: boolean | null;
|
|
4207
|
+
biddingDelayInMinutes: number | null;
|
|
4208
|
+
bidWithWarning: "bid" | "skip";
|
|
4209
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4210
|
+
biddingHourlyRatePercentage: number | null;
|
|
4211
|
+
biddingFixedHourlyRate: number | null;
|
|
4212
|
+
boostingEnabled: boolean | null;
|
|
4213
|
+
boostDownToNthPlace: number | null;
|
|
4214
|
+
connectsAbovePrevious: number | null;
|
|
4215
|
+
maximumBoost: number | null;
|
|
4216
|
+
minBoost: number | null;
|
|
4217
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4218
|
+
bidConfig: {
|
|
4219
|
+
contractorName: string | null;
|
|
4220
|
+
agencyName: string | null;
|
|
4221
|
+
specialisedProfile: string | null;
|
|
4222
|
+
};
|
|
4223
|
+
} | null;
|
|
3668
4224
|
activity?: Partial<Record<"4h" | "24h", {
|
|
3669
4225
|
updatedAt: number | null;
|
|
3670
4226
|
unansweredInvites: number | null;
|
|
@@ -3789,6 +4345,8 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3789
4345
|
} | null;
|
|
3790
4346
|
activityUpdates: 2 | 1 | 3 | null;
|
|
3791
4347
|
scrapedAt: number | null;
|
|
4348
|
+
biddingDelayInMinutes: number | null;
|
|
4349
|
+
specialisedProfile: string | null;
|
|
3792
4350
|
jobId: string;
|
|
3793
4351
|
suitabilityRating: number | null;
|
|
3794
4352
|
suitabilityReason: string | null;
|
|
@@ -3798,20 +4356,38 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3798
4356
|
question: string;
|
|
3799
4357
|
}[] | null;
|
|
3800
4358
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
3801
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
4359
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
3802
4360
|
biddingAmount: number | null;
|
|
3803
4361
|
boosted: boolean | null;
|
|
3804
4362
|
boostingAmount: number | null;
|
|
3805
4363
|
boostedForPlace: number | null;
|
|
3806
|
-
specialisedProfile: string | null;
|
|
3807
4364
|
biddedAt: number | null;
|
|
3808
4365
|
biddingTaskScheduled: boolean | null;
|
|
3809
4366
|
scheduledBiddingTime: number | null;
|
|
3810
|
-
|
|
4367
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
3811
4368
|
feedbackCheckTaskId: string | null;
|
|
3812
4369
|
bidDecision: "rejected" | "proceeded" | null;
|
|
3813
4370
|
rejectedFeedback: string | null;
|
|
3814
4371
|
applicationId: string | null;
|
|
4372
|
+
leadBiddingConfig: {
|
|
4373
|
+
appliedFromQueue: boolean | null;
|
|
4374
|
+
biddingDelayInMinutes: number | null;
|
|
4375
|
+
bidWithWarning: "bid" | "skip";
|
|
4376
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4377
|
+
biddingHourlyRatePercentage: number | null;
|
|
4378
|
+
biddingFixedHourlyRate: number | null;
|
|
4379
|
+
boostingEnabled: boolean | null;
|
|
4380
|
+
boostDownToNthPlace: number | null;
|
|
4381
|
+
connectsAbovePrevious: number | null;
|
|
4382
|
+
maximumBoost: number | null;
|
|
4383
|
+
minBoost: number | null;
|
|
4384
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4385
|
+
bidConfig: {
|
|
4386
|
+
contractorName: string | null;
|
|
4387
|
+
agencyName: string | null;
|
|
4388
|
+
specialisedProfile: string | null;
|
|
4389
|
+
};
|
|
4390
|
+
} | null;
|
|
3815
4391
|
activity?: Partial<Record<"4h" | "24h", {
|
|
3816
4392
|
updatedAt: number | null;
|
|
3817
4393
|
unansweredInvites: number | null;
|
|
@@ -4157,7 +4733,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4157
4733
|
question: string;
|
|
4158
4734
|
}>, "many">>;
|
|
4159
4735
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
4160
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "won"]>>;
|
|
4736
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingProcessing", "won"]>>;
|
|
4161
4737
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
4162
4738
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
4163
4739
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -4168,11 +4744,75 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4168
4744
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
4169
4745
|
inQueue: z.ZodNullable<z.ZodBoolean>;
|
|
4170
4746
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
4747
|
+
checkFeedbackStatusCreatedAt: z.ZodNullable<z.ZodNumber>;
|
|
4171
4748
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
4172
4749
|
feedbackCheckTaskId: z.ZodNullable<z.ZodString>;
|
|
4173
4750
|
bidDecision: z.ZodNullable<z.ZodEnum<["proceeded", "rejected"]>>;
|
|
4174
4751
|
rejectedFeedback: z.ZodNullable<z.ZodString>;
|
|
4175
4752
|
applicationId: z.ZodNullable<z.ZodString>;
|
|
4753
|
+
leadBiddingConfig: z.ZodNullable<z.ZodObject<{
|
|
4754
|
+
appliedFromQueue: z.ZodNullable<z.ZodBoolean>;
|
|
4755
|
+
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
4756
|
+
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
4757
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
4758
|
+
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
4759
|
+
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
4760
|
+
boostingEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
4761
|
+
boostDownToNthPlace: z.ZodNullable<z.ZodNumber>;
|
|
4762
|
+
connectsAbovePrevious: z.ZodNullable<z.ZodNumber>;
|
|
4763
|
+
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
4764
|
+
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
4765
|
+
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
4766
|
+
bidConfig: z.ZodObject<{
|
|
4767
|
+
agencyName: z.ZodNullable<z.ZodString>;
|
|
4768
|
+
contractorName: z.ZodNullable<z.ZodString>;
|
|
4769
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
4770
|
+
}, "strip", z.ZodTypeAny, {
|
|
4771
|
+
contractorName: string | null;
|
|
4772
|
+
agencyName: string | null;
|
|
4773
|
+
specialisedProfile: string | null;
|
|
4774
|
+
}, {
|
|
4775
|
+
contractorName: string | null;
|
|
4776
|
+
agencyName: string | null;
|
|
4777
|
+
specialisedProfile: string | null;
|
|
4778
|
+
}>;
|
|
4779
|
+
}, "strip", z.ZodTypeAny, {
|
|
4780
|
+
appliedFromQueue: boolean | null;
|
|
4781
|
+
biddingDelayInMinutes: number | null;
|
|
4782
|
+
bidWithWarning: "bid" | "skip";
|
|
4783
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4784
|
+
biddingHourlyRatePercentage: number | null;
|
|
4785
|
+
biddingFixedHourlyRate: number | null;
|
|
4786
|
+
boostingEnabled: boolean | null;
|
|
4787
|
+
boostDownToNthPlace: number | null;
|
|
4788
|
+
connectsAbovePrevious: number | null;
|
|
4789
|
+
maximumBoost: number | null;
|
|
4790
|
+
minBoost: number | null;
|
|
4791
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4792
|
+
bidConfig: {
|
|
4793
|
+
contractorName: string | null;
|
|
4794
|
+
agencyName: string | null;
|
|
4795
|
+
specialisedProfile: string | null;
|
|
4796
|
+
};
|
|
4797
|
+
}, {
|
|
4798
|
+
appliedFromQueue: boolean | null;
|
|
4799
|
+
biddingDelayInMinutes: number | null;
|
|
4800
|
+
bidWithWarning: "bid" | "skip";
|
|
4801
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4802
|
+
biddingHourlyRatePercentage: number | null;
|
|
4803
|
+
biddingFixedHourlyRate: number | null;
|
|
4804
|
+
boostingEnabled: boolean | null;
|
|
4805
|
+
boostDownToNthPlace: number | null;
|
|
4806
|
+
connectsAbovePrevious: number | null;
|
|
4807
|
+
maximumBoost: number | null;
|
|
4808
|
+
minBoost: number | null;
|
|
4809
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4810
|
+
bidConfig: {
|
|
4811
|
+
contractorName: string | null;
|
|
4812
|
+
agencyName: string | null;
|
|
4813
|
+
specialisedProfile: string | null;
|
|
4814
|
+
};
|
|
4815
|
+
}>>;
|
|
4176
4816
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
4177
4817
|
id: string | null;
|
|
4178
4818
|
title: string | null;
|
|
@@ -4268,6 +4908,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4268
4908
|
} | null;
|
|
4269
4909
|
activityUpdates: 2 | 1 | 3 | null;
|
|
4270
4910
|
scrapedAt: number | null;
|
|
4911
|
+
biddingDelayInMinutes: number | null;
|
|
4912
|
+
specialisedProfile: string | null;
|
|
4271
4913
|
jobId: string;
|
|
4272
4914
|
suitabilityRating: number | null;
|
|
4273
4915
|
suitabilityReason: string | null;
|
|
@@ -4277,20 +4919,38 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4277
4919
|
question: string;
|
|
4278
4920
|
}[] | null;
|
|
4279
4921
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
4280
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
4922
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
4281
4923
|
biddingAmount: number | null;
|
|
4282
4924
|
boosted: boolean | null;
|
|
4283
4925
|
boostingAmount: number | null;
|
|
4284
4926
|
boostedForPlace: number | null;
|
|
4285
|
-
specialisedProfile: string | null;
|
|
4286
4927
|
biddedAt: number | null;
|
|
4287
4928
|
biddingTaskScheduled: boolean | null;
|
|
4288
4929
|
scheduledBiddingTime: number | null;
|
|
4289
|
-
|
|
4930
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
4290
4931
|
feedbackCheckTaskId: string | null;
|
|
4291
4932
|
bidDecision: "rejected" | "proceeded" | null;
|
|
4292
4933
|
rejectedFeedback: string | null;
|
|
4293
4934
|
applicationId: string | null;
|
|
4935
|
+
leadBiddingConfig: {
|
|
4936
|
+
appliedFromQueue: boolean | null;
|
|
4937
|
+
biddingDelayInMinutes: number | null;
|
|
4938
|
+
bidWithWarning: "bid" | "skip";
|
|
4939
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4940
|
+
biddingHourlyRatePercentage: number | null;
|
|
4941
|
+
biddingFixedHourlyRate: number | null;
|
|
4942
|
+
boostingEnabled: boolean | null;
|
|
4943
|
+
boostDownToNthPlace: number | null;
|
|
4944
|
+
connectsAbovePrevious: number | null;
|
|
4945
|
+
maximumBoost: number | null;
|
|
4946
|
+
minBoost: number | null;
|
|
4947
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4948
|
+
bidConfig: {
|
|
4949
|
+
contractorName: string | null;
|
|
4950
|
+
agencyName: string | null;
|
|
4951
|
+
specialisedProfile: string | null;
|
|
4952
|
+
};
|
|
4953
|
+
} | null;
|
|
4294
4954
|
activity?: Partial<Record<"4h" | "24h", {
|
|
4295
4955
|
updatedAt: number | null;
|
|
4296
4956
|
unansweredInvites: number | null;
|
|
@@ -4408,6 +5068,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4408
5068
|
} | null;
|
|
4409
5069
|
activityUpdates: 2 | 1 | 3 | null;
|
|
4410
5070
|
scrapedAt: number | null;
|
|
5071
|
+
biddingDelayInMinutes: number | null;
|
|
5072
|
+
specialisedProfile: string | null;
|
|
4411
5073
|
jobId: string;
|
|
4412
5074
|
suitabilityRating: number | null;
|
|
4413
5075
|
suitabilityReason: string | null;
|
|
@@ -4417,20 +5079,38 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4417
5079
|
question: string;
|
|
4418
5080
|
}[] | null;
|
|
4419
5081
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
4420
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
5082
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
4421
5083
|
biddingAmount: number | null;
|
|
4422
5084
|
boosted: boolean | null;
|
|
4423
5085
|
boostingAmount: number | null;
|
|
4424
5086
|
boostedForPlace: number | null;
|
|
4425
|
-
specialisedProfile: string | null;
|
|
4426
5087
|
biddedAt: number | null;
|
|
4427
5088
|
biddingTaskScheduled: boolean | null;
|
|
4428
5089
|
scheduledBiddingTime: number | null;
|
|
4429
|
-
|
|
5090
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
4430
5091
|
feedbackCheckTaskId: string | null;
|
|
4431
5092
|
bidDecision: "rejected" | "proceeded" | null;
|
|
4432
5093
|
rejectedFeedback: string | null;
|
|
4433
5094
|
applicationId: string | null;
|
|
5095
|
+
leadBiddingConfig: {
|
|
5096
|
+
appliedFromQueue: boolean | null;
|
|
5097
|
+
biddingDelayInMinutes: number | null;
|
|
5098
|
+
bidWithWarning: "bid" | "skip";
|
|
5099
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5100
|
+
biddingHourlyRatePercentage: number | null;
|
|
5101
|
+
biddingFixedHourlyRate: number | null;
|
|
5102
|
+
boostingEnabled: boolean | null;
|
|
5103
|
+
boostDownToNthPlace: number | null;
|
|
5104
|
+
connectsAbovePrevious: number | null;
|
|
5105
|
+
maximumBoost: number | null;
|
|
5106
|
+
minBoost: number | null;
|
|
5107
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5108
|
+
bidConfig: {
|
|
5109
|
+
contractorName: string | null;
|
|
5110
|
+
agencyName: string | null;
|
|
5111
|
+
specialisedProfile: string | null;
|
|
5112
|
+
};
|
|
5113
|
+
} | null;
|
|
4434
5114
|
activity?: Partial<Record<"4h" | "24h", {
|
|
4435
5115
|
updatedAt: number | null;
|
|
4436
5116
|
unansweredInvites: number | null;
|
|
@@ -4779,7 +5459,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4779
5459
|
question: string;
|
|
4780
5460
|
}>, "many">>;
|
|
4781
5461
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
4782
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "won"]>>;
|
|
5462
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingProcessing", "won"]>>;
|
|
4783
5463
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
4784
5464
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
4785
5465
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -4790,11 +5470,75 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4790
5470
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
4791
5471
|
inQueue: z.ZodNullable<z.ZodBoolean>;
|
|
4792
5472
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
5473
|
+
checkFeedbackStatusCreatedAt: z.ZodNullable<z.ZodNumber>;
|
|
4793
5474
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
4794
5475
|
feedbackCheckTaskId: z.ZodNullable<z.ZodString>;
|
|
4795
5476
|
bidDecision: z.ZodNullable<z.ZodEnum<["proceeded", "rejected"]>>;
|
|
4796
5477
|
rejectedFeedback: z.ZodNullable<z.ZodString>;
|
|
4797
5478
|
applicationId: z.ZodNullable<z.ZodString>;
|
|
5479
|
+
leadBiddingConfig: z.ZodNullable<z.ZodObject<{
|
|
5480
|
+
appliedFromQueue: z.ZodNullable<z.ZodBoolean>;
|
|
5481
|
+
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
5482
|
+
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
5483
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
5484
|
+
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
5485
|
+
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
5486
|
+
boostingEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
5487
|
+
boostDownToNthPlace: z.ZodNullable<z.ZodNumber>;
|
|
5488
|
+
connectsAbovePrevious: z.ZodNullable<z.ZodNumber>;
|
|
5489
|
+
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
5490
|
+
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
5491
|
+
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
5492
|
+
bidConfig: z.ZodObject<{
|
|
5493
|
+
agencyName: z.ZodNullable<z.ZodString>;
|
|
5494
|
+
contractorName: z.ZodNullable<z.ZodString>;
|
|
5495
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
5496
|
+
}, "strip", z.ZodTypeAny, {
|
|
5497
|
+
contractorName: string | null;
|
|
5498
|
+
agencyName: string | null;
|
|
5499
|
+
specialisedProfile: string | null;
|
|
5500
|
+
}, {
|
|
5501
|
+
contractorName: string | null;
|
|
5502
|
+
agencyName: string | null;
|
|
5503
|
+
specialisedProfile: string | null;
|
|
5504
|
+
}>;
|
|
5505
|
+
}, "strip", z.ZodTypeAny, {
|
|
5506
|
+
appliedFromQueue: boolean | null;
|
|
5507
|
+
biddingDelayInMinutes: number | null;
|
|
5508
|
+
bidWithWarning: "bid" | "skip";
|
|
5509
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5510
|
+
biddingHourlyRatePercentage: number | null;
|
|
5511
|
+
biddingFixedHourlyRate: number | null;
|
|
5512
|
+
boostingEnabled: boolean | null;
|
|
5513
|
+
boostDownToNthPlace: number | null;
|
|
5514
|
+
connectsAbovePrevious: number | null;
|
|
5515
|
+
maximumBoost: number | null;
|
|
5516
|
+
minBoost: number | null;
|
|
5517
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5518
|
+
bidConfig: {
|
|
5519
|
+
contractorName: string | null;
|
|
5520
|
+
agencyName: string | null;
|
|
5521
|
+
specialisedProfile: string | null;
|
|
5522
|
+
};
|
|
5523
|
+
}, {
|
|
5524
|
+
appliedFromQueue: boolean | null;
|
|
5525
|
+
biddingDelayInMinutes: number | null;
|
|
5526
|
+
bidWithWarning: "bid" | "skip";
|
|
5527
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5528
|
+
biddingHourlyRatePercentage: number | null;
|
|
5529
|
+
biddingFixedHourlyRate: number | null;
|
|
5530
|
+
boostingEnabled: boolean | null;
|
|
5531
|
+
boostDownToNthPlace: number | null;
|
|
5532
|
+
connectsAbovePrevious: number | null;
|
|
5533
|
+
maximumBoost: number | null;
|
|
5534
|
+
minBoost: number | null;
|
|
5535
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5536
|
+
bidConfig: {
|
|
5537
|
+
contractorName: string | null;
|
|
5538
|
+
agencyName: string | null;
|
|
5539
|
+
specialisedProfile: string | null;
|
|
5540
|
+
};
|
|
5541
|
+
}>>;
|
|
4798
5542
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
4799
5543
|
id: string | null;
|
|
4800
5544
|
title: string | null;
|
|
@@ -4890,6 +5634,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4890
5634
|
} | null;
|
|
4891
5635
|
activityUpdates: 2 | 1 | 3 | null;
|
|
4892
5636
|
scrapedAt: number | null;
|
|
5637
|
+
biddingDelayInMinutes: number | null;
|
|
5638
|
+
specialisedProfile: string | null;
|
|
4893
5639
|
jobId: string;
|
|
4894
5640
|
suitabilityRating: number | null;
|
|
4895
5641
|
suitabilityReason: string | null;
|
|
@@ -4899,20 +5645,38 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4899
5645
|
question: string;
|
|
4900
5646
|
}[] | null;
|
|
4901
5647
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
4902
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
5648
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
4903
5649
|
biddingAmount: number | null;
|
|
4904
5650
|
boosted: boolean | null;
|
|
4905
5651
|
boostingAmount: number | null;
|
|
4906
5652
|
boostedForPlace: number | null;
|
|
4907
|
-
specialisedProfile: string | null;
|
|
4908
5653
|
biddedAt: number | null;
|
|
4909
5654
|
biddingTaskScheduled: boolean | null;
|
|
4910
5655
|
scheduledBiddingTime: number | null;
|
|
4911
|
-
|
|
5656
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
4912
5657
|
feedbackCheckTaskId: string | null;
|
|
4913
5658
|
bidDecision: "rejected" | "proceeded" | null;
|
|
4914
5659
|
rejectedFeedback: string | null;
|
|
4915
5660
|
applicationId: string | null;
|
|
5661
|
+
leadBiddingConfig: {
|
|
5662
|
+
appliedFromQueue: boolean | null;
|
|
5663
|
+
biddingDelayInMinutes: number | null;
|
|
5664
|
+
bidWithWarning: "bid" | "skip";
|
|
5665
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5666
|
+
biddingHourlyRatePercentage: number | null;
|
|
5667
|
+
biddingFixedHourlyRate: number | null;
|
|
5668
|
+
boostingEnabled: boolean | null;
|
|
5669
|
+
boostDownToNthPlace: number | null;
|
|
5670
|
+
connectsAbovePrevious: number | null;
|
|
5671
|
+
maximumBoost: number | null;
|
|
5672
|
+
minBoost: number | null;
|
|
5673
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5674
|
+
bidConfig: {
|
|
5675
|
+
contractorName: string | null;
|
|
5676
|
+
agencyName: string | null;
|
|
5677
|
+
specialisedProfile: string | null;
|
|
5678
|
+
};
|
|
5679
|
+
} | null;
|
|
4916
5680
|
activity?: Partial<Record<"4h" | "24h", {
|
|
4917
5681
|
updatedAt: number | null;
|
|
4918
5682
|
unansweredInvites: number | null;
|
|
@@ -5030,6 +5794,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5030
5794
|
} | null;
|
|
5031
5795
|
activityUpdates: 2 | 1 | 3 | null;
|
|
5032
5796
|
scrapedAt: number | null;
|
|
5797
|
+
biddingDelayInMinutes: number | null;
|
|
5798
|
+
specialisedProfile: string | null;
|
|
5033
5799
|
jobId: string;
|
|
5034
5800
|
suitabilityRating: number | null;
|
|
5035
5801
|
suitabilityReason: string | null;
|
|
@@ -5039,20 +5805,38 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5039
5805
|
question: string;
|
|
5040
5806
|
}[] | null;
|
|
5041
5807
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
5042
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
5808
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
5043
5809
|
biddingAmount: number | null;
|
|
5044
5810
|
boosted: boolean | null;
|
|
5045
5811
|
boostingAmount: number | null;
|
|
5046
5812
|
boostedForPlace: number | null;
|
|
5047
|
-
specialisedProfile: string | null;
|
|
5048
5813
|
biddedAt: number | null;
|
|
5049
5814
|
biddingTaskScheduled: boolean | null;
|
|
5050
5815
|
scheduledBiddingTime: number | null;
|
|
5051
|
-
|
|
5816
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
5052
5817
|
feedbackCheckTaskId: string | null;
|
|
5053
5818
|
bidDecision: "rejected" | "proceeded" | null;
|
|
5054
5819
|
rejectedFeedback: string | null;
|
|
5055
5820
|
applicationId: string | null;
|
|
5821
|
+
leadBiddingConfig: {
|
|
5822
|
+
appliedFromQueue: boolean | null;
|
|
5823
|
+
biddingDelayInMinutes: number | null;
|
|
5824
|
+
bidWithWarning: "bid" | "skip";
|
|
5825
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5826
|
+
biddingHourlyRatePercentage: number | null;
|
|
5827
|
+
biddingFixedHourlyRate: number | null;
|
|
5828
|
+
boostingEnabled: boolean | null;
|
|
5829
|
+
boostDownToNthPlace: number | null;
|
|
5830
|
+
connectsAbovePrevious: number | null;
|
|
5831
|
+
maximumBoost: number | null;
|
|
5832
|
+
minBoost: number | null;
|
|
5833
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5834
|
+
bidConfig: {
|
|
5835
|
+
contractorName: string | null;
|
|
5836
|
+
agencyName: string | null;
|
|
5837
|
+
specialisedProfile: string | null;
|
|
5838
|
+
};
|
|
5839
|
+
} | null;
|
|
5056
5840
|
activity?: Partial<Record<"4h" | "24h", {
|
|
5057
5841
|
updatedAt: number | null;
|
|
5058
5842
|
unansweredInvites: number | null;
|
|
@@ -5110,6 +5894,15 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5110
5894
|
organizationId: string;
|
|
5111
5895
|
contractorName: string;
|
|
5112
5896
|
agencyName: string;
|
|
5897
|
+
bidWithWarning: "bid" | "skip";
|
|
5898
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5899
|
+
biddingHourlyRatePercentage: number | null;
|
|
5900
|
+
biddingFixedHourlyRate: number | null;
|
|
5901
|
+
boostingEnabled: boolean;
|
|
5902
|
+
boostDownToNthPlace: number | null;
|
|
5903
|
+
connectsAbovePrevious: number | null;
|
|
5904
|
+
maximumBoost: number | null;
|
|
5905
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5113
5906
|
questionAnswerPairs: {
|
|
5114
5907
|
answer: string;
|
|
5115
5908
|
question: string;
|
|
@@ -5210,6 +6003,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5210
6003
|
} | null;
|
|
5211
6004
|
activityUpdates: 2 | 1 | 3 | null;
|
|
5212
6005
|
scrapedAt: number | null;
|
|
6006
|
+
biddingDelayInMinutes: number | null;
|
|
6007
|
+
specialisedProfile: string | null;
|
|
5213
6008
|
jobId: string;
|
|
5214
6009
|
suitabilityRating: number | null;
|
|
5215
6010
|
suitabilityReason: string | null;
|
|
@@ -5219,20 +6014,38 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5219
6014
|
question: string;
|
|
5220
6015
|
}[] | null;
|
|
5221
6016
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
5222
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
6017
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
5223
6018
|
biddingAmount: number | null;
|
|
5224
6019
|
boosted: boolean | null;
|
|
5225
6020
|
boostingAmount: number | null;
|
|
5226
6021
|
boostedForPlace: number | null;
|
|
5227
|
-
specialisedProfile: string | null;
|
|
5228
6022
|
biddedAt: number | null;
|
|
5229
6023
|
biddingTaskScheduled: boolean | null;
|
|
5230
6024
|
scheduledBiddingTime: number | null;
|
|
5231
|
-
|
|
6025
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
5232
6026
|
feedbackCheckTaskId: string | null;
|
|
5233
6027
|
bidDecision: "rejected" | "proceeded" | null;
|
|
5234
6028
|
rejectedFeedback: string | null;
|
|
5235
6029
|
applicationId: string | null;
|
|
6030
|
+
leadBiddingConfig: {
|
|
6031
|
+
appliedFromQueue: boolean | null;
|
|
6032
|
+
biddingDelayInMinutes: number | null;
|
|
6033
|
+
bidWithWarning: "bid" | "skip";
|
|
6034
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6035
|
+
biddingHourlyRatePercentage: number | null;
|
|
6036
|
+
biddingFixedHourlyRate: number | null;
|
|
6037
|
+
boostingEnabled: boolean | null;
|
|
6038
|
+
boostDownToNthPlace: number | null;
|
|
6039
|
+
connectsAbovePrevious: number | null;
|
|
6040
|
+
maximumBoost: number | null;
|
|
6041
|
+
minBoost: number | null;
|
|
6042
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6043
|
+
bidConfig: {
|
|
6044
|
+
contractorName: string | null;
|
|
6045
|
+
agencyName: string | null;
|
|
6046
|
+
specialisedProfile: string | null;
|
|
6047
|
+
};
|
|
6048
|
+
} | null;
|
|
5236
6049
|
activity?: Partial<Record<"4h" | "24h", {
|
|
5237
6050
|
updatedAt: number | null;
|
|
5238
6051
|
unansweredInvites: number | null;
|
|
@@ -5256,15 +6069,6 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5256
6069
|
proposalId?: string | undefined;
|
|
5257
6070
|
wonAmount?: number | undefined;
|
|
5258
6071
|
};
|
|
5259
|
-
boostingEnabled: boolean;
|
|
5260
|
-
maximumBoost: number | null;
|
|
5261
|
-
boostDownToNthPlace: number | null;
|
|
5262
|
-
connectsAbovePrevious: number | null;
|
|
5263
|
-
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5264
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5265
|
-
biddingFixedHourlyRate: number | null;
|
|
5266
|
-
biddingHourlyRatePercentage: number | null;
|
|
5267
|
-
bidWithWarning: "bid" | "skip";
|
|
5268
6072
|
specialisedProfileOptions: string[];
|
|
5269
6073
|
minimumBoost: number | null;
|
|
5270
6074
|
isHourlyRate: boolean;
|
|
@@ -5276,6 +6080,15 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5276
6080
|
organizationId: string;
|
|
5277
6081
|
contractorName: string;
|
|
5278
6082
|
agencyName: string;
|
|
6083
|
+
bidWithWarning: "bid" | "skip";
|
|
6084
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6085
|
+
biddingHourlyRatePercentage: number | null;
|
|
6086
|
+
biddingFixedHourlyRate: number | null;
|
|
6087
|
+
boostingEnabled: boolean;
|
|
6088
|
+
boostDownToNthPlace: number | null;
|
|
6089
|
+
connectsAbovePrevious: number | null;
|
|
6090
|
+
maximumBoost: number | null;
|
|
6091
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5279
6092
|
questionAnswerPairs: {
|
|
5280
6093
|
answer: string;
|
|
5281
6094
|
question: string;
|
|
@@ -5376,6 +6189,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5376
6189
|
} | null;
|
|
5377
6190
|
activityUpdates: 2 | 1 | 3 | null;
|
|
5378
6191
|
scrapedAt: number | null;
|
|
6192
|
+
biddingDelayInMinutes: number | null;
|
|
6193
|
+
specialisedProfile: string | null;
|
|
5379
6194
|
jobId: string;
|
|
5380
6195
|
suitabilityRating: number | null;
|
|
5381
6196
|
suitabilityReason: string | null;
|
|
@@ -5385,20 +6200,38 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5385
6200
|
question: string;
|
|
5386
6201
|
}[] | null;
|
|
5387
6202
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
5388
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
6203
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
5389
6204
|
biddingAmount: number | null;
|
|
5390
6205
|
boosted: boolean | null;
|
|
5391
6206
|
boostingAmount: number | null;
|
|
5392
6207
|
boostedForPlace: number | null;
|
|
5393
|
-
specialisedProfile: string | null;
|
|
5394
6208
|
biddedAt: number | null;
|
|
5395
6209
|
biddingTaskScheduled: boolean | null;
|
|
5396
6210
|
scheduledBiddingTime: number | null;
|
|
5397
|
-
|
|
6211
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
5398
6212
|
feedbackCheckTaskId: string | null;
|
|
5399
6213
|
bidDecision: "rejected" | "proceeded" | null;
|
|
5400
6214
|
rejectedFeedback: string | null;
|
|
5401
6215
|
applicationId: string | null;
|
|
6216
|
+
leadBiddingConfig: {
|
|
6217
|
+
appliedFromQueue: boolean | null;
|
|
6218
|
+
biddingDelayInMinutes: number | null;
|
|
6219
|
+
bidWithWarning: "bid" | "skip";
|
|
6220
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6221
|
+
biddingHourlyRatePercentage: number | null;
|
|
6222
|
+
biddingFixedHourlyRate: number | null;
|
|
6223
|
+
boostingEnabled: boolean | null;
|
|
6224
|
+
boostDownToNthPlace: number | null;
|
|
6225
|
+
connectsAbovePrevious: number | null;
|
|
6226
|
+
maximumBoost: number | null;
|
|
6227
|
+
minBoost: number | null;
|
|
6228
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6229
|
+
bidConfig: {
|
|
6230
|
+
contractorName: string | null;
|
|
6231
|
+
agencyName: string | null;
|
|
6232
|
+
specialisedProfile: string | null;
|
|
6233
|
+
};
|
|
6234
|
+
} | null;
|
|
5402
6235
|
activity?: Partial<Record<"4h" | "24h", {
|
|
5403
6236
|
updatedAt: number | null;
|
|
5404
6237
|
unansweredInvites: number | null;
|
|
@@ -5422,15 +6255,6 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5422
6255
|
proposalId?: string | undefined;
|
|
5423
6256
|
wonAmount?: number | undefined;
|
|
5424
6257
|
};
|
|
5425
|
-
boostingEnabled: boolean;
|
|
5426
|
-
maximumBoost: number | null;
|
|
5427
|
-
boostDownToNthPlace: number | null;
|
|
5428
|
-
connectsAbovePrevious: number | null;
|
|
5429
|
-
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5430
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5431
|
-
biddingFixedHourlyRate: number | null;
|
|
5432
|
-
biddingHourlyRatePercentage: number | null;
|
|
5433
|
-
bidWithWarning: "bid" | "skip";
|
|
5434
6258
|
specialisedProfileOptions: string[];
|
|
5435
6259
|
minimumBoost: number | null;
|
|
5436
6260
|
isHourlyRate: boolean;
|
|
@@ -5539,6 +6363,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5539
6363
|
} | null;
|
|
5540
6364
|
activityUpdates: 2 | 1 | 3 | null;
|
|
5541
6365
|
scrapedAt: number | null;
|
|
6366
|
+
biddingDelayInMinutes: number | null;
|
|
6367
|
+
specialisedProfile: string | null;
|
|
5542
6368
|
jobId: string;
|
|
5543
6369
|
suitabilityRating: number | null;
|
|
5544
6370
|
suitabilityReason: string | null;
|
|
@@ -5548,20 +6374,38 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5548
6374
|
question: string;
|
|
5549
6375
|
}[] | null;
|
|
5550
6376
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
5551
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
6377
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
5552
6378
|
biddingAmount: number | null;
|
|
5553
6379
|
boosted: boolean | null;
|
|
5554
6380
|
boostingAmount: number | null;
|
|
5555
6381
|
boostedForPlace: number | null;
|
|
5556
|
-
specialisedProfile: string | null;
|
|
5557
6382
|
biddedAt: number | null;
|
|
5558
6383
|
biddingTaskScheduled: boolean | null;
|
|
5559
6384
|
scheduledBiddingTime: number | null;
|
|
5560
|
-
|
|
6385
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
5561
6386
|
feedbackCheckTaskId: string | null;
|
|
5562
6387
|
bidDecision: "rejected" | "proceeded" | null;
|
|
5563
6388
|
rejectedFeedback: string | null;
|
|
5564
6389
|
applicationId: string | null;
|
|
6390
|
+
leadBiddingConfig: {
|
|
6391
|
+
appliedFromQueue: boolean | null;
|
|
6392
|
+
biddingDelayInMinutes: number | null;
|
|
6393
|
+
bidWithWarning: "bid" | "skip";
|
|
6394
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6395
|
+
biddingHourlyRatePercentage: number | null;
|
|
6396
|
+
biddingFixedHourlyRate: number | null;
|
|
6397
|
+
boostingEnabled: boolean | null;
|
|
6398
|
+
boostDownToNthPlace: number | null;
|
|
6399
|
+
connectsAbovePrevious: number | null;
|
|
6400
|
+
maximumBoost: number | null;
|
|
6401
|
+
minBoost: number | null;
|
|
6402
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6403
|
+
bidConfig: {
|
|
6404
|
+
contractorName: string | null;
|
|
6405
|
+
agencyName: string | null;
|
|
6406
|
+
specialisedProfile: string | null;
|
|
6407
|
+
};
|
|
6408
|
+
} | null;
|
|
5565
6409
|
activity?: Partial<Record<"4h" | "24h", {
|
|
5566
6410
|
updatedAt: number | null;
|
|
5567
6411
|
unansweredInvites: number | null;
|
|
@@ -5590,6 +6434,15 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5590
6434
|
organizationId: string;
|
|
5591
6435
|
contractorName: string;
|
|
5592
6436
|
agencyName: string;
|
|
6437
|
+
bidWithWarning: "bid" | "skip";
|
|
6438
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6439
|
+
biddingHourlyRatePercentage: number | null;
|
|
6440
|
+
biddingFixedHourlyRate: number | null;
|
|
6441
|
+
boostingEnabled: boolean;
|
|
6442
|
+
boostDownToNthPlace: number | null;
|
|
6443
|
+
connectsAbovePrevious: number | null;
|
|
6444
|
+
maximumBoost: number | null;
|
|
6445
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5593
6446
|
questionAnswerPairs: {
|
|
5594
6447
|
answer: string;
|
|
5595
6448
|
question: string;
|
|
@@ -5690,6 +6543,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5690
6543
|
} | null;
|
|
5691
6544
|
activityUpdates: 2 | 1 | 3 | null;
|
|
5692
6545
|
scrapedAt: number | null;
|
|
6546
|
+
biddingDelayInMinutes: number | null;
|
|
6547
|
+
specialisedProfile: string | null;
|
|
5693
6548
|
jobId: string;
|
|
5694
6549
|
suitabilityRating: number | null;
|
|
5695
6550
|
suitabilityReason: string | null;
|
|
@@ -5699,20 +6554,38 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5699
6554
|
question: string;
|
|
5700
6555
|
}[] | null;
|
|
5701
6556
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
5702
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
6557
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
5703
6558
|
biddingAmount: number | null;
|
|
5704
6559
|
boosted: boolean | null;
|
|
5705
6560
|
boostingAmount: number | null;
|
|
5706
6561
|
boostedForPlace: number | null;
|
|
5707
|
-
specialisedProfile: string | null;
|
|
5708
6562
|
biddedAt: number | null;
|
|
5709
6563
|
biddingTaskScheduled: boolean | null;
|
|
5710
6564
|
scheduledBiddingTime: number | null;
|
|
5711
|
-
|
|
6565
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
5712
6566
|
feedbackCheckTaskId: string | null;
|
|
5713
6567
|
bidDecision: "rejected" | "proceeded" | null;
|
|
5714
6568
|
rejectedFeedback: string | null;
|
|
5715
6569
|
applicationId: string | null;
|
|
6570
|
+
leadBiddingConfig: {
|
|
6571
|
+
appliedFromQueue: boolean | null;
|
|
6572
|
+
biddingDelayInMinutes: number | null;
|
|
6573
|
+
bidWithWarning: "bid" | "skip";
|
|
6574
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6575
|
+
biddingHourlyRatePercentage: number | null;
|
|
6576
|
+
biddingFixedHourlyRate: number | null;
|
|
6577
|
+
boostingEnabled: boolean | null;
|
|
6578
|
+
boostDownToNthPlace: number | null;
|
|
6579
|
+
connectsAbovePrevious: number | null;
|
|
6580
|
+
maximumBoost: number | null;
|
|
6581
|
+
minBoost: number | null;
|
|
6582
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6583
|
+
bidConfig: {
|
|
6584
|
+
contractorName: string | null;
|
|
6585
|
+
agencyName: string | null;
|
|
6586
|
+
specialisedProfile: string | null;
|
|
6587
|
+
};
|
|
6588
|
+
} | null;
|
|
5716
6589
|
activity?: Partial<Record<"4h" | "24h", {
|
|
5717
6590
|
updatedAt: number | null;
|
|
5718
6591
|
unansweredInvites: number | null;
|
|
@@ -5736,15 +6609,6 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5736
6609
|
proposalId?: string | undefined;
|
|
5737
6610
|
wonAmount?: number | undefined;
|
|
5738
6611
|
};
|
|
5739
|
-
boostingEnabled: boolean;
|
|
5740
|
-
maximumBoost: number | null;
|
|
5741
|
-
boostDownToNthPlace: number | null;
|
|
5742
|
-
connectsAbovePrevious: number | null;
|
|
5743
|
-
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5744
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5745
|
-
biddingFixedHourlyRate: number | null;
|
|
5746
|
-
biddingHourlyRatePercentage: number | null;
|
|
5747
|
-
bidWithWarning: "bid" | "skip";
|
|
5748
6612
|
specialisedProfileOptions: string[];
|
|
5749
6613
|
minimumBoost: number | null;
|
|
5750
6614
|
isHourlyRate: boolean;
|
|
@@ -5853,6 +6717,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5853
6717
|
} | null;
|
|
5854
6718
|
activityUpdates: 2 | 1 | 3 | null;
|
|
5855
6719
|
scrapedAt: number | null;
|
|
6720
|
+
biddingDelayInMinutes: number | null;
|
|
6721
|
+
specialisedProfile: string | null;
|
|
5856
6722
|
jobId: string;
|
|
5857
6723
|
suitabilityRating: number | null;
|
|
5858
6724
|
suitabilityReason: string | null;
|
|
@@ -5862,20 +6728,38 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5862
6728
|
question: string;
|
|
5863
6729
|
}[] | null;
|
|
5864
6730
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
5865
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
6731
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
5866
6732
|
biddingAmount: number | null;
|
|
5867
6733
|
boosted: boolean | null;
|
|
5868
6734
|
boostingAmount: number | null;
|
|
5869
6735
|
boostedForPlace: number | null;
|
|
5870
|
-
specialisedProfile: string | null;
|
|
5871
6736
|
biddedAt: number | null;
|
|
5872
6737
|
biddingTaskScheduled: boolean | null;
|
|
5873
6738
|
scheduledBiddingTime: number | null;
|
|
5874
|
-
|
|
6739
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
5875
6740
|
feedbackCheckTaskId: string | null;
|
|
5876
6741
|
bidDecision: "rejected" | "proceeded" | null;
|
|
5877
6742
|
rejectedFeedback: string | null;
|
|
5878
6743
|
applicationId: string | null;
|
|
6744
|
+
leadBiddingConfig: {
|
|
6745
|
+
appliedFromQueue: boolean | null;
|
|
6746
|
+
biddingDelayInMinutes: number | null;
|
|
6747
|
+
bidWithWarning: "bid" | "skip";
|
|
6748
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6749
|
+
biddingHourlyRatePercentage: number | null;
|
|
6750
|
+
biddingFixedHourlyRate: number | null;
|
|
6751
|
+
boostingEnabled: boolean | null;
|
|
6752
|
+
boostDownToNthPlace: number | null;
|
|
6753
|
+
connectsAbovePrevious: number | null;
|
|
6754
|
+
maximumBoost: number | null;
|
|
6755
|
+
minBoost: number | null;
|
|
6756
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6757
|
+
bidConfig: {
|
|
6758
|
+
contractorName: string | null;
|
|
6759
|
+
agencyName: string | null;
|
|
6760
|
+
specialisedProfile: string | null;
|
|
6761
|
+
};
|
|
6762
|
+
} | null;
|
|
5879
6763
|
activity?: Partial<Record<"4h" | "24h", {
|
|
5880
6764
|
updatedAt: number | null;
|
|
5881
6765
|
unansweredInvites: number | null;
|
|
@@ -5904,6 +6788,15 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5904
6788
|
organizationId: string;
|
|
5905
6789
|
contractorName: string;
|
|
5906
6790
|
agencyName: string;
|
|
6791
|
+
bidWithWarning: "bid" | "skip";
|
|
6792
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6793
|
+
biddingHourlyRatePercentage: number | null;
|
|
6794
|
+
biddingFixedHourlyRate: number | null;
|
|
6795
|
+
boostingEnabled: boolean;
|
|
6796
|
+
boostDownToNthPlace: number | null;
|
|
6797
|
+
connectsAbovePrevious: number | null;
|
|
6798
|
+
maximumBoost: number | null;
|
|
6799
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5907
6800
|
questionAnswerPairs: {
|
|
5908
6801
|
answer: string;
|
|
5909
6802
|
question: string;
|
|
@@ -6004,6 +6897,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6004
6897
|
} | null;
|
|
6005
6898
|
activityUpdates: 2 | 1 | 3 | null;
|
|
6006
6899
|
scrapedAt: number | null;
|
|
6900
|
+
biddingDelayInMinutes: number | null;
|
|
6901
|
+
specialisedProfile: string | null;
|
|
6007
6902
|
jobId: string;
|
|
6008
6903
|
suitabilityRating: number | null;
|
|
6009
6904
|
suitabilityReason: string | null;
|
|
@@ -6013,20 +6908,38 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6013
6908
|
question: string;
|
|
6014
6909
|
}[] | null;
|
|
6015
6910
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
6016
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
6911
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
6017
6912
|
biddingAmount: number | null;
|
|
6018
6913
|
boosted: boolean | null;
|
|
6019
6914
|
boostingAmount: number | null;
|
|
6020
6915
|
boostedForPlace: number | null;
|
|
6021
|
-
specialisedProfile: string | null;
|
|
6022
6916
|
biddedAt: number | null;
|
|
6023
6917
|
biddingTaskScheduled: boolean | null;
|
|
6024
6918
|
scheduledBiddingTime: number | null;
|
|
6025
|
-
|
|
6919
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
6026
6920
|
feedbackCheckTaskId: string | null;
|
|
6027
6921
|
bidDecision: "rejected" | "proceeded" | null;
|
|
6028
6922
|
rejectedFeedback: string | null;
|
|
6029
6923
|
applicationId: string | null;
|
|
6924
|
+
leadBiddingConfig: {
|
|
6925
|
+
appliedFromQueue: boolean | null;
|
|
6926
|
+
biddingDelayInMinutes: number | null;
|
|
6927
|
+
bidWithWarning: "bid" | "skip";
|
|
6928
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6929
|
+
biddingHourlyRatePercentage: number | null;
|
|
6930
|
+
biddingFixedHourlyRate: number | null;
|
|
6931
|
+
boostingEnabled: boolean | null;
|
|
6932
|
+
boostDownToNthPlace: number | null;
|
|
6933
|
+
connectsAbovePrevious: number | null;
|
|
6934
|
+
maximumBoost: number | null;
|
|
6935
|
+
minBoost: number | null;
|
|
6936
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6937
|
+
bidConfig: {
|
|
6938
|
+
contractorName: string | null;
|
|
6939
|
+
agencyName: string | null;
|
|
6940
|
+
specialisedProfile: string | null;
|
|
6941
|
+
};
|
|
6942
|
+
} | null;
|
|
6030
6943
|
activity?: Partial<Record<"4h" | "24h", {
|
|
6031
6944
|
updatedAt: number | null;
|
|
6032
6945
|
unansweredInvites: number | null;
|
|
@@ -6050,15 +6963,6 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6050
6963
|
proposalId?: string | undefined;
|
|
6051
6964
|
wonAmount?: number | undefined;
|
|
6052
6965
|
};
|
|
6053
|
-
boostingEnabled: boolean;
|
|
6054
|
-
maximumBoost: number | null;
|
|
6055
|
-
boostDownToNthPlace: number | null;
|
|
6056
|
-
connectsAbovePrevious: number | null;
|
|
6057
|
-
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6058
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6059
|
-
biddingFixedHourlyRate: number | null;
|
|
6060
|
-
biddingHourlyRatePercentage: number | null;
|
|
6061
|
-
bidWithWarning: "bid" | "skip";
|
|
6062
6966
|
specialisedProfileOptions: string[];
|
|
6063
6967
|
minimumBoost: number | null;
|
|
6064
6968
|
isHourlyRate: boolean;
|
|
@@ -6388,7 +7292,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
6388
7292
|
question: string;
|
|
6389
7293
|
}>, "many">>;
|
|
6390
7294
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
6391
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "won"]>>;
|
|
7295
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingProcessing", "won"]>>;
|
|
6392
7296
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
6393
7297
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
6394
7298
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -6399,11 +7303,75 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
6399
7303
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
6400
7304
|
inQueue: z.ZodNullable<z.ZodBoolean>;
|
|
6401
7305
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
7306
|
+
checkFeedbackStatusCreatedAt: z.ZodNullable<z.ZodNumber>;
|
|
6402
7307
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
6403
7308
|
feedbackCheckTaskId: z.ZodNullable<z.ZodString>;
|
|
6404
7309
|
bidDecision: z.ZodNullable<z.ZodEnum<["proceeded", "rejected"]>>;
|
|
6405
7310
|
rejectedFeedback: z.ZodNullable<z.ZodString>;
|
|
6406
7311
|
applicationId: z.ZodNullable<z.ZodString>;
|
|
7312
|
+
leadBiddingConfig: z.ZodNullable<z.ZodObject<{
|
|
7313
|
+
appliedFromQueue: z.ZodNullable<z.ZodBoolean>;
|
|
7314
|
+
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
7315
|
+
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
7316
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
7317
|
+
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
7318
|
+
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
7319
|
+
boostingEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
7320
|
+
boostDownToNthPlace: z.ZodNullable<z.ZodNumber>;
|
|
7321
|
+
connectsAbovePrevious: z.ZodNullable<z.ZodNumber>;
|
|
7322
|
+
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
7323
|
+
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
7324
|
+
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
7325
|
+
bidConfig: z.ZodObject<{
|
|
7326
|
+
agencyName: z.ZodNullable<z.ZodString>;
|
|
7327
|
+
contractorName: z.ZodNullable<z.ZodString>;
|
|
7328
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
7329
|
+
}, "strip", z.ZodTypeAny, {
|
|
7330
|
+
contractorName: string | null;
|
|
7331
|
+
agencyName: string | null;
|
|
7332
|
+
specialisedProfile: string | null;
|
|
7333
|
+
}, {
|
|
7334
|
+
contractorName: string | null;
|
|
7335
|
+
agencyName: string | null;
|
|
7336
|
+
specialisedProfile: string | null;
|
|
7337
|
+
}>;
|
|
7338
|
+
}, "strip", z.ZodTypeAny, {
|
|
7339
|
+
appliedFromQueue: boolean | null;
|
|
7340
|
+
biddingDelayInMinutes: number | null;
|
|
7341
|
+
bidWithWarning: "bid" | "skip";
|
|
7342
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
7343
|
+
biddingHourlyRatePercentage: number | null;
|
|
7344
|
+
biddingFixedHourlyRate: number | null;
|
|
7345
|
+
boostingEnabled: boolean | null;
|
|
7346
|
+
boostDownToNthPlace: number | null;
|
|
7347
|
+
connectsAbovePrevious: number | null;
|
|
7348
|
+
maximumBoost: number | null;
|
|
7349
|
+
minBoost: number | null;
|
|
7350
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7351
|
+
bidConfig: {
|
|
7352
|
+
contractorName: string | null;
|
|
7353
|
+
agencyName: string | null;
|
|
7354
|
+
specialisedProfile: string | null;
|
|
7355
|
+
};
|
|
7356
|
+
}, {
|
|
7357
|
+
appliedFromQueue: boolean | null;
|
|
7358
|
+
biddingDelayInMinutes: number | null;
|
|
7359
|
+
bidWithWarning: "bid" | "skip";
|
|
7360
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
7361
|
+
biddingHourlyRatePercentage: number | null;
|
|
7362
|
+
biddingFixedHourlyRate: number | null;
|
|
7363
|
+
boostingEnabled: boolean | null;
|
|
7364
|
+
boostDownToNthPlace: number | null;
|
|
7365
|
+
connectsAbovePrevious: number | null;
|
|
7366
|
+
maximumBoost: number | null;
|
|
7367
|
+
minBoost: number | null;
|
|
7368
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7369
|
+
bidConfig: {
|
|
7370
|
+
contractorName: string | null;
|
|
7371
|
+
agencyName: string | null;
|
|
7372
|
+
specialisedProfile: string | null;
|
|
7373
|
+
};
|
|
7374
|
+
}>>;
|
|
6407
7375
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
6408
7376
|
id: string | null;
|
|
6409
7377
|
title: string | null;
|
|
@@ -6499,6 +7467,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
6499
7467
|
} | null;
|
|
6500
7468
|
activityUpdates: 2 | 1 | 3 | null;
|
|
6501
7469
|
scrapedAt: number | null;
|
|
7470
|
+
biddingDelayInMinutes: number | null;
|
|
7471
|
+
specialisedProfile: string | null;
|
|
6502
7472
|
jobId: string;
|
|
6503
7473
|
suitabilityRating: number | null;
|
|
6504
7474
|
suitabilityReason: string | null;
|
|
@@ -6508,20 +7478,38 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
6508
7478
|
question: string;
|
|
6509
7479
|
}[] | null;
|
|
6510
7480
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
6511
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
7481
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
6512
7482
|
biddingAmount: number | null;
|
|
6513
7483
|
boosted: boolean | null;
|
|
6514
7484
|
boostingAmount: number | null;
|
|
6515
7485
|
boostedForPlace: number | null;
|
|
6516
|
-
specialisedProfile: string | null;
|
|
6517
7486
|
biddedAt: number | null;
|
|
6518
7487
|
biddingTaskScheduled: boolean | null;
|
|
6519
7488
|
scheduledBiddingTime: number | null;
|
|
6520
|
-
|
|
7489
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
6521
7490
|
feedbackCheckTaskId: string | null;
|
|
6522
7491
|
bidDecision: "rejected" | "proceeded" | null;
|
|
6523
7492
|
rejectedFeedback: string | null;
|
|
6524
7493
|
applicationId: string | null;
|
|
7494
|
+
leadBiddingConfig: {
|
|
7495
|
+
appliedFromQueue: boolean | null;
|
|
7496
|
+
biddingDelayInMinutes: number | null;
|
|
7497
|
+
bidWithWarning: "bid" | "skip";
|
|
7498
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
7499
|
+
biddingHourlyRatePercentage: number | null;
|
|
7500
|
+
biddingFixedHourlyRate: number | null;
|
|
7501
|
+
boostingEnabled: boolean | null;
|
|
7502
|
+
boostDownToNthPlace: number | null;
|
|
7503
|
+
connectsAbovePrevious: number | null;
|
|
7504
|
+
maximumBoost: number | null;
|
|
7505
|
+
minBoost: number | null;
|
|
7506
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7507
|
+
bidConfig: {
|
|
7508
|
+
contractorName: string | null;
|
|
7509
|
+
agencyName: string | null;
|
|
7510
|
+
specialisedProfile: string | null;
|
|
7511
|
+
};
|
|
7512
|
+
} | null;
|
|
6525
7513
|
activity?: Partial<Record<"4h" | "24h", {
|
|
6526
7514
|
updatedAt: number | null;
|
|
6527
7515
|
unansweredInvites: number | null;
|
|
@@ -6639,6 +7627,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
6639
7627
|
} | null;
|
|
6640
7628
|
activityUpdates: 2 | 1 | 3 | null;
|
|
6641
7629
|
scrapedAt: number | null;
|
|
7630
|
+
biddingDelayInMinutes: number | null;
|
|
7631
|
+
specialisedProfile: string | null;
|
|
6642
7632
|
jobId: string;
|
|
6643
7633
|
suitabilityRating: number | null;
|
|
6644
7634
|
suitabilityReason: string | null;
|
|
@@ -6648,20 +7638,38 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
6648
7638
|
question: string;
|
|
6649
7639
|
}[] | null;
|
|
6650
7640
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
6651
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
7641
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
6652
7642
|
biddingAmount: number | null;
|
|
6653
7643
|
boosted: boolean | null;
|
|
6654
7644
|
boostingAmount: number | null;
|
|
6655
7645
|
boostedForPlace: number | null;
|
|
6656
|
-
specialisedProfile: string | null;
|
|
6657
7646
|
biddedAt: number | null;
|
|
6658
7647
|
biddingTaskScheduled: boolean | null;
|
|
6659
7648
|
scheduledBiddingTime: number | null;
|
|
6660
|
-
|
|
7649
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
6661
7650
|
feedbackCheckTaskId: string | null;
|
|
6662
7651
|
bidDecision: "rejected" | "proceeded" | null;
|
|
6663
7652
|
rejectedFeedback: string | null;
|
|
6664
7653
|
applicationId: string | null;
|
|
7654
|
+
leadBiddingConfig: {
|
|
7655
|
+
appliedFromQueue: boolean | null;
|
|
7656
|
+
biddingDelayInMinutes: number | null;
|
|
7657
|
+
bidWithWarning: "bid" | "skip";
|
|
7658
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
7659
|
+
biddingHourlyRatePercentage: number | null;
|
|
7660
|
+
biddingFixedHourlyRate: number | null;
|
|
7661
|
+
boostingEnabled: boolean | null;
|
|
7662
|
+
boostDownToNthPlace: number | null;
|
|
7663
|
+
connectsAbovePrevious: number | null;
|
|
7664
|
+
maximumBoost: number | null;
|
|
7665
|
+
minBoost: number | null;
|
|
7666
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7667
|
+
bidConfig: {
|
|
7668
|
+
contractorName: string | null;
|
|
7669
|
+
agencyName: string | null;
|
|
7670
|
+
specialisedProfile: string | null;
|
|
7671
|
+
};
|
|
7672
|
+
} | null;
|
|
6665
7673
|
activity?: Partial<Record<"4h" | "24h", {
|
|
6666
7674
|
updatedAt: number | null;
|
|
6667
7675
|
unansweredInvites: number | null;
|
|
@@ -7010,7 +8018,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7010
8018
|
question: string;
|
|
7011
8019
|
}>, "many">>;
|
|
7012
8020
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
7013
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "won"]>>;
|
|
8021
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingProcessing", "won"]>>;
|
|
7014
8022
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
7015
8023
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
7016
8024
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -7021,11 +8029,75 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7021
8029
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
7022
8030
|
inQueue: z.ZodNullable<z.ZodBoolean>;
|
|
7023
8031
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
8032
|
+
checkFeedbackStatusCreatedAt: z.ZodNullable<z.ZodNumber>;
|
|
7024
8033
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
7025
8034
|
feedbackCheckTaskId: z.ZodNullable<z.ZodString>;
|
|
7026
8035
|
bidDecision: z.ZodNullable<z.ZodEnum<["proceeded", "rejected"]>>;
|
|
7027
8036
|
rejectedFeedback: z.ZodNullable<z.ZodString>;
|
|
7028
8037
|
applicationId: z.ZodNullable<z.ZodString>;
|
|
8038
|
+
leadBiddingConfig: z.ZodNullable<z.ZodObject<{
|
|
8039
|
+
appliedFromQueue: z.ZodNullable<z.ZodBoolean>;
|
|
8040
|
+
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
8041
|
+
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
8042
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
8043
|
+
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
8044
|
+
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
8045
|
+
boostingEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
8046
|
+
boostDownToNthPlace: z.ZodNullable<z.ZodNumber>;
|
|
8047
|
+
connectsAbovePrevious: z.ZodNullable<z.ZodNumber>;
|
|
8048
|
+
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
8049
|
+
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
8050
|
+
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
8051
|
+
bidConfig: z.ZodObject<{
|
|
8052
|
+
agencyName: z.ZodNullable<z.ZodString>;
|
|
8053
|
+
contractorName: z.ZodNullable<z.ZodString>;
|
|
8054
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
8055
|
+
}, "strip", z.ZodTypeAny, {
|
|
8056
|
+
contractorName: string | null;
|
|
8057
|
+
agencyName: string | null;
|
|
8058
|
+
specialisedProfile: string | null;
|
|
8059
|
+
}, {
|
|
8060
|
+
contractorName: string | null;
|
|
8061
|
+
agencyName: string | null;
|
|
8062
|
+
specialisedProfile: string | null;
|
|
8063
|
+
}>;
|
|
8064
|
+
}, "strip", z.ZodTypeAny, {
|
|
8065
|
+
appliedFromQueue: boolean | null;
|
|
8066
|
+
biddingDelayInMinutes: number | null;
|
|
8067
|
+
bidWithWarning: "bid" | "skip";
|
|
8068
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8069
|
+
biddingHourlyRatePercentage: number | null;
|
|
8070
|
+
biddingFixedHourlyRate: number | null;
|
|
8071
|
+
boostingEnabled: boolean | null;
|
|
8072
|
+
boostDownToNthPlace: number | null;
|
|
8073
|
+
connectsAbovePrevious: number | null;
|
|
8074
|
+
maximumBoost: number | null;
|
|
8075
|
+
minBoost: number | null;
|
|
8076
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8077
|
+
bidConfig: {
|
|
8078
|
+
contractorName: string | null;
|
|
8079
|
+
agencyName: string | null;
|
|
8080
|
+
specialisedProfile: string | null;
|
|
8081
|
+
};
|
|
8082
|
+
}, {
|
|
8083
|
+
appliedFromQueue: boolean | null;
|
|
8084
|
+
biddingDelayInMinutes: number | null;
|
|
8085
|
+
bidWithWarning: "bid" | "skip";
|
|
8086
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8087
|
+
biddingHourlyRatePercentage: number | null;
|
|
8088
|
+
biddingFixedHourlyRate: number | null;
|
|
8089
|
+
boostingEnabled: boolean | null;
|
|
8090
|
+
boostDownToNthPlace: number | null;
|
|
8091
|
+
connectsAbovePrevious: number | null;
|
|
8092
|
+
maximumBoost: number | null;
|
|
8093
|
+
minBoost: number | null;
|
|
8094
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8095
|
+
bidConfig: {
|
|
8096
|
+
contractorName: string | null;
|
|
8097
|
+
agencyName: string | null;
|
|
8098
|
+
specialisedProfile: string | null;
|
|
8099
|
+
};
|
|
8100
|
+
}>>;
|
|
7029
8101
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
7030
8102
|
id: string | null;
|
|
7031
8103
|
title: string | null;
|
|
@@ -7121,6 +8193,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7121
8193
|
} | null;
|
|
7122
8194
|
activityUpdates: 2 | 1 | 3 | null;
|
|
7123
8195
|
scrapedAt: number | null;
|
|
8196
|
+
biddingDelayInMinutes: number | null;
|
|
8197
|
+
specialisedProfile: string | null;
|
|
7124
8198
|
jobId: string;
|
|
7125
8199
|
suitabilityRating: number | null;
|
|
7126
8200
|
suitabilityReason: string | null;
|
|
@@ -7130,20 +8204,38 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7130
8204
|
question: string;
|
|
7131
8205
|
}[] | null;
|
|
7132
8206
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
7133
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
8207
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
7134
8208
|
biddingAmount: number | null;
|
|
7135
8209
|
boosted: boolean | null;
|
|
7136
8210
|
boostingAmount: number | null;
|
|
7137
8211
|
boostedForPlace: number | null;
|
|
7138
|
-
specialisedProfile: string | null;
|
|
7139
8212
|
biddedAt: number | null;
|
|
7140
8213
|
biddingTaskScheduled: boolean | null;
|
|
7141
8214
|
scheduledBiddingTime: number | null;
|
|
7142
|
-
|
|
8215
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
7143
8216
|
feedbackCheckTaskId: string | null;
|
|
7144
8217
|
bidDecision: "rejected" | "proceeded" | null;
|
|
7145
8218
|
rejectedFeedback: string | null;
|
|
7146
8219
|
applicationId: string | null;
|
|
8220
|
+
leadBiddingConfig: {
|
|
8221
|
+
appliedFromQueue: boolean | null;
|
|
8222
|
+
biddingDelayInMinutes: number | null;
|
|
8223
|
+
bidWithWarning: "bid" | "skip";
|
|
8224
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8225
|
+
biddingHourlyRatePercentage: number | null;
|
|
8226
|
+
biddingFixedHourlyRate: number | null;
|
|
8227
|
+
boostingEnabled: boolean | null;
|
|
8228
|
+
boostDownToNthPlace: number | null;
|
|
8229
|
+
connectsAbovePrevious: number | null;
|
|
8230
|
+
maximumBoost: number | null;
|
|
8231
|
+
minBoost: number | null;
|
|
8232
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8233
|
+
bidConfig: {
|
|
8234
|
+
contractorName: string | null;
|
|
8235
|
+
agencyName: string | null;
|
|
8236
|
+
specialisedProfile: string | null;
|
|
8237
|
+
};
|
|
8238
|
+
} | null;
|
|
7147
8239
|
activity?: Partial<Record<"4h" | "24h", {
|
|
7148
8240
|
updatedAt: number | null;
|
|
7149
8241
|
unansweredInvites: number | null;
|
|
@@ -7261,6 +8353,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7261
8353
|
} | null;
|
|
7262
8354
|
activityUpdates: 2 | 1 | 3 | null;
|
|
7263
8355
|
scrapedAt: number | null;
|
|
8356
|
+
biddingDelayInMinutes: number | null;
|
|
8357
|
+
specialisedProfile: string | null;
|
|
7264
8358
|
jobId: string;
|
|
7265
8359
|
suitabilityRating: number | null;
|
|
7266
8360
|
suitabilityReason: string | null;
|
|
@@ -7270,20 +8364,38 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7270
8364
|
question: string;
|
|
7271
8365
|
}[] | null;
|
|
7272
8366
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
7273
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
8367
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
7274
8368
|
biddingAmount: number | null;
|
|
7275
8369
|
boosted: boolean | null;
|
|
7276
8370
|
boostingAmount: number | null;
|
|
7277
8371
|
boostedForPlace: number | null;
|
|
7278
|
-
specialisedProfile: string | null;
|
|
7279
8372
|
biddedAt: number | null;
|
|
7280
8373
|
biddingTaskScheduled: boolean | null;
|
|
7281
8374
|
scheduledBiddingTime: number | null;
|
|
7282
|
-
|
|
8375
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
7283
8376
|
feedbackCheckTaskId: string | null;
|
|
7284
8377
|
bidDecision: "rejected" | "proceeded" | null;
|
|
7285
8378
|
rejectedFeedback: string | null;
|
|
7286
8379
|
applicationId: string | null;
|
|
8380
|
+
leadBiddingConfig: {
|
|
8381
|
+
appliedFromQueue: boolean | null;
|
|
8382
|
+
biddingDelayInMinutes: number | null;
|
|
8383
|
+
bidWithWarning: "bid" | "skip";
|
|
8384
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8385
|
+
biddingHourlyRatePercentage: number | null;
|
|
8386
|
+
biddingFixedHourlyRate: number | null;
|
|
8387
|
+
boostingEnabled: boolean | null;
|
|
8388
|
+
boostDownToNthPlace: number | null;
|
|
8389
|
+
connectsAbovePrevious: number | null;
|
|
8390
|
+
maximumBoost: number | null;
|
|
8391
|
+
minBoost: number | null;
|
|
8392
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8393
|
+
bidConfig: {
|
|
8394
|
+
contractorName: string | null;
|
|
8395
|
+
agencyName: string | null;
|
|
8396
|
+
specialisedProfile: string | null;
|
|
8397
|
+
};
|
|
8398
|
+
} | null;
|
|
7287
8399
|
activity?: Partial<Record<"4h" | "24h", {
|
|
7288
8400
|
updatedAt: number | null;
|
|
7289
8401
|
unansweredInvites: number | null;
|
|
@@ -7335,6 +8447,15 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7335
8447
|
}, "strip", z.ZodTypeAny, {
|
|
7336
8448
|
campaignId: string;
|
|
7337
8449
|
organizationId: string;
|
|
8450
|
+
bidWithWarning: "bid" | "skip";
|
|
8451
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8452
|
+
biddingHourlyRatePercentage: number | null;
|
|
8453
|
+
biddingFixedHourlyRate: number | null;
|
|
8454
|
+
boostingEnabled: boolean;
|
|
8455
|
+
boostDownToNthPlace: number | null;
|
|
8456
|
+
connectsAbovePrevious: number | null;
|
|
8457
|
+
maximumBoost: number | null;
|
|
8458
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7338
8459
|
questionAnswerPairs: {
|
|
7339
8460
|
answer: string;
|
|
7340
8461
|
question: string;
|
|
@@ -7435,6 +8556,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7435
8556
|
} | null;
|
|
7436
8557
|
activityUpdates: 2 | 1 | 3 | null;
|
|
7437
8558
|
scrapedAt: number | null;
|
|
8559
|
+
biddingDelayInMinutes: number | null;
|
|
8560
|
+
specialisedProfile: string | null;
|
|
7438
8561
|
jobId: string;
|
|
7439
8562
|
suitabilityRating: number | null;
|
|
7440
8563
|
suitabilityReason: string | null;
|
|
@@ -7444,20 +8567,38 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7444
8567
|
question: string;
|
|
7445
8568
|
}[] | null;
|
|
7446
8569
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
7447
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
8570
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
7448
8571
|
biddingAmount: number | null;
|
|
7449
8572
|
boosted: boolean | null;
|
|
7450
8573
|
boostingAmount: number | null;
|
|
7451
8574
|
boostedForPlace: number | null;
|
|
7452
|
-
specialisedProfile: string | null;
|
|
7453
8575
|
biddedAt: number | null;
|
|
7454
8576
|
biddingTaskScheduled: boolean | null;
|
|
7455
8577
|
scheduledBiddingTime: number | null;
|
|
7456
|
-
|
|
8578
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
7457
8579
|
feedbackCheckTaskId: string | null;
|
|
7458
8580
|
bidDecision: "rejected" | "proceeded" | null;
|
|
7459
8581
|
rejectedFeedback: string | null;
|
|
7460
8582
|
applicationId: string | null;
|
|
8583
|
+
leadBiddingConfig: {
|
|
8584
|
+
appliedFromQueue: boolean | null;
|
|
8585
|
+
biddingDelayInMinutes: number | null;
|
|
8586
|
+
bidWithWarning: "bid" | "skip";
|
|
8587
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8588
|
+
biddingHourlyRatePercentage: number | null;
|
|
8589
|
+
biddingFixedHourlyRate: number | null;
|
|
8590
|
+
boostingEnabled: boolean | null;
|
|
8591
|
+
boostDownToNthPlace: number | null;
|
|
8592
|
+
connectsAbovePrevious: number | null;
|
|
8593
|
+
maximumBoost: number | null;
|
|
8594
|
+
minBoost: number | null;
|
|
8595
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8596
|
+
bidConfig: {
|
|
8597
|
+
contractorName: string | null;
|
|
8598
|
+
agencyName: string | null;
|
|
8599
|
+
specialisedProfile: string | null;
|
|
8600
|
+
};
|
|
8601
|
+
} | null;
|
|
7461
8602
|
activity?: Partial<Record<"4h" | "24h", {
|
|
7462
8603
|
updatedAt: number | null;
|
|
7463
8604
|
unansweredInvites: number | null;
|
|
@@ -7481,15 +8622,6 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7481
8622
|
proposalId?: string | undefined;
|
|
7482
8623
|
wonAmount?: number | undefined;
|
|
7483
8624
|
};
|
|
7484
|
-
boostingEnabled: boolean;
|
|
7485
|
-
maximumBoost: number | null;
|
|
7486
|
-
boostDownToNthPlace: number | null;
|
|
7487
|
-
connectsAbovePrevious: number | null;
|
|
7488
|
-
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7489
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
7490
|
-
biddingFixedHourlyRate: number | null;
|
|
7491
|
-
biddingHourlyRatePercentage: number | null;
|
|
7492
|
-
bidWithWarning: "bid" | "skip";
|
|
7493
8625
|
specialisedProfileOptions: string[];
|
|
7494
8626
|
minimumBoost: number | null;
|
|
7495
8627
|
isHourlyRate: boolean;
|
|
@@ -7498,6 +8630,15 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7498
8630
|
}, {
|
|
7499
8631
|
campaignId: string;
|
|
7500
8632
|
organizationId: string;
|
|
8633
|
+
bidWithWarning: "bid" | "skip";
|
|
8634
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8635
|
+
biddingHourlyRatePercentage: number | null;
|
|
8636
|
+
biddingFixedHourlyRate: number | null;
|
|
8637
|
+
boostingEnabled: boolean;
|
|
8638
|
+
boostDownToNthPlace: number | null;
|
|
8639
|
+
connectsAbovePrevious: number | null;
|
|
8640
|
+
maximumBoost: number | null;
|
|
8641
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7501
8642
|
questionAnswerPairs: {
|
|
7502
8643
|
answer: string;
|
|
7503
8644
|
question: string;
|
|
@@ -7598,6 +8739,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7598
8739
|
} | null;
|
|
7599
8740
|
activityUpdates: 2 | 1 | 3 | null;
|
|
7600
8741
|
scrapedAt: number | null;
|
|
8742
|
+
biddingDelayInMinutes: number | null;
|
|
8743
|
+
specialisedProfile: string | null;
|
|
7601
8744
|
jobId: string;
|
|
7602
8745
|
suitabilityRating: number | null;
|
|
7603
8746
|
suitabilityReason: string | null;
|
|
@@ -7607,20 +8750,38 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7607
8750
|
question: string;
|
|
7608
8751
|
}[] | null;
|
|
7609
8752
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
7610
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
8753
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
7611
8754
|
biddingAmount: number | null;
|
|
7612
8755
|
boosted: boolean | null;
|
|
7613
8756
|
boostingAmount: number | null;
|
|
7614
8757
|
boostedForPlace: number | null;
|
|
7615
|
-
specialisedProfile: string | null;
|
|
7616
8758
|
biddedAt: number | null;
|
|
7617
8759
|
biddingTaskScheduled: boolean | null;
|
|
7618
8760
|
scheduledBiddingTime: number | null;
|
|
7619
|
-
|
|
8761
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
7620
8762
|
feedbackCheckTaskId: string | null;
|
|
7621
8763
|
bidDecision: "rejected" | "proceeded" | null;
|
|
7622
8764
|
rejectedFeedback: string | null;
|
|
7623
8765
|
applicationId: string | null;
|
|
8766
|
+
leadBiddingConfig: {
|
|
8767
|
+
appliedFromQueue: boolean | null;
|
|
8768
|
+
biddingDelayInMinutes: number | null;
|
|
8769
|
+
bidWithWarning: "bid" | "skip";
|
|
8770
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8771
|
+
biddingHourlyRatePercentage: number | null;
|
|
8772
|
+
biddingFixedHourlyRate: number | null;
|
|
8773
|
+
boostingEnabled: boolean | null;
|
|
8774
|
+
boostDownToNthPlace: number | null;
|
|
8775
|
+
connectsAbovePrevious: number | null;
|
|
8776
|
+
maximumBoost: number | null;
|
|
8777
|
+
minBoost: number | null;
|
|
8778
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8779
|
+
bidConfig: {
|
|
8780
|
+
contractorName: string | null;
|
|
8781
|
+
agencyName: string | null;
|
|
8782
|
+
specialisedProfile: string | null;
|
|
8783
|
+
};
|
|
8784
|
+
} | null;
|
|
7624
8785
|
activity?: Partial<Record<"4h" | "24h", {
|
|
7625
8786
|
updatedAt: number | null;
|
|
7626
8787
|
unansweredInvites: number | null;
|
|
@@ -7644,15 +8805,6 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7644
8805
|
proposalId?: string | undefined;
|
|
7645
8806
|
wonAmount?: number | undefined;
|
|
7646
8807
|
};
|
|
7647
|
-
boostingEnabled: boolean;
|
|
7648
|
-
maximumBoost: number | null;
|
|
7649
|
-
boostDownToNthPlace: number | null;
|
|
7650
|
-
connectsAbovePrevious: number | null;
|
|
7651
|
-
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7652
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
7653
|
-
biddingFixedHourlyRate: number | null;
|
|
7654
|
-
biddingHourlyRatePercentage: number | null;
|
|
7655
|
-
bidWithWarning: "bid" | "skip";
|
|
7656
8808
|
specialisedProfileOptions: string[];
|
|
7657
8809
|
minimumBoost: number | null;
|
|
7658
8810
|
isHourlyRate: boolean;
|
|
@@ -7760,6 +8912,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7760
8912
|
} | null;
|
|
7761
8913
|
activityUpdates: 2 | 1 | 3 | null;
|
|
7762
8914
|
scrapedAt: number | null;
|
|
8915
|
+
biddingDelayInMinutes: number | null;
|
|
8916
|
+
specialisedProfile: string | null;
|
|
7763
8917
|
jobId: string;
|
|
7764
8918
|
suitabilityRating: number | null;
|
|
7765
8919
|
suitabilityReason: string | null;
|
|
@@ -7769,20 +8923,38 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7769
8923
|
question: string;
|
|
7770
8924
|
}[] | null;
|
|
7771
8925
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
7772
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
8926
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
7773
8927
|
biddingAmount: number | null;
|
|
7774
8928
|
boosted: boolean | null;
|
|
7775
8929
|
boostingAmount: number | null;
|
|
7776
8930
|
boostedForPlace: number | null;
|
|
7777
|
-
specialisedProfile: string | null;
|
|
7778
8931
|
biddedAt: number | null;
|
|
7779
8932
|
biddingTaskScheduled: boolean | null;
|
|
7780
8933
|
scheduledBiddingTime: number | null;
|
|
7781
|
-
|
|
8934
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
7782
8935
|
feedbackCheckTaskId: string | null;
|
|
7783
8936
|
bidDecision: "rejected" | "proceeded" | null;
|
|
7784
8937
|
rejectedFeedback: string | null;
|
|
7785
8938
|
applicationId: string | null;
|
|
8939
|
+
leadBiddingConfig: {
|
|
8940
|
+
appliedFromQueue: boolean | null;
|
|
8941
|
+
biddingDelayInMinutes: number | null;
|
|
8942
|
+
bidWithWarning: "bid" | "skip";
|
|
8943
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8944
|
+
biddingHourlyRatePercentage: number | null;
|
|
8945
|
+
biddingFixedHourlyRate: number | null;
|
|
8946
|
+
boostingEnabled: boolean | null;
|
|
8947
|
+
boostDownToNthPlace: number | null;
|
|
8948
|
+
connectsAbovePrevious: number | null;
|
|
8949
|
+
maximumBoost: number | null;
|
|
8950
|
+
minBoost: number | null;
|
|
8951
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8952
|
+
bidConfig: {
|
|
8953
|
+
contractorName: string | null;
|
|
8954
|
+
agencyName: string | null;
|
|
8955
|
+
specialisedProfile: string | null;
|
|
8956
|
+
};
|
|
8957
|
+
} | null;
|
|
7786
8958
|
activity?: Partial<Record<"4h" | "24h", {
|
|
7787
8959
|
updatedAt: number | null;
|
|
7788
8960
|
unansweredInvites: number | null;
|
|
@@ -7809,6 +8981,15 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7809
8981
|
proposalData: {
|
|
7810
8982
|
campaignId: string;
|
|
7811
8983
|
organizationId: string;
|
|
8984
|
+
bidWithWarning: "bid" | "skip";
|
|
8985
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8986
|
+
biddingHourlyRatePercentage: number | null;
|
|
8987
|
+
biddingFixedHourlyRate: number | null;
|
|
8988
|
+
boostingEnabled: boolean;
|
|
8989
|
+
boostDownToNthPlace: number | null;
|
|
8990
|
+
connectsAbovePrevious: number | null;
|
|
8991
|
+
maximumBoost: number | null;
|
|
8992
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7812
8993
|
questionAnswerPairs: {
|
|
7813
8994
|
answer: string;
|
|
7814
8995
|
question: string;
|
|
@@ -7909,6 +9090,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7909
9090
|
} | null;
|
|
7910
9091
|
activityUpdates: 2 | 1 | 3 | null;
|
|
7911
9092
|
scrapedAt: number | null;
|
|
9093
|
+
biddingDelayInMinutes: number | null;
|
|
9094
|
+
specialisedProfile: string | null;
|
|
7912
9095
|
jobId: string;
|
|
7913
9096
|
suitabilityRating: number | null;
|
|
7914
9097
|
suitabilityReason: string | null;
|
|
@@ -7918,20 +9101,38 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7918
9101
|
question: string;
|
|
7919
9102
|
}[] | null;
|
|
7920
9103
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
7921
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
9104
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
7922
9105
|
biddingAmount: number | null;
|
|
7923
9106
|
boosted: boolean | null;
|
|
7924
9107
|
boostingAmount: number | null;
|
|
7925
9108
|
boostedForPlace: number | null;
|
|
7926
|
-
specialisedProfile: string | null;
|
|
7927
9109
|
biddedAt: number | null;
|
|
7928
9110
|
biddingTaskScheduled: boolean | null;
|
|
7929
9111
|
scheduledBiddingTime: number | null;
|
|
7930
|
-
|
|
9112
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
7931
9113
|
feedbackCheckTaskId: string | null;
|
|
7932
9114
|
bidDecision: "rejected" | "proceeded" | null;
|
|
7933
9115
|
rejectedFeedback: string | null;
|
|
7934
9116
|
applicationId: string | null;
|
|
9117
|
+
leadBiddingConfig: {
|
|
9118
|
+
appliedFromQueue: boolean | null;
|
|
9119
|
+
biddingDelayInMinutes: number | null;
|
|
9120
|
+
bidWithWarning: "bid" | "skip";
|
|
9121
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9122
|
+
biddingHourlyRatePercentage: number | null;
|
|
9123
|
+
biddingFixedHourlyRate: number | null;
|
|
9124
|
+
boostingEnabled: boolean | null;
|
|
9125
|
+
boostDownToNthPlace: number | null;
|
|
9126
|
+
connectsAbovePrevious: number | null;
|
|
9127
|
+
maximumBoost: number | null;
|
|
9128
|
+
minBoost: number | null;
|
|
9129
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
9130
|
+
bidConfig: {
|
|
9131
|
+
contractorName: string | null;
|
|
9132
|
+
agencyName: string | null;
|
|
9133
|
+
specialisedProfile: string | null;
|
|
9134
|
+
};
|
|
9135
|
+
} | null;
|
|
7935
9136
|
activity?: Partial<Record<"4h" | "24h", {
|
|
7936
9137
|
updatedAt: number | null;
|
|
7937
9138
|
unansweredInvites: number | null;
|
|
@@ -7955,15 +9156,6 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7955
9156
|
proposalId?: string | undefined;
|
|
7956
9157
|
wonAmount?: number | undefined;
|
|
7957
9158
|
};
|
|
7958
|
-
boostingEnabled: boolean;
|
|
7959
|
-
maximumBoost: number | null;
|
|
7960
|
-
boostDownToNthPlace: number | null;
|
|
7961
|
-
connectsAbovePrevious: number | null;
|
|
7962
|
-
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7963
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
7964
|
-
biddingFixedHourlyRate: number | null;
|
|
7965
|
-
biddingHourlyRatePercentage: number | null;
|
|
7966
|
-
bidWithWarning: "bid" | "skip";
|
|
7967
9159
|
specialisedProfileOptions: string[];
|
|
7968
9160
|
minimumBoost: number | null;
|
|
7969
9161
|
isHourlyRate: boolean;
|
|
@@ -8071,6 +9263,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8071
9263
|
} | null;
|
|
8072
9264
|
activityUpdates: 2 | 1 | 3 | null;
|
|
8073
9265
|
scrapedAt: number | null;
|
|
9266
|
+
biddingDelayInMinutes: number | null;
|
|
9267
|
+
specialisedProfile: string | null;
|
|
8074
9268
|
jobId: string;
|
|
8075
9269
|
suitabilityRating: number | null;
|
|
8076
9270
|
suitabilityReason: string | null;
|
|
@@ -8080,20 +9274,38 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8080
9274
|
question: string;
|
|
8081
9275
|
}[] | null;
|
|
8082
9276
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
8083
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
9277
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
8084
9278
|
biddingAmount: number | null;
|
|
8085
9279
|
boosted: boolean | null;
|
|
8086
9280
|
boostingAmount: number | null;
|
|
8087
9281
|
boostedForPlace: number | null;
|
|
8088
|
-
specialisedProfile: string | null;
|
|
8089
9282
|
biddedAt: number | null;
|
|
8090
9283
|
biddingTaskScheduled: boolean | null;
|
|
8091
9284
|
scheduledBiddingTime: number | null;
|
|
8092
|
-
|
|
9285
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
8093
9286
|
feedbackCheckTaskId: string | null;
|
|
8094
9287
|
bidDecision: "rejected" | "proceeded" | null;
|
|
8095
9288
|
rejectedFeedback: string | null;
|
|
8096
9289
|
applicationId: string | null;
|
|
9290
|
+
leadBiddingConfig: {
|
|
9291
|
+
appliedFromQueue: boolean | null;
|
|
9292
|
+
biddingDelayInMinutes: number | null;
|
|
9293
|
+
bidWithWarning: "bid" | "skip";
|
|
9294
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9295
|
+
biddingHourlyRatePercentage: number | null;
|
|
9296
|
+
biddingFixedHourlyRate: number | null;
|
|
9297
|
+
boostingEnabled: boolean | null;
|
|
9298
|
+
boostDownToNthPlace: number | null;
|
|
9299
|
+
connectsAbovePrevious: number | null;
|
|
9300
|
+
maximumBoost: number | null;
|
|
9301
|
+
minBoost: number | null;
|
|
9302
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
9303
|
+
bidConfig: {
|
|
9304
|
+
contractorName: string | null;
|
|
9305
|
+
agencyName: string | null;
|
|
9306
|
+
specialisedProfile: string | null;
|
|
9307
|
+
};
|
|
9308
|
+
} | null;
|
|
8097
9309
|
activity?: Partial<Record<"4h" | "24h", {
|
|
8098
9310
|
updatedAt: number | null;
|
|
8099
9311
|
unansweredInvites: number | null;
|
|
@@ -8120,6 +9332,15 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8120
9332
|
proposalData: {
|
|
8121
9333
|
campaignId: string;
|
|
8122
9334
|
organizationId: string;
|
|
9335
|
+
bidWithWarning: "bid" | "skip";
|
|
9336
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9337
|
+
biddingHourlyRatePercentage: number | null;
|
|
9338
|
+
biddingFixedHourlyRate: number | null;
|
|
9339
|
+
boostingEnabled: boolean;
|
|
9340
|
+
boostDownToNthPlace: number | null;
|
|
9341
|
+
connectsAbovePrevious: number | null;
|
|
9342
|
+
maximumBoost: number | null;
|
|
9343
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8123
9344
|
questionAnswerPairs: {
|
|
8124
9345
|
answer: string;
|
|
8125
9346
|
question: string;
|
|
@@ -8220,6 +9441,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8220
9441
|
} | null;
|
|
8221
9442
|
activityUpdates: 2 | 1 | 3 | null;
|
|
8222
9443
|
scrapedAt: number | null;
|
|
9444
|
+
biddingDelayInMinutes: number | null;
|
|
9445
|
+
specialisedProfile: string | null;
|
|
8223
9446
|
jobId: string;
|
|
8224
9447
|
suitabilityRating: number | null;
|
|
8225
9448
|
suitabilityReason: string | null;
|
|
@@ -8229,20 +9452,38 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8229
9452
|
question: string;
|
|
8230
9453
|
}[] | null;
|
|
8231
9454
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
8232
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
9455
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
8233
9456
|
biddingAmount: number | null;
|
|
8234
9457
|
boosted: boolean | null;
|
|
8235
9458
|
boostingAmount: number | null;
|
|
8236
9459
|
boostedForPlace: number | null;
|
|
8237
|
-
specialisedProfile: string | null;
|
|
8238
9460
|
biddedAt: number | null;
|
|
8239
9461
|
biddingTaskScheduled: boolean | null;
|
|
8240
9462
|
scheduledBiddingTime: number | null;
|
|
8241
|
-
|
|
9463
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
8242
9464
|
feedbackCheckTaskId: string | null;
|
|
8243
9465
|
bidDecision: "rejected" | "proceeded" | null;
|
|
8244
9466
|
rejectedFeedback: string | null;
|
|
8245
9467
|
applicationId: string | null;
|
|
9468
|
+
leadBiddingConfig: {
|
|
9469
|
+
appliedFromQueue: boolean | null;
|
|
9470
|
+
biddingDelayInMinutes: number | null;
|
|
9471
|
+
bidWithWarning: "bid" | "skip";
|
|
9472
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9473
|
+
biddingHourlyRatePercentage: number | null;
|
|
9474
|
+
biddingFixedHourlyRate: number | null;
|
|
9475
|
+
boostingEnabled: boolean | null;
|
|
9476
|
+
boostDownToNthPlace: number | null;
|
|
9477
|
+
connectsAbovePrevious: number | null;
|
|
9478
|
+
maximumBoost: number | null;
|
|
9479
|
+
minBoost: number | null;
|
|
9480
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
9481
|
+
bidConfig: {
|
|
9482
|
+
contractorName: string | null;
|
|
9483
|
+
agencyName: string | null;
|
|
9484
|
+
specialisedProfile: string | null;
|
|
9485
|
+
};
|
|
9486
|
+
} | null;
|
|
8246
9487
|
activity?: Partial<Record<"4h" | "24h", {
|
|
8247
9488
|
updatedAt: number | null;
|
|
8248
9489
|
unansweredInvites: number | null;
|
|
@@ -8266,15 +9507,6 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8266
9507
|
proposalId?: string | undefined;
|
|
8267
9508
|
wonAmount?: number | undefined;
|
|
8268
9509
|
};
|
|
8269
|
-
boostingEnabled: boolean;
|
|
8270
|
-
maximumBoost: number | null;
|
|
8271
|
-
boostDownToNthPlace: number | null;
|
|
8272
|
-
connectsAbovePrevious: number | null;
|
|
8273
|
-
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8274
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8275
|
-
biddingFixedHourlyRate: number | null;
|
|
8276
|
-
biddingHourlyRatePercentage: number | null;
|
|
8277
|
-
bidWithWarning: "bid" | "skip";
|
|
8278
9510
|
specialisedProfileOptions: string[];
|
|
8279
9511
|
minimumBoost: number | null;
|
|
8280
9512
|
isHourlyRate: boolean;
|
|
@@ -8604,7 +9836,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
8604
9836
|
question: string;
|
|
8605
9837
|
}>, "many">>;
|
|
8606
9838
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
8607
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "won"]>>;
|
|
9839
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingProcessing", "won"]>>;
|
|
8608
9840
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
8609
9841
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
8610
9842
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -8615,11 +9847,75 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
8615
9847
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
8616
9848
|
inQueue: z.ZodNullable<z.ZodBoolean>;
|
|
8617
9849
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
9850
|
+
checkFeedbackStatusCreatedAt: z.ZodNullable<z.ZodNumber>;
|
|
8618
9851
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
8619
9852
|
feedbackCheckTaskId: z.ZodNullable<z.ZodString>;
|
|
8620
9853
|
bidDecision: z.ZodNullable<z.ZodEnum<["proceeded", "rejected"]>>;
|
|
8621
9854
|
rejectedFeedback: z.ZodNullable<z.ZodString>;
|
|
8622
9855
|
applicationId: z.ZodNullable<z.ZodString>;
|
|
9856
|
+
leadBiddingConfig: z.ZodNullable<z.ZodObject<{
|
|
9857
|
+
appliedFromQueue: z.ZodNullable<z.ZodBoolean>;
|
|
9858
|
+
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
9859
|
+
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
9860
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
9861
|
+
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
9862
|
+
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
9863
|
+
boostingEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
9864
|
+
boostDownToNthPlace: z.ZodNullable<z.ZodNumber>;
|
|
9865
|
+
connectsAbovePrevious: z.ZodNullable<z.ZodNumber>;
|
|
9866
|
+
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
9867
|
+
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
9868
|
+
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
9869
|
+
bidConfig: z.ZodObject<{
|
|
9870
|
+
agencyName: z.ZodNullable<z.ZodString>;
|
|
9871
|
+
contractorName: z.ZodNullable<z.ZodString>;
|
|
9872
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
9873
|
+
}, "strip", z.ZodTypeAny, {
|
|
9874
|
+
contractorName: string | null;
|
|
9875
|
+
agencyName: string | null;
|
|
9876
|
+
specialisedProfile: string | null;
|
|
9877
|
+
}, {
|
|
9878
|
+
contractorName: string | null;
|
|
9879
|
+
agencyName: string | null;
|
|
9880
|
+
specialisedProfile: string | null;
|
|
9881
|
+
}>;
|
|
9882
|
+
}, "strip", z.ZodTypeAny, {
|
|
9883
|
+
appliedFromQueue: boolean | null;
|
|
9884
|
+
biddingDelayInMinutes: number | null;
|
|
9885
|
+
bidWithWarning: "bid" | "skip";
|
|
9886
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9887
|
+
biddingHourlyRatePercentage: number | null;
|
|
9888
|
+
biddingFixedHourlyRate: number | null;
|
|
9889
|
+
boostingEnabled: boolean | null;
|
|
9890
|
+
boostDownToNthPlace: number | null;
|
|
9891
|
+
connectsAbovePrevious: number | null;
|
|
9892
|
+
maximumBoost: number | null;
|
|
9893
|
+
minBoost: number | null;
|
|
9894
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
9895
|
+
bidConfig: {
|
|
9896
|
+
contractorName: string | null;
|
|
9897
|
+
agencyName: string | null;
|
|
9898
|
+
specialisedProfile: string | null;
|
|
9899
|
+
};
|
|
9900
|
+
}, {
|
|
9901
|
+
appliedFromQueue: boolean | null;
|
|
9902
|
+
biddingDelayInMinutes: number | null;
|
|
9903
|
+
bidWithWarning: "bid" | "skip";
|
|
9904
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9905
|
+
biddingHourlyRatePercentage: number | null;
|
|
9906
|
+
biddingFixedHourlyRate: number | null;
|
|
9907
|
+
boostingEnabled: boolean | null;
|
|
9908
|
+
boostDownToNthPlace: number | null;
|
|
9909
|
+
connectsAbovePrevious: number | null;
|
|
9910
|
+
maximumBoost: number | null;
|
|
9911
|
+
minBoost: number | null;
|
|
9912
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
9913
|
+
bidConfig: {
|
|
9914
|
+
contractorName: string | null;
|
|
9915
|
+
agencyName: string | null;
|
|
9916
|
+
specialisedProfile: string | null;
|
|
9917
|
+
};
|
|
9918
|
+
}>>;
|
|
8623
9919
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
8624
9920
|
id: string | null;
|
|
8625
9921
|
title: string | null;
|
|
@@ -8715,6 +10011,8 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
8715
10011
|
} | null;
|
|
8716
10012
|
activityUpdates: 2 | 1 | 3 | null;
|
|
8717
10013
|
scrapedAt: number | null;
|
|
10014
|
+
biddingDelayInMinutes: number | null;
|
|
10015
|
+
specialisedProfile: string | null;
|
|
8718
10016
|
jobId: string;
|
|
8719
10017
|
suitabilityRating: number | null;
|
|
8720
10018
|
suitabilityReason: string | null;
|
|
@@ -8724,20 +10022,38 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
8724
10022
|
question: string;
|
|
8725
10023
|
}[] | null;
|
|
8726
10024
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
8727
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
10025
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
8728
10026
|
biddingAmount: number | null;
|
|
8729
10027
|
boosted: boolean | null;
|
|
8730
10028
|
boostingAmount: number | null;
|
|
8731
10029
|
boostedForPlace: number | null;
|
|
8732
|
-
specialisedProfile: string | null;
|
|
8733
10030
|
biddedAt: number | null;
|
|
8734
10031
|
biddingTaskScheduled: boolean | null;
|
|
8735
10032
|
scheduledBiddingTime: number | null;
|
|
8736
|
-
|
|
10033
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
8737
10034
|
feedbackCheckTaskId: string | null;
|
|
8738
10035
|
bidDecision: "rejected" | "proceeded" | null;
|
|
8739
10036
|
rejectedFeedback: string | null;
|
|
8740
10037
|
applicationId: string | null;
|
|
10038
|
+
leadBiddingConfig: {
|
|
10039
|
+
appliedFromQueue: boolean | null;
|
|
10040
|
+
biddingDelayInMinutes: number | null;
|
|
10041
|
+
bidWithWarning: "bid" | "skip";
|
|
10042
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
10043
|
+
biddingHourlyRatePercentage: number | null;
|
|
10044
|
+
biddingFixedHourlyRate: number | null;
|
|
10045
|
+
boostingEnabled: boolean | null;
|
|
10046
|
+
boostDownToNthPlace: number | null;
|
|
10047
|
+
connectsAbovePrevious: number | null;
|
|
10048
|
+
maximumBoost: number | null;
|
|
10049
|
+
minBoost: number | null;
|
|
10050
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
10051
|
+
bidConfig: {
|
|
10052
|
+
contractorName: string | null;
|
|
10053
|
+
agencyName: string | null;
|
|
10054
|
+
specialisedProfile: string | null;
|
|
10055
|
+
};
|
|
10056
|
+
} | null;
|
|
8741
10057
|
activity?: Partial<Record<"4h" | "24h", {
|
|
8742
10058
|
updatedAt: number | null;
|
|
8743
10059
|
unansweredInvites: number | null;
|
|
@@ -8855,6 +10171,8 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
8855
10171
|
} | null;
|
|
8856
10172
|
activityUpdates: 2 | 1 | 3 | null;
|
|
8857
10173
|
scrapedAt: number | null;
|
|
10174
|
+
biddingDelayInMinutes: number | null;
|
|
10175
|
+
specialisedProfile: string | null;
|
|
8858
10176
|
jobId: string;
|
|
8859
10177
|
suitabilityRating: number | null;
|
|
8860
10178
|
suitabilityReason: string | null;
|
|
@@ -8864,20 +10182,38 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
8864
10182
|
question: string;
|
|
8865
10183
|
}[] | null;
|
|
8866
10184
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
8867
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
10185
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
8868
10186
|
biddingAmount: number | null;
|
|
8869
10187
|
boosted: boolean | null;
|
|
8870
10188
|
boostingAmount: number | null;
|
|
8871
10189
|
boostedForPlace: number | null;
|
|
8872
|
-
specialisedProfile: string | null;
|
|
8873
10190
|
biddedAt: number | null;
|
|
8874
10191
|
biddingTaskScheduled: boolean | null;
|
|
8875
10192
|
scheduledBiddingTime: number | null;
|
|
8876
|
-
|
|
10193
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
8877
10194
|
feedbackCheckTaskId: string | null;
|
|
8878
10195
|
bidDecision: "rejected" | "proceeded" | null;
|
|
8879
10196
|
rejectedFeedback: string | null;
|
|
8880
10197
|
applicationId: string | null;
|
|
10198
|
+
leadBiddingConfig: {
|
|
10199
|
+
appliedFromQueue: boolean | null;
|
|
10200
|
+
biddingDelayInMinutes: number | null;
|
|
10201
|
+
bidWithWarning: "bid" | "skip";
|
|
10202
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
10203
|
+
biddingHourlyRatePercentage: number | null;
|
|
10204
|
+
biddingFixedHourlyRate: number | null;
|
|
10205
|
+
boostingEnabled: boolean | null;
|
|
10206
|
+
boostDownToNthPlace: number | null;
|
|
10207
|
+
connectsAbovePrevious: number | null;
|
|
10208
|
+
maximumBoost: number | null;
|
|
10209
|
+
minBoost: number | null;
|
|
10210
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
10211
|
+
bidConfig: {
|
|
10212
|
+
contractorName: string | null;
|
|
10213
|
+
agencyName: string | null;
|
|
10214
|
+
specialisedProfile: string | null;
|
|
10215
|
+
};
|
|
10216
|
+
} | null;
|
|
8881
10217
|
activity?: Partial<Record<"4h" | "24h", {
|
|
8882
10218
|
updatedAt: number | null;
|
|
8883
10219
|
unansweredInvites: number | null;
|
|
@@ -9000,6 +10336,8 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
9000
10336
|
} | null;
|
|
9001
10337
|
activityUpdates: 2 | 1 | 3 | null;
|
|
9002
10338
|
scrapedAt: number | null;
|
|
10339
|
+
biddingDelayInMinutes: number | null;
|
|
10340
|
+
specialisedProfile: string | null;
|
|
9003
10341
|
jobId: string;
|
|
9004
10342
|
suitabilityRating: number | null;
|
|
9005
10343
|
suitabilityReason: string | null;
|
|
@@ -9009,20 +10347,38 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
9009
10347
|
question: string;
|
|
9010
10348
|
}[] | null;
|
|
9011
10349
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
9012
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
10350
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
9013
10351
|
biddingAmount: number | null;
|
|
9014
10352
|
boosted: boolean | null;
|
|
9015
10353
|
boostingAmount: number | null;
|
|
9016
10354
|
boostedForPlace: number | null;
|
|
9017
|
-
specialisedProfile: string | null;
|
|
9018
10355
|
biddedAt: number | null;
|
|
9019
10356
|
biddingTaskScheduled: boolean | null;
|
|
9020
10357
|
scheduledBiddingTime: number | null;
|
|
9021
|
-
|
|
10358
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
9022
10359
|
feedbackCheckTaskId: string | null;
|
|
9023
10360
|
bidDecision: "rejected" | "proceeded" | null;
|
|
9024
10361
|
rejectedFeedback: string | null;
|
|
9025
10362
|
applicationId: string | null;
|
|
10363
|
+
leadBiddingConfig: {
|
|
10364
|
+
appliedFromQueue: boolean | null;
|
|
10365
|
+
biddingDelayInMinutes: number | null;
|
|
10366
|
+
bidWithWarning: "bid" | "skip";
|
|
10367
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
10368
|
+
biddingHourlyRatePercentage: number | null;
|
|
10369
|
+
biddingFixedHourlyRate: number | null;
|
|
10370
|
+
boostingEnabled: boolean | null;
|
|
10371
|
+
boostDownToNthPlace: number | null;
|
|
10372
|
+
connectsAbovePrevious: number | null;
|
|
10373
|
+
maximumBoost: number | null;
|
|
10374
|
+
minBoost: number | null;
|
|
10375
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
10376
|
+
bidConfig: {
|
|
10377
|
+
contractorName: string | null;
|
|
10378
|
+
agencyName: string | null;
|
|
10379
|
+
specialisedProfile: string | null;
|
|
10380
|
+
};
|
|
10381
|
+
} | null;
|
|
9026
10382
|
activity?: Partial<Record<"4h" | "24h", {
|
|
9027
10383
|
updatedAt: number | null;
|
|
9028
10384
|
unansweredInvites: number | null;
|
|
@@ -9145,6 +10501,8 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
9145
10501
|
} | null;
|
|
9146
10502
|
activityUpdates: 2 | 1 | 3 | null;
|
|
9147
10503
|
scrapedAt: number | null;
|
|
10504
|
+
biddingDelayInMinutes: number | null;
|
|
10505
|
+
specialisedProfile: string | null;
|
|
9148
10506
|
jobId: string;
|
|
9149
10507
|
suitabilityRating: number | null;
|
|
9150
10508
|
suitabilityReason: string | null;
|
|
@@ -9154,20 +10512,38 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
9154
10512
|
question: string;
|
|
9155
10513
|
}[] | null;
|
|
9156
10514
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
9157
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
10515
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
9158
10516
|
biddingAmount: number | null;
|
|
9159
10517
|
boosted: boolean | null;
|
|
9160
10518
|
boostingAmount: number | null;
|
|
9161
10519
|
boostedForPlace: number | null;
|
|
9162
|
-
specialisedProfile: string | null;
|
|
9163
10520
|
biddedAt: number | null;
|
|
9164
10521
|
biddingTaskScheduled: boolean | null;
|
|
9165
10522
|
scheduledBiddingTime: number | null;
|
|
9166
|
-
|
|
10523
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
9167
10524
|
feedbackCheckTaskId: string | null;
|
|
9168
10525
|
bidDecision: "rejected" | "proceeded" | null;
|
|
9169
10526
|
rejectedFeedback: string | null;
|
|
9170
10527
|
applicationId: string | null;
|
|
10528
|
+
leadBiddingConfig: {
|
|
10529
|
+
appliedFromQueue: boolean | null;
|
|
10530
|
+
biddingDelayInMinutes: number | null;
|
|
10531
|
+
bidWithWarning: "bid" | "skip";
|
|
10532
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
10533
|
+
biddingHourlyRatePercentage: number | null;
|
|
10534
|
+
biddingFixedHourlyRate: number | null;
|
|
10535
|
+
boostingEnabled: boolean | null;
|
|
10536
|
+
boostDownToNthPlace: number | null;
|
|
10537
|
+
connectsAbovePrevious: number | null;
|
|
10538
|
+
maximumBoost: number | null;
|
|
10539
|
+
minBoost: number | null;
|
|
10540
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
10541
|
+
bidConfig: {
|
|
10542
|
+
contractorName: string | null;
|
|
10543
|
+
agencyName: string | null;
|
|
10544
|
+
specialisedProfile: string | null;
|
|
10545
|
+
};
|
|
10546
|
+
} | null;
|
|
9171
10547
|
activity?: Partial<Record<"4h" | "24h", {
|
|
9172
10548
|
updatedAt: number | null;
|
|
9173
10549
|
unansweredInvites: number | null;
|