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