lancer-shared 1.2.189 → 1.2.191
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 +278 -33
- package/dist/schemas/bidder/bid.d.ts +71 -14
- package/dist/schemas/bidder/exceptions/boost-above-max-connects.exception.d.ts +5 -0
- package/dist/schemas/bidder/exceptions/index.d.ts +3 -1
- package/dist/schemas/campaign/campaign-analytics.d.ts +360 -72
- package/dist/schemas/campaign/campaign-chat-bot.d.ts +11 -11
- package/dist/schemas/campaign/campaign.d.ts +232 -48
- package/dist/schemas/campaign/sequence/budget-node.d.ts +294 -0
- package/dist/schemas/campaign/sequence/client-size-node.d.ts +10 -10
- package/dist/schemas/campaign/sequence/client-spent-node.d.ts +18 -18
- package/dist/schemas/campaign/sequence/edges.d.ts +12 -0
- package/dist/schemas/campaign/sequence/fixed-budget-node.d.ts +91 -0
- package/dist/schemas/campaign/sequence/hire-rate-node.d.ts +18 -18
- package/dist/schemas/campaign/sequence/hourly-budget-node.d.ts +91 -0
- package/dist/schemas/campaign/sequence/hourly-rate-node.d.ts +18 -18
- package/dist/schemas/campaign/sequence/index.d.ts +4 -0
- package/dist/schemas/campaign/sequence/node-types.d.ts +1 -1
- package/dist/schemas/campaign/sequence/payment-type-node.d.ts +45 -0
- package/dist/schemas/campaign/sequence/payment-type.d.ts +45 -0
- package/dist/schemas/campaign/sequence/rating-node.d.ts +91 -0
- package/dist/schemas/campaign/sequence/start-node.d.ts +16 -0
- package/dist/schemas/campaign/sequence/suitability-node.d.ts +18 -18
- package/dist/schemas/scraper/scrape-payload.d.ts +113 -37
- package/dist/utils/timezones.d.ts +4 -3
- package/package.json +1 -1
|
@@ -617,6 +617,9 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
617
617
|
boostingEnabled: z.ZodBoolean;
|
|
618
618
|
specialisedProfileOptions: z.ZodArray<z.ZodString, "many">;
|
|
619
619
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
620
|
+
boostDownToNthPlace: z.ZodNullable<z.ZodNumber>;
|
|
621
|
+
connectsAbovePrevious: z.ZodNullable<z.ZodNumber>;
|
|
622
|
+
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
620
623
|
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
621
624
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
622
625
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
@@ -771,13 +774,16 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
771
774
|
boostingEnabled: boolean;
|
|
772
775
|
specialisedProfileOptions: string[];
|
|
773
776
|
maximumBoost: number | null;
|
|
777
|
+
boostDownToNthPlace: number | null;
|
|
778
|
+
connectsAbovePrevious: number | null;
|
|
779
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
774
780
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
775
781
|
biddingHourlyRatePercentage: number | null;
|
|
776
782
|
biddingFixedHourlyRate: number | null;
|
|
777
783
|
isHourlyRate: boolean;
|
|
778
784
|
jobMinHourlyRate: number | null;
|
|
779
785
|
jobMaxHourlyRate: number | null;
|
|
780
|
-
bidWithWarning: "
|
|
786
|
+
bidWithWarning: "skip" | "bid";
|
|
781
787
|
}, {
|
|
782
788
|
organizationId: string;
|
|
783
789
|
campaignId: string;
|
|
@@ -925,13 +931,16 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
925
931
|
boostingEnabled: boolean;
|
|
926
932
|
specialisedProfileOptions: string[];
|
|
927
933
|
maximumBoost: number | null;
|
|
934
|
+
boostDownToNthPlace: number | null;
|
|
935
|
+
connectsAbovePrevious: number | null;
|
|
936
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
928
937
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
929
938
|
biddingHourlyRatePercentage: number | null;
|
|
930
939
|
biddingFixedHourlyRate: number | null;
|
|
931
940
|
isHourlyRate: boolean;
|
|
932
941
|
jobMinHourlyRate: number | null;
|
|
933
942
|
jobMaxHourlyRate: number | null;
|
|
934
|
-
bidWithWarning: "
|
|
943
|
+
bidWithWarning: "skip" | "bid";
|
|
935
944
|
}>;
|
|
936
945
|
export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
937
946
|
organizationId: z.ZodString;
|
|
@@ -1550,6 +1559,9 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1550
1559
|
boostingEnabled: z.ZodBoolean;
|
|
1551
1560
|
specialisedProfileOptions: z.ZodArray<z.ZodString, "many">;
|
|
1552
1561
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
1562
|
+
boostDownToNthPlace: z.ZodNullable<z.ZodNumber>;
|
|
1563
|
+
connectsAbovePrevious: z.ZodNullable<z.ZodNumber>;
|
|
1564
|
+
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
1553
1565
|
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
1554
1566
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
1555
1567
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1704,13 +1716,16 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1704
1716
|
boostingEnabled: boolean;
|
|
1705
1717
|
specialisedProfileOptions: string[];
|
|
1706
1718
|
maximumBoost: number | null;
|
|
1719
|
+
boostDownToNthPlace: number | null;
|
|
1720
|
+
connectsAbovePrevious: number | null;
|
|
1721
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1707
1722
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1708
1723
|
biddingHourlyRatePercentage: number | null;
|
|
1709
1724
|
biddingFixedHourlyRate: number | null;
|
|
1710
1725
|
isHourlyRate: boolean;
|
|
1711
1726
|
jobMinHourlyRate: number | null;
|
|
1712
1727
|
jobMaxHourlyRate: number | null;
|
|
1713
|
-
bidWithWarning: "
|
|
1728
|
+
bidWithWarning: "skip" | "bid";
|
|
1714
1729
|
}, {
|
|
1715
1730
|
organizationId: string;
|
|
1716
1731
|
campaignId: string;
|
|
@@ -1858,13 +1873,16 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1858
1873
|
boostingEnabled: boolean;
|
|
1859
1874
|
specialisedProfileOptions: string[];
|
|
1860
1875
|
maximumBoost: number | null;
|
|
1876
|
+
boostDownToNthPlace: number | null;
|
|
1877
|
+
connectsAbovePrevious: number | null;
|
|
1878
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
1861
1879
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1862
1880
|
biddingHourlyRatePercentage: number | null;
|
|
1863
1881
|
biddingFixedHourlyRate: number | null;
|
|
1864
1882
|
isHourlyRate: boolean;
|
|
1865
1883
|
jobMinHourlyRate: number | null;
|
|
1866
1884
|
jobMaxHourlyRate: number | null;
|
|
1867
|
-
bidWithWarning: "
|
|
1885
|
+
bidWithWarning: "skip" | "bid";
|
|
1868
1886
|
}>;
|
|
1869
1887
|
export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
1870
1888
|
organizationId: z.ZodString;
|
|
@@ -2483,6 +2501,9 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2483
2501
|
boostingEnabled: z.ZodBoolean;
|
|
2484
2502
|
specialisedProfileOptions: z.ZodArray<z.ZodString, "many">;
|
|
2485
2503
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
2504
|
+
boostDownToNthPlace: z.ZodNullable<z.ZodNumber>;
|
|
2505
|
+
connectsAbovePrevious: z.ZodNullable<z.ZodNumber>;
|
|
2506
|
+
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
2486
2507
|
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
2487
2508
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
2488
2509
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
@@ -2641,13 +2662,16 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2641
2662
|
boostingEnabled: boolean;
|
|
2642
2663
|
specialisedProfileOptions: string[];
|
|
2643
2664
|
maximumBoost: number | null;
|
|
2665
|
+
boostDownToNthPlace: number | null;
|
|
2666
|
+
connectsAbovePrevious: number | null;
|
|
2667
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2644
2668
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2645
2669
|
biddingHourlyRatePercentage: number | null;
|
|
2646
2670
|
biddingFixedHourlyRate: number | null;
|
|
2647
2671
|
isHourlyRate: boolean;
|
|
2648
2672
|
jobMinHourlyRate: number | null;
|
|
2649
2673
|
jobMaxHourlyRate: number | null;
|
|
2650
|
-
bidWithWarning: "
|
|
2674
|
+
bidWithWarning: "skip" | "bid";
|
|
2651
2675
|
agencyName: string;
|
|
2652
2676
|
contractorName: string;
|
|
2653
2677
|
specializedProfile: string | null;
|
|
@@ -2798,13 +2822,16 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2798
2822
|
boostingEnabled: boolean;
|
|
2799
2823
|
specialisedProfileOptions: string[];
|
|
2800
2824
|
maximumBoost: number | null;
|
|
2825
|
+
boostDownToNthPlace: number | null;
|
|
2826
|
+
connectsAbovePrevious: number | null;
|
|
2827
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
2801
2828
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2802
2829
|
biddingHourlyRatePercentage: number | null;
|
|
2803
2830
|
biddingFixedHourlyRate: number | null;
|
|
2804
2831
|
isHourlyRate: boolean;
|
|
2805
2832
|
jobMinHourlyRate: number | null;
|
|
2806
2833
|
jobMaxHourlyRate: number | null;
|
|
2807
|
-
bidWithWarning: "
|
|
2834
|
+
bidWithWarning: "skip" | "bid";
|
|
2808
2835
|
agencyName: string;
|
|
2809
2836
|
contractorName: string;
|
|
2810
2837
|
specializedProfile: string | null;
|
|
@@ -4924,6 +4951,9 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4924
4951
|
boostingEnabled: z.ZodBoolean;
|
|
4925
4952
|
specialisedProfileOptions: z.ZodArray<z.ZodString, "many">;
|
|
4926
4953
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
4954
|
+
boostDownToNthPlace: z.ZodNullable<z.ZodNumber>;
|
|
4955
|
+
connectsAbovePrevious: z.ZodNullable<z.ZodNumber>;
|
|
4956
|
+
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
4927
4957
|
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
4928
4958
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
4929
4959
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
@@ -5082,13 +5112,16 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5082
5112
|
boostingEnabled: boolean;
|
|
5083
5113
|
specialisedProfileOptions: string[];
|
|
5084
5114
|
maximumBoost: number | null;
|
|
5115
|
+
boostDownToNthPlace: number | null;
|
|
5116
|
+
connectsAbovePrevious: number | null;
|
|
5117
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5085
5118
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5086
5119
|
biddingHourlyRatePercentage: number | null;
|
|
5087
5120
|
biddingFixedHourlyRate: number | null;
|
|
5088
5121
|
isHourlyRate: boolean;
|
|
5089
5122
|
jobMinHourlyRate: number | null;
|
|
5090
5123
|
jobMaxHourlyRate: number | null;
|
|
5091
|
-
bidWithWarning: "
|
|
5124
|
+
bidWithWarning: "skip" | "bid";
|
|
5092
5125
|
agencyName: string;
|
|
5093
5126
|
contractorName: string;
|
|
5094
5127
|
specializedProfile: string | null;
|
|
@@ -5239,13 +5272,16 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5239
5272
|
boostingEnabled: boolean;
|
|
5240
5273
|
specialisedProfileOptions: string[];
|
|
5241
5274
|
maximumBoost: number | null;
|
|
5275
|
+
boostDownToNthPlace: number | null;
|
|
5276
|
+
connectsAbovePrevious: number | null;
|
|
5277
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5242
5278
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5243
5279
|
biddingHourlyRatePercentage: number | null;
|
|
5244
5280
|
biddingFixedHourlyRate: number | null;
|
|
5245
5281
|
isHourlyRate: boolean;
|
|
5246
5282
|
jobMinHourlyRate: number | null;
|
|
5247
5283
|
jobMaxHourlyRate: number | null;
|
|
5248
|
-
bidWithWarning: "
|
|
5284
|
+
bidWithWarning: "skip" | "bid";
|
|
5249
5285
|
agencyName: string;
|
|
5250
5286
|
contractorName: string;
|
|
5251
5287
|
specializedProfile: string | null;
|
|
@@ -5539,13 +5575,16 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5539
5575
|
boostingEnabled: boolean;
|
|
5540
5576
|
specialisedProfileOptions: string[];
|
|
5541
5577
|
maximumBoost: number | null;
|
|
5578
|
+
boostDownToNthPlace: number | null;
|
|
5579
|
+
connectsAbovePrevious: number | null;
|
|
5580
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5542
5581
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5543
5582
|
biddingHourlyRatePercentage: number | null;
|
|
5544
5583
|
biddingFixedHourlyRate: number | null;
|
|
5545
5584
|
isHourlyRate: boolean;
|
|
5546
5585
|
jobMinHourlyRate: number | null;
|
|
5547
5586
|
jobMaxHourlyRate: number | null;
|
|
5548
|
-
bidWithWarning: "
|
|
5587
|
+
bidWithWarning: "skip" | "bid";
|
|
5549
5588
|
agencyName: string;
|
|
5550
5589
|
contractorName: string;
|
|
5551
5590
|
specializedProfile: string | null;
|
|
@@ -5839,13 +5878,16 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5839
5878
|
boostingEnabled: boolean;
|
|
5840
5879
|
specialisedProfileOptions: string[];
|
|
5841
5880
|
maximumBoost: number | null;
|
|
5881
|
+
boostDownToNthPlace: number | null;
|
|
5882
|
+
connectsAbovePrevious: number | null;
|
|
5883
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
5842
5884
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5843
5885
|
biddingHourlyRatePercentage: number | null;
|
|
5844
5886
|
biddingFixedHourlyRate: number | null;
|
|
5845
5887
|
isHourlyRate: boolean;
|
|
5846
5888
|
jobMinHourlyRate: number | null;
|
|
5847
5889
|
jobMaxHourlyRate: number | null;
|
|
5848
|
-
bidWithWarning: "
|
|
5890
|
+
bidWithWarning: "skip" | "bid";
|
|
5849
5891
|
agencyName: string;
|
|
5850
5892
|
contractorName: string;
|
|
5851
5893
|
specializedProfile: string | null;
|
|
@@ -7075,6 +7117,9 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7075
7117
|
boostingEnabled: z.ZodBoolean;
|
|
7076
7118
|
specialisedProfileOptions: z.ZodArray<z.ZodString, "many">;
|
|
7077
7119
|
maximumBoost: z.ZodNullable<z.ZodNumber>;
|
|
7120
|
+
boostDownToNthPlace: z.ZodNullable<z.ZodNumber>;
|
|
7121
|
+
connectsAbovePrevious: z.ZodNullable<z.ZodNumber>;
|
|
7122
|
+
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
7078
7123
|
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
7079
7124
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
7080
7125
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
@@ -7229,13 +7274,16 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7229
7274
|
boostingEnabled: boolean;
|
|
7230
7275
|
specialisedProfileOptions: string[];
|
|
7231
7276
|
maximumBoost: number | null;
|
|
7277
|
+
boostDownToNthPlace: number | null;
|
|
7278
|
+
connectsAbovePrevious: number | null;
|
|
7279
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7232
7280
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
7233
7281
|
biddingHourlyRatePercentage: number | null;
|
|
7234
7282
|
biddingFixedHourlyRate: number | null;
|
|
7235
7283
|
isHourlyRate: boolean;
|
|
7236
7284
|
jobMinHourlyRate: number | null;
|
|
7237
7285
|
jobMaxHourlyRate: number | null;
|
|
7238
|
-
bidWithWarning: "
|
|
7286
|
+
bidWithWarning: "skip" | "bid";
|
|
7239
7287
|
}, {
|
|
7240
7288
|
organizationId: string;
|
|
7241
7289
|
campaignId: string;
|
|
@@ -7383,13 +7431,16 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7383
7431
|
boostingEnabled: boolean;
|
|
7384
7432
|
specialisedProfileOptions: string[];
|
|
7385
7433
|
maximumBoost: number | null;
|
|
7434
|
+
boostDownToNthPlace: number | null;
|
|
7435
|
+
connectsAbovePrevious: number | null;
|
|
7436
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7386
7437
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
7387
7438
|
biddingHourlyRatePercentage: number | null;
|
|
7388
7439
|
biddingFixedHourlyRate: number | null;
|
|
7389
7440
|
isHourlyRate: boolean;
|
|
7390
7441
|
jobMinHourlyRate: number | null;
|
|
7391
7442
|
jobMaxHourlyRate: number | null;
|
|
7392
|
-
bidWithWarning: "
|
|
7443
|
+
bidWithWarning: "skip" | "bid";
|
|
7393
7444
|
}>;
|
|
7394
7445
|
}>, "strip", z.ZodTypeAny, {
|
|
7395
7446
|
organizationId: string;
|
|
@@ -7680,13 +7731,16 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7680
7731
|
boostingEnabled: boolean;
|
|
7681
7732
|
specialisedProfileOptions: string[];
|
|
7682
7733
|
maximumBoost: number | null;
|
|
7734
|
+
boostDownToNthPlace: number | null;
|
|
7735
|
+
connectsAbovePrevious: number | null;
|
|
7736
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7683
7737
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
7684
7738
|
biddingHourlyRatePercentage: number | null;
|
|
7685
7739
|
biddingFixedHourlyRate: number | null;
|
|
7686
7740
|
isHourlyRate: boolean;
|
|
7687
7741
|
jobMinHourlyRate: number | null;
|
|
7688
7742
|
jobMaxHourlyRate: number | null;
|
|
7689
|
-
bidWithWarning: "
|
|
7743
|
+
bidWithWarning: "skip" | "bid";
|
|
7690
7744
|
};
|
|
7691
7745
|
}, {
|
|
7692
7746
|
organizationId: string;
|
|
@@ -7977,13 +8031,16 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7977
8031
|
boostingEnabled: boolean;
|
|
7978
8032
|
specialisedProfileOptions: string[];
|
|
7979
8033
|
maximumBoost: number | null;
|
|
8034
|
+
boostDownToNthPlace: number | null;
|
|
8035
|
+
connectsAbovePrevious: number | null;
|
|
8036
|
+
insufficeintBoostConnectsAction: "skip" | "bid_without_boost";
|
|
7980
8037
|
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
7981
8038
|
biddingHourlyRatePercentage: number | null;
|
|
7982
8039
|
biddingFixedHourlyRate: number | null;
|
|
7983
8040
|
isHourlyRate: boolean;
|
|
7984
8041
|
jobMinHourlyRate: number | null;
|
|
7985
8042
|
jobMaxHourlyRate: number | null;
|
|
7986
|
-
bidWithWarning: "
|
|
8043
|
+
bidWithWarning: "skip" | "bid";
|
|
7987
8044
|
};
|
|
7988
8045
|
}>;
|
|
7989
8046
|
export declare const bidDtoSchema: z.ZodObject<{
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { BoostAboveMaxConnectsException } from './boost-above-max-connects.exception';
|
|
1
2
|
import { CloudflareChallengeFailedException } from './cloudflare-challenge-failed.exception';
|
|
2
3
|
import { DeleteMultiloginProfileException } from './delete-multilogin-profile.exception';
|
|
3
4
|
import { DropdownOptionNotPresentException } from './dropdown-option-not-present.exception';
|
|
@@ -29,6 +30,7 @@ import { SelectorNotFoundError } from './selector-not-found.exception';
|
|
|
29
30
|
import { TypedValueInFieldNotMatchingException } from './typed-value-not-matching.exception';
|
|
30
31
|
import { TypingInputFieldException } from './typing-input-field.exception';
|
|
31
32
|
import { WaitForFunctionTimeoutError } from './wait-for-function-timeout.exception';
|
|
33
|
+
export * from './boost-above-max-connects.exception';
|
|
32
34
|
export * from './cloudflare-challenge-failed.exception';
|
|
33
35
|
export * from './delete-multilogin-profile.exception';
|
|
34
36
|
export * from './dropdown-option-not-present.exception';
|
|
@@ -60,4 +62,4 @@ export * from './selector-not-found.exception';
|
|
|
60
62
|
export * from './typed-value-not-matching.exception';
|
|
61
63
|
export * from './typing-input-field.exception';
|
|
62
64
|
export * from './wait-for-function-timeout.exception';
|
|
63
|
-
export type BiddingError = CloudflareChallengeFailedException | DeleteMultiloginProfileException | DropdownOptionNotPresentException | ElementNotClickableException | EvaluateFunctionException | GetMultiloginBrowserException | InitBrowserException | InsufficientConnectsException | InvalidJobUrlException | LoginFailedException | NavigationTimeoutException | NewBrowserPageException | NewPageException | GoToUrlException | ParseConnectsException | ProposalErrorAlertException | ProposalFormWarningAlertException | ProposalSubmitFailedException | PuppeteerConnectionErrorException | QuestionPairNotMatchingException | SelectAgencyException | SelectContractorException | SelectorNotFoundError | TypedValueInFieldNotMatchingException | TypingInputFieldException | WaitForFunctionTimeoutError | IncorrectSecurityQuestionAnswerException | EvaluateElementException | MultiloginAuthenticationException | InvalidCredentialsException | ProposalGenerationFailedException;
|
|
65
|
+
export type BiddingError = CloudflareChallengeFailedException | DeleteMultiloginProfileException | DropdownOptionNotPresentException | ElementNotClickableException | EvaluateFunctionException | GetMultiloginBrowserException | InitBrowserException | InsufficientConnectsException | InvalidJobUrlException | LoginFailedException | NavigationTimeoutException | NewBrowserPageException | NewPageException | GoToUrlException | ParseConnectsException | ProposalErrorAlertException | ProposalFormWarningAlertException | ProposalSubmitFailedException | PuppeteerConnectionErrorException | QuestionPairNotMatchingException | SelectAgencyException | SelectContractorException | SelectorNotFoundError | TypedValueInFieldNotMatchingException | TypingInputFieldException | WaitForFunctionTimeoutError | IncorrectSecurityQuestionAnswerException | EvaluateElementException | MultiloginAuthenticationException | InvalidCredentialsException | ProposalGenerationFailedException | BoostAboveMaxConnectsException;
|