lancer-shared 1.2.261 → 1.2.262
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.cjs.js +37 -0
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +38 -3
- package/dist/bundle.esm.js.map +1 -1
- package/dist/constants/routes.d.ts +1 -0
- package/dist/schemas/agent/index.d.ts +160 -13
- package/dist/schemas/bidder/bid.d.ts +1631 -255
- package/dist/schemas/campaign/campaign-analytics.d.ts +605 -29
- package/dist/schemas/campaign/campaign.d.ts +120 -120
- package/dist/schemas/lead/index.d.ts +646 -46
- package/dist/schemas/lead/lead-status.d.ts +7 -7
- package/dist/schemas/logger/log-event.d.ts +31 -17
- package/dist/schemas/scraper/scrape-payload.d.ts +224 -80
- package/package.json +1 -1
|
@@ -698,7 +698,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
698
698
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
699
699
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
700
700
|
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
701
|
-
leadCounts: z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "won"]>, z.ZodNumber>>;
|
|
701
|
+
leadCounts: z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingProcessing", "won"]>, z.ZodNumber>>;
|
|
702
702
|
expenses: z.ZodObject<{
|
|
703
703
|
biddingAmount: z.ZodDefault<z.ZodNumber>;
|
|
704
704
|
boostingAmount: z.ZodDefault<z.ZodNumber>;
|
|
@@ -809,7 +809,23 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
809
809
|
createdAt: number;
|
|
810
810
|
updatedAt: number;
|
|
811
811
|
biddingDelayInMinutes: number;
|
|
812
|
-
|
|
812
|
+
bidWithWarning: "bid" | "skip";
|
|
813
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
814
|
+
biddingHourlyRatePercentage: number | null;
|
|
815
|
+
biddingFixedHourlyRate: number | null;
|
|
816
|
+
boostingEnabled: boolean | null;
|
|
817
|
+
boostDownToNthPlace: number | null;
|
|
818
|
+
connectsAbovePrevious: number | null;
|
|
819
|
+
maximumBoost: number | null;
|
|
820
|
+
minBoost: number | null;
|
|
821
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
822
|
+
bidConfig: {
|
|
823
|
+
contractorName: string | null;
|
|
824
|
+
agencyName: string | null;
|
|
825
|
+
specialisedProfile: string | null;
|
|
826
|
+
bidderId: string | null;
|
|
827
|
+
} | null;
|
|
828
|
+
leadCounts: Partial<Record<"rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won", number>> | null;
|
|
813
829
|
filters: {
|
|
814
830
|
keywords: {
|
|
815
831
|
includes: string | null;
|
|
@@ -870,32 +886,16 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
870
886
|
requiredJSS: (">80%" | ">90%" | "100%" | "RT")[] | null;
|
|
871
887
|
} | null;
|
|
872
888
|
};
|
|
889
|
+
coverLetterTemplateId: string | null;
|
|
873
890
|
confirmedBillingAt: number | null;
|
|
874
|
-
boostingEnabled: boolean | null;
|
|
875
|
-
maximumBoost: number | null;
|
|
876
|
-
minBoost: number | null;
|
|
877
|
-
boostDownToNthPlace: number | null;
|
|
878
|
-
connectsAbovePrevious: number | null;
|
|
879
|
-
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
880
891
|
monthlyBudget: number | null;
|
|
881
892
|
boostingThreshold: number | null;
|
|
882
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
883
|
-
biddingFixedHourlyRate: number | null;
|
|
884
|
-
biddingHourlyRatePercentage: number | null;
|
|
885
|
-
bidWithWarning: "bid" | "skip";
|
|
886
893
|
expenses: {
|
|
887
894
|
biddingAmount: number;
|
|
888
895
|
boosted: number;
|
|
889
896
|
boostingAmount: number;
|
|
890
897
|
};
|
|
891
898
|
notificationsEnabled: boolean | null;
|
|
892
|
-
bidConfig: {
|
|
893
|
-
contractorName: string | null;
|
|
894
|
-
agencyName: string | null;
|
|
895
|
-
specialisedProfile: string | null;
|
|
896
|
-
bidderId: string | null;
|
|
897
|
-
} | null;
|
|
898
|
-
coverLetterTemplateId: string | null;
|
|
899
899
|
coverLetterTemplate: {
|
|
900
900
|
id: string;
|
|
901
901
|
name: string;
|
|
@@ -926,7 +926,20 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
926
926
|
};
|
|
927
927
|
createdAt: number;
|
|
928
928
|
updatedAt: number;
|
|
929
|
-
|
|
929
|
+
bidWithWarning: "bid" | "skip";
|
|
930
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
931
|
+
biddingHourlyRatePercentage: number | null;
|
|
932
|
+
biddingFixedHourlyRate: number | null;
|
|
933
|
+
boostDownToNthPlace: number | null;
|
|
934
|
+
connectsAbovePrevious: number | null;
|
|
935
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
936
|
+
bidConfig: {
|
|
937
|
+
contractorName: string | null;
|
|
938
|
+
agencyName: string | null;
|
|
939
|
+
specialisedProfile: string | null;
|
|
940
|
+
bidderId: string | null;
|
|
941
|
+
} | null;
|
|
942
|
+
leadCounts: Partial<Record<"rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won", number>> | null;
|
|
930
943
|
filters: {
|
|
931
944
|
keywords: {
|
|
932
945
|
includes: string | null;
|
|
@@ -987,28 +1000,15 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
987
1000
|
requiredJSS: (">80%" | ">90%" | "100%" | "RT")[] | null;
|
|
988
1001
|
} | null;
|
|
989
1002
|
};
|
|
1003
|
+
coverLetterTemplateId: string | null;
|
|
990
1004
|
confirmedBillingAt: number | null;
|
|
991
|
-
boostDownToNthPlace: number | null;
|
|
992
|
-
connectsAbovePrevious: number | null;
|
|
993
|
-
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
994
1005
|
monthlyBudget: number | null;
|
|
995
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
996
|
-
biddingFixedHourlyRate: number | null;
|
|
997
|
-
biddingHourlyRatePercentage: number | null;
|
|
998
|
-
bidWithWarning: "bid" | "skip";
|
|
999
1006
|
expenses: {
|
|
1000
1007
|
biddingAmount?: number | undefined;
|
|
1001
1008
|
boosted?: number | undefined;
|
|
1002
1009
|
boostingAmount?: number | undefined;
|
|
1003
1010
|
};
|
|
1004
1011
|
notificationsEnabled: boolean | null;
|
|
1005
|
-
bidConfig: {
|
|
1006
|
-
contractorName: string | null;
|
|
1007
|
-
agencyName: string | null;
|
|
1008
|
-
specialisedProfile: string | null;
|
|
1009
|
-
bidderId: string | null;
|
|
1010
|
-
} | null;
|
|
1011
|
-
coverLetterTemplateId: string | null;
|
|
1012
1012
|
coverLetterTemplate: {
|
|
1013
1013
|
id: string;
|
|
1014
1014
|
name: string;
|
|
@@ -1681,7 +1681,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
1681
1681
|
question: string;
|
|
1682
1682
|
}>, "many">>;
|
|
1683
1683
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
1684
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "won"]>>;
|
|
1684
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingProcessing", "won"]>>;
|
|
1685
1685
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
1686
1686
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
1687
1687
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1692,11 +1692,75 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
1692
1692
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
1693
1693
|
inQueue: z.ZodNullable<z.ZodBoolean>;
|
|
1694
1694
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
1695
|
+
checkFeedbackStatusCreatedAt: z.ZodNullable<z.ZodNumber>;
|
|
1695
1696
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
1696
1697
|
feedbackCheckTaskId: z.ZodNullable<z.ZodString>;
|
|
1697
1698
|
bidDecision: z.ZodNullable<z.ZodEnum<["proceeded", "rejected"]>>;
|
|
1698
1699
|
rejectedFeedback: z.ZodNullable<z.ZodString>;
|
|
1699
1700
|
applicationId: z.ZodNullable<z.ZodString>;
|
|
1701
|
+
leadBiddingConfig: z.ZodNullable<z.ZodObject<{
|
|
1702
|
+
appliedFromQueue: z.ZodNullable<z.ZodBoolean>;
|
|
1703
|
+
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
1704
|
+
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
1705
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
1706
|
+
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
1707
|
+
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
1708
|
+
boostingEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
1709
|
+
boostDownToNthPlace: z.ZodNullable<z.ZodNumber>;
|
|
1710
|
+
connectsAbovePrevious: z.ZodNullable<z.ZodNumber>;
|
|
1711
|
+
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
1712
|
+
minBoost: z.ZodNullable<z.ZodNumber>;
|
|
1713
|
+
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
1714
|
+
bidConfig: z.ZodObject<{
|
|
1715
|
+
agencyName: z.ZodNullable<z.ZodString>;
|
|
1716
|
+
contractorName: z.ZodNullable<z.ZodString>;
|
|
1717
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
1718
|
+
}, "strip", z.ZodTypeAny, {
|
|
1719
|
+
contractorName: string | null;
|
|
1720
|
+
agencyName: string | null;
|
|
1721
|
+
specialisedProfile: string | null;
|
|
1722
|
+
}, {
|
|
1723
|
+
contractorName: string | null;
|
|
1724
|
+
agencyName: string | null;
|
|
1725
|
+
specialisedProfile: string | null;
|
|
1726
|
+
}>;
|
|
1727
|
+
}, "strip", z.ZodTypeAny, {
|
|
1728
|
+
appliedFromQueue: boolean | null;
|
|
1729
|
+
biddingDelayInMinutes: number | null;
|
|
1730
|
+
bidWithWarning: "bid" | "skip";
|
|
1731
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1732
|
+
biddingHourlyRatePercentage: number | null;
|
|
1733
|
+
biddingFixedHourlyRate: number | null;
|
|
1734
|
+
boostingEnabled: boolean | null;
|
|
1735
|
+
boostDownToNthPlace: number | null;
|
|
1736
|
+
connectsAbovePrevious: number | null;
|
|
1737
|
+
maximumBoost: number | null;
|
|
1738
|
+
minBoost: number | null;
|
|
1739
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1740
|
+
bidConfig: {
|
|
1741
|
+
contractorName: string | null;
|
|
1742
|
+
agencyName: string | null;
|
|
1743
|
+
specialisedProfile: string | null;
|
|
1744
|
+
};
|
|
1745
|
+
}, {
|
|
1746
|
+
appliedFromQueue: boolean | null;
|
|
1747
|
+
biddingDelayInMinutes: number | null;
|
|
1748
|
+
bidWithWarning: "bid" | "skip";
|
|
1749
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1750
|
+
biddingHourlyRatePercentage: number | null;
|
|
1751
|
+
biddingFixedHourlyRate: number | null;
|
|
1752
|
+
boostingEnabled: boolean | null;
|
|
1753
|
+
boostDownToNthPlace: number | null;
|
|
1754
|
+
connectsAbovePrevious: number | null;
|
|
1755
|
+
maximumBoost: number | null;
|
|
1756
|
+
minBoost: number | null;
|
|
1757
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1758
|
+
bidConfig: {
|
|
1759
|
+
contractorName: string | null;
|
|
1760
|
+
agencyName: string | null;
|
|
1761
|
+
specialisedProfile: string | null;
|
|
1762
|
+
};
|
|
1763
|
+
}>>;
|
|
1700
1764
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
1701
1765
|
id: string | null;
|
|
1702
1766
|
title: string | null;
|
|
@@ -1792,6 +1856,8 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
1792
1856
|
} | null;
|
|
1793
1857
|
activityUpdates: 2 | 1 | 3 | null;
|
|
1794
1858
|
scrapedAt: number | null;
|
|
1859
|
+
biddingDelayInMinutes: number | null;
|
|
1860
|
+
specialisedProfile: string | null;
|
|
1795
1861
|
jobId: string;
|
|
1796
1862
|
suitabilityRating: number | null;
|
|
1797
1863
|
suitabilityReason: string | null;
|
|
@@ -1801,20 +1867,38 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
1801
1867
|
question: string;
|
|
1802
1868
|
}[] | null;
|
|
1803
1869
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
1804
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
1870
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
1805
1871
|
biddingAmount: number | null;
|
|
1806
1872
|
boosted: boolean | null;
|
|
1807
1873
|
boostingAmount: number | null;
|
|
1808
1874
|
boostedForPlace: number | null;
|
|
1809
|
-
specialisedProfile: string | null;
|
|
1810
1875
|
biddedAt: number | null;
|
|
1811
1876
|
biddingTaskScheduled: boolean | null;
|
|
1812
1877
|
scheduledBiddingTime: number | null;
|
|
1813
|
-
|
|
1878
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
1814
1879
|
feedbackCheckTaskId: string | null;
|
|
1815
1880
|
bidDecision: "rejected" | "proceeded" | null;
|
|
1816
1881
|
rejectedFeedback: string | null;
|
|
1817
1882
|
applicationId: string | null;
|
|
1883
|
+
leadBiddingConfig: {
|
|
1884
|
+
appliedFromQueue: boolean | null;
|
|
1885
|
+
biddingDelayInMinutes: number | null;
|
|
1886
|
+
bidWithWarning: "bid" | "skip";
|
|
1887
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1888
|
+
biddingHourlyRatePercentage: number | null;
|
|
1889
|
+
biddingFixedHourlyRate: number | null;
|
|
1890
|
+
boostingEnabled: boolean | null;
|
|
1891
|
+
boostDownToNthPlace: number | null;
|
|
1892
|
+
connectsAbovePrevious: number | null;
|
|
1893
|
+
maximumBoost: number | null;
|
|
1894
|
+
minBoost: number | null;
|
|
1895
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1896
|
+
bidConfig: {
|
|
1897
|
+
contractorName: string | null;
|
|
1898
|
+
agencyName: string | null;
|
|
1899
|
+
specialisedProfile: string | null;
|
|
1900
|
+
};
|
|
1901
|
+
} | null;
|
|
1818
1902
|
activity?: Partial<Record<"4h" | "24h", {
|
|
1819
1903
|
updatedAt: number | null;
|
|
1820
1904
|
unansweredInvites: number | null;
|
|
@@ -1932,6 +2016,8 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
1932
2016
|
} | null;
|
|
1933
2017
|
activityUpdates: 2 | 1 | 3 | null;
|
|
1934
2018
|
scrapedAt: number | null;
|
|
2019
|
+
biddingDelayInMinutes: number | null;
|
|
2020
|
+
specialisedProfile: string | null;
|
|
1935
2021
|
jobId: string;
|
|
1936
2022
|
suitabilityRating: number | null;
|
|
1937
2023
|
suitabilityReason: string | null;
|
|
@@ -1941,20 +2027,38 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
1941
2027
|
question: string;
|
|
1942
2028
|
}[] | null;
|
|
1943
2029
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
1944
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
2030
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
1945
2031
|
biddingAmount: number | null;
|
|
1946
2032
|
boosted: boolean | null;
|
|
1947
2033
|
boostingAmount: number | null;
|
|
1948
2034
|
boostedForPlace: number | null;
|
|
1949
|
-
specialisedProfile: string | null;
|
|
1950
2035
|
biddedAt: number | null;
|
|
1951
2036
|
biddingTaskScheduled: boolean | null;
|
|
1952
2037
|
scheduledBiddingTime: number | null;
|
|
1953
|
-
|
|
2038
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
1954
2039
|
feedbackCheckTaskId: string | null;
|
|
1955
2040
|
bidDecision: "rejected" | "proceeded" | null;
|
|
1956
2041
|
rejectedFeedback: string | null;
|
|
1957
2042
|
applicationId: string | null;
|
|
2043
|
+
leadBiddingConfig: {
|
|
2044
|
+
appliedFromQueue: boolean | null;
|
|
2045
|
+
biddingDelayInMinutes: number | null;
|
|
2046
|
+
bidWithWarning: "bid" | "skip";
|
|
2047
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2048
|
+
biddingHourlyRatePercentage: number | null;
|
|
2049
|
+
biddingFixedHourlyRate: number | null;
|
|
2050
|
+
boostingEnabled: boolean | null;
|
|
2051
|
+
boostDownToNthPlace: number | null;
|
|
2052
|
+
connectsAbovePrevious: number | null;
|
|
2053
|
+
maximumBoost: number | null;
|
|
2054
|
+
minBoost: number | null;
|
|
2055
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2056
|
+
bidConfig: {
|
|
2057
|
+
contractorName: string | null;
|
|
2058
|
+
agencyName: string | null;
|
|
2059
|
+
specialisedProfile: string | null;
|
|
2060
|
+
};
|
|
2061
|
+
} | null;
|
|
1958
2062
|
activity?: Partial<Record<"4h" | "24h", {
|
|
1959
2063
|
updatedAt: number | null;
|
|
1960
2064
|
unansweredInvites: number | null;
|
|
@@ -2242,6 +2346,8 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2242
2346
|
} | null;
|
|
2243
2347
|
activityUpdates: 2 | 1 | 3 | null;
|
|
2244
2348
|
scrapedAt: number | null;
|
|
2349
|
+
biddingDelayInMinutes: number | null;
|
|
2350
|
+
specialisedProfile: string | null;
|
|
2245
2351
|
jobId: string;
|
|
2246
2352
|
suitabilityRating: number | null;
|
|
2247
2353
|
suitabilityReason: string | null;
|
|
@@ -2251,20 +2357,38 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2251
2357
|
question: string;
|
|
2252
2358
|
}[] | null;
|
|
2253
2359
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
2254
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
2360
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
2255
2361
|
biddingAmount: number | null;
|
|
2256
2362
|
boosted: boolean | null;
|
|
2257
2363
|
boostingAmount: number | null;
|
|
2258
2364
|
boostedForPlace: number | null;
|
|
2259
|
-
specialisedProfile: string | null;
|
|
2260
2365
|
biddedAt: number | null;
|
|
2261
2366
|
biddingTaskScheduled: boolean | null;
|
|
2262
2367
|
scheduledBiddingTime: number | null;
|
|
2263
|
-
|
|
2368
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
2264
2369
|
feedbackCheckTaskId: string | null;
|
|
2265
2370
|
bidDecision: "rejected" | "proceeded" | null;
|
|
2266
2371
|
rejectedFeedback: string | null;
|
|
2267
2372
|
applicationId: string | null;
|
|
2373
|
+
leadBiddingConfig: {
|
|
2374
|
+
appliedFromQueue: boolean | null;
|
|
2375
|
+
biddingDelayInMinutes: number | null;
|
|
2376
|
+
bidWithWarning: "bid" | "skip";
|
|
2377
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2378
|
+
biddingHourlyRatePercentage: number | null;
|
|
2379
|
+
biddingFixedHourlyRate: number | null;
|
|
2380
|
+
boostingEnabled: boolean | null;
|
|
2381
|
+
boostDownToNthPlace: number | null;
|
|
2382
|
+
connectsAbovePrevious: number | null;
|
|
2383
|
+
maximumBoost: number | null;
|
|
2384
|
+
minBoost: number | null;
|
|
2385
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2386
|
+
bidConfig: {
|
|
2387
|
+
contractorName: string | null;
|
|
2388
|
+
agencyName: string | null;
|
|
2389
|
+
specialisedProfile: string | null;
|
|
2390
|
+
};
|
|
2391
|
+
} | null;
|
|
2268
2392
|
activity?: Partial<Record<"4h" | "24h", {
|
|
2269
2393
|
updatedAt: number | null;
|
|
2270
2394
|
unansweredInvites: number | null;
|
|
@@ -2300,7 +2424,23 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2300
2424
|
createdAt: number;
|
|
2301
2425
|
updatedAt: number;
|
|
2302
2426
|
biddingDelayInMinutes: number;
|
|
2303
|
-
|
|
2427
|
+
bidWithWarning: "bid" | "skip";
|
|
2428
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2429
|
+
biddingHourlyRatePercentage: number | null;
|
|
2430
|
+
biddingFixedHourlyRate: number | null;
|
|
2431
|
+
boostingEnabled: boolean | null;
|
|
2432
|
+
boostDownToNthPlace: number | null;
|
|
2433
|
+
connectsAbovePrevious: number | null;
|
|
2434
|
+
maximumBoost: number | null;
|
|
2435
|
+
minBoost: number | null;
|
|
2436
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2437
|
+
bidConfig: {
|
|
2438
|
+
contractorName: string | null;
|
|
2439
|
+
agencyName: string | null;
|
|
2440
|
+
specialisedProfile: string | null;
|
|
2441
|
+
bidderId: string | null;
|
|
2442
|
+
} | null;
|
|
2443
|
+
leadCounts: Partial<Record<"rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won", number>> | null;
|
|
2304
2444
|
filters: {
|
|
2305
2445
|
keywords: {
|
|
2306
2446
|
includes: string | null;
|
|
@@ -2361,32 +2501,16 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2361
2501
|
requiredJSS: (">80%" | ">90%" | "100%" | "RT")[] | null;
|
|
2362
2502
|
} | null;
|
|
2363
2503
|
};
|
|
2504
|
+
coverLetterTemplateId: string | null;
|
|
2364
2505
|
confirmedBillingAt: number | null;
|
|
2365
|
-
boostingEnabled: boolean | null;
|
|
2366
|
-
maximumBoost: number | null;
|
|
2367
|
-
minBoost: number | null;
|
|
2368
|
-
boostDownToNthPlace: number | null;
|
|
2369
|
-
connectsAbovePrevious: number | null;
|
|
2370
|
-
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2371
2506
|
monthlyBudget: number | null;
|
|
2372
2507
|
boostingThreshold: number | null;
|
|
2373
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2374
|
-
biddingFixedHourlyRate: number | null;
|
|
2375
|
-
biddingHourlyRatePercentage: number | null;
|
|
2376
|
-
bidWithWarning: "bid" | "skip";
|
|
2377
2508
|
expenses: {
|
|
2378
2509
|
biddingAmount: number;
|
|
2379
2510
|
boosted: number;
|
|
2380
2511
|
boostingAmount: number;
|
|
2381
2512
|
};
|
|
2382
2513
|
notificationsEnabled: boolean | null;
|
|
2383
|
-
bidConfig: {
|
|
2384
|
-
contractorName: string | null;
|
|
2385
|
-
agencyName: string | null;
|
|
2386
|
-
specialisedProfile: string | null;
|
|
2387
|
-
bidderId: string | null;
|
|
2388
|
-
} | null;
|
|
2389
|
-
coverLetterTemplateId: string | null;
|
|
2390
2514
|
coverLetterTemplate: {
|
|
2391
2515
|
id: string;
|
|
2392
2516
|
name: string;
|
|
@@ -2593,6 +2717,8 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2593
2717
|
} | null;
|
|
2594
2718
|
activityUpdates: 2 | 1 | 3 | null;
|
|
2595
2719
|
scrapedAt: number | null;
|
|
2720
|
+
biddingDelayInMinutes: number | null;
|
|
2721
|
+
specialisedProfile: string | null;
|
|
2596
2722
|
jobId: string;
|
|
2597
2723
|
suitabilityRating: number | null;
|
|
2598
2724
|
suitabilityReason: string | null;
|
|
@@ -2602,20 +2728,38 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2602
2728
|
question: string;
|
|
2603
2729
|
}[] | null;
|
|
2604
2730
|
agentStatus: "suitabilityComplete" | "proposalComplete" | "biddingComplete" | "suitabilityPending" | "suitabilityProcessing" | "suitabilityFailed" | "proposalProcessing" | "proposalFailed" | "biddingProcessing" | "biddingFailed" | "jobArchived" | null;
|
|
2605
|
-
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
2731
|
+
leadStatus: "rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won" | null;
|
|
2606
2732
|
biddingAmount: number | null;
|
|
2607
2733
|
boosted: boolean | null;
|
|
2608
2734
|
boostingAmount: number | null;
|
|
2609
2735
|
boostedForPlace: number | null;
|
|
2610
|
-
specialisedProfile: string | null;
|
|
2611
2736
|
biddedAt: number | null;
|
|
2612
2737
|
biddingTaskScheduled: boolean | null;
|
|
2613
2738
|
scheduledBiddingTime: number | null;
|
|
2614
|
-
|
|
2739
|
+
checkFeedbackStatusCreatedAt: number | null;
|
|
2615
2740
|
feedbackCheckTaskId: string | null;
|
|
2616
2741
|
bidDecision: "rejected" | "proceeded" | null;
|
|
2617
2742
|
rejectedFeedback: string | null;
|
|
2618
2743
|
applicationId: string | null;
|
|
2744
|
+
leadBiddingConfig: {
|
|
2745
|
+
appliedFromQueue: boolean | null;
|
|
2746
|
+
biddingDelayInMinutes: number | null;
|
|
2747
|
+
bidWithWarning: "bid" | "skip";
|
|
2748
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2749
|
+
biddingHourlyRatePercentage: number | null;
|
|
2750
|
+
biddingFixedHourlyRate: number | null;
|
|
2751
|
+
boostingEnabled: boolean | null;
|
|
2752
|
+
boostDownToNthPlace: number | null;
|
|
2753
|
+
connectsAbovePrevious: number | null;
|
|
2754
|
+
maximumBoost: number | null;
|
|
2755
|
+
minBoost: number | null;
|
|
2756
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2757
|
+
bidConfig: {
|
|
2758
|
+
contractorName: string | null;
|
|
2759
|
+
agencyName: string | null;
|
|
2760
|
+
specialisedProfile: string | null;
|
|
2761
|
+
};
|
|
2762
|
+
} | null;
|
|
2619
2763
|
activity?: Partial<Record<"4h" | "24h", {
|
|
2620
2764
|
updatedAt: number | null;
|
|
2621
2765
|
unansweredInvites: number | null;
|
|
@@ -2650,7 +2794,20 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2650
2794
|
};
|
|
2651
2795
|
createdAt: number;
|
|
2652
2796
|
updatedAt: number;
|
|
2653
|
-
|
|
2797
|
+
bidWithWarning: "bid" | "skip";
|
|
2798
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2799
|
+
biddingHourlyRatePercentage: number | null;
|
|
2800
|
+
biddingFixedHourlyRate: number | null;
|
|
2801
|
+
boostDownToNthPlace: number | null;
|
|
2802
|
+
connectsAbovePrevious: number | null;
|
|
2803
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2804
|
+
bidConfig: {
|
|
2805
|
+
contractorName: string | null;
|
|
2806
|
+
agencyName: string | null;
|
|
2807
|
+
specialisedProfile: string | null;
|
|
2808
|
+
bidderId: string | null;
|
|
2809
|
+
} | null;
|
|
2810
|
+
leadCounts: Partial<Record<"rejected" | "contacted" | "viewed" | "replied" | "biddingProcessing" | "leads" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "won", number>> | null;
|
|
2654
2811
|
filters: {
|
|
2655
2812
|
keywords: {
|
|
2656
2813
|
includes: string | null;
|
|
@@ -2711,28 +2868,15 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2711
2868
|
requiredJSS: (">80%" | ">90%" | "100%" | "RT")[] | null;
|
|
2712
2869
|
} | null;
|
|
2713
2870
|
};
|
|
2871
|
+
coverLetterTemplateId: string | null;
|
|
2714
2872
|
confirmedBillingAt: number | null;
|
|
2715
|
-
boostDownToNthPlace: number | null;
|
|
2716
|
-
connectsAbovePrevious: number | null;
|
|
2717
|
-
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2718
2873
|
monthlyBudget: number | null;
|
|
2719
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2720
|
-
biddingFixedHourlyRate: number | null;
|
|
2721
|
-
biddingHourlyRatePercentage: number | null;
|
|
2722
|
-
bidWithWarning: "bid" | "skip";
|
|
2723
2874
|
expenses: {
|
|
2724
2875
|
biddingAmount?: number | undefined;
|
|
2725
2876
|
boosted?: number | undefined;
|
|
2726
2877
|
boostingAmount?: number | undefined;
|
|
2727
2878
|
};
|
|
2728
2879
|
notificationsEnabled: boolean | null;
|
|
2729
|
-
bidConfig: {
|
|
2730
|
-
contractorName: string | null;
|
|
2731
|
-
agencyName: string | null;
|
|
2732
|
-
specialisedProfile: string | null;
|
|
2733
|
-
bidderId: string | null;
|
|
2734
|
-
} | null;
|
|
2735
|
-
coverLetterTemplateId: string | null;
|
|
2736
2880
|
coverLetterTemplate: {
|
|
2737
2881
|
id: string;
|
|
2738
2882
|
name: string;
|