lancer-shared 1.2.338 → 1.2.340
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 +9 -0
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +9 -1
- package/dist/bundle.esm.js.map +1 -1
- package/dist/schemas/agent/index.d.ts +5 -0
- package/dist/schemas/bidder/bid.d.ts +49 -0
- package/dist/schemas/campaign/campaign-analytics.d.ts +9 -0
- package/dist/schemas/lead/index.d.ts +18 -0
- package/dist/schemas/logger/log-event.d.ts +27 -10
- package/dist/schemas/scraper/scrape-payload.d.ts +5 -0
- package/package.json +1 -1
|
@@ -580,6 +580,7 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
580
580
|
};
|
|
581
581
|
}>>;
|
|
582
582
|
statusSynced: z.ZodNullable<z.ZodBoolean>;
|
|
583
|
+
skipBidding: z.ZodOptional<z.ZodBoolean>;
|
|
583
584
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
584
585
|
id: string | null;
|
|
585
586
|
title: string | null;
|
|
@@ -746,6 +747,7 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
746
747
|
interviewing: number;
|
|
747
748
|
invitesSent: number;
|
|
748
749
|
} | null | undefined;
|
|
750
|
+
skipBidding?: boolean | undefined;
|
|
749
751
|
}, {
|
|
750
752
|
id: string | null;
|
|
751
753
|
title: string | null;
|
|
@@ -912,6 +914,7 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
912
914
|
interviewing: number;
|
|
913
915
|
invitesSent: number;
|
|
914
916
|
} | null | undefined;
|
|
917
|
+
skipBidding?: boolean | undefined;
|
|
915
918
|
}>;
|
|
916
919
|
isOverallHighestPriorityCampaign: z.ZodOptional<z.ZodBoolean>;
|
|
917
920
|
applyToLeads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1094,6 +1097,7 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
1094
1097
|
interviewing: number;
|
|
1095
1098
|
invitesSent: number;
|
|
1096
1099
|
} | null | undefined;
|
|
1100
|
+
skipBidding?: boolean | undefined;
|
|
1097
1101
|
};
|
|
1098
1102
|
isOverallHighestPriorityCampaign?: boolean | undefined;
|
|
1099
1103
|
applyToLeads?: {
|
|
@@ -1270,6 +1274,7 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
1270
1274
|
interviewing: number;
|
|
1271
1275
|
invitesSent: number;
|
|
1272
1276
|
} | null | undefined;
|
|
1277
|
+
skipBidding?: boolean | undefined;
|
|
1273
1278
|
};
|
|
1274
1279
|
isOverallHighestPriorityCampaign?: boolean | undefined;
|
|
1275
1280
|
applyToLeads?: {
|
|
@@ -411,6 +411,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
411
411
|
};
|
|
412
412
|
}>>;
|
|
413
413
|
statusSynced: z.ZodNullable<z.ZodBoolean>;
|
|
414
|
+
skipBidding: z.ZodOptional<z.ZodBoolean>;
|
|
414
415
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
415
416
|
id: string | null;
|
|
416
417
|
title: string | null;
|
|
@@ -577,6 +578,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
577
578
|
interviewing: number;
|
|
578
579
|
invitesSent: number;
|
|
579
580
|
} | null | undefined;
|
|
581
|
+
skipBidding?: boolean | undefined;
|
|
580
582
|
}, {
|
|
581
583
|
id: string | null;
|
|
582
584
|
title: string | null;
|
|
@@ -743,6 +745,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
743
745
|
interviewing: number;
|
|
744
746
|
invitesSent: number;
|
|
745
747
|
} | null | undefined;
|
|
748
|
+
skipBidding?: boolean | undefined;
|
|
746
749
|
}>;
|
|
747
750
|
coverLetter: z.ZodString;
|
|
748
751
|
questionAnswerPairs: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -958,6 +961,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
958
961
|
interviewing: number;
|
|
959
962
|
invitesSent: number;
|
|
960
963
|
} | null | undefined;
|
|
964
|
+
skipBidding?: boolean | undefined;
|
|
961
965
|
};
|
|
962
966
|
insufficientConnectsAction: "buy_more_connects" | "pause_campaigns";
|
|
963
967
|
numberOfConnectsToBuyWhenInsufficient: number | null;
|
|
@@ -1152,6 +1156,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
1152
1156
|
interviewing: number;
|
|
1153
1157
|
invitesSent: number;
|
|
1154
1158
|
} | null | undefined;
|
|
1159
|
+
skipBidding?: boolean | undefined;
|
|
1155
1160
|
};
|
|
1156
1161
|
insufficientConnectsAction: "buy_more_connects" | "pause_campaigns";
|
|
1157
1162
|
numberOfConnectsToBuyWhenInsufficient: number | null;
|
|
@@ -1574,6 +1579,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<z.objectUtil.e
|
|
|
1574
1579
|
};
|
|
1575
1580
|
}>>;
|
|
1576
1581
|
statusSynced: z.ZodNullable<z.ZodBoolean>;
|
|
1582
|
+
skipBidding: z.ZodOptional<z.ZodBoolean>;
|
|
1577
1583
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
1578
1584
|
id: string | null;
|
|
1579
1585
|
title: string | null;
|
|
@@ -1740,6 +1746,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<z.objectUtil.e
|
|
|
1740
1746
|
interviewing: number;
|
|
1741
1747
|
invitesSent: number;
|
|
1742
1748
|
} | null | undefined;
|
|
1749
|
+
skipBidding?: boolean | undefined;
|
|
1743
1750
|
}, {
|
|
1744
1751
|
id: string | null;
|
|
1745
1752
|
title: string | null;
|
|
@@ -1906,6 +1913,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<z.objectUtil.e
|
|
|
1906
1913
|
interviewing: number;
|
|
1907
1914
|
invitesSent: number;
|
|
1908
1915
|
} | null | undefined;
|
|
1916
|
+
skipBidding?: boolean | undefined;
|
|
1909
1917
|
}>;
|
|
1910
1918
|
coverLetter: z.ZodString;
|
|
1911
1919
|
questionAnswerPairs: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -2124,6 +2132,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<z.objectUtil.e
|
|
|
2124
2132
|
interviewing: number;
|
|
2125
2133
|
invitesSent: number;
|
|
2126
2134
|
} | null | undefined;
|
|
2135
|
+
skipBidding?: boolean | undefined;
|
|
2127
2136
|
};
|
|
2128
2137
|
insufficientConnectsAction: "buy_more_connects" | "pause_campaigns";
|
|
2129
2138
|
numberOfConnectsToBuyWhenInsufficient: number | null;
|
|
@@ -2319,6 +2328,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<z.objectUtil.e
|
|
|
2319
2328
|
interviewing: number;
|
|
2320
2329
|
invitesSent: number;
|
|
2321
2330
|
} | null | undefined;
|
|
2331
|
+
skipBidding?: boolean | undefined;
|
|
2322
2332
|
};
|
|
2323
2333
|
insufficientConnectsAction: "buy_more_connects" | "pause_campaigns";
|
|
2324
2334
|
numberOfConnectsToBuyWhenInsufficient: number | null;
|
|
@@ -2741,6 +2751,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2741
2751
|
};
|
|
2742
2752
|
}>>;
|
|
2743
2753
|
statusSynced: z.ZodNullable<z.ZodBoolean>;
|
|
2754
|
+
skipBidding: z.ZodOptional<z.ZodBoolean>;
|
|
2744
2755
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
2745
2756
|
id: string | null;
|
|
2746
2757
|
title: string | null;
|
|
@@ -2907,6 +2918,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2907
2918
|
interviewing: number;
|
|
2908
2919
|
invitesSent: number;
|
|
2909
2920
|
} | null | undefined;
|
|
2921
|
+
skipBidding?: boolean | undefined;
|
|
2910
2922
|
}, {
|
|
2911
2923
|
id: string | null;
|
|
2912
2924
|
title: string | null;
|
|
@@ -3073,6 +3085,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3073
3085
|
interviewing: number;
|
|
3074
3086
|
invitesSent: number;
|
|
3075
3087
|
} | null | undefined;
|
|
3088
|
+
skipBidding?: boolean | undefined;
|
|
3076
3089
|
}>;
|
|
3077
3090
|
coverLetter: z.ZodString;
|
|
3078
3091
|
questionAnswerPairs: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -3294,6 +3307,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3294
3307
|
interviewing: number;
|
|
3295
3308
|
invitesSent: number;
|
|
3296
3309
|
} | null | undefined;
|
|
3310
|
+
skipBidding?: boolean | undefined;
|
|
3297
3311
|
};
|
|
3298
3312
|
insufficientConnectsAction: "buy_more_connects" | "pause_campaigns";
|
|
3299
3313
|
numberOfConnectsToBuyWhenInsufficient: number | null;
|
|
@@ -3491,6 +3505,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
3491
3505
|
interviewing: number;
|
|
3492
3506
|
invitesSent: number;
|
|
3493
3507
|
} | null | undefined;
|
|
3508
|
+
skipBidding?: boolean | undefined;
|
|
3494
3509
|
};
|
|
3495
3510
|
insufficientConnectsAction: "buy_more_connects" | "pause_campaigns";
|
|
3496
3511
|
numberOfConnectsToBuyWhenInsufficient: number | null;
|
|
@@ -3914,6 +3929,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3914
3929
|
};
|
|
3915
3930
|
}>>;
|
|
3916
3931
|
statusSynced: z.ZodNullable<z.ZodBoolean>;
|
|
3932
|
+
skipBidding: z.ZodOptional<z.ZodBoolean>;
|
|
3917
3933
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
3918
3934
|
id: string | null;
|
|
3919
3935
|
title: string | null;
|
|
@@ -4080,6 +4096,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
4080
4096
|
interviewing: number;
|
|
4081
4097
|
invitesSent: number;
|
|
4082
4098
|
} | null | undefined;
|
|
4099
|
+
skipBidding?: boolean | undefined;
|
|
4083
4100
|
}, {
|
|
4084
4101
|
id: string | null;
|
|
4085
4102
|
title: string | null;
|
|
@@ -4246,6 +4263,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
4246
4263
|
interviewing: number;
|
|
4247
4264
|
invitesSent: number;
|
|
4248
4265
|
} | null | undefined;
|
|
4266
|
+
skipBidding?: boolean | undefined;
|
|
4249
4267
|
}>;
|
|
4250
4268
|
jobUrl: z.ZodString;
|
|
4251
4269
|
username: z.ZodString;
|
|
@@ -4422,6 +4440,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
4422
4440
|
interviewing: number;
|
|
4423
4441
|
invitesSent: number;
|
|
4424
4442
|
} | null | undefined;
|
|
4443
|
+
skipBidding?: boolean | undefined;
|
|
4425
4444
|
};
|
|
4426
4445
|
}, {
|
|
4427
4446
|
username: string;
|
|
@@ -4595,6 +4614,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
4595
4614
|
interviewing: number;
|
|
4596
4615
|
invitesSent: number;
|
|
4597
4616
|
} | null | undefined;
|
|
4617
|
+
skipBidding?: boolean | undefined;
|
|
4598
4618
|
};
|
|
4599
4619
|
}>;
|
|
4600
4620
|
export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -5008,6 +5028,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5008
5028
|
};
|
|
5009
5029
|
}>>;
|
|
5010
5030
|
statusSynced: z.ZodNullable<z.ZodBoolean>;
|
|
5031
|
+
skipBidding: z.ZodOptional<z.ZodBoolean>;
|
|
5011
5032
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
5012
5033
|
id: string | null;
|
|
5013
5034
|
title: string | null;
|
|
@@ -5174,6 +5195,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5174
5195
|
interviewing: number;
|
|
5175
5196
|
invitesSent: number;
|
|
5176
5197
|
} | null | undefined;
|
|
5198
|
+
skipBidding?: boolean | undefined;
|
|
5177
5199
|
}, {
|
|
5178
5200
|
id: string | null;
|
|
5179
5201
|
title: string | null;
|
|
@@ -5340,6 +5362,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5340
5362
|
interviewing: number;
|
|
5341
5363
|
invitesSent: number;
|
|
5342
5364
|
} | null | undefined;
|
|
5365
|
+
skipBidding?: boolean | undefined;
|
|
5343
5366
|
}>;
|
|
5344
5367
|
jobUrl: z.ZodString;
|
|
5345
5368
|
username: z.ZodString;
|
|
@@ -5756,6 +5779,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5756
5779
|
};
|
|
5757
5780
|
}>>;
|
|
5758
5781
|
statusSynced: z.ZodNullable<z.ZodBoolean>;
|
|
5782
|
+
skipBidding: z.ZodOptional<z.ZodBoolean>;
|
|
5759
5783
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
5760
5784
|
id: string | null;
|
|
5761
5785
|
title: string | null;
|
|
@@ -5922,6 +5946,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5922
5946
|
interviewing: number;
|
|
5923
5947
|
invitesSent: number;
|
|
5924
5948
|
} | null | undefined;
|
|
5949
|
+
skipBidding?: boolean | undefined;
|
|
5925
5950
|
}, {
|
|
5926
5951
|
id: string | null;
|
|
5927
5952
|
title: string | null;
|
|
@@ -6088,6 +6113,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6088
6113
|
interviewing: number;
|
|
6089
6114
|
invitesSent: number;
|
|
6090
6115
|
} | null | undefined;
|
|
6116
|
+
skipBidding?: boolean | undefined;
|
|
6091
6117
|
}>;
|
|
6092
6118
|
coverLetter: z.ZodString;
|
|
6093
6119
|
questionAnswerPairs: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -6309,6 +6335,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6309
6335
|
interviewing: number;
|
|
6310
6336
|
invitesSent: number;
|
|
6311
6337
|
} | null | undefined;
|
|
6338
|
+
skipBidding?: boolean | undefined;
|
|
6312
6339
|
};
|
|
6313
6340
|
insufficientConnectsAction: "buy_more_connects" | "pause_campaigns";
|
|
6314
6341
|
numberOfConnectsToBuyWhenInsufficient: number | null;
|
|
@@ -6506,6 +6533,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6506
6533
|
interviewing: number;
|
|
6507
6534
|
invitesSent: number;
|
|
6508
6535
|
} | null | undefined;
|
|
6536
|
+
skipBidding?: boolean | undefined;
|
|
6509
6537
|
};
|
|
6510
6538
|
insufficientConnectsAction: "buy_more_connects" | "pause_campaigns";
|
|
6511
6539
|
numberOfConnectsToBuyWhenInsufficient: number | null;
|
|
@@ -6690,6 +6718,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6690
6718
|
interviewing: number;
|
|
6691
6719
|
invitesSent: number;
|
|
6692
6720
|
} | null | undefined;
|
|
6721
|
+
skipBidding?: boolean | undefined;
|
|
6693
6722
|
};
|
|
6694
6723
|
proposalData: {
|
|
6695
6724
|
contractorName: string;
|
|
@@ -6877,6 +6906,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
6877
6906
|
interviewing: number;
|
|
6878
6907
|
invitesSent: number;
|
|
6879
6908
|
} | null | undefined;
|
|
6909
|
+
skipBidding?: boolean | undefined;
|
|
6880
6910
|
};
|
|
6881
6911
|
insufficientConnectsAction: "buy_more_connects" | "pause_campaigns";
|
|
6882
6912
|
numberOfConnectsToBuyWhenInsufficient: number | null;
|
|
@@ -7061,6 +7091,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
7061
7091
|
interviewing: number;
|
|
7062
7092
|
invitesSent: number;
|
|
7063
7093
|
} | null | undefined;
|
|
7094
|
+
skipBidding?: boolean | undefined;
|
|
7064
7095
|
};
|
|
7065
7096
|
proposalData: {
|
|
7066
7097
|
contractorName: string;
|
|
@@ -7248,6 +7279,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
7248
7279
|
interviewing: number;
|
|
7249
7280
|
invitesSent: number;
|
|
7250
7281
|
} | null | undefined;
|
|
7282
|
+
skipBidding?: boolean | undefined;
|
|
7251
7283
|
};
|
|
7252
7284
|
insufficientConnectsAction: "buy_more_connects" | "pause_campaigns";
|
|
7253
7285
|
numberOfConnectsToBuyWhenInsufficient: number | null;
|
|
@@ -7672,6 +7704,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7672
7704
|
};
|
|
7673
7705
|
}>>;
|
|
7674
7706
|
statusSynced: z.ZodNullable<z.ZodBoolean>;
|
|
7707
|
+
skipBidding: z.ZodOptional<z.ZodBoolean>;
|
|
7675
7708
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
7676
7709
|
id: string | null;
|
|
7677
7710
|
title: string | null;
|
|
@@ -7838,6 +7871,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7838
7871
|
interviewing: number;
|
|
7839
7872
|
invitesSent: number;
|
|
7840
7873
|
} | null | undefined;
|
|
7874
|
+
skipBidding?: boolean | undefined;
|
|
7841
7875
|
}, {
|
|
7842
7876
|
id: string | null;
|
|
7843
7877
|
title: string | null;
|
|
@@ -8004,6 +8038,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8004
8038
|
interviewing: number;
|
|
8005
8039
|
invitesSent: number;
|
|
8006
8040
|
} | null | undefined;
|
|
8041
|
+
skipBidding?: boolean | undefined;
|
|
8007
8042
|
}>;
|
|
8008
8043
|
jobUrl: z.ZodString;
|
|
8009
8044
|
username: z.ZodString;
|
|
@@ -8420,6 +8455,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8420
8455
|
};
|
|
8421
8456
|
}>>;
|
|
8422
8457
|
statusSynced: z.ZodNullable<z.ZodBoolean>;
|
|
8458
|
+
skipBidding: z.ZodOptional<z.ZodBoolean>;
|
|
8423
8459
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
8424
8460
|
id: string | null;
|
|
8425
8461
|
title: string | null;
|
|
@@ -8586,6 +8622,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8586
8622
|
interviewing: number;
|
|
8587
8623
|
invitesSent: number;
|
|
8588
8624
|
} | null | undefined;
|
|
8625
|
+
skipBidding?: boolean | undefined;
|
|
8589
8626
|
}, {
|
|
8590
8627
|
id: string | null;
|
|
8591
8628
|
title: string | null;
|
|
@@ -8752,6 +8789,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8752
8789
|
interviewing: number;
|
|
8753
8790
|
invitesSent: number;
|
|
8754
8791
|
} | null | undefined;
|
|
8792
|
+
skipBidding?: boolean | undefined;
|
|
8755
8793
|
}>;
|
|
8756
8794
|
coverLetter: z.ZodString;
|
|
8757
8795
|
questionAnswerPairs: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -8970,6 +9008,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8970
9008
|
interviewing: number;
|
|
8971
9009
|
invitesSent: number;
|
|
8972
9010
|
} | null | undefined;
|
|
9011
|
+
skipBidding?: boolean | undefined;
|
|
8973
9012
|
};
|
|
8974
9013
|
insufficientConnectsAction: "buy_more_connects" | "pause_campaigns";
|
|
8975
9014
|
numberOfConnectsToBuyWhenInsufficient: number | null;
|
|
@@ -9165,6 +9204,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9165
9204
|
interviewing: number;
|
|
9166
9205
|
invitesSent: number;
|
|
9167
9206
|
} | null | undefined;
|
|
9207
|
+
skipBidding?: boolean | undefined;
|
|
9168
9208
|
};
|
|
9169
9209
|
insufficientConnectsAction: "buy_more_connects" | "pause_campaigns";
|
|
9170
9210
|
numberOfConnectsToBuyWhenInsufficient: number | null;
|
|
@@ -9348,6 +9388,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9348
9388
|
interviewing: number;
|
|
9349
9389
|
invitesSent: number;
|
|
9350
9390
|
} | null | undefined;
|
|
9391
|
+
skipBidding?: boolean | undefined;
|
|
9351
9392
|
};
|
|
9352
9393
|
proposalData: {
|
|
9353
9394
|
organizationId: string;
|
|
@@ -9534,6 +9575,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9534
9575
|
interviewing: number;
|
|
9535
9576
|
invitesSent: number;
|
|
9536
9577
|
} | null | undefined;
|
|
9578
|
+
skipBidding?: boolean | undefined;
|
|
9537
9579
|
};
|
|
9538
9580
|
insufficientConnectsAction: "buy_more_connects" | "pause_campaigns";
|
|
9539
9581
|
numberOfConnectsToBuyWhenInsufficient: number | null;
|
|
@@ -9717,6 +9759,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9717
9759
|
interviewing: number;
|
|
9718
9760
|
invitesSent: number;
|
|
9719
9761
|
} | null | undefined;
|
|
9762
|
+
skipBidding?: boolean | undefined;
|
|
9720
9763
|
};
|
|
9721
9764
|
proposalData: {
|
|
9722
9765
|
organizationId: string;
|
|
@@ -9903,6 +9946,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
9903
9946
|
interviewing: number;
|
|
9904
9947
|
invitesSent: number;
|
|
9905
9948
|
} | null | undefined;
|
|
9949
|
+
skipBidding?: boolean | undefined;
|
|
9906
9950
|
};
|
|
9907
9951
|
insufficientConnectsAction: "buy_more_connects" | "pause_campaigns";
|
|
9908
9952
|
numberOfConnectsToBuyWhenInsufficient: number | null;
|
|
@@ -10327,6 +10371,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10327
10371
|
};
|
|
10328
10372
|
}>>;
|
|
10329
10373
|
statusSynced: z.ZodNullable<z.ZodBoolean>;
|
|
10374
|
+
skipBidding: z.ZodOptional<z.ZodBoolean>;
|
|
10330
10375
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
10331
10376
|
id: string | null;
|
|
10332
10377
|
title: string | null;
|
|
@@ -10493,6 +10538,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10493
10538
|
interviewing: number;
|
|
10494
10539
|
invitesSent: number;
|
|
10495
10540
|
} | null | undefined;
|
|
10541
|
+
skipBidding?: boolean | undefined;
|
|
10496
10542
|
}, {
|
|
10497
10543
|
id: string | null;
|
|
10498
10544
|
title: string | null;
|
|
@@ -10659,6 +10705,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10659
10705
|
interviewing: number;
|
|
10660
10706
|
invitesSent: number;
|
|
10661
10707
|
} | null | undefined;
|
|
10708
|
+
skipBidding?: boolean | undefined;
|
|
10662
10709
|
}>;
|
|
10663
10710
|
}, "strip", z.ZodTypeAny, {
|
|
10664
10711
|
organizationId: string;
|
|
@@ -10830,6 +10877,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
10830
10877
|
interviewing: number;
|
|
10831
10878
|
invitesSent: number;
|
|
10832
10879
|
} | null | undefined;
|
|
10880
|
+
skipBidding?: boolean | undefined;
|
|
10833
10881
|
};
|
|
10834
10882
|
}, {
|
|
10835
10883
|
organizationId: string;
|
|
@@ -11001,6 +11049,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
11001
11049
|
interviewing: number;
|
|
11002
11050
|
invitesSent: number;
|
|
11003
11051
|
} | null | undefined;
|
|
11052
|
+
skipBidding?: boolean | undefined;
|
|
11004
11053
|
};
|
|
11005
11054
|
}>;
|
|
11006
11055
|
export declare const getBiddingProcessingEventFromAnotherCampaignsPayloadSchema: z.ZodObject<{
|
|
@@ -2180,6 +2180,7 @@ export declare const leadAnalysisActivitySchema: z.ZodObject<z.objectUtil.extend
|
|
|
2180
2180
|
};
|
|
2181
2181
|
}>>;
|
|
2182
2182
|
statusSynced: z.ZodNullable<z.ZodBoolean>;
|
|
2183
|
+
skipBidding: z.ZodOptional<z.ZodBoolean>;
|
|
2183
2184
|
}>, "processed">, "id" | "title" | "datetime" | "jobUrl">, "strip", z.ZodTypeAny, {
|
|
2184
2185
|
id: string | null;
|
|
2185
2186
|
title: string | null;
|
|
@@ -3280,6 +3281,7 @@ export declare const leadStatusActivitySchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
3280
3281
|
};
|
|
3281
3282
|
}>>;
|
|
3282
3283
|
statusSynced: z.ZodNullable<z.ZodBoolean>;
|
|
3284
|
+
skipBidding: z.ZodOptional<z.ZodBoolean>;
|
|
3283
3285
|
}>, "processed">, "id" | "title" | "datetime" | "jobUrl">, "strip", z.ZodTypeAny, {
|
|
3284
3286
|
id: string | null;
|
|
3285
3287
|
title: string | null;
|
|
@@ -4378,6 +4380,7 @@ export declare const proposalSentActivitySchema: z.ZodObject<z.objectUtil.extend
|
|
|
4378
4380
|
};
|
|
4379
4381
|
}>>;
|
|
4380
4382
|
statusSynced: z.ZodNullable<z.ZodBoolean>;
|
|
4383
|
+
skipBidding: z.ZodOptional<z.ZodBoolean>;
|
|
4381
4384
|
}>, "processed">, "id" | "title" | "datetime" | "jobUrl">, "strip", z.ZodTypeAny, {
|
|
4382
4385
|
id: string | null;
|
|
4383
4386
|
title: string | null;
|
|
@@ -6141,6 +6144,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
6141
6144
|
};
|
|
6142
6145
|
}>>;
|
|
6143
6146
|
statusSynced: z.ZodNullable<z.ZodBoolean>;
|
|
6147
|
+
skipBidding: z.ZodOptional<z.ZodBoolean>;
|
|
6144
6148
|
}>, "processed">, "id" | "title" | "datetime" | "jobUrl">, "strip", z.ZodTypeAny, {
|
|
6145
6149
|
id: string | null;
|
|
6146
6150
|
title: string | null;
|
|
@@ -7240,6 +7244,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
7240
7244
|
};
|
|
7241
7245
|
}>>;
|
|
7242
7246
|
statusSynced: z.ZodNullable<z.ZodBoolean>;
|
|
7247
|
+
skipBidding: z.ZodOptional<z.ZodBoolean>;
|
|
7243
7248
|
}>, "processed">, "id" | "title" | "datetime" | "jobUrl">, "strip", z.ZodTypeAny, {
|
|
7244
7249
|
id: string | null;
|
|
7245
7250
|
title: string | null;
|
|
@@ -8337,6 +8342,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
8337
8342
|
};
|
|
8338
8343
|
}>>;
|
|
8339
8344
|
statusSynced: z.ZodNullable<z.ZodBoolean>;
|
|
8345
|
+
skipBidding: z.ZodOptional<z.ZodBoolean>;
|
|
8340
8346
|
}>, "processed">, "id" | "title" | "datetime" | "jobUrl">, "strip", z.ZodTypeAny, {
|
|
8341
8347
|
id: string | null;
|
|
8342
8348
|
title: string | null;
|
|
@@ -8808,6 +8814,7 @@ export declare const campaignActivityCreateSchema: z.ZodDiscriminatedUnion<"type
|
|
|
8808
8814
|
};
|
|
8809
8815
|
}>>;
|
|
8810
8816
|
statusSynced: z.ZodNullable<z.ZodBoolean>;
|
|
8817
|
+
skipBidding: z.ZodOptional<z.ZodBoolean>;
|
|
8811
8818
|
}>, "processed">, "id" | "title" | "datetime" | "jobUrl">, "strip", z.ZodTypeAny, {
|
|
8812
8819
|
id: string | null;
|
|
8813
8820
|
title: string | null;
|
|
@@ -9252,6 +9259,7 @@ export declare const campaignActivityCreateSchema: z.ZodDiscriminatedUnion<"type
|
|
|
9252
9259
|
};
|
|
9253
9260
|
}>>;
|
|
9254
9261
|
statusSynced: z.ZodNullable<z.ZodBoolean>;
|
|
9262
|
+
skipBidding: z.ZodOptional<z.ZodBoolean>;
|
|
9255
9263
|
}>, "processed">, "id" | "title" | "datetime" | "jobUrl">, "strip", z.ZodTypeAny, {
|
|
9256
9264
|
id: string | null;
|
|
9257
9265
|
title: string | null;
|
|
@@ -9694,6 +9702,7 @@ export declare const campaignActivityCreateSchema: z.ZodDiscriminatedUnion<"type
|
|
|
9694
9702
|
};
|
|
9695
9703
|
}>>;
|
|
9696
9704
|
statusSynced: z.ZodNullable<z.ZodBoolean>;
|
|
9705
|
+
skipBidding: z.ZodOptional<z.ZodBoolean>;
|
|
9697
9706
|
}>, "processed">, "id" | "title" | "datetime" | "jobUrl">, "strip", z.ZodTypeAny, {
|
|
9698
9707
|
id: string | null;
|
|
9699
9708
|
title: string | null;
|
|
@@ -484,6 +484,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
484
484
|
};
|
|
485
485
|
}>>;
|
|
486
486
|
statusSynced: z.ZodNullable<z.ZodBoolean>;
|
|
487
|
+
skipBidding: z.ZodOptional<z.ZodBoolean>;
|
|
487
488
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
488
489
|
id: string | null;
|
|
489
490
|
title: string | null;
|
|
@@ -650,6 +651,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
650
651
|
interviewing: number;
|
|
651
652
|
invitesSent: number;
|
|
652
653
|
} | null | undefined;
|
|
654
|
+
skipBidding?: boolean | undefined;
|
|
653
655
|
}, {
|
|
654
656
|
id: string | null;
|
|
655
657
|
title: string | null;
|
|
@@ -816,6 +818,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
816
818
|
interviewing: number;
|
|
817
819
|
invitesSent: number;
|
|
818
820
|
} | null | undefined;
|
|
821
|
+
skipBidding?: boolean | undefined;
|
|
819
822
|
}>;
|
|
820
823
|
export declare const leadResponseSchema: z.ZodObject<{
|
|
821
824
|
leads: z.ZodArray<z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
@@ -1226,6 +1229,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1226
1229
|
};
|
|
1227
1230
|
}>>;
|
|
1228
1231
|
statusSynced: z.ZodNullable<z.ZodBoolean>;
|
|
1232
|
+
skipBidding: z.ZodOptional<z.ZodBoolean>;
|
|
1229
1233
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
1230
1234
|
id: string | null;
|
|
1231
1235
|
title: string | null;
|
|
@@ -1392,6 +1396,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1392
1396
|
interviewing: number;
|
|
1393
1397
|
invitesSent: number;
|
|
1394
1398
|
} | null | undefined;
|
|
1399
|
+
skipBidding?: boolean | undefined;
|
|
1395
1400
|
}, {
|
|
1396
1401
|
id: string | null;
|
|
1397
1402
|
title: string | null;
|
|
@@ -1558,6 +1563,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1558
1563
|
interviewing: number;
|
|
1559
1564
|
invitesSent: number;
|
|
1560
1565
|
} | null | undefined;
|
|
1566
|
+
skipBidding?: boolean | undefined;
|
|
1561
1567
|
}>, "many">;
|
|
1562
1568
|
nextCursor: z.ZodNullable<z.ZodString>;
|
|
1563
1569
|
hasMore: z.ZodBoolean;
|
|
@@ -1729,6 +1735,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1729
1735
|
interviewing: number;
|
|
1730
1736
|
invitesSent: number;
|
|
1731
1737
|
} | null | undefined;
|
|
1738
|
+
skipBidding?: boolean | undefined;
|
|
1732
1739
|
}[];
|
|
1733
1740
|
nextCursor: string | null;
|
|
1734
1741
|
hasMore: boolean;
|
|
@@ -1900,6 +1907,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1900
1907
|
interviewing: number;
|
|
1901
1908
|
invitesSent: number;
|
|
1902
1909
|
} | null | undefined;
|
|
1910
|
+
skipBidding?: boolean | undefined;
|
|
1903
1911
|
}[];
|
|
1904
1912
|
nextCursor: string | null;
|
|
1905
1913
|
hasMore: boolean;
|
|
@@ -2858,6 +2866,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2858
2866
|
};
|
|
2859
2867
|
}>>;
|
|
2860
2868
|
statusSynced: z.ZodNullable<z.ZodBoolean>;
|
|
2869
|
+
skipBidding: z.ZodOptional<z.ZodBoolean>;
|
|
2861
2870
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
2862
2871
|
id: string | null;
|
|
2863
2872
|
title: string | null;
|
|
@@ -3024,6 +3033,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3024
3033
|
interviewing: number;
|
|
3025
3034
|
invitesSent: number;
|
|
3026
3035
|
} | null | undefined;
|
|
3036
|
+
skipBidding?: boolean | undefined;
|
|
3027
3037
|
}, {
|
|
3028
3038
|
id: string | null;
|
|
3029
3039
|
title: string | null;
|
|
@@ -3190,6 +3200,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3190
3200
|
interviewing: number;
|
|
3191
3201
|
invitesSent: number;
|
|
3192
3202
|
} | null | undefined;
|
|
3203
|
+
skipBidding?: boolean | undefined;
|
|
3193
3204
|
}>]>, "many">;
|
|
3194
3205
|
lastMonthTotal: z.ZodOptional<z.ZodNumber>;
|
|
3195
3206
|
lastMonthTotalWithEmptyFilters: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3474,6 +3485,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3474
3485
|
interviewing: number;
|
|
3475
3486
|
invitesSent: number;
|
|
3476
3487
|
} | null | undefined;
|
|
3488
|
+
skipBidding?: boolean | undefined;
|
|
3477
3489
|
})[];
|
|
3478
3490
|
total: number;
|
|
3479
3491
|
error?: string | undefined;
|
|
@@ -3759,6 +3771,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3759
3771
|
interviewing: number;
|
|
3760
3772
|
invitesSent: number;
|
|
3761
3773
|
} | null | undefined;
|
|
3774
|
+
skipBidding?: boolean | undefined;
|
|
3762
3775
|
})[];
|
|
3763
3776
|
total: number;
|
|
3764
3777
|
error?: string | undefined;
|
|
@@ -4194,6 +4207,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4194
4207
|
};
|
|
4195
4208
|
}>>;
|
|
4196
4209
|
statusSynced: z.ZodNullable<z.ZodBoolean>;
|
|
4210
|
+
skipBidding: z.ZodOptional<z.ZodBoolean>;
|
|
4197
4211
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
4198
4212
|
id: string | null;
|
|
4199
4213
|
title: string | null;
|
|
@@ -4360,6 +4374,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4360
4374
|
interviewing: number;
|
|
4361
4375
|
invitesSent: number;
|
|
4362
4376
|
} | null | undefined;
|
|
4377
|
+
skipBidding?: boolean | undefined;
|
|
4363
4378
|
}, {
|
|
4364
4379
|
id: string | null;
|
|
4365
4380
|
title: string | null;
|
|
@@ -4526,6 +4541,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4526
4541
|
interviewing: number;
|
|
4527
4542
|
invitesSent: number;
|
|
4528
4543
|
} | null | undefined;
|
|
4544
|
+
skipBidding?: boolean | undefined;
|
|
4529
4545
|
}>, "many">;
|
|
4530
4546
|
pagination: z.ZodObject<{
|
|
4531
4547
|
hasMore: z.ZodBoolean;
|
|
@@ -4707,6 +4723,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4707
4723
|
interviewing: number;
|
|
4708
4724
|
invitesSent: number;
|
|
4709
4725
|
} | null | undefined;
|
|
4726
|
+
skipBidding?: boolean | undefined;
|
|
4710
4727
|
}[];
|
|
4711
4728
|
pagination: {
|
|
4712
4729
|
nextCursor: string | null;
|
|
@@ -4880,6 +4897,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4880
4897
|
interviewing: number;
|
|
4881
4898
|
invitesSent: number;
|
|
4882
4899
|
} | null | undefined;
|
|
4900
|
+
skipBidding?: boolean | undefined;
|
|
4883
4901
|
}[];
|
|
4884
4902
|
pagination: {
|
|
4885
4903
|
nextCursor: string | null;
|