lancer-shared 1.2.261 → 1.2.263
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 +40 -0
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +41 -3
- package/dist/bundle.esm.js.map +1 -1
- package/dist/constants/routes.d.ts +1 -0
- package/dist/schemas/agent/index.d.ts +165 -13
- package/dist/schemas/bidder/bid.d.ts +1680 -255
- package/dist/schemas/campaign/campaign-analytics.d.ts +614 -29
- package/dist/schemas/campaign/campaign.d.ts +120 -120
- package/dist/schemas/lead/index.d.ts +664 -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 +229 -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", "biddingFailed", "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,76 @@ 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>;
|
|
336
|
+
biddingScheduledAt: z.ZodNullable<z.ZodNumber>;
|
|
335
337
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
336
338
|
feedbackCheckTaskId: z.ZodNullable<z.ZodString>;
|
|
337
339
|
bidDecision: z.ZodNullable<z.ZodEnum<["proceeded", "rejected"]>>;
|
|
338
340
|
rejectedFeedback: z.ZodNullable<z.ZodString>;
|
|
339
341
|
applicationId: z.ZodNullable<z.ZodString>;
|
|
342
|
+
leadBiddingConfig: z.ZodNullable<z.ZodObject<{
|
|
343
|
+
appliedFromQueue: z.ZodNullable<z.ZodBoolean>;
|
|
344
|
+
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
345
|
+
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
346
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
347
|
+
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
348
|
+
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
349
|
+
boostingEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
350
|
+
boostDownToNthPlace: z.ZodNullable<z.ZodNumber>;
|
|
351
|
+
connectsAbovePrevious: z.ZodNullable<z.ZodNumber>;
|
|
352
|
+
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
353
|
+
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
354
|
+
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
355
|
+
bidConfig: z.ZodObject<{
|
|
356
|
+
agencyName: z.ZodNullable<z.ZodString>;
|
|
357
|
+
contractorName: z.ZodNullable<z.ZodString>;
|
|
358
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
359
|
+
}, "strip", z.ZodTypeAny, {
|
|
360
|
+
contractorName: string | null;
|
|
361
|
+
agencyName: string | null;
|
|
362
|
+
specialisedProfile: string | null;
|
|
363
|
+
}, {
|
|
364
|
+
contractorName: string | null;
|
|
365
|
+
agencyName: string | null;
|
|
366
|
+
specialisedProfile: string | null;
|
|
367
|
+
}>;
|
|
368
|
+
}, "strip", z.ZodTypeAny, {
|
|
369
|
+
appliedFromQueue: boolean | null;
|
|
370
|
+
biddingDelayInMinutes: number | null;
|
|
371
|
+
bidWithWarning: "bid" | "skip";
|
|
372
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
373
|
+
biddingHourlyRatePercentage: number | null;
|
|
374
|
+
biddingFixedHourlyRate: number | null;
|
|
375
|
+
boostingEnabled: boolean | null;
|
|
376
|
+
boostDownToNthPlace: number | null;
|
|
377
|
+
connectsAbovePrevious: number | null;
|
|
378
|
+
maximumBoost: number | null;
|
|
379
|
+
minBoost: number | null;
|
|
380
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
381
|
+
bidConfig: {
|
|
382
|
+
contractorName: string | null;
|
|
383
|
+
agencyName: string | null;
|
|
384
|
+
specialisedProfile: string | null;
|
|
385
|
+
};
|
|
386
|
+
}, {
|
|
387
|
+
appliedFromQueue: boolean | null;
|
|
388
|
+
biddingDelayInMinutes: number | null;
|
|
389
|
+
bidWithWarning: "bid" | "skip";
|
|
390
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
391
|
+
biddingHourlyRatePercentage: number | null;
|
|
392
|
+
biddingFixedHourlyRate: number | null;
|
|
393
|
+
boostingEnabled: boolean | null;
|
|
394
|
+
boostDownToNthPlace: number | null;
|
|
395
|
+
connectsAbovePrevious: number | null;
|
|
396
|
+
maximumBoost: number | null;
|
|
397
|
+
minBoost: number | null;
|
|
398
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
399
|
+
bidConfig: {
|
|
400
|
+
contractorName: string | null;
|
|
401
|
+
agencyName: string | null;
|
|
402
|
+
specialisedProfile: string | null;
|
|
403
|
+
};
|
|
404
|
+
}>>;
|
|
340
405
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
341
406
|
id: string | null;
|
|
342
407
|
title: string | null;
|
|
@@ -432,6 +497,8 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
432
497
|
} | null;
|
|
433
498
|
activityUpdates: 2 | 1 | 3 | null;
|
|
434
499
|
scrapedAt: number | null;
|
|
500
|
+
biddingDelayInMinutes: number | null;
|
|
501
|
+
specialisedProfile: string | null;
|
|
435
502
|
jobId: string;
|
|
436
503
|
suitabilityRating: number | null;
|
|
437
504
|
suitabilityReason: string | null;
|
|
@@ -441,20 +508,39 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
441
508
|
question: string;
|
|
442
509
|
}[] | null;
|
|
443
510
|
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;
|
|
511
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
445
512
|
biddingAmount: number | null;
|
|
446
513
|
boosted: boolean | null;
|
|
447
514
|
boostingAmount: number | null;
|
|
448
515
|
boostedForPlace: number | null;
|
|
449
|
-
specialisedProfile: string | null;
|
|
450
516
|
biddedAt: number | null;
|
|
451
517
|
biddingTaskScheduled: boolean | null;
|
|
452
518
|
scheduledBiddingTime: number | null;
|
|
453
|
-
|
|
519
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
520
|
+
biddingScheduledAt: number | null;
|
|
454
521
|
feedbackCheckTaskId: string | null;
|
|
455
522
|
bidDecision: "rejected" | "proceeded" | null;
|
|
456
523
|
rejectedFeedback: string | null;
|
|
457
524
|
applicationId: string | null;
|
|
525
|
+
leadBiddingConfig: {
|
|
526
|
+
appliedFromQueue: boolean | null;
|
|
527
|
+
biddingDelayInMinutes: number | null;
|
|
528
|
+
bidWithWarning: "bid" | "skip";
|
|
529
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
530
|
+
biddingHourlyRatePercentage: number | null;
|
|
531
|
+
biddingFixedHourlyRate: number | null;
|
|
532
|
+
boostingEnabled: boolean | null;
|
|
533
|
+
boostDownToNthPlace: number | null;
|
|
534
|
+
connectsAbovePrevious: number | null;
|
|
535
|
+
maximumBoost: number | null;
|
|
536
|
+
minBoost: number | null;
|
|
537
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
538
|
+
bidConfig: {
|
|
539
|
+
contractorName: string | null;
|
|
540
|
+
agencyName: string | null;
|
|
541
|
+
specialisedProfile: string | null;
|
|
542
|
+
};
|
|
543
|
+
} | null;
|
|
458
544
|
activity?: Partial<Record<"4h" | "24h", {
|
|
459
545
|
updatedAt: number | null;
|
|
460
546
|
unansweredInvites: number | null;
|
|
@@ -572,6 +658,8 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
572
658
|
} | null;
|
|
573
659
|
activityUpdates: 2 | 1 | 3 | null;
|
|
574
660
|
scrapedAt: number | null;
|
|
661
|
+
biddingDelayInMinutes: number | null;
|
|
662
|
+
specialisedProfile: string | null;
|
|
575
663
|
jobId: string;
|
|
576
664
|
suitabilityRating: number | null;
|
|
577
665
|
suitabilityReason: string | null;
|
|
@@ -581,20 +669,39 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
581
669
|
question: string;
|
|
582
670
|
}[] | null;
|
|
583
671
|
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;
|
|
672
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
585
673
|
biddingAmount: number | null;
|
|
586
674
|
boosted: boolean | null;
|
|
587
675
|
boostingAmount: number | null;
|
|
588
676
|
boostedForPlace: number | null;
|
|
589
|
-
specialisedProfile: string | null;
|
|
590
677
|
biddedAt: number | null;
|
|
591
678
|
biddingTaskScheduled: boolean | null;
|
|
592
679
|
scheduledBiddingTime: number | null;
|
|
593
|
-
|
|
680
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
681
|
+
biddingScheduledAt: number | null;
|
|
594
682
|
feedbackCheckTaskId: string | null;
|
|
595
683
|
bidDecision: "rejected" | "proceeded" | null;
|
|
596
684
|
rejectedFeedback: string | null;
|
|
597
685
|
applicationId: string | null;
|
|
686
|
+
leadBiddingConfig: {
|
|
687
|
+
appliedFromQueue: boolean | null;
|
|
688
|
+
biddingDelayInMinutes: number | null;
|
|
689
|
+
bidWithWarning: "bid" | "skip";
|
|
690
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
691
|
+
biddingHourlyRatePercentage: number | null;
|
|
692
|
+
biddingFixedHourlyRate: number | null;
|
|
693
|
+
boostingEnabled: boolean | null;
|
|
694
|
+
boostDownToNthPlace: number | null;
|
|
695
|
+
connectsAbovePrevious: number | null;
|
|
696
|
+
maximumBoost: number | null;
|
|
697
|
+
minBoost: number | null;
|
|
698
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
699
|
+
bidConfig: {
|
|
700
|
+
contractorName: string | null;
|
|
701
|
+
agencyName: string | null;
|
|
702
|
+
specialisedProfile: string | null;
|
|
703
|
+
};
|
|
704
|
+
} | null;
|
|
598
705
|
activity?: Partial<Record<"4h" | "24h", {
|
|
599
706
|
updatedAt: number | null;
|
|
600
707
|
unansweredInvites: number | null;
|
|
@@ -646,6 +753,15 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
646
753
|
}, "strip", z.ZodTypeAny, {
|
|
647
754
|
campaignId: string;
|
|
648
755
|
organizationId: string;
|
|
756
|
+
bidWithWarning: "bid" | "skip";
|
|
757
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
758
|
+
biddingHourlyRatePercentage: number | null;
|
|
759
|
+
biddingFixedHourlyRate: number | null;
|
|
760
|
+
boostingEnabled: boolean;
|
|
761
|
+
boostDownToNthPlace: number | null;
|
|
762
|
+
connectsAbovePrevious: number | null;
|
|
763
|
+
maximumBoost: number | null;
|
|
764
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
649
765
|
questionAnswerPairs: {
|
|
650
766
|
answer: string;
|
|
651
767
|
question: string;
|
|
@@ -746,6 +862,8 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
746
862
|
} | null;
|
|
747
863
|
activityUpdates: 2 | 1 | 3 | null;
|
|
748
864
|
scrapedAt: number | null;
|
|
865
|
+
biddingDelayInMinutes: number | null;
|
|
866
|
+
specialisedProfile: string | null;
|
|
749
867
|
jobId: string;
|
|
750
868
|
suitabilityRating: number | null;
|
|
751
869
|
suitabilityReason: string | null;
|
|
@@ -755,20 +873,39 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
755
873
|
question: string;
|
|
756
874
|
}[] | null;
|
|
757
875
|
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;
|
|
876
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
759
877
|
biddingAmount: number | null;
|
|
760
878
|
boosted: boolean | null;
|
|
761
879
|
boostingAmount: number | null;
|
|
762
880
|
boostedForPlace: number | null;
|
|
763
|
-
specialisedProfile: string | null;
|
|
764
881
|
biddedAt: number | null;
|
|
765
882
|
biddingTaskScheduled: boolean | null;
|
|
766
883
|
scheduledBiddingTime: number | null;
|
|
767
|
-
|
|
884
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
885
|
+
biddingScheduledAt: number | null;
|
|
768
886
|
feedbackCheckTaskId: string | null;
|
|
769
887
|
bidDecision: "rejected" | "proceeded" | null;
|
|
770
888
|
rejectedFeedback: string | null;
|
|
771
889
|
applicationId: string | null;
|
|
890
|
+
leadBiddingConfig: {
|
|
891
|
+
appliedFromQueue: boolean | null;
|
|
892
|
+
biddingDelayInMinutes: number | null;
|
|
893
|
+
bidWithWarning: "bid" | "skip";
|
|
894
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
895
|
+
biddingHourlyRatePercentage: number | null;
|
|
896
|
+
biddingFixedHourlyRate: number | null;
|
|
897
|
+
boostingEnabled: boolean | null;
|
|
898
|
+
boostDownToNthPlace: number | null;
|
|
899
|
+
connectsAbovePrevious: number | null;
|
|
900
|
+
maximumBoost: number | null;
|
|
901
|
+
minBoost: number | null;
|
|
902
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
903
|
+
bidConfig: {
|
|
904
|
+
contractorName: string | null;
|
|
905
|
+
agencyName: string | null;
|
|
906
|
+
specialisedProfile: string | null;
|
|
907
|
+
};
|
|
908
|
+
} | null;
|
|
772
909
|
activity?: Partial<Record<"4h" | "24h", {
|
|
773
910
|
updatedAt: number | null;
|
|
774
911
|
unansweredInvites: number | null;
|
|
@@ -792,15 +929,6 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
792
929
|
proposalId?: string | undefined;
|
|
793
930
|
wonAmount?: number | undefined;
|
|
794
931
|
};
|
|
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
932
|
specialisedProfileOptions: string[];
|
|
805
933
|
minimumBoost: number | null;
|
|
806
934
|
isHourlyRate: boolean;
|
|
@@ -809,6 +937,15 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
809
937
|
}, {
|
|
810
938
|
campaignId: string;
|
|
811
939
|
organizationId: string;
|
|
940
|
+
bidWithWarning: "bid" | "skip";
|
|
941
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
942
|
+
biddingHourlyRatePercentage: number | null;
|
|
943
|
+
biddingFixedHourlyRate: number | null;
|
|
944
|
+
boostingEnabled: boolean;
|
|
945
|
+
boostDownToNthPlace: number | null;
|
|
946
|
+
connectsAbovePrevious: number | null;
|
|
947
|
+
maximumBoost: number | null;
|
|
948
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
812
949
|
questionAnswerPairs: {
|
|
813
950
|
answer: string;
|
|
814
951
|
question: string;
|
|
@@ -909,6 +1046,8 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
909
1046
|
} | null;
|
|
910
1047
|
activityUpdates: 2 | 1 | 3 | null;
|
|
911
1048
|
scrapedAt: number | null;
|
|
1049
|
+
biddingDelayInMinutes: number | null;
|
|
1050
|
+
specialisedProfile: string | null;
|
|
912
1051
|
jobId: string;
|
|
913
1052
|
suitabilityRating: number | null;
|
|
914
1053
|
suitabilityReason: string | null;
|
|
@@ -918,20 +1057,39 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
918
1057
|
question: string;
|
|
919
1058
|
}[] | null;
|
|
920
1059
|
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;
|
|
1060
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
922
1061
|
biddingAmount: number | null;
|
|
923
1062
|
boosted: boolean | null;
|
|
924
1063
|
boostingAmount: number | null;
|
|
925
1064
|
boostedForPlace: number | null;
|
|
926
|
-
specialisedProfile: string | null;
|
|
927
1065
|
biddedAt: number | null;
|
|
928
1066
|
biddingTaskScheduled: boolean | null;
|
|
929
1067
|
scheduledBiddingTime: number | null;
|
|
930
|
-
|
|
1068
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
1069
|
+
biddingScheduledAt: number | null;
|
|
931
1070
|
feedbackCheckTaskId: string | null;
|
|
932
1071
|
bidDecision: "rejected" | "proceeded" | null;
|
|
933
1072
|
rejectedFeedback: string | null;
|
|
934
1073
|
applicationId: string | null;
|
|
1074
|
+
leadBiddingConfig: {
|
|
1075
|
+
appliedFromQueue: boolean | null;
|
|
1076
|
+
biddingDelayInMinutes: number | null;
|
|
1077
|
+
bidWithWarning: "bid" | "skip";
|
|
1078
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1079
|
+
biddingHourlyRatePercentage: number | null;
|
|
1080
|
+
biddingFixedHourlyRate: number | null;
|
|
1081
|
+
boostingEnabled: boolean | null;
|
|
1082
|
+
boostDownToNthPlace: number | null;
|
|
1083
|
+
connectsAbovePrevious: number | null;
|
|
1084
|
+
maximumBoost: number | null;
|
|
1085
|
+
minBoost: number | null;
|
|
1086
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1087
|
+
bidConfig: {
|
|
1088
|
+
contractorName: string | null;
|
|
1089
|
+
agencyName: string | null;
|
|
1090
|
+
specialisedProfile: string | null;
|
|
1091
|
+
};
|
|
1092
|
+
} | null;
|
|
935
1093
|
activity?: Partial<Record<"4h" | "24h", {
|
|
936
1094
|
updatedAt: number | null;
|
|
937
1095
|
unansweredInvites: number | null;
|
|
@@ -955,15 +1113,6 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
955
1113
|
proposalId?: string | undefined;
|
|
956
1114
|
wonAmount?: number | undefined;
|
|
957
1115
|
};
|
|
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
1116
|
specialisedProfileOptions: string[];
|
|
968
1117
|
minimumBoost: number | null;
|
|
969
1118
|
isHourlyRate: boolean;
|
|
@@ -1291,7 +1440,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1291
1440
|
question: string;
|
|
1292
1441
|
}>, "many">>;
|
|
1293
1442
|
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"]>>;
|
|
1443
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingProcessing", "biddingFailed", "won"]>>;
|
|
1295
1444
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
1296
1445
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
1297
1446
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1302,11 +1451,76 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1302
1451
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
1303
1452
|
inQueue: z.ZodNullable<z.ZodBoolean>;
|
|
1304
1453
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
1454
|
+
checkFeedbackStatusCreatedAt: z.ZodNullable<z.ZodNumber>;
|
|
1455
|
+
biddingScheduledAt: z.ZodNullable<z.ZodNumber>;
|
|
1305
1456
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
1306
1457
|
feedbackCheckTaskId: z.ZodNullable<z.ZodString>;
|
|
1307
1458
|
bidDecision: z.ZodNullable<z.ZodEnum<["proceeded", "rejected"]>>;
|
|
1308
1459
|
rejectedFeedback: z.ZodNullable<z.ZodString>;
|
|
1309
1460
|
applicationId: z.ZodNullable<z.ZodString>;
|
|
1461
|
+
leadBiddingConfig: z.ZodNullable<z.ZodObject<{
|
|
1462
|
+
appliedFromQueue: z.ZodNullable<z.ZodBoolean>;
|
|
1463
|
+
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
1464
|
+
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
1465
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
1466
|
+
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
1467
|
+
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
1468
|
+
boostingEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
1469
|
+
boostDownToNthPlace: z.ZodNullable<z.ZodNumber>;
|
|
1470
|
+
connectsAbovePrevious: z.ZodNullable<z.ZodNumber>;
|
|
1471
|
+
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
1472
|
+
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
1473
|
+
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
1474
|
+
bidConfig: z.ZodObject<{
|
|
1475
|
+
agencyName: z.ZodNullable<z.ZodString>;
|
|
1476
|
+
contractorName: z.ZodNullable<z.ZodString>;
|
|
1477
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
1478
|
+
}, "strip", z.ZodTypeAny, {
|
|
1479
|
+
contractorName: string | null;
|
|
1480
|
+
agencyName: string | null;
|
|
1481
|
+
specialisedProfile: string | null;
|
|
1482
|
+
}, {
|
|
1483
|
+
contractorName: string | null;
|
|
1484
|
+
agencyName: string | null;
|
|
1485
|
+
specialisedProfile: string | null;
|
|
1486
|
+
}>;
|
|
1487
|
+
}, "strip", z.ZodTypeAny, {
|
|
1488
|
+
appliedFromQueue: boolean | null;
|
|
1489
|
+
biddingDelayInMinutes: number | null;
|
|
1490
|
+
bidWithWarning: "bid" | "skip";
|
|
1491
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1492
|
+
biddingHourlyRatePercentage: number | null;
|
|
1493
|
+
biddingFixedHourlyRate: number | null;
|
|
1494
|
+
boostingEnabled: boolean | null;
|
|
1495
|
+
boostDownToNthPlace: number | null;
|
|
1496
|
+
connectsAbovePrevious: number | null;
|
|
1497
|
+
maximumBoost: number | null;
|
|
1498
|
+
minBoost: number | null;
|
|
1499
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1500
|
+
bidConfig: {
|
|
1501
|
+
contractorName: string | null;
|
|
1502
|
+
agencyName: string | null;
|
|
1503
|
+
specialisedProfile: string | null;
|
|
1504
|
+
};
|
|
1505
|
+
}, {
|
|
1506
|
+
appliedFromQueue: boolean | null;
|
|
1507
|
+
biddingDelayInMinutes: number | null;
|
|
1508
|
+
bidWithWarning: "bid" | "skip";
|
|
1509
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1510
|
+
biddingHourlyRatePercentage: number | null;
|
|
1511
|
+
biddingFixedHourlyRate: number | null;
|
|
1512
|
+
boostingEnabled: boolean | null;
|
|
1513
|
+
boostDownToNthPlace: number | null;
|
|
1514
|
+
connectsAbovePrevious: number | null;
|
|
1515
|
+
maximumBoost: number | null;
|
|
1516
|
+
minBoost: number | null;
|
|
1517
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1518
|
+
bidConfig: {
|
|
1519
|
+
contractorName: string | null;
|
|
1520
|
+
agencyName: string | null;
|
|
1521
|
+
specialisedProfile: string | null;
|
|
1522
|
+
};
|
|
1523
|
+
}>>;
|
|
1310
1524
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
1311
1525
|
id: string | null;
|
|
1312
1526
|
title: string | null;
|
|
@@ -1402,6 +1616,8 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1402
1616
|
} | null;
|
|
1403
1617
|
activityUpdates: 2 | 1 | 3 | null;
|
|
1404
1618
|
scrapedAt: number | null;
|
|
1619
|
+
biddingDelayInMinutes: number | null;
|
|
1620
|
+
specialisedProfile: string | null;
|
|
1405
1621
|
jobId: string;
|
|
1406
1622
|
suitabilityRating: number | null;
|
|
1407
1623
|
suitabilityReason: string | null;
|
|
@@ -1411,20 +1627,39 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1411
1627
|
question: string;
|
|
1412
1628
|
}[] | null;
|
|
1413
1629
|
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;
|
|
1630
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
1415
1631
|
biddingAmount: number | null;
|
|
1416
1632
|
boosted: boolean | null;
|
|
1417
1633
|
boostingAmount: number | null;
|
|
1418
1634
|
boostedForPlace: number | null;
|
|
1419
|
-
specialisedProfile: string | null;
|
|
1420
1635
|
biddedAt: number | null;
|
|
1421
1636
|
biddingTaskScheduled: boolean | null;
|
|
1422
1637
|
scheduledBiddingTime: number | null;
|
|
1423
|
-
|
|
1638
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
1639
|
+
biddingScheduledAt: number | null;
|
|
1424
1640
|
feedbackCheckTaskId: string | null;
|
|
1425
1641
|
bidDecision: "rejected" | "proceeded" | null;
|
|
1426
1642
|
rejectedFeedback: string | null;
|
|
1427
1643
|
applicationId: string | null;
|
|
1644
|
+
leadBiddingConfig: {
|
|
1645
|
+
appliedFromQueue: boolean | null;
|
|
1646
|
+
biddingDelayInMinutes: number | null;
|
|
1647
|
+
bidWithWarning: "bid" | "skip";
|
|
1648
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1649
|
+
biddingHourlyRatePercentage: number | null;
|
|
1650
|
+
biddingFixedHourlyRate: number | null;
|
|
1651
|
+
boostingEnabled: boolean | null;
|
|
1652
|
+
boostDownToNthPlace: number | null;
|
|
1653
|
+
connectsAbovePrevious: number | null;
|
|
1654
|
+
maximumBoost: number | null;
|
|
1655
|
+
minBoost: number | null;
|
|
1656
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1657
|
+
bidConfig: {
|
|
1658
|
+
contractorName: string | null;
|
|
1659
|
+
agencyName: string | null;
|
|
1660
|
+
specialisedProfile: string | null;
|
|
1661
|
+
};
|
|
1662
|
+
} | null;
|
|
1428
1663
|
activity?: Partial<Record<"4h" | "24h", {
|
|
1429
1664
|
updatedAt: number | null;
|
|
1430
1665
|
unansweredInvites: number | null;
|
|
@@ -1542,6 +1777,8 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1542
1777
|
} | null;
|
|
1543
1778
|
activityUpdates: 2 | 1 | 3 | null;
|
|
1544
1779
|
scrapedAt: number | null;
|
|
1780
|
+
biddingDelayInMinutes: number | null;
|
|
1781
|
+
specialisedProfile: string | null;
|
|
1545
1782
|
jobId: string;
|
|
1546
1783
|
suitabilityRating: number | null;
|
|
1547
1784
|
suitabilityReason: string | null;
|
|
@@ -1551,20 +1788,39 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1551
1788
|
question: string;
|
|
1552
1789
|
}[] | null;
|
|
1553
1790
|
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;
|
|
1791
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
1555
1792
|
biddingAmount: number | null;
|
|
1556
1793
|
boosted: boolean | null;
|
|
1557
1794
|
boostingAmount: number | null;
|
|
1558
1795
|
boostedForPlace: number | null;
|
|
1559
|
-
specialisedProfile: string | null;
|
|
1560
1796
|
biddedAt: number | null;
|
|
1561
1797
|
biddingTaskScheduled: boolean | null;
|
|
1562
1798
|
scheduledBiddingTime: number | null;
|
|
1563
|
-
|
|
1799
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
1800
|
+
biddingScheduledAt: number | null;
|
|
1564
1801
|
feedbackCheckTaskId: string | null;
|
|
1565
1802
|
bidDecision: "rejected" | "proceeded" | null;
|
|
1566
1803
|
rejectedFeedback: string | null;
|
|
1567
1804
|
applicationId: string | null;
|
|
1805
|
+
leadBiddingConfig: {
|
|
1806
|
+
appliedFromQueue: boolean | null;
|
|
1807
|
+
biddingDelayInMinutes: number | null;
|
|
1808
|
+
bidWithWarning: "bid" | "skip";
|
|
1809
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1810
|
+
biddingHourlyRatePercentage: number | null;
|
|
1811
|
+
biddingFixedHourlyRate: number | null;
|
|
1812
|
+
boostingEnabled: boolean | null;
|
|
1813
|
+
boostDownToNthPlace: number | null;
|
|
1814
|
+
connectsAbovePrevious: number | null;
|
|
1815
|
+
maximumBoost: number | null;
|
|
1816
|
+
minBoost: number | null;
|
|
1817
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1818
|
+
bidConfig: {
|
|
1819
|
+
contractorName: string | null;
|
|
1820
|
+
agencyName: string | null;
|
|
1821
|
+
specialisedProfile: string | null;
|
|
1822
|
+
};
|
|
1823
|
+
} | null;
|
|
1568
1824
|
activity?: Partial<Record<"4h" | "24h", {
|
|
1569
1825
|
updatedAt: number | null;
|
|
1570
1826
|
unansweredInvites: number | null;
|
|
@@ -1616,6 +1872,15 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1616
1872
|
}, "strip", z.ZodTypeAny, {
|
|
1617
1873
|
campaignId: string;
|
|
1618
1874
|
organizationId: string;
|
|
1875
|
+
bidWithWarning: "bid" | "skip";
|
|
1876
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1877
|
+
biddingHourlyRatePercentage: number | null;
|
|
1878
|
+
biddingFixedHourlyRate: number | null;
|
|
1879
|
+
boostingEnabled: boolean;
|
|
1880
|
+
boostDownToNthPlace: number | null;
|
|
1881
|
+
connectsAbovePrevious: number | null;
|
|
1882
|
+
maximumBoost: number | null;
|
|
1883
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1619
1884
|
questionAnswerPairs: {
|
|
1620
1885
|
answer: string;
|
|
1621
1886
|
question: string;
|
|
@@ -1716,6 +1981,8 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1716
1981
|
} | null;
|
|
1717
1982
|
activityUpdates: 2 | 1 | 3 | null;
|
|
1718
1983
|
scrapedAt: number | null;
|
|
1984
|
+
biddingDelayInMinutes: number | null;
|
|
1985
|
+
specialisedProfile: string | null;
|
|
1719
1986
|
jobId: string;
|
|
1720
1987
|
suitabilityRating: number | null;
|
|
1721
1988
|
suitabilityReason: string | null;
|
|
@@ -1725,20 +1992,39 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1725
1992
|
question: string;
|
|
1726
1993
|
}[] | null;
|
|
1727
1994
|
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;
|
|
1995
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
1729
1996
|
biddingAmount: number | null;
|
|
1730
1997
|
boosted: boolean | null;
|
|
1731
1998
|
boostingAmount: number | null;
|
|
1732
1999
|
boostedForPlace: number | null;
|
|
1733
|
-
specialisedProfile: string | null;
|
|
1734
2000
|
biddedAt: number | null;
|
|
1735
2001
|
biddingTaskScheduled: boolean | null;
|
|
1736
2002
|
scheduledBiddingTime: number | null;
|
|
1737
|
-
|
|
2003
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
2004
|
+
biddingScheduledAt: number | null;
|
|
1738
2005
|
feedbackCheckTaskId: string | null;
|
|
1739
2006
|
bidDecision: "rejected" | "proceeded" | null;
|
|
1740
2007
|
rejectedFeedback: string | null;
|
|
1741
2008
|
applicationId: string | null;
|
|
2009
|
+
leadBiddingConfig: {
|
|
2010
|
+
appliedFromQueue: boolean | null;
|
|
2011
|
+
biddingDelayInMinutes: number | null;
|
|
2012
|
+
bidWithWarning: "bid" | "skip";
|
|
2013
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2014
|
+
biddingHourlyRatePercentage: number | null;
|
|
2015
|
+
biddingFixedHourlyRate: number | null;
|
|
2016
|
+
boostingEnabled: boolean | null;
|
|
2017
|
+
boostDownToNthPlace: number | null;
|
|
2018
|
+
connectsAbovePrevious: number | null;
|
|
2019
|
+
maximumBoost: number | null;
|
|
2020
|
+
minBoost: number | null;
|
|
2021
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2022
|
+
bidConfig: {
|
|
2023
|
+
contractorName: string | null;
|
|
2024
|
+
agencyName: string | null;
|
|
2025
|
+
specialisedProfile: string | null;
|
|
2026
|
+
};
|
|
2027
|
+
} | null;
|
|
1742
2028
|
activity?: Partial<Record<"4h" | "24h", {
|
|
1743
2029
|
updatedAt: number | null;
|
|
1744
2030
|
unansweredInvites: number | null;
|
|
@@ -1762,15 +2048,6 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1762
2048
|
proposalId?: string | undefined;
|
|
1763
2049
|
wonAmount?: number | undefined;
|
|
1764
2050
|
};
|
|
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
2051
|
specialisedProfileOptions: string[];
|
|
1775
2052
|
minimumBoost: number | null;
|
|
1776
2053
|
isHourlyRate: boolean;
|
|
@@ -1779,6 +2056,15 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1779
2056
|
}, {
|
|
1780
2057
|
campaignId: string;
|
|
1781
2058
|
organizationId: string;
|
|
2059
|
+
bidWithWarning: "bid" | "skip";
|
|
2060
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2061
|
+
biddingHourlyRatePercentage: number | null;
|
|
2062
|
+
biddingFixedHourlyRate: number | null;
|
|
2063
|
+
boostingEnabled: boolean;
|
|
2064
|
+
boostDownToNthPlace: number | null;
|
|
2065
|
+
connectsAbovePrevious: number | null;
|
|
2066
|
+
maximumBoost: number | null;
|
|
2067
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1782
2068
|
questionAnswerPairs: {
|
|
1783
2069
|
answer: string;
|
|
1784
2070
|
question: string;
|
|
@@ -1879,6 +2165,8 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1879
2165
|
} | null;
|
|
1880
2166
|
activityUpdates: 2 | 1 | 3 | null;
|
|
1881
2167
|
scrapedAt: number | null;
|
|
2168
|
+
biddingDelayInMinutes: number | null;
|
|
2169
|
+
specialisedProfile: string | null;
|
|
1882
2170
|
jobId: string;
|
|
1883
2171
|
suitabilityRating: number | null;
|
|
1884
2172
|
suitabilityReason: string | null;
|
|
@@ -1888,20 +2176,39 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1888
2176
|
question: string;
|
|
1889
2177
|
}[] | null;
|
|
1890
2178
|
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;
|
|
2179
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
1892
2180
|
biddingAmount: number | null;
|
|
1893
2181
|
boosted: boolean | null;
|
|
1894
2182
|
boostingAmount: number | null;
|
|
1895
2183
|
boostedForPlace: number | null;
|
|
1896
|
-
specialisedProfile: string | null;
|
|
1897
2184
|
biddedAt: number | null;
|
|
1898
2185
|
biddingTaskScheduled: boolean | null;
|
|
1899
2186
|
scheduledBiddingTime: number | null;
|
|
1900
|
-
|
|
2187
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
2188
|
+
biddingScheduledAt: number | null;
|
|
1901
2189
|
feedbackCheckTaskId: string | null;
|
|
1902
2190
|
bidDecision: "rejected" | "proceeded" | null;
|
|
1903
2191
|
rejectedFeedback: string | null;
|
|
1904
2192
|
applicationId: string | null;
|
|
2193
|
+
leadBiddingConfig: {
|
|
2194
|
+
appliedFromQueue: boolean | null;
|
|
2195
|
+
biddingDelayInMinutes: number | null;
|
|
2196
|
+
bidWithWarning: "bid" | "skip";
|
|
2197
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2198
|
+
biddingHourlyRatePercentage: number | null;
|
|
2199
|
+
biddingFixedHourlyRate: number | null;
|
|
2200
|
+
boostingEnabled: boolean | null;
|
|
2201
|
+
boostDownToNthPlace: number | null;
|
|
2202
|
+
connectsAbovePrevious: number | null;
|
|
2203
|
+
maximumBoost: number | null;
|
|
2204
|
+
minBoost: number | null;
|
|
2205
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2206
|
+
bidConfig: {
|
|
2207
|
+
contractorName: string | null;
|
|
2208
|
+
agencyName: string | null;
|
|
2209
|
+
specialisedProfile: string | null;
|
|
2210
|
+
};
|
|
2211
|
+
} | null;
|
|
1905
2212
|
activity?: Partial<Record<"4h" | "24h", {
|
|
1906
2213
|
updatedAt: number | null;
|
|
1907
2214
|
unansweredInvites: number | null;
|
|
@@ -1925,15 +2232,6 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1925
2232
|
proposalId?: string | undefined;
|
|
1926
2233
|
wonAmount?: number | undefined;
|
|
1927
2234
|
};
|
|
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
2235
|
specialisedProfileOptions: string[];
|
|
1938
2236
|
minimumBoost: number | null;
|
|
1939
2237
|
isHourlyRate: boolean;
|
|
@@ -2261,7 +2559,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2261
2559
|
question: string;
|
|
2262
2560
|
}>, "many">>;
|
|
2263
2561
|
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"]>>;
|
|
2562
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingProcessing", "biddingFailed", "won"]>>;
|
|
2265
2563
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
2266
2564
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
2267
2565
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -2272,11 +2570,76 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2272
2570
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
2273
2571
|
inQueue: z.ZodNullable<z.ZodBoolean>;
|
|
2274
2572
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
2573
|
+
checkFeedbackStatusCreatedAt: z.ZodNullable<z.ZodNumber>;
|
|
2574
|
+
biddingScheduledAt: z.ZodNullable<z.ZodNumber>;
|
|
2275
2575
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
2276
2576
|
feedbackCheckTaskId: z.ZodNullable<z.ZodString>;
|
|
2277
2577
|
bidDecision: z.ZodNullable<z.ZodEnum<["proceeded", "rejected"]>>;
|
|
2278
2578
|
rejectedFeedback: z.ZodNullable<z.ZodString>;
|
|
2279
2579
|
applicationId: z.ZodNullable<z.ZodString>;
|
|
2580
|
+
leadBiddingConfig: z.ZodNullable<z.ZodObject<{
|
|
2581
|
+
appliedFromQueue: z.ZodNullable<z.ZodBoolean>;
|
|
2582
|
+
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
2583
|
+
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
2584
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
2585
|
+
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
2586
|
+
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
2587
|
+
boostingEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
2588
|
+
boostDownToNthPlace: z.ZodNullable<z.ZodNumber>;
|
|
2589
|
+
connectsAbovePrevious: z.ZodNullable<z.ZodNumber>;
|
|
2590
|
+
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
2591
|
+
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
2592
|
+
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
2593
|
+
bidConfig: z.ZodObject<{
|
|
2594
|
+
agencyName: z.ZodNullable<z.ZodString>;
|
|
2595
|
+
contractorName: z.ZodNullable<z.ZodString>;
|
|
2596
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
2597
|
+
}, "strip", z.ZodTypeAny, {
|
|
2598
|
+
contractorName: string | null;
|
|
2599
|
+
agencyName: string | null;
|
|
2600
|
+
specialisedProfile: string | null;
|
|
2601
|
+
}, {
|
|
2602
|
+
contractorName: string | null;
|
|
2603
|
+
agencyName: string | null;
|
|
2604
|
+
specialisedProfile: string | null;
|
|
2605
|
+
}>;
|
|
2606
|
+
}, "strip", z.ZodTypeAny, {
|
|
2607
|
+
appliedFromQueue: boolean | null;
|
|
2608
|
+
biddingDelayInMinutes: number | null;
|
|
2609
|
+
bidWithWarning: "bid" | "skip";
|
|
2610
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2611
|
+
biddingHourlyRatePercentage: number | null;
|
|
2612
|
+
biddingFixedHourlyRate: number | null;
|
|
2613
|
+
boostingEnabled: boolean | null;
|
|
2614
|
+
boostDownToNthPlace: number | null;
|
|
2615
|
+
connectsAbovePrevious: number | null;
|
|
2616
|
+
maximumBoost: number | null;
|
|
2617
|
+
minBoost: number | null;
|
|
2618
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2619
|
+
bidConfig: {
|
|
2620
|
+
contractorName: string | null;
|
|
2621
|
+
agencyName: string | null;
|
|
2622
|
+
specialisedProfile: string | null;
|
|
2623
|
+
};
|
|
2624
|
+
}, {
|
|
2625
|
+
appliedFromQueue: boolean | null;
|
|
2626
|
+
biddingDelayInMinutes: number | null;
|
|
2627
|
+
bidWithWarning: "bid" | "skip";
|
|
2628
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2629
|
+
biddingHourlyRatePercentage: number | null;
|
|
2630
|
+
biddingFixedHourlyRate: number | null;
|
|
2631
|
+
boostingEnabled: boolean | null;
|
|
2632
|
+
boostDownToNthPlace: number | null;
|
|
2633
|
+
connectsAbovePrevious: number | null;
|
|
2634
|
+
maximumBoost: number | null;
|
|
2635
|
+
minBoost: number | null;
|
|
2636
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2637
|
+
bidConfig: {
|
|
2638
|
+
contractorName: string | null;
|
|
2639
|
+
agencyName: string | null;
|
|
2640
|
+
specialisedProfile: string | null;
|
|
2641
|
+
};
|
|
2642
|
+
}>>;
|
|
2280
2643
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
2281
2644
|
id: string | null;
|
|
2282
2645
|
title: string | null;
|
|
@@ -2372,6 +2735,8 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2372
2735
|
} | null;
|
|
2373
2736
|
activityUpdates: 2 | 1 | 3 | null;
|
|
2374
2737
|
scrapedAt: number | null;
|
|
2738
|
+
biddingDelayInMinutes: number | null;
|
|
2739
|
+
specialisedProfile: string | null;
|
|
2375
2740
|
jobId: string;
|
|
2376
2741
|
suitabilityRating: number | null;
|
|
2377
2742
|
suitabilityReason: string | null;
|
|
@@ -2381,20 +2746,39 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2381
2746
|
question: string;
|
|
2382
2747
|
}[] | null;
|
|
2383
2748
|
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;
|
|
2749
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
2385
2750
|
biddingAmount: number | null;
|
|
2386
2751
|
boosted: boolean | null;
|
|
2387
2752
|
boostingAmount: number | null;
|
|
2388
2753
|
boostedForPlace: number | null;
|
|
2389
|
-
specialisedProfile: string | null;
|
|
2390
2754
|
biddedAt: number | null;
|
|
2391
2755
|
biddingTaskScheduled: boolean | null;
|
|
2392
2756
|
scheduledBiddingTime: number | null;
|
|
2393
|
-
|
|
2757
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
2758
|
+
biddingScheduledAt: number | null;
|
|
2394
2759
|
feedbackCheckTaskId: string | null;
|
|
2395
2760
|
bidDecision: "rejected" | "proceeded" | null;
|
|
2396
2761
|
rejectedFeedback: string | null;
|
|
2397
2762
|
applicationId: string | null;
|
|
2763
|
+
leadBiddingConfig: {
|
|
2764
|
+
appliedFromQueue: boolean | null;
|
|
2765
|
+
biddingDelayInMinutes: number | null;
|
|
2766
|
+
bidWithWarning: "bid" | "skip";
|
|
2767
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2768
|
+
biddingHourlyRatePercentage: number | null;
|
|
2769
|
+
biddingFixedHourlyRate: number | null;
|
|
2770
|
+
boostingEnabled: boolean | null;
|
|
2771
|
+
boostDownToNthPlace: number | null;
|
|
2772
|
+
connectsAbovePrevious: number | null;
|
|
2773
|
+
maximumBoost: number | null;
|
|
2774
|
+
minBoost: number | null;
|
|
2775
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2776
|
+
bidConfig: {
|
|
2777
|
+
contractorName: string | null;
|
|
2778
|
+
agencyName: string | null;
|
|
2779
|
+
specialisedProfile: string | null;
|
|
2780
|
+
};
|
|
2781
|
+
} | null;
|
|
2398
2782
|
activity?: Partial<Record<"4h" | "24h", {
|
|
2399
2783
|
updatedAt: number | null;
|
|
2400
2784
|
unansweredInvites: number | null;
|
|
@@ -2512,6 +2896,8 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2512
2896
|
} | null;
|
|
2513
2897
|
activityUpdates: 2 | 1 | 3 | null;
|
|
2514
2898
|
scrapedAt: number | null;
|
|
2899
|
+
biddingDelayInMinutes: number | null;
|
|
2900
|
+
specialisedProfile: string | null;
|
|
2515
2901
|
jobId: string;
|
|
2516
2902
|
suitabilityRating: number | null;
|
|
2517
2903
|
suitabilityReason: string | null;
|
|
@@ -2521,20 +2907,39 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2521
2907
|
question: string;
|
|
2522
2908
|
}[] | null;
|
|
2523
2909
|
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;
|
|
2910
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
2525
2911
|
biddingAmount: number | null;
|
|
2526
2912
|
boosted: boolean | null;
|
|
2527
2913
|
boostingAmount: number | null;
|
|
2528
2914
|
boostedForPlace: number | null;
|
|
2529
|
-
specialisedProfile: string | null;
|
|
2530
2915
|
biddedAt: number | null;
|
|
2531
2916
|
biddingTaskScheduled: boolean | null;
|
|
2532
2917
|
scheduledBiddingTime: number | null;
|
|
2533
|
-
|
|
2918
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
2919
|
+
biddingScheduledAt: number | null;
|
|
2534
2920
|
feedbackCheckTaskId: string | null;
|
|
2535
2921
|
bidDecision: "rejected" | "proceeded" | null;
|
|
2536
2922
|
rejectedFeedback: string | null;
|
|
2537
2923
|
applicationId: string | null;
|
|
2924
|
+
leadBiddingConfig: {
|
|
2925
|
+
appliedFromQueue: boolean | null;
|
|
2926
|
+
biddingDelayInMinutes: number | null;
|
|
2927
|
+
bidWithWarning: "bid" | "skip";
|
|
2928
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2929
|
+
biddingHourlyRatePercentage: number | null;
|
|
2930
|
+
biddingFixedHourlyRate: number | null;
|
|
2931
|
+
boostingEnabled: boolean | null;
|
|
2932
|
+
boostDownToNthPlace: number | null;
|
|
2933
|
+
connectsAbovePrevious: number | null;
|
|
2934
|
+
maximumBoost: number | null;
|
|
2935
|
+
minBoost: number | null;
|
|
2936
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2937
|
+
bidConfig: {
|
|
2938
|
+
contractorName: string | null;
|
|
2939
|
+
agencyName: string | null;
|
|
2940
|
+
specialisedProfile: string | null;
|
|
2941
|
+
};
|
|
2942
|
+
} | null;
|
|
2538
2943
|
activity?: Partial<Record<"4h" | "24h", {
|
|
2539
2944
|
updatedAt: number | null;
|
|
2540
2945
|
unansweredInvites: number | null;
|
|
@@ -2592,6 +2997,15 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2592
2997
|
organizationId: string;
|
|
2593
2998
|
contractorName: string;
|
|
2594
2999
|
agencyName: string;
|
|
3000
|
+
bidWithWarning: "bid" | "skip";
|
|
3001
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3002
|
+
biddingHourlyRatePercentage: number | null;
|
|
3003
|
+
biddingFixedHourlyRate: number | null;
|
|
3004
|
+
boostingEnabled: boolean;
|
|
3005
|
+
boostDownToNthPlace: number | null;
|
|
3006
|
+
connectsAbovePrevious: number | null;
|
|
3007
|
+
maximumBoost: number | null;
|
|
3008
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2595
3009
|
questionAnswerPairs: {
|
|
2596
3010
|
answer: string;
|
|
2597
3011
|
question: string;
|
|
@@ -2692,6 +3106,8 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2692
3106
|
} | null;
|
|
2693
3107
|
activityUpdates: 2 | 1 | 3 | null;
|
|
2694
3108
|
scrapedAt: number | null;
|
|
3109
|
+
biddingDelayInMinutes: number | null;
|
|
3110
|
+
specialisedProfile: string | null;
|
|
2695
3111
|
jobId: string;
|
|
2696
3112
|
suitabilityRating: number | null;
|
|
2697
3113
|
suitabilityReason: string | null;
|
|
@@ -2701,20 +3117,39 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2701
3117
|
question: string;
|
|
2702
3118
|
}[] | null;
|
|
2703
3119
|
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;
|
|
3120
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
2705
3121
|
biddingAmount: number | null;
|
|
2706
3122
|
boosted: boolean | null;
|
|
2707
3123
|
boostingAmount: number | null;
|
|
2708
3124
|
boostedForPlace: number | null;
|
|
2709
|
-
specialisedProfile: string | null;
|
|
2710
3125
|
biddedAt: number | null;
|
|
2711
3126
|
biddingTaskScheduled: boolean | null;
|
|
2712
3127
|
scheduledBiddingTime: number | null;
|
|
2713
|
-
|
|
3128
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
3129
|
+
biddingScheduledAt: number | null;
|
|
2714
3130
|
feedbackCheckTaskId: string | null;
|
|
2715
3131
|
bidDecision: "rejected" | "proceeded" | null;
|
|
2716
3132
|
rejectedFeedback: string | null;
|
|
2717
3133
|
applicationId: string | null;
|
|
3134
|
+
leadBiddingConfig: {
|
|
3135
|
+
appliedFromQueue: boolean | null;
|
|
3136
|
+
biddingDelayInMinutes: number | null;
|
|
3137
|
+
bidWithWarning: "bid" | "skip";
|
|
3138
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3139
|
+
biddingHourlyRatePercentage: number | null;
|
|
3140
|
+
biddingFixedHourlyRate: number | null;
|
|
3141
|
+
boostingEnabled: boolean | null;
|
|
3142
|
+
boostDownToNthPlace: number | null;
|
|
3143
|
+
connectsAbovePrevious: number | null;
|
|
3144
|
+
maximumBoost: number | null;
|
|
3145
|
+
minBoost: number | null;
|
|
3146
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
3147
|
+
bidConfig: {
|
|
3148
|
+
contractorName: string | null;
|
|
3149
|
+
agencyName: string | null;
|
|
3150
|
+
specialisedProfile: string | null;
|
|
3151
|
+
};
|
|
3152
|
+
} | null;
|
|
2718
3153
|
activity?: Partial<Record<"4h" | "24h", {
|
|
2719
3154
|
updatedAt: number | null;
|
|
2720
3155
|
unansweredInvites: number | null;
|
|
@@ -2738,15 +3173,6 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2738
3173
|
proposalId?: string | undefined;
|
|
2739
3174
|
wonAmount?: number | undefined;
|
|
2740
3175
|
};
|
|
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
3176
|
specialisedProfileOptions: string[];
|
|
2751
3177
|
minimumBoost: number | null;
|
|
2752
3178
|
isHourlyRate: boolean;
|
|
@@ -2758,6 +3184,15 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2758
3184
|
organizationId: string;
|
|
2759
3185
|
contractorName: string;
|
|
2760
3186
|
agencyName: string;
|
|
3187
|
+
bidWithWarning: "bid" | "skip";
|
|
3188
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3189
|
+
biddingHourlyRatePercentage: number | null;
|
|
3190
|
+
biddingFixedHourlyRate: number | null;
|
|
3191
|
+
boostingEnabled: boolean;
|
|
3192
|
+
boostDownToNthPlace: number | null;
|
|
3193
|
+
connectsAbovePrevious: number | null;
|
|
3194
|
+
maximumBoost: number | null;
|
|
3195
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2761
3196
|
questionAnswerPairs: {
|
|
2762
3197
|
answer: string;
|
|
2763
3198
|
question: string;
|
|
@@ -2858,6 +3293,8 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2858
3293
|
} | null;
|
|
2859
3294
|
activityUpdates: 2 | 1 | 3 | null;
|
|
2860
3295
|
scrapedAt: number | null;
|
|
3296
|
+
biddingDelayInMinutes: number | null;
|
|
3297
|
+
specialisedProfile: string | null;
|
|
2861
3298
|
jobId: string;
|
|
2862
3299
|
suitabilityRating: number | null;
|
|
2863
3300
|
suitabilityReason: string | null;
|
|
@@ -2867,20 +3304,39 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2867
3304
|
question: string;
|
|
2868
3305
|
}[] | null;
|
|
2869
3306
|
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;
|
|
3307
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
2871
3308
|
biddingAmount: number | null;
|
|
2872
3309
|
boosted: boolean | null;
|
|
2873
3310
|
boostingAmount: number | null;
|
|
2874
3311
|
boostedForPlace: number | null;
|
|
2875
|
-
specialisedProfile: string | null;
|
|
2876
3312
|
biddedAt: number | null;
|
|
2877
3313
|
biddingTaskScheduled: boolean | null;
|
|
2878
3314
|
scheduledBiddingTime: number | null;
|
|
2879
|
-
|
|
3315
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
3316
|
+
biddingScheduledAt: number | null;
|
|
2880
3317
|
feedbackCheckTaskId: string | null;
|
|
2881
3318
|
bidDecision: "rejected" | "proceeded" | null;
|
|
2882
3319
|
rejectedFeedback: string | null;
|
|
2883
3320
|
applicationId: string | null;
|
|
3321
|
+
leadBiddingConfig: {
|
|
3322
|
+
appliedFromQueue: boolean | null;
|
|
3323
|
+
biddingDelayInMinutes: number | null;
|
|
3324
|
+
bidWithWarning: "bid" | "skip";
|
|
3325
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3326
|
+
biddingHourlyRatePercentage: number | null;
|
|
3327
|
+
biddingFixedHourlyRate: number | null;
|
|
3328
|
+
boostingEnabled: boolean | null;
|
|
3329
|
+
boostDownToNthPlace: number | null;
|
|
3330
|
+
connectsAbovePrevious: number | null;
|
|
3331
|
+
maximumBoost: number | null;
|
|
3332
|
+
minBoost: number | null;
|
|
3333
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
3334
|
+
bidConfig: {
|
|
3335
|
+
contractorName: string | null;
|
|
3336
|
+
agencyName: string | null;
|
|
3337
|
+
specialisedProfile: string | null;
|
|
3338
|
+
};
|
|
3339
|
+
} | null;
|
|
2884
3340
|
activity?: Partial<Record<"4h" | "24h", {
|
|
2885
3341
|
updatedAt: number | null;
|
|
2886
3342
|
unansweredInvites: number | null;
|
|
@@ -2904,15 +3360,6 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2904
3360
|
proposalId?: string | undefined;
|
|
2905
3361
|
wonAmount?: number | undefined;
|
|
2906
3362
|
};
|
|
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
3363
|
specialisedProfileOptions: string[];
|
|
2917
3364
|
minimumBoost: number | null;
|
|
2918
3365
|
isHourlyRate: boolean;
|
|
@@ -3241,7 +3688,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3241
3688
|
question: string;
|
|
3242
3689
|
}>, "many">>;
|
|
3243
3690
|
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"]>>;
|
|
3691
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingProcessing", "biddingFailed", "won"]>>;
|
|
3245
3692
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
3246
3693
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
3247
3694
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -3252,11 +3699,76 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3252
3699
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
3253
3700
|
inQueue: z.ZodNullable<z.ZodBoolean>;
|
|
3254
3701
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
3702
|
+
checkFeedbackStatusCreatedAt: z.ZodNullable<z.ZodNumber>;
|
|
3703
|
+
biddingScheduledAt: z.ZodNullable<z.ZodNumber>;
|
|
3255
3704
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
3256
3705
|
feedbackCheckTaskId: z.ZodNullable<z.ZodString>;
|
|
3257
3706
|
bidDecision: z.ZodNullable<z.ZodEnum<["proceeded", "rejected"]>>;
|
|
3258
3707
|
rejectedFeedback: z.ZodNullable<z.ZodString>;
|
|
3259
3708
|
applicationId: z.ZodNullable<z.ZodString>;
|
|
3709
|
+
leadBiddingConfig: z.ZodNullable<z.ZodObject<{
|
|
3710
|
+
appliedFromQueue: z.ZodNullable<z.ZodBoolean>;
|
|
3711
|
+
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
3712
|
+
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
3713
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
3714
|
+
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
3715
|
+
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
3716
|
+
boostingEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
3717
|
+
boostDownToNthPlace: z.ZodNullable<z.ZodNumber>;
|
|
3718
|
+
connectsAbovePrevious: z.ZodNullable<z.ZodNumber>;
|
|
3719
|
+
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
3720
|
+
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
3721
|
+
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
3722
|
+
bidConfig: z.ZodObject<{
|
|
3723
|
+
agencyName: z.ZodNullable<z.ZodString>;
|
|
3724
|
+
contractorName: z.ZodNullable<z.ZodString>;
|
|
3725
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
3726
|
+
}, "strip", z.ZodTypeAny, {
|
|
3727
|
+
contractorName: string | null;
|
|
3728
|
+
agencyName: string | null;
|
|
3729
|
+
specialisedProfile: string | null;
|
|
3730
|
+
}, {
|
|
3731
|
+
contractorName: string | null;
|
|
3732
|
+
agencyName: string | null;
|
|
3733
|
+
specialisedProfile: string | null;
|
|
3734
|
+
}>;
|
|
3735
|
+
}, "strip", z.ZodTypeAny, {
|
|
3736
|
+
appliedFromQueue: boolean | null;
|
|
3737
|
+
biddingDelayInMinutes: number | null;
|
|
3738
|
+
bidWithWarning: "bid" | "skip";
|
|
3739
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3740
|
+
biddingHourlyRatePercentage: number | null;
|
|
3741
|
+
biddingFixedHourlyRate: number | null;
|
|
3742
|
+
boostingEnabled: boolean | null;
|
|
3743
|
+
boostDownToNthPlace: number | null;
|
|
3744
|
+
connectsAbovePrevious: number | null;
|
|
3745
|
+
maximumBoost: number | null;
|
|
3746
|
+
minBoost: number | null;
|
|
3747
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
3748
|
+
bidConfig: {
|
|
3749
|
+
contractorName: string | null;
|
|
3750
|
+
agencyName: string | null;
|
|
3751
|
+
specialisedProfile: string | null;
|
|
3752
|
+
};
|
|
3753
|
+
}, {
|
|
3754
|
+
appliedFromQueue: boolean | null;
|
|
3755
|
+
biddingDelayInMinutes: number | null;
|
|
3756
|
+
bidWithWarning: "bid" | "skip";
|
|
3757
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3758
|
+
biddingHourlyRatePercentage: number | null;
|
|
3759
|
+
biddingFixedHourlyRate: number | null;
|
|
3760
|
+
boostingEnabled: boolean | null;
|
|
3761
|
+
boostDownToNthPlace: number | null;
|
|
3762
|
+
connectsAbovePrevious: number | null;
|
|
3763
|
+
maximumBoost: number | null;
|
|
3764
|
+
minBoost: number | null;
|
|
3765
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
3766
|
+
bidConfig: {
|
|
3767
|
+
contractorName: string | null;
|
|
3768
|
+
agencyName: string | null;
|
|
3769
|
+
specialisedProfile: string | null;
|
|
3770
|
+
};
|
|
3771
|
+
}>>;
|
|
3260
3772
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
3261
3773
|
id: string | null;
|
|
3262
3774
|
title: string | null;
|
|
@@ -3352,6 +3864,8 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3352
3864
|
} | null;
|
|
3353
3865
|
activityUpdates: 2 | 1 | 3 | null;
|
|
3354
3866
|
scrapedAt: number | null;
|
|
3867
|
+
biddingDelayInMinutes: number | null;
|
|
3868
|
+
specialisedProfile: string | null;
|
|
3355
3869
|
jobId: string;
|
|
3356
3870
|
suitabilityRating: number | null;
|
|
3357
3871
|
suitabilityReason: string | null;
|
|
@@ -3361,20 +3875,39 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3361
3875
|
question: string;
|
|
3362
3876
|
}[] | null;
|
|
3363
3877
|
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;
|
|
3878
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
3365
3879
|
biddingAmount: number | null;
|
|
3366
3880
|
boosted: boolean | null;
|
|
3367
3881
|
boostingAmount: number | null;
|
|
3368
3882
|
boostedForPlace: number | null;
|
|
3369
|
-
specialisedProfile: string | null;
|
|
3370
3883
|
biddedAt: number | null;
|
|
3371
3884
|
biddingTaskScheduled: boolean | null;
|
|
3372
3885
|
scheduledBiddingTime: number | null;
|
|
3373
|
-
|
|
3886
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
3887
|
+
biddingScheduledAt: number | null;
|
|
3374
3888
|
feedbackCheckTaskId: string | null;
|
|
3375
3889
|
bidDecision: "rejected" | "proceeded" | null;
|
|
3376
3890
|
rejectedFeedback: string | null;
|
|
3377
3891
|
applicationId: string | null;
|
|
3892
|
+
leadBiddingConfig: {
|
|
3893
|
+
appliedFromQueue: boolean | null;
|
|
3894
|
+
biddingDelayInMinutes: number | null;
|
|
3895
|
+
bidWithWarning: "bid" | "skip";
|
|
3896
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3897
|
+
biddingHourlyRatePercentage: number | null;
|
|
3898
|
+
biddingFixedHourlyRate: number | null;
|
|
3899
|
+
boostingEnabled: boolean | null;
|
|
3900
|
+
boostDownToNthPlace: number | null;
|
|
3901
|
+
connectsAbovePrevious: number | null;
|
|
3902
|
+
maximumBoost: number | null;
|
|
3903
|
+
minBoost: number | null;
|
|
3904
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
3905
|
+
bidConfig: {
|
|
3906
|
+
contractorName: string | null;
|
|
3907
|
+
agencyName: string | null;
|
|
3908
|
+
specialisedProfile: string | null;
|
|
3909
|
+
};
|
|
3910
|
+
} | null;
|
|
3378
3911
|
activity?: Partial<Record<"4h" | "24h", {
|
|
3379
3912
|
updatedAt: number | null;
|
|
3380
3913
|
unansweredInvites: number | null;
|
|
@@ -3492,6 +4025,8 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3492
4025
|
} | null;
|
|
3493
4026
|
activityUpdates: 2 | 1 | 3 | null;
|
|
3494
4027
|
scrapedAt: number | null;
|
|
4028
|
+
biddingDelayInMinutes: number | null;
|
|
4029
|
+
specialisedProfile: string | null;
|
|
3495
4030
|
jobId: string;
|
|
3496
4031
|
suitabilityRating: number | null;
|
|
3497
4032
|
suitabilityReason: string | null;
|
|
@@ -3501,20 +4036,39 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3501
4036
|
question: string;
|
|
3502
4037
|
}[] | null;
|
|
3503
4038
|
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;
|
|
4039
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
3505
4040
|
biddingAmount: number | null;
|
|
3506
4041
|
boosted: boolean | null;
|
|
3507
4042
|
boostingAmount: number | null;
|
|
3508
4043
|
boostedForPlace: number | null;
|
|
3509
|
-
specialisedProfile: string | null;
|
|
3510
4044
|
biddedAt: number | null;
|
|
3511
4045
|
biddingTaskScheduled: boolean | null;
|
|
3512
4046
|
scheduledBiddingTime: number | null;
|
|
3513
|
-
|
|
4047
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
4048
|
+
biddingScheduledAt: number | null;
|
|
3514
4049
|
feedbackCheckTaskId: string | null;
|
|
3515
4050
|
bidDecision: "rejected" | "proceeded" | null;
|
|
3516
4051
|
rejectedFeedback: string | null;
|
|
3517
4052
|
applicationId: string | null;
|
|
4053
|
+
leadBiddingConfig: {
|
|
4054
|
+
appliedFromQueue: boolean | null;
|
|
4055
|
+
biddingDelayInMinutes: number | null;
|
|
4056
|
+
bidWithWarning: "bid" | "skip";
|
|
4057
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4058
|
+
biddingHourlyRatePercentage: number | null;
|
|
4059
|
+
biddingFixedHourlyRate: number | null;
|
|
4060
|
+
boostingEnabled: boolean | null;
|
|
4061
|
+
boostDownToNthPlace: number | null;
|
|
4062
|
+
connectsAbovePrevious: number | null;
|
|
4063
|
+
maximumBoost: number | null;
|
|
4064
|
+
minBoost: number | null;
|
|
4065
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4066
|
+
bidConfig: {
|
|
4067
|
+
contractorName: string | null;
|
|
4068
|
+
agencyName: string | null;
|
|
4069
|
+
specialisedProfile: string | null;
|
|
4070
|
+
};
|
|
4071
|
+
} | null;
|
|
3518
4072
|
activity?: Partial<Record<"4h" | "24h", {
|
|
3519
4073
|
updatedAt: number | null;
|
|
3520
4074
|
unansweredInvites: number | null;
|
|
@@ -3642,6 +4196,8 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3642
4196
|
} | null;
|
|
3643
4197
|
activityUpdates: 2 | 1 | 3 | null;
|
|
3644
4198
|
scrapedAt: number | null;
|
|
4199
|
+
biddingDelayInMinutes: number | null;
|
|
4200
|
+
specialisedProfile: string | null;
|
|
3645
4201
|
jobId: string;
|
|
3646
4202
|
suitabilityRating: number | null;
|
|
3647
4203
|
suitabilityReason: string | null;
|
|
@@ -3651,20 +4207,39 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3651
4207
|
question: string;
|
|
3652
4208
|
}[] | null;
|
|
3653
4209
|
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;
|
|
4210
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
3655
4211
|
biddingAmount: number | null;
|
|
3656
4212
|
boosted: boolean | null;
|
|
3657
4213
|
boostingAmount: number | null;
|
|
3658
4214
|
boostedForPlace: number | null;
|
|
3659
|
-
specialisedProfile: string | null;
|
|
3660
4215
|
biddedAt: number | null;
|
|
3661
4216
|
biddingTaskScheduled: boolean | null;
|
|
3662
4217
|
scheduledBiddingTime: number | null;
|
|
3663
|
-
|
|
4218
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
4219
|
+
biddingScheduledAt: number | null;
|
|
3664
4220
|
feedbackCheckTaskId: string | null;
|
|
3665
4221
|
bidDecision: "rejected" | "proceeded" | null;
|
|
3666
4222
|
rejectedFeedback: string | null;
|
|
3667
4223
|
applicationId: string | null;
|
|
4224
|
+
leadBiddingConfig: {
|
|
4225
|
+
appliedFromQueue: boolean | null;
|
|
4226
|
+
biddingDelayInMinutes: number | null;
|
|
4227
|
+
bidWithWarning: "bid" | "skip";
|
|
4228
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4229
|
+
biddingHourlyRatePercentage: number | null;
|
|
4230
|
+
biddingFixedHourlyRate: number | null;
|
|
4231
|
+
boostingEnabled: boolean | null;
|
|
4232
|
+
boostDownToNthPlace: number | null;
|
|
4233
|
+
connectsAbovePrevious: number | null;
|
|
4234
|
+
maximumBoost: number | null;
|
|
4235
|
+
minBoost: number | null;
|
|
4236
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4237
|
+
bidConfig: {
|
|
4238
|
+
contractorName: string | null;
|
|
4239
|
+
agencyName: string | null;
|
|
4240
|
+
specialisedProfile: string | null;
|
|
4241
|
+
};
|
|
4242
|
+
} | null;
|
|
3668
4243
|
activity?: Partial<Record<"4h" | "24h", {
|
|
3669
4244
|
updatedAt: number | null;
|
|
3670
4245
|
unansweredInvites: number | null;
|
|
@@ -3789,6 +4364,8 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3789
4364
|
} | null;
|
|
3790
4365
|
activityUpdates: 2 | 1 | 3 | null;
|
|
3791
4366
|
scrapedAt: number | null;
|
|
4367
|
+
biddingDelayInMinutes: number | null;
|
|
4368
|
+
specialisedProfile: string | null;
|
|
3792
4369
|
jobId: string;
|
|
3793
4370
|
suitabilityRating: number | null;
|
|
3794
4371
|
suitabilityReason: string | null;
|
|
@@ -3798,20 +4375,39 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3798
4375
|
question: string;
|
|
3799
4376
|
}[] | null;
|
|
3800
4377
|
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;
|
|
4378
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
3802
4379
|
biddingAmount: number | null;
|
|
3803
4380
|
boosted: boolean | null;
|
|
3804
4381
|
boostingAmount: number | null;
|
|
3805
4382
|
boostedForPlace: number | null;
|
|
3806
|
-
specialisedProfile: string | null;
|
|
3807
4383
|
biddedAt: number | null;
|
|
3808
4384
|
biddingTaskScheduled: boolean | null;
|
|
3809
4385
|
scheduledBiddingTime: number | null;
|
|
3810
|
-
|
|
4386
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
4387
|
+
biddingScheduledAt: number | null;
|
|
3811
4388
|
feedbackCheckTaskId: string | null;
|
|
3812
4389
|
bidDecision: "rejected" | "proceeded" | null;
|
|
3813
4390
|
rejectedFeedback: string | null;
|
|
3814
4391
|
applicationId: string | null;
|
|
4392
|
+
leadBiddingConfig: {
|
|
4393
|
+
appliedFromQueue: boolean | null;
|
|
4394
|
+
biddingDelayInMinutes: number | null;
|
|
4395
|
+
bidWithWarning: "bid" | "skip";
|
|
4396
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4397
|
+
biddingHourlyRatePercentage: number | null;
|
|
4398
|
+
biddingFixedHourlyRate: number | null;
|
|
4399
|
+
boostingEnabled: boolean | null;
|
|
4400
|
+
boostDownToNthPlace: number | null;
|
|
4401
|
+
connectsAbovePrevious: number | null;
|
|
4402
|
+
maximumBoost: number | null;
|
|
4403
|
+
minBoost: number | null;
|
|
4404
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4405
|
+
bidConfig: {
|
|
4406
|
+
contractorName: string | null;
|
|
4407
|
+
agencyName: string | null;
|
|
4408
|
+
specialisedProfile: string | null;
|
|
4409
|
+
};
|
|
4410
|
+
} | null;
|
|
3815
4411
|
activity?: Partial<Record<"4h" | "24h", {
|
|
3816
4412
|
updatedAt: number | null;
|
|
3817
4413
|
unansweredInvites: number | null;
|
|
@@ -4157,7 +4753,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4157
4753
|
question: string;
|
|
4158
4754
|
}>, "many">>;
|
|
4159
4755
|
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"]>>;
|
|
4756
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingProcessing", "biddingFailed", "won"]>>;
|
|
4161
4757
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
4162
4758
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
4163
4759
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -4168,11 +4764,76 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4168
4764
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
4169
4765
|
inQueue: z.ZodNullable<z.ZodBoolean>;
|
|
4170
4766
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
4767
|
+
checkFeedbackStatusCreatedAt: z.ZodNullable<z.ZodNumber>;
|
|
4768
|
+
biddingScheduledAt: z.ZodNullable<z.ZodNumber>;
|
|
4171
4769
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
4172
4770
|
feedbackCheckTaskId: z.ZodNullable<z.ZodString>;
|
|
4173
4771
|
bidDecision: z.ZodNullable<z.ZodEnum<["proceeded", "rejected"]>>;
|
|
4174
4772
|
rejectedFeedback: z.ZodNullable<z.ZodString>;
|
|
4175
4773
|
applicationId: z.ZodNullable<z.ZodString>;
|
|
4774
|
+
leadBiddingConfig: z.ZodNullable<z.ZodObject<{
|
|
4775
|
+
appliedFromQueue: z.ZodNullable<z.ZodBoolean>;
|
|
4776
|
+
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
4777
|
+
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
4778
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
4779
|
+
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
4780
|
+
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
4781
|
+
boostingEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
4782
|
+
boostDownToNthPlace: z.ZodNullable<z.ZodNumber>;
|
|
4783
|
+
connectsAbovePrevious: z.ZodNullable<z.ZodNumber>;
|
|
4784
|
+
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
4785
|
+
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
4786
|
+
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
4787
|
+
bidConfig: z.ZodObject<{
|
|
4788
|
+
agencyName: z.ZodNullable<z.ZodString>;
|
|
4789
|
+
contractorName: z.ZodNullable<z.ZodString>;
|
|
4790
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
4791
|
+
}, "strip", z.ZodTypeAny, {
|
|
4792
|
+
contractorName: string | null;
|
|
4793
|
+
agencyName: string | null;
|
|
4794
|
+
specialisedProfile: string | null;
|
|
4795
|
+
}, {
|
|
4796
|
+
contractorName: string | null;
|
|
4797
|
+
agencyName: string | null;
|
|
4798
|
+
specialisedProfile: string | null;
|
|
4799
|
+
}>;
|
|
4800
|
+
}, "strip", z.ZodTypeAny, {
|
|
4801
|
+
appliedFromQueue: boolean | null;
|
|
4802
|
+
biddingDelayInMinutes: number | null;
|
|
4803
|
+
bidWithWarning: "bid" | "skip";
|
|
4804
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4805
|
+
biddingHourlyRatePercentage: number | null;
|
|
4806
|
+
biddingFixedHourlyRate: number | null;
|
|
4807
|
+
boostingEnabled: boolean | null;
|
|
4808
|
+
boostDownToNthPlace: number | null;
|
|
4809
|
+
connectsAbovePrevious: number | null;
|
|
4810
|
+
maximumBoost: number | null;
|
|
4811
|
+
minBoost: number | null;
|
|
4812
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4813
|
+
bidConfig: {
|
|
4814
|
+
contractorName: string | null;
|
|
4815
|
+
agencyName: string | null;
|
|
4816
|
+
specialisedProfile: string | null;
|
|
4817
|
+
};
|
|
4818
|
+
}, {
|
|
4819
|
+
appliedFromQueue: boolean | null;
|
|
4820
|
+
biddingDelayInMinutes: number | null;
|
|
4821
|
+
bidWithWarning: "bid" | "skip";
|
|
4822
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4823
|
+
biddingHourlyRatePercentage: number | null;
|
|
4824
|
+
biddingFixedHourlyRate: number | null;
|
|
4825
|
+
boostingEnabled: boolean | null;
|
|
4826
|
+
boostDownToNthPlace: number | null;
|
|
4827
|
+
connectsAbovePrevious: number | null;
|
|
4828
|
+
maximumBoost: number | null;
|
|
4829
|
+
minBoost: number | null;
|
|
4830
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4831
|
+
bidConfig: {
|
|
4832
|
+
contractorName: string | null;
|
|
4833
|
+
agencyName: string | null;
|
|
4834
|
+
specialisedProfile: string | null;
|
|
4835
|
+
};
|
|
4836
|
+
}>>;
|
|
4176
4837
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
4177
4838
|
id: string | null;
|
|
4178
4839
|
title: string | null;
|
|
@@ -4268,6 +4929,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4268
4929
|
} | null;
|
|
4269
4930
|
activityUpdates: 2 | 1 | 3 | null;
|
|
4270
4931
|
scrapedAt: number | null;
|
|
4932
|
+
biddingDelayInMinutes: number | null;
|
|
4933
|
+
specialisedProfile: string | null;
|
|
4271
4934
|
jobId: string;
|
|
4272
4935
|
suitabilityRating: number | null;
|
|
4273
4936
|
suitabilityReason: string | null;
|
|
@@ -4277,20 +4940,39 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4277
4940
|
question: string;
|
|
4278
4941
|
}[] | null;
|
|
4279
4942
|
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;
|
|
4943
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
4281
4944
|
biddingAmount: number | null;
|
|
4282
4945
|
boosted: boolean | null;
|
|
4283
4946
|
boostingAmount: number | null;
|
|
4284
4947
|
boostedForPlace: number | null;
|
|
4285
|
-
specialisedProfile: string | null;
|
|
4286
4948
|
biddedAt: number | null;
|
|
4287
4949
|
biddingTaskScheduled: boolean | null;
|
|
4288
4950
|
scheduledBiddingTime: number | null;
|
|
4289
|
-
|
|
4951
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
4952
|
+
biddingScheduledAt: number | null;
|
|
4290
4953
|
feedbackCheckTaskId: string | null;
|
|
4291
4954
|
bidDecision: "rejected" | "proceeded" | null;
|
|
4292
4955
|
rejectedFeedback: string | null;
|
|
4293
4956
|
applicationId: string | null;
|
|
4957
|
+
leadBiddingConfig: {
|
|
4958
|
+
appliedFromQueue: boolean | null;
|
|
4959
|
+
biddingDelayInMinutes: number | null;
|
|
4960
|
+
bidWithWarning: "bid" | "skip";
|
|
4961
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4962
|
+
biddingHourlyRatePercentage: number | null;
|
|
4963
|
+
biddingFixedHourlyRate: number | null;
|
|
4964
|
+
boostingEnabled: boolean | null;
|
|
4965
|
+
boostDownToNthPlace: number | null;
|
|
4966
|
+
connectsAbovePrevious: number | null;
|
|
4967
|
+
maximumBoost: number | null;
|
|
4968
|
+
minBoost: number | null;
|
|
4969
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
4970
|
+
bidConfig: {
|
|
4971
|
+
contractorName: string | null;
|
|
4972
|
+
agencyName: string | null;
|
|
4973
|
+
specialisedProfile: string | null;
|
|
4974
|
+
};
|
|
4975
|
+
} | null;
|
|
4294
4976
|
activity?: Partial<Record<"4h" | "24h", {
|
|
4295
4977
|
updatedAt: number | null;
|
|
4296
4978
|
unansweredInvites: number | null;
|
|
@@ -4408,6 +5090,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4408
5090
|
} | null;
|
|
4409
5091
|
activityUpdates: 2 | 1 | 3 | null;
|
|
4410
5092
|
scrapedAt: number | null;
|
|
5093
|
+
biddingDelayInMinutes: number | null;
|
|
5094
|
+
specialisedProfile: string | null;
|
|
4411
5095
|
jobId: string;
|
|
4412
5096
|
suitabilityRating: number | null;
|
|
4413
5097
|
suitabilityReason: string | null;
|
|
@@ -4417,20 +5101,39 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4417
5101
|
question: string;
|
|
4418
5102
|
}[] | null;
|
|
4419
5103
|
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;
|
|
5104
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
4421
5105
|
biddingAmount: number | null;
|
|
4422
5106
|
boosted: boolean | null;
|
|
4423
5107
|
boostingAmount: number | null;
|
|
4424
5108
|
boostedForPlace: number | null;
|
|
4425
|
-
specialisedProfile: string | null;
|
|
4426
5109
|
biddedAt: number | null;
|
|
4427
5110
|
biddingTaskScheduled: boolean | null;
|
|
4428
5111
|
scheduledBiddingTime: number | null;
|
|
4429
|
-
|
|
5112
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
5113
|
+
biddingScheduledAt: number | null;
|
|
4430
5114
|
feedbackCheckTaskId: string | null;
|
|
4431
5115
|
bidDecision: "rejected" | "proceeded" | null;
|
|
4432
5116
|
rejectedFeedback: string | null;
|
|
4433
5117
|
applicationId: string | null;
|
|
5118
|
+
leadBiddingConfig: {
|
|
5119
|
+
appliedFromQueue: boolean | null;
|
|
5120
|
+
biddingDelayInMinutes: number | null;
|
|
5121
|
+
bidWithWarning: "bid" | "skip";
|
|
5122
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5123
|
+
biddingHourlyRatePercentage: number | null;
|
|
5124
|
+
biddingFixedHourlyRate: number | null;
|
|
5125
|
+
boostingEnabled: boolean | null;
|
|
5126
|
+
boostDownToNthPlace: number | null;
|
|
5127
|
+
connectsAbovePrevious: number | null;
|
|
5128
|
+
maximumBoost: number | null;
|
|
5129
|
+
minBoost: number | null;
|
|
5130
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5131
|
+
bidConfig: {
|
|
5132
|
+
contractorName: string | null;
|
|
5133
|
+
agencyName: string | null;
|
|
5134
|
+
specialisedProfile: string | null;
|
|
5135
|
+
};
|
|
5136
|
+
} | null;
|
|
4434
5137
|
activity?: Partial<Record<"4h" | "24h", {
|
|
4435
5138
|
updatedAt: number | null;
|
|
4436
5139
|
unansweredInvites: number | null;
|
|
@@ -4779,7 +5482,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4779
5482
|
question: string;
|
|
4780
5483
|
}>, "many">>;
|
|
4781
5484
|
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"]>>;
|
|
5485
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingProcessing", "biddingFailed", "won"]>>;
|
|
4783
5486
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
4784
5487
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
4785
5488
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -4790,11 +5493,76 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4790
5493
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
4791
5494
|
inQueue: z.ZodNullable<z.ZodBoolean>;
|
|
4792
5495
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
5496
|
+
checkFeedbackStatusCreatedAt: z.ZodNullable<z.ZodNumber>;
|
|
5497
|
+
biddingScheduledAt: z.ZodNullable<z.ZodNumber>;
|
|
4793
5498
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
4794
5499
|
feedbackCheckTaskId: z.ZodNullable<z.ZodString>;
|
|
4795
5500
|
bidDecision: z.ZodNullable<z.ZodEnum<["proceeded", "rejected"]>>;
|
|
4796
5501
|
rejectedFeedback: z.ZodNullable<z.ZodString>;
|
|
4797
5502
|
applicationId: z.ZodNullable<z.ZodString>;
|
|
5503
|
+
leadBiddingConfig: z.ZodNullable<z.ZodObject<{
|
|
5504
|
+
appliedFromQueue: z.ZodNullable<z.ZodBoolean>;
|
|
5505
|
+
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
5506
|
+
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
5507
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
5508
|
+
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
5509
|
+
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
5510
|
+
boostingEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
5511
|
+
boostDownToNthPlace: z.ZodNullable<z.ZodNumber>;
|
|
5512
|
+
connectsAbovePrevious: z.ZodNullable<z.ZodNumber>;
|
|
5513
|
+
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
5514
|
+
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
5515
|
+
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
5516
|
+
bidConfig: z.ZodObject<{
|
|
5517
|
+
agencyName: z.ZodNullable<z.ZodString>;
|
|
5518
|
+
contractorName: z.ZodNullable<z.ZodString>;
|
|
5519
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
5520
|
+
}, "strip", z.ZodTypeAny, {
|
|
5521
|
+
contractorName: string | null;
|
|
5522
|
+
agencyName: string | null;
|
|
5523
|
+
specialisedProfile: string | null;
|
|
5524
|
+
}, {
|
|
5525
|
+
contractorName: string | null;
|
|
5526
|
+
agencyName: string | null;
|
|
5527
|
+
specialisedProfile: string | null;
|
|
5528
|
+
}>;
|
|
5529
|
+
}, "strip", z.ZodTypeAny, {
|
|
5530
|
+
appliedFromQueue: boolean | null;
|
|
5531
|
+
biddingDelayInMinutes: number | null;
|
|
5532
|
+
bidWithWarning: "bid" | "skip";
|
|
5533
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5534
|
+
biddingHourlyRatePercentage: number | null;
|
|
5535
|
+
biddingFixedHourlyRate: number | null;
|
|
5536
|
+
boostingEnabled: boolean | null;
|
|
5537
|
+
boostDownToNthPlace: number | null;
|
|
5538
|
+
connectsAbovePrevious: number | null;
|
|
5539
|
+
maximumBoost: number | null;
|
|
5540
|
+
minBoost: number | null;
|
|
5541
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5542
|
+
bidConfig: {
|
|
5543
|
+
contractorName: string | null;
|
|
5544
|
+
agencyName: string | null;
|
|
5545
|
+
specialisedProfile: string | null;
|
|
5546
|
+
};
|
|
5547
|
+
}, {
|
|
5548
|
+
appliedFromQueue: boolean | null;
|
|
5549
|
+
biddingDelayInMinutes: number | null;
|
|
5550
|
+
bidWithWarning: "bid" | "skip";
|
|
5551
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5552
|
+
biddingHourlyRatePercentage: number | null;
|
|
5553
|
+
biddingFixedHourlyRate: number | null;
|
|
5554
|
+
boostingEnabled: boolean | null;
|
|
5555
|
+
boostDownToNthPlace: number | null;
|
|
5556
|
+
connectsAbovePrevious: number | null;
|
|
5557
|
+
maximumBoost: number | null;
|
|
5558
|
+
minBoost: number | null;
|
|
5559
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5560
|
+
bidConfig: {
|
|
5561
|
+
contractorName: string | null;
|
|
5562
|
+
agencyName: string | null;
|
|
5563
|
+
specialisedProfile: string | null;
|
|
5564
|
+
};
|
|
5565
|
+
}>>;
|
|
4798
5566
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
4799
5567
|
id: string | null;
|
|
4800
5568
|
title: string | null;
|
|
@@ -4890,6 +5658,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4890
5658
|
} | null;
|
|
4891
5659
|
activityUpdates: 2 | 1 | 3 | null;
|
|
4892
5660
|
scrapedAt: number | null;
|
|
5661
|
+
biddingDelayInMinutes: number | null;
|
|
5662
|
+
specialisedProfile: string | null;
|
|
4893
5663
|
jobId: string;
|
|
4894
5664
|
suitabilityRating: number | null;
|
|
4895
5665
|
suitabilityReason: string | null;
|
|
@@ -4899,20 +5669,39 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4899
5669
|
question: string;
|
|
4900
5670
|
}[] | null;
|
|
4901
5671
|
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;
|
|
5672
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
4903
5673
|
biddingAmount: number | null;
|
|
4904
5674
|
boosted: boolean | null;
|
|
4905
5675
|
boostingAmount: number | null;
|
|
4906
5676
|
boostedForPlace: number | null;
|
|
4907
|
-
specialisedProfile: string | null;
|
|
4908
5677
|
biddedAt: number | null;
|
|
4909
5678
|
biddingTaskScheduled: boolean | null;
|
|
4910
5679
|
scheduledBiddingTime: number | null;
|
|
4911
|
-
|
|
5680
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
5681
|
+
biddingScheduledAt: number | null;
|
|
4912
5682
|
feedbackCheckTaskId: string | null;
|
|
4913
5683
|
bidDecision: "rejected" | "proceeded" | null;
|
|
4914
5684
|
rejectedFeedback: string | null;
|
|
4915
5685
|
applicationId: string | null;
|
|
5686
|
+
leadBiddingConfig: {
|
|
5687
|
+
appliedFromQueue: boolean | null;
|
|
5688
|
+
biddingDelayInMinutes: number | null;
|
|
5689
|
+
bidWithWarning: "bid" | "skip";
|
|
5690
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5691
|
+
biddingHourlyRatePercentage: number | null;
|
|
5692
|
+
biddingFixedHourlyRate: number | null;
|
|
5693
|
+
boostingEnabled: boolean | null;
|
|
5694
|
+
boostDownToNthPlace: number | null;
|
|
5695
|
+
connectsAbovePrevious: number | null;
|
|
5696
|
+
maximumBoost: number | null;
|
|
5697
|
+
minBoost: number | null;
|
|
5698
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5699
|
+
bidConfig: {
|
|
5700
|
+
contractorName: string | null;
|
|
5701
|
+
agencyName: string | null;
|
|
5702
|
+
specialisedProfile: string | null;
|
|
5703
|
+
};
|
|
5704
|
+
} | null;
|
|
4916
5705
|
activity?: Partial<Record<"4h" | "24h", {
|
|
4917
5706
|
updatedAt: number | null;
|
|
4918
5707
|
unansweredInvites: number | null;
|
|
@@ -5030,6 +5819,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5030
5819
|
} | null;
|
|
5031
5820
|
activityUpdates: 2 | 1 | 3 | null;
|
|
5032
5821
|
scrapedAt: number | null;
|
|
5822
|
+
biddingDelayInMinutes: number | null;
|
|
5823
|
+
specialisedProfile: string | null;
|
|
5033
5824
|
jobId: string;
|
|
5034
5825
|
suitabilityRating: number | null;
|
|
5035
5826
|
suitabilityReason: string | null;
|
|
@@ -5039,20 +5830,39 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5039
5830
|
question: string;
|
|
5040
5831
|
}[] | null;
|
|
5041
5832
|
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;
|
|
5833
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
5043
5834
|
biddingAmount: number | null;
|
|
5044
5835
|
boosted: boolean | null;
|
|
5045
5836
|
boostingAmount: number | null;
|
|
5046
5837
|
boostedForPlace: number | null;
|
|
5047
|
-
specialisedProfile: string | null;
|
|
5048
5838
|
biddedAt: number | null;
|
|
5049
5839
|
biddingTaskScheduled: boolean | null;
|
|
5050
5840
|
scheduledBiddingTime: number | null;
|
|
5051
|
-
|
|
5841
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
5842
|
+
biddingScheduledAt: number | null;
|
|
5052
5843
|
feedbackCheckTaskId: string | null;
|
|
5053
5844
|
bidDecision: "rejected" | "proceeded" | null;
|
|
5054
5845
|
rejectedFeedback: string | null;
|
|
5055
5846
|
applicationId: string | null;
|
|
5847
|
+
leadBiddingConfig: {
|
|
5848
|
+
appliedFromQueue: boolean | null;
|
|
5849
|
+
biddingDelayInMinutes: number | null;
|
|
5850
|
+
bidWithWarning: "bid" | "skip";
|
|
5851
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5852
|
+
biddingHourlyRatePercentage: number | null;
|
|
5853
|
+
biddingFixedHourlyRate: number | null;
|
|
5854
|
+
boostingEnabled: boolean | null;
|
|
5855
|
+
boostDownToNthPlace: number | null;
|
|
5856
|
+
connectsAbovePrevious: number | null;
|
|
5857
|
+
maximumBoost: number | null;
|
|
5858
|
+
minBoost: number | null;
|
|
5859
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5860
|
+
bidConfig: {
|
|
5861
|
+
contractorName: string | null;
|
|
5862
|
+
agencyName: string | null;
|
|
5863
|
+
specialisedProfile: string | null;
|
|
5864
|
+
};
|
|
5865
|
+
} | null;
|
|
5056
5866
|
activity?: Partial<Record<"4h" | "24h", {
|
|
5057
5867
|
updatedAt: number | null;
|
|
5058
5868
|
unansweredInvites: number | null;
|
|
@@ -5110,6 +5920,15 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5110
5920
|
organizationId: string;
|
|
5111
5921
|
contractorName: string;
|
|
5112
5922
|
agencyName: string;
|
|
5923
|
+
bidWithWarning: "bid" | "skip";
|
|
5924
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5925
|
+
biddingHourlyRatePercentage: number | null;
|
|
5926
|
+
biddingFixedHourlyRate: number | null;
|
|
5927
|
+
boostingEnabled: boolean;
|
|
5928
|
+
boostDownToNthPlace: number | null;
|
|
5929
|
+
connectsAbovePrevious: number | null;
|
|
5930
|
+
maximumBoost: number | null;
|
|
5931
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5113
5932
|
questionAnswerPairs: {
|
|
5114
5933
|
answer: string;
|
|
5115
5934
|
question: string;
|
|
@@ -5210,6 +6029,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5210
6029
|
} | null;
|
|
5211
6030
|
activityUpdates: 2 | 1 | 3 | null;
|
|
5212
6031
|
scrapedAt: number | null;
|
|
6032
|
+
biddingDelayInMinutes: number | null;
|
|
6033
|
+
specialisedProfile: string | null;
|
|
5213
6034
|
jobId: string;
|
|
5214
6035
|
suitabilityRating: number | null;
|
|
5215
6036
|
suitabilityReason: string | null;
|
|
@@ -5219,20 +6040,39 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5219
6040
|
question: string;
|
|
5220
6041
|
}[] | null;
|
|
5221
6042
|
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;
|
|
6043
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
5223
6044
|
biddingAmount: number | null;
|
|
5224
6045
|
boosted: boolean | null;
|
|
5225
6046
|
boostingAmount: number | null;
|
|
5226
6047
|
boostedForPlace: number | null;
|
|
5227
|
-
specialisedProfile: string | null;
|
|
5228
6048
|
biddedAt: number | null;
|
|
5229
6049
|
biddingTaskScheduled: boolean | null;
|
|
5230
6050
|
scheduledBiddingTime: number | null;
|
|
5231
|
-
|
|
6051
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
6052
|
+
biddingScheduledAt: number | null;
|
|
5232
6053
|
feedbackCheckTaskId: string | null;
|
|
5233
6054
|
bidDecision: "rejected" | "proceeded" | null;
|
|
5234
6055
|
rejectedFeedback: string | null;
|
|
5235
6056
|
applicationId: string | null;
|
|
6057
|
+
leadBiddingConfig: {
|
|
6058
|
+
appliedFromQueue: boolean | null;
|
|
6059
|
+
biddingDelayInMinutes: number | null;
|
|
6060
|
+
bidWithWarning: "bid" | "skip";
|
|
6061
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6062
|
+
biddingHourlyRatePercentage: number | null;
|
|
6063
|
+
biddingFixedHourlyRate: number | null;
|
|
6064
|
+
boostingEnabled: boolean | null;
|
|
6065
|
+
boostDownToNthPlace: number | null;
|
|
6066
|
+
connectsAbovePrevious: number | null;
|
|
6067
|
+
maximumBoost: number | null;
|
|
6068
|
+
minBoost: number | null;
|
|
6069
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6070
|
+
bidConfig: {
|
|
6071
|
+
contractorName: string | null;
|
|
6072
|
+
agencyName: string | null;
|
|
6073
|
+
specialisedProfile: string | null;
|
|
6074
|
+
};
|
|
6075
|
+
} | null;
|
|
5236
6076
|
activity?: Partial<Record<"4h" | "24h", {
|
|
5237
6077
|
updatedAt: number | null;
|
|
5238
6078
|
unansweredInvites: number | null;
|
|
@@ -5256,15 +6096,6 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5256
6096
|
proposalId?: string | undefined;
|
|
5257
6097
|
wonAmount?: number | undefined;
|
|
5258
6098
|
};
|
|
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
6099
|
specialisedProfileOptions: string[];
|
|
5269
6100
|
minimumBoost: number | null;
|
|
5270
6101
|
isHourlyRate: boolean;
|
|
@@ -5276,6 +6107,15 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5276
6107
|
organizationId: string;
|
|
5277
6108
|
contractorName: string;
|
|
5278
6109
|
agencyName: string;
|
|
6110
|
+
bidWithWarning: "bid" | "skip";
|
|
6111
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6112
|
+
biddingHourlyRatePercentage: number | null;
|
|
6113
|
+
biddingFixedHourlyRate: number | null;
|
|
6114
|
+
boostingEnabled: boolean;
|
|
6115
|
+
boostDownToNthPlace: number | null;
|
|
6116
|
+
connectsAbovePrevious: number | null;
|
|
6117
|
+
maximumBoost: number | null;
|
|
6118
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5279
6119
|
questionAnswerPairs: {
|
|
5280
6120
|
answer: string;
|
|
5281
6121
|
question: string;
|
|
@@ -5376,6 +6216,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5376
6216
|
} | null;
|
|
5377
6217
|
activityUpdates: 2 | 1 | 3 | null;
|
|
5378
6218
|
scrapedAt: number | null;
|
|
6219
|
+
biddingDelayInMinutes: number | null;
|
|
6220
|
+
specialisedProfile: string | null;
|
|
5379
6221
|
jobId: string;
|
|
5380
6222
|
suitabilityRating: number | null;
|
|
5381
6223
|
suitabilityReason: string | null;
|
|
@@ -5385,20 +6227,39 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5385
6227
|
question: string;
|
|
5386
6228
|
}[] | null;
|
|
5387
6229
|
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;
|
|
6230
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
5389
6231
|
biddingAmount: number | null;
|
|
5390
6232
|
boosted: boolean | null;
|
|
5391
6233
|
boostingAmount: number | null;
|
|
5392
6234
|
boostedForPlace: number | null;
|
|
5393
|
-
specialisedProfile: string | null;
|
|
5394
6235
|
biddedAt: number | null;
|
|
5395
6236
|
biddingTaskScheduled: boolean | null;
|
|
5396
6237
|
scheduledBiddingTime: number | null;
|
|
5397
|
-
|
|
6238
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
6239
|
+
biddingScheduledAt: number | null;
|
|
5398
6240
|
feedbackCheckTaskId: string | null;
|
|
5399
6241
|
bidDecision: "rejected" | "proceeded" | null;
|
|
5400
6242
|
rejectedFeedback: string | null;
|
|
5401
6243
|
applicationId: string | null;
|
|
6244
|
+
leadBiddingConfig: {
|
|
6245
|
+
appliedFromQueue: boolean | null;
|
|
6246
|
+
biddingDelayInMinutes: number | null;
|
|
6247
|
+
bidWithWarning: "bid" | "skip";
|
|
6248
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6249
|
+
biddingHourlyRatePercentage: number | null;
|
|
6250
|
+
biddingFixedHourlyRate: number | null;
|
|
6251
|
+
boostingEnabled: boolean | null;
|
|
6252
|
+
boostDownToNthPlace: number | null;
|
|
6253
|
+
connectsAbovePrevious: number | null;
|
|
6254
|
+
maximumBoost: number | null;
|
|
6255
|
+
minBoost: number | null;
|
|
6256
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6257
|
+
bidConfig: {
|
|
6258
|
+
contractorName: string | null;
|
|
6259
|
+
agencyName: string | null;
|
|
6260
|
+
specialisedProfile: string | null;
|
|
6261
|
+
};
|
|
6262
|
+
} | null;
|
|
5402
6263
|
activity?: Partial<Record<"4h" | "24h", {
|
|
5403
6264
|
updatedAt: number | null;
|
|
5404
6265
|
unansweredInvites: number | null;
|
|
@@ -5422,15 +6283,6 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5422
6283
|
proposalId?: string | undefined;
|
|
5423
6284
|
wonAmount?: number | undefined;
|
|
5424
6285
|
};
|
|
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
6286
|
specialisedProfileOptions: string[];
|
|
5435
6287
|
minimumBoost: number | null;
|
|
5436
6288
|
isHourlyRate: boolean;
|
|
@@ -5539,6 +6391,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5539
6391
|
} | null;
|
|
5540
6392
|
activityUpdates: 2 | 1 | 3 | null;
|
|
5541
6393
|
scrapedAt: number | null;
|
|
6394
|
+
biddingDelayInMinutes: number | null;
|
|
6395
|
+
specialisedProfile: string | null;
|
|
5542
6396
|
jobId: string;
|
|
5543
6397
|
suitabilityRating: number | null;
|
|
5544
6398
|
suitabilityReason: string | null;
|
|
@@ -5548,20 +6402,39 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5548
6402
|
question: string;
|
|
5549
6403
|
}[] | null;
|
|
5550
6404
|
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;
|
|
6405
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
5552
6406
|
biddingAmount: number | null;
|
|
5553
6407
|
boosted: boolean | null;
|
|
5554
6408
|
boostingAmount: number | null;
|
|
5555
6409
|
boostedForPlace: number | null;
|
|
5556
|
-
specialisedProfile: string | null;
|
|
5557
6410
|
biddedAt: number | null;
|
|
5558
6411
|
biddingTaskScheduled: boolean | null;
|
|
5559
6412
|
scheduledBiddingTime: number | null;
|
|
5560
|
-
|
|
6413
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
6414
|
+
biddingScheduledAt: number | null;
|
|
5561
6415
|
feedbackCheckTaskId: string | null;
|
|
5562
6416
|
bidDecision: "rejected" | "proceeded" | null;
|
|
5563
6417
|
rejectedFeedback: string | null;
|
|
5564
6418
|
applicationId: string | null;
|
|
6419
|
+
leadBiddingConfig: {
|
|
6420
|
+
appliedFromQueue: boolean | null;
|
|
6421
|
+
biddingDelayInMinutes: number | null;
|
|
6422
|
+
bidWithWarning: "bid" | "skip";
|
|
6423
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6424
|
+
biddingHourlyRatePercentage: number | null;
|
|
6425
|
+
biddingFixedHourlyRate: number | null;
|
|
6426
|
+
boostingEnabled: boolean | null;
|
|
6427
|
+
boostDownToNthPlace: number | null;
|
|
6428
|
+
connectsAbovePrevious: number | null;
|
|
6429
|
+
maximumBoost: number | null;
|
|
6430
|
+
minBoost: number | null;
|
|
6431
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6432
|
+
bidConfig: {
|
|
6433
|
+
contractorName: string | null;
|
|
6434
|
+
agencyName: string | null;
|
|
6435
|
+
specialisedProfile: string | null;
|
|
6436
|
+
};
|
|
6437
|
+
} | null;
|
|
5565
6438
|
activity?: Partial<Record<"4h" | "24h", {
|
|
5566
6439
|
updatedAt: number | null;
|
|
5567
6440
|
unansweredInvites: number | null;
|
|
@@ -5590,6 +6463,15 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5590
6463
|
organizationId: string;
|
|
5591
6464
|
contractorName: string;
|
|
5592
6465
|
agencyName: string;
|
|
6466
|
+
bidWithWarning: "bid" | "skip";
|
|
6467
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6468
|
+
biddingHourlyRatePercentage: number | null;
|
|
6469
|
+
biddingFixedHourlyRate: number | null;
|
|
6470
|
+
boostingEnabled: boolean;
|
|
6471
|
+
boostDownToNthPlace: number | null;
|
|
6472
|
+
connectsAbovePrevious: number | null;
|
|
6473
|
+
maximumBoost: number | null;
|
|
6474
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5593
6475
|
questionAnswerPairs: {
|
|
5594
6476
|
answer: string;
|
|
5595
6477
|
question: string;
|
|
@@ -5690,6 +6572,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5690
6572
|
} | null;
|
|
5691
6573
|
activityUpdates: 2 | 1 | 3 | null;
|
|
5692
6574
|
scrapedAt: number | null;
|
|
6575
|
+
biddingDelayInMinutes: number | null;
|
|
6576
|
+
specialisedProfile: string | null;
|
|
5693
6577
|
jobId: string;
|
|
5694
6578
|
suitabilityRating: number | null;
|
|
5695
6579
|
suitabilityReason: string | null;
|
|
@@ -5699,20 +6583,39 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5699
6583
|
question: string;
|
|
5700
6584
|
}[] | null;
|
|
5701
6585
|
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;
|
|
6586
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
5703
6587
|
biddingAmount: number | null;
|
|
5704
6588
|
boosted: boolean | null;
|
|
5705
6589
|
boostingAmount: number | null;
|
|
5706
6590
|
boostedForPlace: number | null;
|
|
5707
|
-
specialisedProfile: string | null;
|
|
5708
6591
|
biddedAt: number | null;
|
|
5709
6592
|
biddingTaskScheduled: boolean | null;
|
|
5710
6593
|
scheduledBiddingTime: number | null;
|
|
5711
|
-
|
|
6594
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
6595
|
+
biddingScheduledAt: number | null;
|
|
5712
6596
|
feedbackCheckTaskId: string | null;
|
|
5713
6597
|
bidDecision: "rejected" | "proceeded" | null;
|
|
5714
6598
|
rejectedFeedback: string | null;
|
|
5715
6599
|
applicationId: string | null;
|
|
6600
|
+
leadBiddingConfig: {
|
|
6601
|
+
appliedFromQueue: boolean | null;
|
|
6602
|
+
biddingDelayInMinutes: number | null;
|
|
6603
|
+
bidWithWarning: "bid" | "skip";
|
|
6604
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6605
|
+
biddingHourlyRatePercentage: number | null;
|
|
6606
|
+
biddingFixedHourlyRate: number | null;
|
|
6607
|
+
boostingEnabled: boolean | null;
|
|
6608
|
+
boostDownToNthPlace: number | null;
|
|
6609
|
+
connectsAbovePrevious: number | null;
|
|
6610
|
+
maximumBoost: number | null;
|
|
6611
|
+
minBoost: number | null;
|
|
6612
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6613
|
+
bidConfig: {
|
|
6614
|
+
contractorName: string | null;
|
|
6615
|
+
agencyName: string | null;
|
|
6616
|
+
specialisedProfile: string | null;
|
|
6617
|
+
};
|
|
6618
|
+
} | null;
|
|
5716
6619
|
activity?: Partial<Record<"4h" | "24h", {
|
|
5717
6620
|
updatedAt: number | null;
|
|
5718
6621
|
unansweredInvites: number | null;
|
|
@@ -5736,15 +6639,6 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5736
6639
|
proposalId?: string | undefined;
|
|
5737
6640
|
wonAmount?: number | undefined;
|
|
5738
6641
|
};
|
|
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
6642
|
specialisedProfileOptions: string[];
|
|
5749
6643
|
minimumBoost: number | null;
|
|
5750
6644
|
isHourlyRate: boolean;
|
|
@@ -5853,6 +6747,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5853
6747
|
} | null;
|
|
5854
6748
|
activityUpdates: 2 | 1 | 3 | null;
|
|
5855
6749
|
scrapedAt: number | null;
|
|
6750
|
+
biddingDelayInMinutes: number | null;
|
|
6751
|
+
specialisedProfile: string | null;
|
|
5856
6752
|
jobId: string;
|
|
5857
6753
|
suitabilityRating: number | null;
|
|
5858
6754
|
suitabilityReason: string | null;
|
|
@@ -5862,20 +6758,39 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5862
6758
|
question: string;
|
|
5863
6759
|
}[] | null;
|
|
5864
6760
|
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;
|
|
6761
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
5866
6762
|
biddingAmount: number | null;
|
|
5867
6763
|
boosted: boolean | null;
|
|
5868
6764
|
boostingAmount: number | null;
|
|
5869
6765
|
boostedForPlace: number | null;
|
|
5870
|
-
specialisedProfile: string | null;
|
|
5871
6766
|
biddedAt: number | null;
|
|
5872
6767
|
biddingTaskScheduled: boolean | null;
|
|
5873
6768
|
scheduledBiddingTime: number | null;
|
|
5874
|
-
|
|
6769
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
6770
|
+
biddingScheduledAt: number | null;
|
|
5875
6771
|
feedbackCheckTaskId: string | null;
|
|
5876
6772
|
bidDecision: "rejected" | "proceeded" | null;
|
|
5877
6773
|
rejectedFeedback: string | null;
|
|
5878
6774
|
applicationId: string | null;
|
|
6775
|
+
leadBiddingConfig: {
|
|
6776
|
+
appliedFromQueue: boolean | null;
|
|
6777
|
+
biddingDelayInMinutes: number | null;
|
|
6778
|
+
bidWithWarning: "bid" | "skip";
|
|
6779
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6780
|
+
biddingHourlyRatePercentage: number | null;
|
|
6781
|
+
biddingFixedHourlyRate: number | null;
|
|
6782
|
+
boostingEnabled: boolean | null;
|
|
6783
|
+
boostDownToNthPlace: number | null;
|
|
6784
|
+
connectsAbovePrevious: number | null;
|
|
6785
|
+
maximumBoost: number | null;
|
|
6786
|
+
minBoost: number | null;
|
|
6787
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6788
|
+
bidConfig: {
|
|
6789
|
+
contractorName: string | null;
|
|
6790
|
+
agencyName: string | null;
|
|
6791
|
+
specialisedProfile: string | null;
|
|
6792
|
+
};
|
|
6793
|
+
} | null;
|
|
5879
6794
|
activity?: Partial<Record<"4h" | "24h", {
|
|
5880
6795
|
updatedAt: number | null;
|
|
5881
6796
|
unansweredInvites: number | null;
|
|
@@ -5904,6 +6819,15 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5904
6819
|
organizationId: string;
|
|
5905
6820
|
contractorName: string;
|
|
5906
6821
|
agencyName: string;
|
|
6822
|
+
bidWithWarning: "bid" | "skip";
|
|
6823
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6824
|
+
biddingHourlyRatePercentage: number | null;
|
|
6825
|
+
biddingFixedHourlyRate: number | null;
|
|
6826
|
+
boostingEnabled: boolean;
|
|
6827
|
+
boostDownToNthPlace: number | null;
|
|
6828
|
+
connectsAbovePrevious: number | null;
|
|
6829
|
+
maximumBoost: number | null;
|
|
6830
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5907
6831
|
questionAnswerPairs: {
|
|
5908
6832
|
answer: string;
|
|
5909
6833
|
question: string;
|
|
@@ -6004,6 +6928,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6004
6928
|
} | null;
|
|
6005
6929
|
activityUpdates: 2 | 1 | 3 | null;
|
|
6006
6930
|
scrapedAt: number | null;
|
|
6931
|
+
biddingDelayInMinutes: number | null;
|
|
6932
|
+
specialisedProfile: string | null;
|
|
6007
6933
|
jobId: string;
|
|
6008
6934
|
suitabilityRating: number | null;
|
|
6009
6935
|
suitabilityReason: string | null;
|
|
@@ -6013,20 +6939,39 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6013
6939
|
question: string;
|
|
6014
6940
|
}[] | null;
|
|
6015
6941
|
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;
|
|
6942
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
6017
6943
|
biddingAmount: number | null;
|
|
6018
6944
|
boosted: boolean | null;
|
|
6019
6945
|
boostingAmount: number | null;
|
|
6020
6946
|
boostedForPlace: number | null;
|
|
6021
|
-
specialisedProfile: string | null;
|
|
6022
6947
|
biddedAt: number | null;
|
|
6023
6948
|
biddingTaskScheduled: boolean | null;
|
|
6024
6949
|
scheduledBiddingTime: number | null;
|
|
6025
|
-
|
|
6950
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
6951
|
+
biddingScheduledAt: number | null;
|
|
6026
6952
|
feedbackCheckTaskId: string | null;
|
|
6027
6953
|
bidDecision: "rejected" | "proceeded" | null;
|
|
6028
6954
|
rejectedFeedback: string | null;
|
|
6029
6955
|
applicationId: string | null;
|
|
6956
|
+
leadBiddingConfig: {
|
|
6957
|
+
appliedFromQueue: boolean | null;
|
|
6958
|
+
biddingDelayInMinutes: number | null;
|
|
6959
|
+
bidWithWarning: "bid" | "skip";
|
|
6960
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6961
|
+
biddingHourlyRatePercentage: number | null;
|
|
6962
|
+
biddingFixedHourlyRate: number | null;
|
|
6963
|
+
boostingEnabled: boolean | null;
|
|
6964
|
+
boostDownToNthPlace: number | null;
|
|
6965
|
+
connectsAbovePrevious: number | null;
|
|
6966
|
+
maximumBoost: number | null;
|
|
6967
|
+
minBoost: number | null;
|
|
6968
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
6969
|
+
bidConfig: {
|
|
6970
|
+
contractorName: string | null;
|
|
6971
|
+
agencyName: string | null;
|
|
6972
|
+
specialisedProfile: string | null;
|
|
6973
|
+
};
|
|
6974
|
+
} | null;
|
|
6030
6975
|
activity?: Partial<Record<"4h" | "24h", {
|
|
6031
6976
|
updatedAt: number | null;
|
|
6032
6977
|
unansweredInvites: number | null;
|
|
@@ -6050,15 +6995,6 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6050
6995
|
proposalId?: string | undefined;
|
|
6051
6996
|
wonAmount?: number | undefined;
|
|
6052
6997
|
};
|
|
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
6998
|
specialisedProfileOptions: string[];
|
|
6063
6999
|
minimumBoost: number | null;
|
|
6064
7000
|
isHourlyRate: boolean;
|
|
@@ -6388,7 +7324,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
6388
7324
|
question: string;
|
|
6389
7325
|
}>, "many">>;
|
|
6390
7326
|
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"]>>;
|
|
7327
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingProcessing", "biddingFailed", "won"]>>;
|
|
6392
7328
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
6393
7329
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
6394
7330
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -6399,11 +7335,76 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
6399
7335
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
6400
7336
|
inQueue: z.ZodNullable<z.ZodBoolean>;
|
|
6401
7337
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
7338
|
+
checkFeedbackStatusCreatedAt: z.ZodNullable<z.ZodNumber>;
|
|
7339
|
+
biddingScheduledAt: z.ZodNullable<z.ZodNumber>;
|
|
6402
7340
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
6403
7341
|
feedbackCheckTaskId: z.ZodNullable<z.ZodString>;
|
|
6404
7342
|
bidDecision: z.ZodNullable<z.ZodEnum<["proceeded", "rejected"]>>;
|
|
6405
7343
|
rejectedFeedback: z.ZodNullable<z.ZodString>;
|
|
6406
7344
|
applicationId: z.ZodNullable<z.ZodString>;
|
|
7345
|
+
leadBiddingConfig: z.ZodNullable<z.ZodObject<{
|
|
7346
|
+
appliedFromQueue: z.ZodNullable<z.ZodBoolean>;
|
|
7347
|
+
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
7348
|
+
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
7349
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
7350
|
+
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
7351
|
+
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
7352
|
+
boostingEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
7353
|
+
boostDownToNthPlace: z.ZodNullable<z.ZodNumber>;
|
|
7354
|
+
connectsAbovePrevious: z.ZodNullable<z.ZodNumber>;
|
|
7355
|
+
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
7356
|
+
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
7357
|
+
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
7358
|
+
bidConfig: z.ZodObject<{
|
|
7359
|
+
agencyName: z.ZodNullable<z.ZodString>;
|
|
7360
|
+
contractorName: z.ZodNullable<z.ZodString>;
|
|
7361
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
7362
|
+
}, "strip", z.ZodTypeAny, {
|
|
7363
|
+
contractorName: string | null;
|
|
7364
|
+
agencyName: string | null;
|
|
7365
|
+
specialisedProfile: string | null;
|
|
7366
|
+
}, {
|
|
7367
|
+
contractorName: string | null;
|
|
7368
|
+
agencyName: string | null;
|
|
7369
|
+
specialisedProfile: string | null;
|
|
7370
|
+
}>;
|
|
7371
|
+
}, "strip", z.ZodTypeAny, {
|
|
7372
|
+
appliedFromQueue: boolean | null;
|
|
7373
|
+
biddingDelayInMinutes: number | null;
|
|
7374
|
+
bidWithWarning: "bid" | "skip";
|
|
7375
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
7376
|
+
biddingHourlyRatePercentage: number | null;
|
|
7377
|
+
biddingFixedHourlyRate: number | null;
|
|
7378
|
+
boostingEnabled: boolean | null;
|
|
7379
|
+
boostDownToNthPlace: number | null;
|
|
7380
|
+
connectsAbovePrevious: number | null;
|
|
7381
|
+
maximumBoost: number | null;
|
|
7382
|
+
minBoost: number | null;
|
|
7383
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7384
|
+
bidConfig: {
|
|
7385
|
+
contractorName: string | null;
|
|
7386
|
+
agencyName: string | null;
|
|
7387
|
+
specialisedProfile: string | null;
|
|
7388
|
+
};
|
|
7389
|
+
}, {
|
|
7390
|
+
appliedFromQueue: boolean | null;
|
|
7391
|
+
biddingDelayInMinutes: number | null;
|
|
7392
|
+
bidWithWarning: "bid" | "skip";
|
|
7393
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
7394
|
+
biddingHourlyRatePercentage: number | null;
|
|
7395
|
+
biddingFixedHourlyRate: number | null;
|
|
7396
|
+
boostingEnabled: boolean | null;
|
|
7397
|
+
boostDownToNthPlace: number | null;
|
|
7398
|
+
connectsAbovePrevious: number | null;
|
|
7399
|
+
maximumBoost: number | null;
|
|
7400
|
+
minBoost: number | null;
|
|
7401
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7402
|
+
bidConfig: {
|
|
7403
|
+
contractorName: string | null;
|
|
7404
|
+
agencyName: string | null;
|
|
7405
|
+
specialisedProfile: string | null;
|
|
7406
|
+
};
|
|
7407
|
+
}>>;
|
|
6407
7408
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
6408
7409
|
id: string | null;
|
|
6409
7410
|
title: string | null;
|
|
@@ -6499,6 +7500,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
6499
7500
|
} | null;
|
|
6500
7501
|
activityUpdates: 2 | 1 | 3 | null;
|
|
6501
7502
|
scrapedAt: number | null;
|
|
7503
|
+
biddingDelayInMinutes: number | null;
|
|
7504
|
+
specialisedProfile: string | null;
|
|
6502
7505
|
jobId: string;
|
|
6503
7506
|
suitabilityRating: number | null;
|
|
6504
7507
|
suitabilityReason: string | null;
|
|
@@ -6508,20 +7511,39 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
6508
7511
|
question: string;
|
|
6509
7512
|
}[] | null;
|
|
6510
7513
|
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;
|
|
7514
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
6512
7515
|
biddingAmount: number | null;
|
|
6513
7516
|
boosted: boolean | null;
|
|
6514
7517
|
boostingAmount: number | null;
|
|
6515
7518
|
boostedForPlace: number | null;
|
|
6516
|
-
specialisedProfile: string | null;
|
|
6517
7519
|
biddedAt: number | null;
|
|
6518
7520
|
biddingTaskScheduled: boolean | null;
|
|
6519
7521
|
scheduledBiddingTime: number | null;
|
|
6520
|
-
|
|
7522
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
7523
|
+
biddingScheduledAt: number | null;
|
|
6521
7524
|
feedbackCheckTaskId: string | null;
|
|
6522
7525
|
bidDecision: "rejected" | "proceeded" | null;
|
|
6523
7526
|
rejectedFeedback: string | null;
|
|
6524
7527
|
applicationId: string | null;
|
|
7528
|
+
leadBiddingConfig: {
|
|
7529
|
+
appliedFromQueue: boolean | null;
|
|
7530
|
+
biddingDelayInMinutes: number | null;
|
|
7531
|
+
bidWithWarning: "bid" | "skip";
|
|
7532
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
7533
|
+
biddingHourlyRatePercentage: number | null;
|
|
7534
|
+
biddingFixedHourlyRate: number | null;
|
|
7535
|
+
boostingEnabled: boolean | null;
|
|
7536
|
+
boostDownToNthPlace: number | null;
|
|
7537
|
+
connectsAbovePrevious: number | null;
|
|
7538
|
+
maximumBoost: number | null;
|
|
7539
|
+
minBoost: number | null;
|
|
7540
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7541
|
+
bidConfig: {
|
|
7542
|
+
contractorName: string | null;
|
|
7543
|
+
agencyName: string | null;
|
|
7544
|
+
specialisedProfile: string | null;
|
|
7545
|
+
};
|
|
7546
|
+
} | null;
|
|
6525
7547
|
activity?: Partial<Record<"4h" | "24h", {
|
|
6526
7548
|
updatedAt: number | null;
|
|
6527
7549
|
unansweredInvites: number | null;
|
|
@@ -6639,6 +7661,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
6639
7661
|
} | null;
|
|
6640
7662
|
activityUpdates: 2 | 1 | 3 | null;
|
|
6641
7663
|
scrapedAt: number | null;
|
|
7664
|
+
biddingDelayInMinutes: number | null;
|
|
7665
|
+
specialisedProfile: string | null;
|
|
6642
7666
|
jobId: string;
|
|
6643
7667
|
suitabilityRating: number | null;
|
|
6644
7668
|
suitabilityReason: string | null;
|
|
@@ -6648,20 +7672,39 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
6648
7672
|
question: string;
|
|
6649
7673
|
}[] | null;
|
|
6650
7674
|
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;
|
|
7675
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
6652
7676
|
biddingAmount: number | null;
|
|
6653
7677
|
boosted: boolean | null;
|
|
6654
7678
|
boostingAmount: number | null;
|
|
6655
7679
|
boostedForPlace: number | null;
|
|
6656
|
-
specialisedProfile: string | null;
|
|
6657
7680
|
biddedAt: number | null;
|
|
6658
7681
|
biddingTaskScheduled: boolean | null;
|
|
6659
7682
|
scheduledBiddingTime: number | null;
|
|
6660
|
-
|
|
7683
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
7684
|
+
biddingScheduledAt: number | null;
|
|
6661
7685
|
feedbackCheckTaskId: string | null;
|
|
6662
7686
|
bidDecision: "rejected" | "proceeded" | null;
|
|
6663
7687
|
rejectedFeedback: string | null;
|
|
6664
7688
|
applicationId: string | null;
|
|
7689
|
+
leadBiddingConfig: {
|
|
7690
|
+
appliedFromQueue: boolean | null;
|
|
7691
|
+
biddingDelayInMinutes: number | null;
|
|
7692
|
+
bidWithWarning: "bid" | "skip";
|
|
7693
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
7694
|
+
biddingHourlyRatePercentage: number | null;
|
|
7695
|
+
biddingFixedHourlyRate: number | null;
|
|
7696
|
+
boostingEnabled: boolean | null;
|
|
7697
|
+
boostDownToNthPlace: number | null;
|
|
7698
|
+
connectsAbovePrevious: number | null;
|
|
7699
|
+
maximumBoost: number | null;
|
|
7700
|
+
minBoost: number | null;
|
|
7701
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7702
|
+
bidConfig: {
|
|
7703
|
+
contractorName: string | null;
|
|
7704
|
+
agencyName: string | null;
|
|
7705
|
+
specialisedProfile: string | null;
|
|
7706
|
+
};
|
|
7707
|
+
} | null;
|
|
6665
7708
|
activity?: Partial<Record<"4h" | "24h", {
|
|
6666
7709
|
updatedAt: number | null;
|
|
6667
7710
|
unansweredInvites: number | null;
|
|
@@ -7010,7 +8053,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7010
8053
|
question: string;
|
|
7011
8054
|
}>, "many">>;
|
|
7012
8055
|
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"]>>;
|
|
8056
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingProcessing", "biddingFailed", "won"]>>;
|
|
7014
8057
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
7015
8058
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
7016
8059
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -7021,11 +8064,76 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7021
8064
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
7022
8065
|
inQueue: z.ZodNullable<z.ZodBoolean>;
|
|
7023
8066
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
8067
|
+
checkFeedbackStatusCreatedAt: z.ZodNullable<z.ZodNumber>;
|
|
8068
|
+
biddingScheduledAt: z.ZodNullable<z.ZodNumber>;
|
|
7024
8069
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
7025
8070
|
feedbackCheckTaskId: z.ZodNullable<z.ZodString>;
|
|
7026
8071
|
bidDecision: z.ZodNullable<z.ZodEnum<["proceeded", "rejected"]>>;
|
|
7027
8072
|
rejectedFeedback: z.ZodNullable<z.ZodString>;
|
|
7028
8073
|
applicationId: z.ZodNullable<z.ZodString>;
|
|
8074
|
+
leadBiddingConfig: z.ZodNullable<z.ZodObject<{
|
|
8075
|
+
appliedFromQueue: z.ZodNullable<z.ZodBoolean>;
|
|
8076
|
+
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
8077
|
+
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
8078
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
8079
|
+
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
8080
|
+
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
8081
|
+
boostingEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
8082
|
+
boostDownToNthPlace: z.ZodNullable<z.ZodNumber>;
|
|
8083
|
+
connectsAbovePrevious: z.ZodNullable<z.ZodNumber>;
|
|
8084
|
+
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
8085
|
+
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
8086
|
+
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
8087
|
+
bidConfig: z.ZodObject<{
|
|
8088
|
+
agencyName: z.ZodNullable<z.ZodString>;
|
|
8089
|
+
contractorName: z.ZodNullable<z.ZodString>;
|
|
8090
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
8091
|
+
}, "strip", z.ZodTypeAny, {
|
|
8092
|
+
contractorName: string | null;
|
|
8093
|
+
agencyName: string | null;
|
|
8094
|
+
specialisedProfile: string | null;
|
|
8095
|
+
}, {
|
|
8096
|
+
contractorName: string | null;
|
|
8097
|
+
agencyName: string | null;
|
|
8098
|
+
specialisedProfile: string | null;
|
|
8099
|
+
}>;
|
|
8100
|
+
}, "strip", z.ZodTypeAny, {
|
|
8101
|
+
appliedFromQueue: boolean | null;
|
|
8102
|
+
biddingDelayInMinutes: number | null;
|
|
8103
|
+
bidWithWarning: "bid" | "skip";
|
|
8104
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8105
|
+
biddingHourlyRatePercentage: number | null;
|
|
8106
|
+
biddingFixedHourlyRate: number | null;
|
|
8107
|
+
boostingEnabled: boolean | null;
|
|
8108
|
+
boostDownToNthPlace: number | null;
|
|
8109
|
+
connectsAbovePrevious: number | null;
|
|
8110
|
+
maximumBoost: number | null;
|
|
8111
|
+
minBoost: number | null;
|
|
8112
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8113
|
+
bidConfig: {
|
|
8114
|
+
contractorName: string | null;
|
|
8115
|
+
agencyName: string | null;
|
|
8116
|
+
specialisedProfile: string | null;
|
|
8117
|
+
};
|
|
8118
|
+
}, {
|
|
8119
|
+
appliedFromQueue: boolean | null;
|
|
8120
|
+
biddingDelayInMinutes: number | null;
|
|
8121
|
+
bidWithWarning: "bid" | "skip";
|
|
8122
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8123
|
+
biddingHourlyRatePercentage: number | null;
|
|
8124
|
+
biddingFixedHourlyRate: number | null;
|
|
8125
|
+
boostingEnabled: boolean | null;
|
|
8126
|
+
boostDownToNthPlace: number | null;
|
|
8127
|
+
connectsAbovePrevious: number | null;
|
|
8128
|
+
maximumBoost: number | null;
|
|
8129
|
+
minBoost: number | null;
|
|
8130
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8131
|
+
bidConfig: {
|
|
8132
|
+
contractorName: string | null;
|
|
8133
|
+
agencyName: string | null;
|
|
8134
|
+
specialisedProfile: string | null;
|
|
8135
|
+
};
|
|
8136
|
+
}>>;
|
|
7029
8137
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
7030
8138
|
id: string | null;
|
|
7031
8139
|
title: string | null;
|
|
@@ -7121,6 +8229,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7121
8229
|
} | null;
|
|
7122
8230
|
activityUpdates: 2 | 1 | 3 | null;
|
|
7123
8231
|
scrapedAt: number | null;
|
|
8232
|
+
biddingDelayInMinutes: number | null;
|
|
8233
|
+
specialisedProfile: string | null;
|
|
7124
8234
|
jobId: string;
|
|
7125
8235
|
suitabilityRating: number | null;
|
|
7126
8236
|
suitabilityReason: string | null;
|
|
@@ -7130,20 +8240,39 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7130
8240
|
question: string;
|
|
7131
8241
|
}[] | null;
|
|
7132
8242
|
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;
|
|
8243
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
7134
8244
|
biddingAmount: number | null;
|
|
7135
8245
|
boosted: boolean | null;
|
|
7136
8246
|
boostingAmount: number | null;
|
|
7137
8247
|
boostedForPlace: number | null;
|
|
7138
|
-
specialisedProfile: string | null;
|
|
7139
8248
|
biddedAt: number | null;
|
|
7140
8249
|
biddingTaskScheduled: boolean | null;
|
|
7141
8250
|
scheduledBiddingTime: number | null;
|
|
7142
|
-
|
|
8251
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
8252
|
+
biddingScheduledAt: number | null;
|
|
7143
8253
|
feedbackCheckTaskId: string | null;
|
|
7144
8254
|
bidDecision: "rejected" | "proceeded" | null;
|
|
7145
8255
|
rejectedFeedback: string | null;
|
|
7146
8256
|
applicationId: string | null;
|
|
8257
|
+
leadBiddingConfig: {
|
|
8258
|
+
appliedFromQueue: boolean | null;
|
|
8259
|
+
biddingDelayInMinutes: number | null;
|
|
8260
|
+
bidWithWarning: "bid" | "skip";
|
|
8261
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8262
|
+
biddingHourlyRatePercentage: number | null;
|
|
8263
|
+
biddingFixedHourlyRate: number | null;
|
|
8264
|
+
boostingEnabled: boolean | null;
|
|
8265
|
+
boostDownToNthPlace: number | null;
|
|
8266
|
+
connectsAbovePrevious: number | null;
|
|
8267
|
+
maximumBoost: number | null;
|
|
8268
|
+
minBoost: number | null;
|
|
8269
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8270
|
+
bidConfig: {
|
|
8271
|
+
contractorName: string | null;
|
|
8272
|
+
agencyName: string | null;
|
|
8273
|
+
specialisedProfile: string | null;
|
|
8274
|
+
};
|
|
8275
|
+
} | null;
|
|
7147
8276
|
activity?: Partial<Record<"4h" | "24h", {
|
|
7148
8277
|
updatedAt: number | null;
|
|
7149
8278
|
unansweredInvites: number | null;
|
|
@@ -7261,6 +8390,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7261
8390
|
} | null;
|
|
7262
8391
|
activityUpdates: 2 | 1 | 3 | null;
|
|
7263
8392
|
scrapedAt: number | null;
|
|
8393
|
+
biddingDelayInMinutes: number | null;
|
|
8394
|
+
specialisedProfile: string | null;
|
|
7264
8395
|
jobId: string;
|
|
7265
8396
|
suitabilityRating: number | null;
|
|
7266
8397
|
suitabilityReason: string | null;
|
|
@@ -7270,20 +8401,39 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7270
8401
|
question: string;
|
|
7271
8402
|
}[] | null;
|
|
7272
8403
|
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;
|
|
8404
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
7274
8405
|
biddingAmount: number | null;
|
|
7275
8406
|
boosted: boolean | null;
|
|
7276
8407
|
boostingAmount: number | null;
|
|
7277
8408
|
boostedForPlace: number | null;
|
|
7278
|
-
specialisedProfile: string | null;
|
|
7279
8409
|
biddedAt: number | null;
|
|
7280
8410
|
biddingTaskScheduled: boolean | null;
|
|
7281
8411
|
scheduledBiddingTime: number | null;
|
|
7282
|
-
|
|
8412
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
8413
|
+
biddingScheduledAt: number | null;
|
|
7283
8414
|
feedbackCheckTaskId: string | null;
|
|
7284
8415
|
bidDecision: "rejected" | "proceeded" | null;
|
|
7285
8416
|
rejectedFeedback: string | null;
|
|
7286
8417
|
applicationId: string | null;
|
|
8418
|
+
leadBiddingConfig: {
|
|
8419
|
+
appliedFromQueue: boolean | null;
|
|
8420
|
+
biddingDelayInMinutes: number | null;
|
|
8421
|
+
bidWithWarning: "bid" | "skip";
|
|
8422
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8423
|
+
biddingHourlyRatePercentage: number | null;
|
|
8424
|
+
biddingFixedHourlyRate: number | null;
|
|
8425
|
+
boostingEnabled: boolean | null;
|
|
8426
|
+
boostDownToNthPlace: number | null;
|
|
8427
|
+
connectsAbovePrevious: number | null;
|
|
8428
|
+
maximumBoost: number | null;
|
|
8429
|
+
minBoost: number | null;
|
|
8430
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8431
|
+
bidConfig: {
|
|
8432
|
+
contractorName: string | null;
|
|
8433
|
+
agencyName: string | null;
|
|
8434
|
+
specialisedProfile: string | null;
|
|
8435
|
+
};
|
|
8436
|
+
} | null;
|
|
7287
8437
|
activity?: Partial<Record<"4h" | "24h", {
|
|
7288
8438
|
updatedAt: number | null;
|
|
7289
8439
|
unansweredInvites: number | null;
|
|
@@ -7335,6 +8485,15 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7335
8485
|
}, "strip", z.ZodTypeAny, {
|
|
7336
8486
|
campaignId: string;
|
|
7337
8487
|
organizationId: string;
|
|
8488
|
+
bidWithWarning: "bid" | "skip";
|
|
8489
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8490
|
+
biddingHourlyRatePercentage: number | null;
|
|
8491
|
+
biddingFixedHourlyRate: number | null;
|
|
8492
|
+
boostingEnabled: boolean;
|
|
8493
|
+
boostDownToNthPlace: number | null;
|
|
8494
|
+
connectsAbovePrevious: number | null;
|
|
8495
|
+
maximumBoost: number | null;
|
|
8496
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7338
8497
|
questionAnswerPairs: {
|
|
7339
8498
|
answer: string;
|
|
7340
8499
|
question: string;
|
|
@@ -7435,6 +8594,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7435
8594
|
} | null;
|
|
7436
8595
|
activityUpdates: 2 | 1 | 3 | null;
|
|
7437
8596
|
scrapedAt: number | null;
|
|
8597
|
+
biddingDelayInMinutes: number | null;
|
|
8598
|
+
specialisedProfile: string | null;
|
|
7438
8599
|
jobId: string;
|
|
7439
8600
|
suitabilityRating: number | null;
|
|
7440
8601
|
suitabilityReason: string | null;
|
|
@@ -7444,20 +8605,39 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7444
8605
|
question: string;
|
|
7445
8606
|
}[] | null;
|
|
7446
8607
|
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;
|
|
8608
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
7448
8609
|
biddingAmount: number | null;
|
|
7449
8610
|
boosted: boolean | null;
|
|
7450
8611
|
boostingAmount: number | null;
|
|
7451
8612
|
boostedForPlace: number | null;
|
|
7452
|
-
specialisedProfile: string | null;
|
|
7453
8613
|
biddedAt: number | null;
|
|
7454
8614
|
biddingTaskScheduled: boolean | null;
|
|
7455
8615
|
scheduledBiddingTime: number | null;
|
|
7456
|
-
|
|
8616
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
8617
|
+
biddingScheduledAt: number | null;
|
|
7457
8618
|
feedbackCheckTaskId: string | null;
|
|
7458
8619
|
bidDecision: "rejected" | "proceeded" | null;
|
|
7459
8620
|
rejectedFeedback: string | null;
|
|
7460
8621
|
applicationId: string | null;
|
|
8622
|
+
leadBiddingConfig: {
|
|
8623
|
+
appliedFromQueue: boolean | null;
|
|
8624
|
+
biddingDelayInMinutes: number | null;
|
|
8625
|
+
bidWithWarning: "bid" | "skip";
|
|
8626
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8627
|
+
biddingHourlyRatePercentage: number | null;
|
|
8628
|
+
biddingFixedHourlyRate: number | null;
|
|
8629
|
+
boostingEnabled: boolean | null;
|
|
8630
|
+
boostDownToNthPlace: number | null;
|
|
8631
|
+
connectsAbovePrevious: number | null;
|
|
8632
|
+
maximumBoost: number | null;
|
|
8633
|
+
minBoost: number | null;
|
|
8634
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8635
|
+
bidConfig: {
|
|
8636
|
+
contractorName: string | null;
|
|
8637
|
+
agencyName: string | null;
|
|
8638
|
+
specialisedProfile: string | null;
|
|
8639
|
+
};
|
|
8640
|
+
} | null;
|
|
7461
8641
|
activity?: Partial<Record<"4h" | "24h", {
|
|
7462
8642
|
updatedAt: number | null;
|
|
7463
8643
|
unansweredInvites: number | null;
|
|
@@ -7481,15 +8661,6 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7481
8661
|
proposalId?: string | undefined;
|
|
7482
8662
|
wonAmount?: number | undefined;
|
|
7483
8663
|
};
|
|
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
8664
|
specialisedProfileOptions: string[];
|
|
7494
8665
|
minimumBoost: number | null;
|
|
7495
8666
|
isHourlyRate: boolean;
|
|
@@ -7498,6 +8669,15 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7498
8669
|
}, {
|
|
7499
8670
|
campaignId: string;
|
|
7500
8671
|
organizationId: string;
|
|
8672
|
+
bidWithWarning: "bid" | "skip";
|
|
8673
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8674
|
+
biddingHourlyRatePercentage: number | null;
|
|
8675
|
+
biddingFixedHourlyRate: number | null;
|
|
8676
|
+
boostingEnabled: boolean;
|
|
8677
|
+
boostDownToNthPlace: number | null;
|
|
8678
|
+
connectsAbovePrevious: number | null;
|
|
8679
|
+
maximumBoost: number | null;
|
|
8680
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7501
8681
|
questionAnswerPairs: {
|
|
7502
8682
|
answer: string;
|
|
7503
8683
|
question: string;
|
|
@@ -7598,6 +8778,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7598
8778
|
} | null;
|
|
7599
8779
|
activityUpdates: 2 | 1 | 3 | null;
|
|
7600
8780
|
scrapedAt: number | null;
|
|
8781
|
+
biddingDelayInMinutes: number | null;
|
|
8782
|
+
specialisedProfile: string | null;
|
|
7601
8783
|
jobId: string;
|
|
7602
8784
|
suitabilityRating: number | null;
|
|
7603
8785
|
suitabilityReason: string | null;
|
|
@@ -7607,20 +8789,39 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7607
8789
|
question: string;
|
|
7608
8790
|
}[] | null;
|
|
7609
8791
|
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;
|
|
8792
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
7611
8793
|
biddingAmount: number | null;
|
|
7612
8794
|
boosted: boolean | null;
|
|
7613
8795
|
boostingAmount: number | null;
|
|
7614
8796
|
boostedForPlace: number | null;
|
|
7615
|
-
specialisedProfile: string | null;
|
|
7616
8797
|
biddedAt: number | null;
|
|
7617
8798
|
biddingTaskScheduled: boolean | null;
|
|
7618
8799
|
scheduledBiddingTime: number | null;
|
|
7619
|
-
|
|
8800
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
8801
|
+
biddingScheduledAt: number | null;
|
|
7620
8802
|
feedbackCheckTaskId: string | null;
|
|
7621
8803
|
bidDecision: "rejected" | "proceeded" | null;
|
|
7622
8804
|
rejectedFeedback: string | null;
|
|
7623
8805
|
applicationId: string | null;
|
|
8806
|
+
leadBiddingConfig: {
|
|
8807
|
+
appliedFromQueue: boolean | null;
|
|
8808
|
+
biddingDelayInMinutes: number | null;
|
|
8809
|
+
bidWithWarning: "bid" | "skip";
|
|
8810
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8811
|
+
biddingHourlyRatePercentage: number | null;
|
|
8812
|
+
biddingFixedHourlyRate: number | null;
|
|
8813
|
+
boostingEnabled: boolean | null;
|
|
8814
|
+
boostDownToNthPlace: number | null;
|
|
8815
|
+
connectsAbovePrevious: number | null;
|
|
8816
|
+
maximumBoost: number | null;
|
|
8817
|
+
minBoost: number | null;
|
|
8818
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8819
|
+
bidConfig: {
|
|
8820
|
+
contractorName: string | null;
|
|
8821
|
+
agencyName: string | null;
|
|
8822
|
+
specialisedProfile: string | null;
|
|
8823
|
+
};
|
|
8824
|
+
} | null;
|
|
7624
8825
|
activity?: Partial<Record<"4h" | "24h", {
|
|
7625
8826
|
updatedAt: number | null;
|
|
7626
8827
|
unansweredInvites: number | null;
|
|
@@ -7644,15 +8845,6 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7644
8845
|
proposalId?: string | undefined;
|
|
7645
8846
|
wonAmount?: number | undefined;
|
|
7646
8847
|
};
|
|
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
8848
|
specialisedProfileOptions: string[];
|
|
7657
8849
|
minimumBoost: number | null;
|
|
7658
8850
|
isHourlyRate: boolean;
|
|
@@ -7760,6 +8952,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7760
8952
|
} | null;
|
|
7761
8953
|
activityUpdates: 2 | 1 | 3 | null;
|
|
7762
8954
|
scrapedAt: number | null;
|
|
8955
|
+
biddingDelayInMinutes: number | null;
|
|
8956
|
+
specialisedProfile: string | null;
|
|
7763
8957
|
jobId: string;
|
|
7764
8958
|
suitabilityRating: number | null;
|
|
7765
8959
|
suitabilityReason: string | null;
|
|
@@ -7769,20 +8963,39 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7769
8963
|
question: string;
|
|
7770
8964
|
}[] | null;
|
|
7771
8965
|
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;
|
|
8966
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
7773
8967
|
biddingAmount: number | null;
|
|
7774
8968
|
boosted: boolean | null;
|
|
7775
8969
|
boostingAmount: number | null;
|
|
7776
8970
|
boostedForPlace: number | null;
|
|
7777
|
-
specialisedProfile: string | null;
|
|
7778
8971
|
biddedAt: number | null;
|
|
7779
8972
|
biddingTaskScheduled: boolean | null;
|
|
7780
8973
|
scheduledBiddingTime: number | null;
|
|
7781
|
-
|
|
8974
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
8975
|
+
biddingScheduledAt: number | null;
|
|
7782
8976
|
feedbackCheckTaskId: string | null;
|
|
7783
8977
|
bidDecision: "rejected" | "proceeded" | null;
|
|
7784
8978
|
rejectedFeedback: string | null;
|
|
7785
8979
|
applicationId: string | null;
|
|
8980
|
+
leadBiddingConfig: {
|
|
8981
|
+
appliedFromQueue: boolean | null;
|
|
8982
|
+
biddingDelayInMinutes: number | null;
|
|
8983
|
+
bidWithWarning: "bid" | "skip";
|
|
8984
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8985
|
+
biddingHourlyRatePercentage: number | null;
|
|
8986
|
+
biddingFixedHourlyRate: number | null;
|
|
8987
|
+
boostingEnabled: boolean | null;
|
|
8988
|
+
boostDownToNthPlace: number | null;
|
|
8989
|
+
connectsAbovePrevious: number | null;
|
|
8990
|
+
maximumBoost: number | null;
|
|
8991
|
+
minBoost: number | null;
|
|
8992
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8993
|
+
bidConfig: {
|
|
8994
|
+
contractorName: string | null;
|
|
8995
|
+
agencyName: string | null;
|
|
8996
|
+
specialisedProfile: string | null;
|
|
8997
|
+
};
|
|
8998
|
+
} | null;
|
|
7786
8999
|
activity?: Partial<Record<"4h" | "24h", {
|
|
7787
9000
|
updatedAt: number | null;
|
|
7788
9001
|
unansweredInvites: number | null;
|
|
@@ -7809,6 +9022,15 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7809
9022
|
proposalData: {
|
|
7810
9023
|
campaignId: string;
|
|
7811
9024
|
organizationId: string;
|
|
9025
|
+
bidWithWarning: "bid" | "skip";
|
|
9026
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9027
|
+
biddingHourlyRatePercentage: number | null;
|
|
9028
|
+
biddingFixedHourlyRate: number | null;
|
|
9029
|
+
boostingEnabled: boolean;
|
|
9030
|
+
boostDownToNthPlace: number | null;
|
|
9031
|
+
connectsAbovePrevious: number | null;
|
|
9032
|
+
maximumBoost: number | null;
|
|
9033
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7812
9034
|
questionAnswerPairs: {
|
|
7813
9035
|
answer: string;
|
|
7814
9036
|
question: string;
|
|
@@ -7909,6 +9131,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7909
9131
|
} | null;
|
|
7910
9132
|
activityUpdates: 2 | 1 | 3 | null;
|
|
7911
9133
|
scrapedAt: number | null;
|
|
9134
|
+
biddingDelayInMinutes: number | null;
|
|
9135
|
+
specialisedProfile: string | null;
|
|
7912
9136
|
jobId: string;
|
|
7913
9137
|
suitabilityRating: number | null;
|
|
7914
9138
|
suitabilityReason: string | null;
|
|
@@ -7918,20 +9142,39 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7918
9142
|
question: string;
|
|
7919
9143
|
}[] | null;
|
|
7920
9144
|
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;
|
|
9145
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
7922
9146
|
biddingAmount: number | null;
|
|
7923
9147
|
boosted: boolean | null;
|
|
7924
9148
|
boostingAmount: number | null;
|
|
7925
9149
|
boostedForPlace: number | null;
|
|
7926
|
-
specialisedProfile: string | null;
|
|
7927
9150
|
biddedAt: number | null;
|
|
7928
9151
|
biddingTaskScheduled: boolean | null;
|
|
7929
9152
|
scheduledBiddingTime: number | null;
|
|
7930
|
-
|
|
9153
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
9154
|
+
biddingScheduledAt: number | null;
|
|
7931
9155
|
feedbackCheckTaskId: string | null;
|
|
7932
9156
|
bidDecision: "rejected" | "proceeded" | null;
|
|
7933
9157
|
rejectedFeedback: string | null;
|
|
7934
9158
|
applicationId: string | null;
|
|
9159
|
+
leadBiddingConfig: {
|
|
9160
|
+
appliedFromQueue: boolean | null;
|
|
9161
|
+
biddingDelayInMinutes: number | null;
|
|
9162
|
+
bidWithWarning: "bid" | "skip";
|
|
9163
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9164
|
+
biddingHourlyRatePercentage: number | null;
|
|
9165
|
+
biddingFixedHourlyRate: number | null;
|
|
9166
|
+
boostingEnabled: boolean | null;
|
|
9167
|
+
boostDownToNthPlace: number | null;
|
|
9168
|
+
connectsAbovePrevious: number | null;
|
|
9169
|
+
maximumBoost: number | null;
|
|
9170
|
+
minBoost: number | null;
|
|
9171
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
9172
|
+
bidConfig: {
|
|
9173
|
+
contractorName: string | null;
|
|
9174
|
+
agencyName: string | null;
|
|
9175
|
+
specialisedProfile: string | null;
|
|
9176
|
+
};
|
|
9177
|
+
} | null;
|
|
7935
9178
|
activity?: Partial<Record<"4h" | "24h", {
|
|
7936
9179
|
updatedAt: number | null;
|
|
7937
9180
|
unansweredInvites: number | null;
|
|
@@ -7955,15 +9198,6 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7955
9198
|
proposalId?: string | undefined;
|
|
7956
9199
|
wonAmount?: number | undefined;
|
|
7957
9200
|
};
|
|
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
9201
|
specialisedProfileOptions: string[];
|
|
7968
9202
|
minimumBoost: number | null;
|
|
7969
9203
|
isHourlyRate: boolean;
|
|
@@ -8071,6 +9305,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8071
9305
|
} | null;
|
|
8072
9306
|
activityUpdates: 2 | 1 | 3 | null;
|
|
8073
9307
|
scrapedAt: number | null;
|
|
9308
|
+
biddingDelayInMinutes: number | null;
|
|
9309
|
+
specialisedProfile: string | null;
|
|
8074
9310
|
jobId: string;
|
|
8075
9311
|
suitabilityRating: number | null;
|
|
8076
9312
|
suitabilityReason: string | null;
|
|
@@ -8080,20 +9316,39 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8080
9316
|
question: string;
|
|
8081
9317
|
}[] | null;
|
|
8082
9318
|
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;
|
|
9319
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
8084
9320
|
biddingAmount: number | null;
|
|
8085
9321
|
boosted: boolean | null;
|
|
8086
9322
|
boostingAmount: number | null;
|
|
8087
9323
|
boostedForPlace: number | null;
|
|
8088
|
-
specialisedProfile: string | null;
|
|
8089
9324
|
biddedAt: number | null;
|
|
8090
9325
|
biddingTaskScheduled: boolean | null;
|
|
8091
9326
|
scheduledBiddingTime: number | null;
|
|
8092
|
-
|
|
9327
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
9328
|
+
biddingScheduledAt: number | null;
|
|
8093
9329
|
feedbackCheckTaskId: string | null;
|
|
8094
9330
|
bidDecision: "rejected" | "proceeded" | null;
|
|
8095
9331
|
rejectedFeedback: string | null;
|
|
8096
9332
|
applicationId: string | null;
|
|
9333
|
+
leadBiddingConfig: {
|
|
9334
|
+
appliedFromQueue: boolean | null;
|
|
9335
|
+
biddingDelayInMinutes: number | null;
|
|
9336
|
+
bidWithWarning: "bid" | "skip";
|
|
9337
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9338
|
+
biddingHourlyRatePercentage: number | null;
|
|
9339
|
+
biddingFixedHourlyRate: number | null;
|
|
9340
|
+
boostingEnabled: boolean | null;
|
|
9341
|
+
boostDownToNthPlace: number | null;
|
|
9342
|
+
connectsAbovePrevious: number | null;
|
|
9343
|
+
maximumBoost: number | null;
|
|
9344
|
+
minBoost: number | null;
|
|
9345
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
9346
|
+
bidConfig: {
|
|
9347
|
+
contractorName: string | null;
|
|
9348
|
+
agencyName: string | null;
|
|
9349
|
+
specialisedProfile: string | null;
|
|
9350
|
+
};
|
|
9351
|
+
} | null;
|
|
8097
9352
|
activity?: Partial<Record<"4h" | "24h", {
|
|
8098
9353
|
updatedAt: number | null;
|
|
8099
9354
|
unansweredInvites: number | null;
|
|
@@ -8120,6 +9375,15 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8120
9375
|
proposalData: {
|
|
8121
9376
|
campaignId: string;
|
|
8122
9377
|
organizationId: string;
|
|
9378
|
+
bidWithWarning: "bid" | "skip";
|
|
9379
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9380
|
+
biddingHourlyRatePercentage: number | null;
|
|
9381
|
+
biddingFixedHourlyRate: number | null;
|
|
9382
|
+
boostingEnabled: boolean;
|
|
9383
|
+
boostDownToNthPlace: number | null;
|
|
9384
|
+
connectsAbovePrevious: number | null;
|
|
9385
|
+
maximumBoost: number | null;
|
|
9386
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
8123
9387
|
questionAnswerPairs: {
|
|
8124
9388
|
answer: string;
|
|
8125
9389
|
question: string;
|
|
@@ -8220,6 +9484,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8220
9484
|
} | null;
|
|
8221
9485
|
activityUpdates: 2 | 1 | 3 | null;
|
|
8222
9486
|
scrapedAt: number | null;
|
|
9487
|
+
biddingDelayInMinutes: number | null;
|
|
9488
|
+
specialisedProfile: string | null;
|
|
8223
9489
|
jobId: string;
|
|
8224
9490
|
suitabilityRating: number | null;
|
|
8225
9491
|
suitabilityReason: string | null;
|
|
@@ -8229,20 +9495,39 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8229
9495
|
question: string;
|
|
8230
9496
|
}[] | null;
|
|
8231
9497
|
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;
|
|
9498
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
8233
9499
|
biddingAmount: number | null;
|
|
8234
9500
|
boosted: boolean | null;
|
|
8235
9501
|
boostingAmount: number | null;
|
|
8236
9502
|
boostedForPlace: number | null;
|
|
8237
|
-
specialisedProfile: string | null;
|
|
8238
9503
|
biddedAt: number | null;
|
|
8239
9504
|
biddingTaskScheduled: boolean | null;
|
|
8240
9505
|
scheduledBiddingTime: number | null;
|
|
8241
|
-
|
|
9506
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
9507
|
+
biddingScheduledAt: number | null;
|
|
8242
9508
|
feedbackCheckTaskId: string | null;
|
|
8243
9509
|
bidDecision: "rejected" | "proceeded" | null;
|
|
8244
9510
|
rejectedFeedback: string | null;
|
|
8245
9511
|
applicationId: string | null;
|
|
9512
|
+
leadBiddingConfig: {
|
|
9513
|
+
appliedFromQueue: boolean | null;
|
|
9514
|
+
biddingDelayInMinutes: number | null;
|
|
9515
|
+
bidWithWarning: "bid" | "skip";
|
|
9516
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9517
|
+
biddingHourlyRatePercentage: number | null;
|
|
9518
|
+
biddingFixedHourlyRate: number | null;
|
|
9519
|
+
boostingEnabled: boolean | null;
|
|
9520
|
+
boostDownToNthPlace: number | null;
|
|
9521
|
+
connectsAbovePrevious: number | null;
|
|
9522
|
+
maximumBoost: number | null;
|
|
9523
|
+
minBoost: number | null;
|
|
9524
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
9525
|
+
bidConfig: {
|
|
9526
|
+
contractorName: string | null;
|
|
9527
|
+
agencyName: string | null;
|
|
9528
|
+
specialisedProfile: string | null;
|
|
9529
|
+
};
|
|
9530
|
+
} | null;
|
|
8246
9531
|
activity?: Partial<Record<"4h" | "24h", {
|
|
8247
9532
|
updatedAt: number | null;
|
|
8248
9533
|
unansweredInvites: number | null;
|
|
@@ -8266,15 +9551,6 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8266
9551
|
proposalId?: string | undefined;
|
|
8267
9552
|
wonAmount?: number | undefined;
|
|
8268
9553
|
};
|
|
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
9554
|
specialisedProfileOptions: string[];
|
|
8279
9555
|
minimumBoost: number | null;
|
|
8280
9556
|
isHourlyRate: boolean;
|
|
@@ -8604,7 +9880,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
8604
9880
|
question: string;
|
|
8605
9881
|
}>, "many">>;
|
|
8606
9882
|
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"]>>;
|
|
9883
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingProcessing", "biddingFailed", "won"]>>;
|
|
8608
9884
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
8609
9885
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
8610
9886
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -8615,11 +9891,76 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
8615
9891
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
8616
9892
|
inQueue: z.ZodNullable<z.ZodBoolean>;
|
|
8617
9893
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
9894
|
+
checkFeedbackStatusCreatedAt: z.ZodNullable<z.ZodNumber>;
|
|
9895
|
+
biddingScheduledAt: z.ZodNullable<z.ZodNumber>;
|
|
8618
9896
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
8619
9897
|
feedbackCheckTaskId: z.ZodNullable<z.ZodString>;
|
|
8620
9898
|
bidDecision: z.ZodNullable<z.ZodEnum<["proceeded", "rejected"]>>;
|
|
8621
9899
|
rejectedFeedback: z.ZodNullable<z.ZodString>;
|
|
8622
9900
|
applicationId: z.ZodNullable<z.ZodString>;
|
|
9901
|
+
leadBiddingConfig: z.ZodNullable<z.ZodObject<{
|
|
9902
|
+
appliedFromQueue: z.ZodNullable<z.ZodBoolean>;
|
|
9903
|
+
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
9904
|
+
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
9905
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
9906
|
+
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
9907
|
+
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
9908
|
+
boostingEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
9909
|
+
boostDownToNthPlace: z.ZodNullable<z.ZodNumber>;
|
|
9910
|
+
connectsAbovePrevious: z.ZodNullable<z.ZodNumber>;
|
|
9911
|
+
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
9912
|
+
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
9913
|
+
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
9914
|
+
bidConfig: z.ZodObject<{
|
|
9915
|
+
agencyName: z.ZodNullable<z.ZodString>;
|
|
9916
|
+
contractorName: z.ZodNullable<z.ZodString>;
|
|
9917
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
9918
|
+
}, "strip", z.ZodTypeAny, {
|
|
9919
|
+
contractorName: string | null;
|
|
9920
|
+
agencyName: string | null;
|
|
9921
|
+
specialisedProfile: string | null;
|
|
9922
|
+
}, {
|
|
9923
|
+
contractorName: string | null;
|
|
9924
|
+
agencyName: string | null;
|
|
9925
|
+
specialisedProfile: string | null;
|
|
9926
|
+
}>;
|
|
9927
|
+
}, "strip", z.ZodTypeAny, {
|
|
9928
|
+
appliedFromQueue: boolean | null;
|
|
9929
|
+
biddingDelayInMinutes: number | null;
|
|
9930
|
+
bidWithWarning: "bid" | "skip";
|
|
9931
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9932
|
+
biddingHourlyRatePercentage: number | null;
|
|
9933
|
+
biddingFixedHourlyRate: number | null;
|
|
9934
|
+
boostingEnabled: boolean | null;
|
|
9935
|
+
boostDownToNthPlace: number | null;
|
|
9936
|
+
connectsAbovePrevious: number | null;
|
|
9937
|
+
maximumBoost: number | null;
|
|
9938
|
+
minBoost: number | null;
|
|
9939
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
9940
|
+
bidConfig: {
|
|
9941
|
+
contractorName: string | null;
|
|
9942
|
+
agencyName: string | null;
|
|
9943
|
+
specialisedProfile: string | null;
|
|
9944
|
+
};
|
|
9945
|
+
}, {
|
|
9946
|
+
appliedFromQueue: boolean | null;
|
|
9947
|
+
biddingDelayInMinutes: number | null;
|
|
9948
|
+
bidWithWarning: "bid" | "skip";
|
|
9949
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9950
|
+
biddingHourlyRatePercentage: number | null;
|
|
9951
|
+
biddingFixedHourlyRate: number | null;
|
|
9952
|
+
boostingEnabled: boolean | null;
|
|
9953
|
+
boostDownToNthPlace: number | null;
|
|
9954
|
+
connectsAbovePrevious: number | null;
|
|
9955
|
+
maximumBoost: number | null;
|
|
9956
|
+
minBoost: number | null;
|
|
9957
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
9958
|
+
bidConfig: {
|
|
9959
|
+
contractorName: string | null;
|
|
9960
|
+
agencyName: string | null;
|
|
9961
|
+
specialisedProfile: string | null;
|
|
9962
|
+
};
|
|
9963
|
+
}>>;
|
|
8623
9964
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
8624
9965
|
id: string | null;
|
|
8625
9966
|
title: string | null;
|
|
@@ -8715,6 +10056,8 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
8715
10056
|
} | null;
|
|
8716
10057
|
activityUpdates: 2 | 1 | 3 | null;
|
|
8717
10058
|
scrapedAt: number | null;
|
|
10059
|
+
biddingDelayInMinutes: number | null;
|
|
10060
|
+
specialisedProfile: string | null;
|
|
8718
10061
|
jobId: string;
|
|
8719
10062
|
suitabilityRating: number | null;
|
|
8720
10063
|
suitabilityReason: string | null;
|
|
@@ -8724,20 +10067,39 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
8724
10067
|
question: string;
|
|
8725
10068
|
}[] | null;
|
|
8726
10069
|
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;
|
|
10070
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
8728
10071
|
biddingAmount: number | null;
|
|
8729
10072
|
boosted: boolean | null;
|
|
8730
10073
|
boostingAmount: number | null;
|
|
8731
10074
|
boostedForPlace: number | null;
|
|
8732
|
-
specialisedProfile: string | null;
|
|
8733
10075
|
biddedAt: number | null;
|
|
8734
10076
|
biddingTaskScheduled: boolean | null;
|
|
8735
10077
|
scheduledBiddingTime: number | null;
|
|
8736
|
-
|
|
10078
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
10079
|
+
biddingScheduledAt: number | null;
|
|
8737
10080
|
feedbackCheckTaskId: string | null;
|
|
8738
10081
|
bidDecision: "rejected" | "proceeded" | null;
|
|
8739
10082
|
rejectedFeedback: string | null;
|
|
8740
10083
|
applicationId: string | null;
|
|
10084
|
+
leadBiddingConfig: {
|
|
10085
|
+
appliedFromQueue: boolean | null;
|
|
10086
|
+
biddingDelayInMinutes: number | null;
|
|
10087
|
+
bidWithWarning: "bid" | "skip";
|
|
10088
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
10089
|
+
biddingHourlyRatePercentage: number | null;
|
|
10090
|
+
biddingFixedHourlyRate: number | null;
|
|
10091
|
+
boostingEnabled: boolean | null;
|
|
10092
|
+
boostDownToNthPlace: number | null;
|
|
10093
|
+
connectsAbovePrevious: number | null;
|
|
10094
|
+
maximumBoost: number | null;
|
|
10095
|
+
minBoost: number | null;
|
|
10096
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
10097
|
+
bidConfig: {
|
|
10098
|
+
contractorName: string | null;
|
|
10099
|
+
agencyName: string | null;
|
|
10100
|
+
specialisedProfile: string | null;
|
|
10101
|
+
};
|
|
10102
|
+
} | null;
|
|
8741
10103
|
activity?: Partial<Record<"4h" | "24h", {
|
|
8742
10104
|
updatedAt: number | null;
|
|
8743
10105
|
unansweredInvites: number | null;
|
|
@@ -8855,6 +10217,8 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
8855
10217
|
} | null;
|
|
8856
10218
|
activityUpdates: 2 | 1 | 3 | null;
|
|
8857
10219
|
scrapedAt: number | null;
|
|
10220
|
+
biddingDelayInMinutes: number | null;
|
|
10221
|
+
specialisedProfile: string | null;
|
|
8858
10222
|
jobId: string;
|
|
8859
10223
|
suitabilityRating: number | null;
|
|
8860
10224
|
suitabilityReason: string | null;
|
|
@@ -8864,20 +10228,39 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
8864
10228
|
question: string;
|
|
8865
10229
|
}[] | null;
|
|
8866
10230
|
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;
|
|
10231
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
8868
10232
|
biddingAmount: number | null;
|
|
8869
10233
|
boosted: boolean | null;
|
|
8870
10234
|
boostingAmount: number | null;
|
|
8871
10235
|
boostedForPlace: number | null;
|
|
8872
|
-
specialisedProfile: string | null;
|
|
8873
10236
|
biddedAt: number | null;
|
|
8874
10237
|
biddingTaskScheduled: boolean | null;
|
|
8875
10238
|
scheduledBiddingTime: number | null;
|
|
8876
|
-
|
|
10239
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
10240
|
+
biddingScheduledAt: number | null;
|
|
8877
10241
|
feedbackCheckTaskId: string | null;
|
|
8878
10242
|
bidDecision: "rejected" | "proceeded" | null;
|
|
8879
10243
|
rejectedFeedback: string | null;
|
|
8880
10244
|
applicationId: string | null;
|
|
10245
|
+
leadBiddingConfig: {
|
|
10246
|
+
appliedFromQueue: boolean | null;
|
|
10247
|
+
biddingDelayInMinutes: number | null;
|
|
10248
|
+
bidWithWarning: "bid" | "skip";
|
|
10249
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
10250
|
+
biddingHourlyRatePercentage: number | null;
|
|
10251
|
+
biddingFixedHourlyRate: number | null;
|
|
10252
|
+
boostingEnabled: boolean | null;
|
|
10253
|
+
boostDownToNthPlace: number | null;
|
|
10254
|
+
connectsAbovePrevious: number | null;
|
|
10255
|
+
maximumBoost: number | null;
|
|
10256
|
+
minBoost: number | null;
|
|
10257
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
10258
|
+
bidConfig: {
|
|
10259
|
+
contractorName: string | null;
|
|
10260
|
+
agencyName: string | null;
|
|
10261
|
+
specialisedProfile: string | null;
|
|
10262
|
+
};
|
|
10263
|
+
} | null;
|
|
8881
10264
|
activity?: Partial<Record<"4h" | "24h", {
|
|
8882
10265
|
updatedAt: number | null;
|
|
8883
10266
|
unansweredInvites: number | null;
|
|
@@ -9000,6 +10383,8 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
9000
10383
|
} | null;
|
|
9001
10384
|
activityUpdates: 2 | 1 | 3 | null;
|
|
9002
10385
|
scrapedAt: number | null;
|
|
10386
|
+
biddingDelayInMinutes: number | null;
|
|
10387
|
+
specialisedProfile: string | null;
|
|
9003
10388
|
jobId: string;
|
|
9004
10389
|
suitabilityRating: number | null;
|
|
9005
10390
|
suitabilityReason: string | null;
|
|
@@ -9009,20 +10394,39 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
9009
10394
|
question: string;
|
|
9010
10395
|
}[] | null;
|
|
9011
10396
|
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;
|
|
10397
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
9013
10398
|
biddingAmount: number | null;
|
|
9014
10399
|
boosted: boolean | null;
|
|
9015
10400
|
boostingAmount: number | null;
|
|
9016
10401
|
boostedForPlace: number | null;
|
|
9017
|
-
specialisedProfile: string | null;
|
|
9018
10402
|
biddedAt: number | null;
|
|
9019
10403
|
biddingTaskScheduled: boolean | null;
|
|
9020
10404
|
scheduledBiddingTime: number | null;
|
|
9021
|
-
|
|
10405
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
10406
|
+
biddingScheduledAt: number | null;
|
|
9022
10407
|
feedbackCheckTaskId: string | null;
|
|
9023
10408
|
bidDecision: "rejected" | "proceeded" | null;
|
|
9024
10409
|
rejectedFeedback: string | null;
|
|
9025
10410
|
applicationId: string | null;
|
|
10411
|
+
leadBiddingConfig: {
|
|
10412
|
+
appliedFromQueue: boolean | null;
|
|
10413
|
+
biddingDelayInMinutes: number | null;
|
|
10414
|
+
bidWithWarning: "bid" | "skip";
|
|
10415
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
10416
|
+
biddingHourlyRatePercentage: number | null;
|
|
10417
|
+
biddingFixedHourlyRate: number | null;
|
|
10418
|
+
boostingEnabled: boolean | null;
|
|
10419
|
+
boostDownToNthPlace: number | null;
|
|
10420
|
+
connectsAbovePrevious: number | null;
|
|
10421
|
+
maximumBoost: number | null;
|
|
10422
|
+
minBoost: number | null;
|
|
10423
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
10424
|
+
bidConfig: {
|
|
10425
|
+
contractorName: string | null;
|
|
10426
|
+
agencyName: string | null;
|
|
10427
|
+
specialisedProfile: string | null;
|
|
10428
|
+
};
|
|
10429
|
+
} | null;
|
|
9026
10430
|
activity?: Partial<Record<"4h" | "24h", {
|
|
9027
10431
|
updatedAt: number | null;
|
|
9028
10432
|
unansweredInvites: number | null;
|
|
@@ -9145,6 +10549,8 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
9145
10549
|
} | null;
|
|
9146
10550
|
activityUpdates: 2 | 1 | 3 | null;
|
|
9147
10551
|
scrapedAt: number | null;
|
|
10552
|
+
biddingDelayInMinutes: number | null;
|
|
10553
|
+
specialisedProfile: string | null;
|
|
9148
10554
|
jobId: string;
|
|
9149
10555
|
suitabilityRating: number | null;
|
|
9150
10556
|
suitabilityReason: string | null;
|
|
@@ -9154,20 +10560,39 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
9154
10560
|
question: string;
|
|
9155
10561
|
}[] | null;
|
|
9156
10562
|
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;
|
|
10563
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "biddingFailed" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
9158
10564
|
biddingAmount: number | null;
|
|
9159
10565
|
boosted: boolean | null;
|
|
9160
10566
|
boostingAmount: number | null;
|
|
9161
10567
|
boostedForPlace: number | null;
|
|
9162
|
-
specialisedProfile: string | null;
|
|
9163
10568
|
biddedAt: number | null;
|
|
9164
10569
|
biddingTaskScheduled: boolean | null;
|
|
9165
10570
|
scheduledBiddingTime: number | null;
|
|
9166
|
-
|
|
10571
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
10572
|
+
biddingScheduledAt: number | null;
|
|
9167
10573
|
feedbackCheckTaskId: string | null;
|
|
9168
10574
|
bidDecision: "rejected" | "proceeded" | null;
|
|
9169
10575
|
rejectedFeedback: string | null;
|
|
9170
10576
|
applicationId: string | null;
|
|
10577
|
+
leadBiddingConfig: {
|
|
10578
|
+
appliedFromQueue: boolean | null;
|
|
10579
|
+
biddingDelayInMinutes: number | null;
|
|
10580
|
+
bidWithWarning: "bid" | "skip";
|
|
10581
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
10582
|
+
biddingHourlyRatePercentage: number | null;
|
|
10583
|
+
biddingFixedHourlyRate: number | null;
|
|
10584
|
+
boostingEnabled: boolean | null;
|
|
10585
|
+
boostDownToNthPlace: number | null;
|
|
10586
|
+
connectsAbovePrevious: number | null;
|
|
10587
|
+
maximumBoost: number | null;
|
|
10588
|
+
minBoost: number | null;
|
|
10589
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
10590
|
+
bidConfig: {
|
|
10591
|
+
contractorName: string | null;
|
|
10592
|
+
agencyName: string | null;
|
|
10593
|
+
specialisedProfile: string | null;
|
|
10594
|
+
};
|
|
10595
|
+
} | null;
|
|
9171
10596
|
activity?: Partial<Record<"4h" | "24h", {
|
|
9172
10597
|
updatedAt: number | null;
|
|
9173
10598
|
unansweredInvites: number | null;
|