lancer-shared 1.2.303 → 1.2.304
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 +3 -0
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +3 -0
- package/dist/bundle.esm.js.map +1 -1
- package/dist/schemas/account/bidder-account.d.ts +7 -0
- package/dist/schemas/bidder/bid.d.ts +19 -0
- package/dist/schemas/campaign/campaign.d.ts +9 -0
- package/package.json +1 -1
|
@@ -57,6 +57,7 @@ export declare const bidderAccountSchema: z.ZodObject<{
|
|
|
57
57
|
googleOauthTokens: z.ZodNullable<z.ZodAny>;
|
|
58
58
|
lastUsed: z.ZodNullable<z.ZodNumber>;
|
|
59
59
|
multiLoginProfileId: z.ZodNullable<z.ZodString>;
|
|
60
|
+
gologinProfileId: z.ZodNullable<z.ZodString>;
|
|
60
61
|
proxyId: z.ZodNullable<z.ZodString>;
|
|
61
62
|
newProxyId: z.ZodNullable<z.ZodString>;
|
|
62
63
|
profilePhotoUrl: z.ZodNullable<z.ZodString>;
|
|
@@ -115,6 +116,7 @@ export declare const bidderAccountSchema: z.ZodObject<{
|
|
|
115
116
|
assignedOrganizations: string[];
|
|
116
117
|
lastUsed: number | null;
|
|
117
118
|
multiLoginProfileId: string | null;
|
|
119
|
+
gologinProfileId: string | null;
|
|
118
120
|
proxyId: string | null;
|
|
119
121
|
newProxyId: string | null;
|
|
120
122
|
profilePhotoUrl: string | null;
|
|
@@ -148,6 +150,7 @@ export declare const bidderAccountSchema: z.ZodObject<{
|
|
|
148
150
|
assignedOrganizations: string[];
|
|
149
151
|
lastUsed: number | null;
|
|
150
152
|
multiLoginProfileId: string | null;
|
|
153
|
+
gologinProfileId: string | null;
|
|
151
154
|
proxyId: string | null;
|
|
152
155
|
newProxyId: string | null;
|
|
153
156
|
profilePhotoUrl: string | null;
|
|
@@ -200,6 +203,7 @@ export declare const createBidderAccountSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
200
203
|
googleOauthTokens: z.ZodNullable<z.ZodAny>;
|
|
201
204
|
lastUsed: z.ZodNullable<z.ZodNumber>;
|
|
202
205
|
multiLoginProfileId: z.ZodNullable<z.ZodString>;
|
|
206
|
+
gologinProfileId: z.ZodNullable<z.ZodString>;
|
|
203
207
|
proxyId: z.ZodNullable<z.ZodString>;
|
|
204
208
|
newProxyId: z.ZodNullable<z.ZodString>;
|
|
205
209
|
profilePhotoUrl: z.ZodNullable<z.ZodString>;
|
|
@@ -305,6 +309,7 @@ export declare const updateBidderAccountSchema: z.ZodObject<{
|
|
|
305
309
|
googleOauthTokens: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
306
310
|
lastUsed: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
307
311
|
multiLoginProfileId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
312
|
+
gologinProfileId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
308
313
|
proxyId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
309
314
|
newProxyId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
310
315
|
profilePhotoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -361,6 +366,7 @@ export declare const updateBidderAccountSchema: z.ZodObject<{
|
|
|
361
366
|
googleOauthTokens?: any;
|
|
362
367
|
lastUsed?: number | null | undefined;
|
|
363
368
|
multiLoginProfileId?: string | null | undefined;
|
|
369
|
+
gologinProfileId?: string | null | undefined;
|
|
364
370
|
proxyId?: string | null | undefined;
|
|
365
371
|
newProxyId?: string | null | undefined;
|
|
366
372
|
profilePhotoUrl?: string | null | undefined;
|
|
@@ -393,6 +399,7 @@ export declare const updateBidderAccountSchema: z.ZodObject<{
|
|
|
393
399
|
googleOauthTokens?: any;
|
|
394
400
|
lastUsed?: number | null | undefined;
|
|
395
401
|
multiLoginProfileId?: string | null | undefined;
|
|
402
|
+
gologinProfileId?: string | null | undefined;
|
|
396
403
|
proxyId?: string | null | undefined;
|
|
397
404
|
newProxyId?: string | null | undefined;
|
|
398
405
|
profilePhotoUrl?: string | null | undefined;
|
|
@@ -764,6 +764,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
764
764
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
765
765
|
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate", "smart_bidding"]>;
|
|
766
766
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
767
|
+
biddingFixedPriceRate: z.ZodNullable<z.ZodNumber>;
|
|
767
768
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
768
769
|
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
769
770
|
insufficientConnectsAction: z.ZodEnum<["buy_more_connects", "pause_campaigns"]>;
|
|
@@ -959,6 +960,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
959
960
|
coverLetter: string;
|
|
960
961
|
specialisedProfileOptions: string[];
|
|
961
962
|
minimumBoost: number | null;
|
|
963
|
+
biddingFixedPriceRate: number | null;
|
|
962
964
|
insufficientConnectsAction: "buy_more_connects" | "pause_campaigns";
|
|
963
965
|
numberOfConnectsToBuyWhenInsufficient: number | null;
|
|
964
966
|
isHourlyRate: boolean;
|
|
@@ -1151,6 +1153,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
1151
1153
|
coverLetter: string;
|
|
1152
1154
|
specialisedProfileOptions: string[];
|
|
1153
1155
|
minimumBoost: number | null;
|
|
1156
|
+
biddingFixedPriceRate: number | null;
|
|
1154
1157
|
insufficientConnectsAction: "buy_more_connects" | "pause_campaigns";
|
|
1155
1158
|
numberOfConnectsToBuyWhenInsufficient: number | null;
|
|
1156
1159
|
isHourlyRate: boolean;
|
|
@@ -1921,6 +1924,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<z.objectUtil.e
|
|
|
1921
1924
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
1922
1925
|
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate", "smart_bidding"]>;
|
|
1923
1926
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
1927
|
+
biddingFixedPriceRate: z.ZodNullable<z.ZodNumber>;
|
|
1924
1928
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
1925
1929
|
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
1926
1930
|
insufficientConnectsAction: z.ZodEnum<["buy_more_connects", "pause_campaigns"]>;
|
|
@@ -2119,6 +2123,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<z.objectUtil.e
|
|
|
2119
2123
|
coverLetter: string;
|
|
2120
2124
|
specialisedProfileOptions: string[];
|
|
2121
2125
|
minimumBoost: number | null;
|
|
2126
|
+
biddingFixedPriceRate: number | null;
|
|
2122
2127
|
insufficientConnectsAction: "buy_more_connects" | "pause_campaigns";
|
|
2123
2128
|
numberOfConnectsToBuyWhenInsufficient: number | null;
|
|
2124
2129
|
isHourlyRate: boolean;
|
|
@@ -2312,6 +2317,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<z.objectUtil.e
|
|
|
2312
2317
|
coverLetter: string;
|
|
2313
2318
|
specialisedProfileOptions: string[];
|
|
2314
2319
|
minimumBoost: number | null;
|
|
2320
|
+
biddingFixedPriceRate: number | null;
|
|
2315
2321
|
insufficientConnectsAction: "buy_more_connects" | "pause_campaigns";
|
|
2316
2322
|
numberOfConnectsToBuyWhenInsufficient: number | null;
|
|
2317
2323
|
isHourlyRate: boolean;
|
|
@@ -3082,6 +3088,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3082
3088
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
3083
3089
|
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate", "smart_bidding"]>;
|
|
3084
3090
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
3091
|
+
biddingFixedPriceRate: z.ZodNullable<z.ZodNumber>;
|
|
3085
3092
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
3086
3093
|
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
3087
3094
|
insufficientConnectsAction: z.ZodEnum<["buy_more_connects", "pause_campaigns"]>;
|
|
@@ -3283,6 +3290,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3283
3290
|
coverLetter: string;
|
|
3284
3291
|
specialisedProfileOptions: string[];
|
|
3285
3292
|
minimumBoost: number | null;
|
|
3293
|
+
biddingFixedPriceRate: number | null;
|
|
3286
3294
|
insufficientConnectsAction: "buy_more_connects" | "pause_campaigns";
|
|
3287
3295
|
numberOfConnectsToBuyWhenInsufficient: number | null;
|
|
3288
3296
|
isHourlyRate: boolean;
|
|
@@ -3478,6 +3486,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3478
3486
|
coverLetter: string;
|
|
3479
3487
|
specialisedProfileOptions: string[];
|
|
3480
3488
|
minimumBoost: number | null;
|
|
3489
|
+
biddingFixedPriceRate: number | null;
|
|
3481
3490
|
insufficientConnectsAction: "buy_more_connects" | "pause_campaigns";
|
|
3482
3491
|
numberOfConnectsToBuyWhenInsufficient: number | null;
|
|
3483
3492
|
isHourlyRate: boolean;
|
|
@@ -6091,6 +6100,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6091
6100
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
6092
6101
|
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate", "smart_bidding"]>;
|
|
6093
6102
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
6103
|
+
biddingFixedPriceRate: z.ZodNullable<z.ZodNumber>;
|
|
6094
6104
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
6095
6105
|
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
6096
6106
|
insufficientConnectsAction: z.ZodEnum<["buy_more_connects", "pause_campaigns"]>;
|
|
@@ -6292,6 +6302,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6292
6302
|
coverLetter: string;
|
|
6293
6303
|
specialisedProfileOptions: string[];
|
|
6294
6304
|
minimumBoost: number | null;
|
|
6305
|
+
biddingFixedPriceRate: number | null;
|
|
6295
6306
|
insufficientConnectsAction: "buy_more_connects" | "pause_campaigns";
|
|
6296
6307
|
numberOfConnectsToBuyWhenInsufficient: number | null;
|
|
6297
6308
|
isHourlyRate: boolean;
|
|
@@ -6487,6 +6498,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6487
6498
|
coverLetter: string;
|
|
6488
6499
|
specialisedProfileOptions: string[];
|
|
6489
6500
|
minimumBoost: number | null;
|
|
6501
|
+
biddingFixedPriceRate: number | null;
|
|
6490
6502
|
insufficientConnectsAction: "buy_more_connects" | "pause_campaigns";
|
|
6491
6503
|
numberOfConnectsToBuyWhenInsufficient: number | null;
|
|
6492
6504
|
isHourlyRate: boolean;
|
|
@@ -6856,6 +6868,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6856
6868
|
coverLetter: string;
|
|
6857
6869
|
specialisedProfileOptions: string[];
|
|
6858
6870
|
minimumBoost: number | null;
|
|
6871
|
+
biddingFixedPriceRate: number | null;
|
|
6859
6872
|
insufficientConnectsAction: "buy_more_connects" | "pause_campaigns";
|
|
6860
6873
|
numberOfConnectsToBuyWhenInsufficient: number | null;
|
|
6861
6874
|
isHourlyRate: boolean;
|
|
@@ -7225,6 +7238,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
7225
7238
|
coverLetter: string;
|
|
7226
7239
|
specialisedProfileOptions: string[];
|
|
7227
7240
|
minimumBoost: number | null;
|
|
7241
|
+
biddingFixedPriceRate: number | null;
|
|
7228
7242
|
insufficientConnectsAction: "buy_more_connects" | "pause_campaigns";
|
|
7229
7243
|
numberOfConnectsToBuyWhenInsufficient: number | null;
|
|
7230
7244
|
isHourlyRate: boolean;
|
|
@@ -8745,6 +8759,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8745
8759
|
insufficeintBoostConnectsAction: z.ZodEnum<["skip", "bid_without_boost"]>;
|
|
8746
8760
|
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate", "smart_bidding"]>;
|
|
8747
8761
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
8762
|
+
biddingFixedPriceRate: z.ZodNullable<z.ZodNumber>;
|
|
8748
8763
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
8749
8764
|
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
8750
8765
|
insufficientConnectsAction: z.ZodEnum<["buy_more_connects", "pause_campaigns"]>;
|
|
@@ -8943,6 +8958,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8943
8958
|
coverLetter: string;
|
|
8944
8959
|
specialisedProfileOptions: string[];
|
|
8945
8960
|
minimumBoost: number | null;
|
|
8961
|
+
biddingFixedPriceRate: number | null;
|
|
8946
8962
|
insufficientConnectsAction: "buy_more_connects" | "pause_campaigns";
|
|
8947
8963
|
numberOfConnectsToBuyWhenInsufficient: number | null;
|
|
8948
8964
|
isHourlyRate: boolean;
|
|
@@ -9136,6 +9152,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9136
9152
|
coverLetter: string;
|
|
9137
9153
|
specialisedProfileOptions: string[];
|
|
9138
9154
|
minimumBoost: number | null;
|
|
9155
|
+
biddingFixedPriceRate: number | null;
|
|
9139
9156
|
insufficientConnectsAction: "buy_more_connects" | "pause_campaigns";
|
|
9140
9157
|
numberOfConnectsToBuyWhenInsufficient: number | null;
|
|
9141
9158
|
isHourlyRate: boolean;
|
|
@@ -9503,6 +9520,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9503
9520
|
coverLetter: string;
|
|
9504
9521
|
specialisedProfileOptions: string[];
|
|
9505
9522
|
minimumBoost: number | null;
|
|
9523
|
+
biddingFixedPriceRate: number | null;
|
|
9506
9524
|
insufficientConnectsAction: "buy_more_connects" | "pause_campaigns";
|
|
9507
9525
|
numberOfConnectsToBuyWhenInsufficient: number | null;
|
|
9508
9526
|
isHourlyRate: boolean;
|
|
@@ -9870,6 +9888,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9870
9888
|
coverLetter: string;
|
|
9871
9889
|
specialisedProfileOptions: string[];
|
|
9872
9890
|
minimumBoost: number | null;
|
|
9891
|
+
biddingFixedPriceRate: number | null;
|
|
9873
9892
|
insufficientConnectsAction: "buy_more_connects" | "pause_campaigns";
|
|
9874
9893
|
numberOfConnectsToBuyWhenInsufficient: number | null;
|
|
9875
9894
|
isHourlyRate: boolean;
|
|
@@ -348,6 +348,7 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
348
348
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
349
349
|
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
350
350
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
351
|
+
biddingFixedPriceRate: z.ZodNullable<z.ZodNumber>;
|
|
351
352
|
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
352
353
|
leadCounts: z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>, z.ZodNumber>>;
|
|
353
354
|
expenses: z.ZodObject<{
|
|
@@ -535,6 +536,7 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
535
536
|
biddingFixedHourlyRate: number | null;
|
|
536
537
|
alreadyHiredAction: "bid" | "skip";
|
|
537
538
|
biddingHourlyRatePercentage: number | null;
|
|
539
|
+
biddingFixedPriceRate: number | null;
|
|
538
540
|
bidWithWarning: "bid" | "skip";
|
|
539
541
|
leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "biddingScheduled" | "biddingFailed" | "alreadyHired" | "won", number>> | null;
|
|
540
542
|
expenses: {
|
|
@@ -653,6 +655,7 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
653
655
|
biddingFixedHourlyRate: number | null;
|
|
654
656
|
alreadyHiredAction: "bid" | "skip";
|
|
655
657
|
biddingHourlyRatePercentage: number | null;
|
|
658
|
+
biddingFixedPriceRate: number | null;
|
|
656
659
|
bidWithWarning: "bid" | "skip";
|
|
657
660
|
leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "biddingScheduled" | "biddingFailed" | "alreadyHired" | "won", number>> | null;
|
|
658
661
|
expenses: {
|
|
@@ -1003,6 +1006,7 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
1003
1006
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
1004
1007
|
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
1005
1008
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
1009
|
+
biddingFixedPriceRate: z.ZodNullable<z.ZodNumber>;
|
|
1006
1010
|
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
1007
1011
|
leadCounts: z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>, z.ZodNumber>>;
|
|
1008
1012
|
expenses: z.ZodObject<{
|
|
@@ -1187,6 +1191,7 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
1187
1191
|
biddingFixedHourlyRate: number | null;
|
|
1188
1192
|
alreadyHiredAction: "bid" | "skip";
|
|
1189
1193
|
biddingHourlyRatePercentage: number | null;
|
|
1194
|
+
biddingFixedPriceRate: number | null;
|
|
1190
1195
|
bidWithWarning: "bid" | "skip";
|
|
1191
1196
|
leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "biddingScheduled" | "biddingFailed" | "alreadyHired" | "won", number>> | null;
|
|
1192
1197
|
expenses: {
|
|
@@ -1295,6 +1300,7 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
1295
1300
|
biddingFixedHourlyRate: number | null;
|
|
1296
1301
|
alreadyHiredAction: "bid" | "skip";
|
|
1297
1302
|
biddingHourlyRatePercentage: number | null;
|
|
1303
|
+
biddingFixedPriceRate: number | null;
|
|
1298
1304
|
bidWithWarning: "bid" | "skip";
|
|
1299
1305
|
leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "biddingScheduled" | "biddingFailed" | "alreadyHired" | "won", number>> | null;
|
|
1300
1306
|
expenses: {
|
|
@@ -1618,6 +1624,7 @@ export declare const updateCampaignSchema: z.ZodObject<{
|
|
|
1618
1624
|
biddingFixedHourlyRate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1619
1625
|
alreadyHiredAction: z.ZodOptional<z.ZodEnum<["skip", "bid"]>>;
|
|
1620
1626
|
biddingHourlyRatePercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1627
|
+
biddingFixedPriceRate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1621
1628
|
bidWithWarning: z.ZodOptional<z.ZodEnum<["bid", "skip"]>>;
|
|
1622
1629
|
leadCounts: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>, z.ZodNumber>>>;
|
|
1623
1630
|
expenses: z.ZodOptional<z.ZodObject<{
|
|
@@ -1803,6 +1810,7 @@ export declare const updateCampaignSchema: z.ZodObject<{
|
|
|
1803
1810
|
biddingFixedHourlyRate?: number | null | undefined;
|
|
1804
1811
|
alreadyHiredAction?: "bid" | "skip" | undefined;
|
|
1805
1812
|
biddingHourlyRatePercentage?: number | null | undefined;
|
|
1813
|
+
biddingFixedPriceRate?: number | null | undefined;
|
|
1806
1814
|
bidWithWarning?: "bid" | "skip" | undefined;
|
|
1807
1815
|
leadCounts?: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "biddingScheduled" | "biddingFailed" | "alreadyHired" | "won", number>> | null | undefined;
|
|
1808
1816
|
expenses?: {
|
|
@@ -1924,6 +1932,7 @@ export declare const updateCampaignSchema: z.ZodObject<{
|
|
|
1924
1932
|
biddingFixedHourlyRate?: number | null | undefined;
|
|
1925
1933
|
alreadyHiredAction?: "bid" | "skip" | undefined;
|
|
1926
1934
|
biddingHourlyRatePercentage?: number | null | undefined;
|
|
1935
|
+
biddingFixedPriceRate?: number | null | undefined;
|
|
1927
1936
|
bidWithWarning?: "bid" | "skip" | undefined;
|
|
1928
1937
|
leadCounts?: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "biddingScheduled" | "biddingFailed" | "alreadyHired" | "won", number>> | null | undefined;
|
|
1929
1938
|
expenses?: {
|