lancer-shared 1.2.213 → 1.2.215

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.
@@ -11196,6 +11196,7 @@ const jobFiltersSchema = z.object({
11196
11196
  })
11197
11197
  .nullable(),
11198
11198
  includeClientsWithZeroReviews: z.boolean().nullable(),
11199
+ includeClientsWithLessThanPostedJobs: z.boolean().nullable(),
11199
11200
  vendorQualifications: z
11200
11201
  .object({
11201
11202
  locationIncludes: z.array(z.string()).nullable(),
@@ -131,6 +131,7 @@ export declare const jobFiltersSchema: z.ZodObject<{
131
131
  enterpriseClient?: "all" | "true" | "false" | undefined;
132
132
  }>>;
133
133
  includeClientsWithZeroReviews: z.ZodNullable<z.ZodBoolean>;
134
+ includeClientsWithLessThanPostedJobs: z.ZodNullable<z.ZodBoolean>;
134
135
  vendorQualifications: z.ZodNullable<z.ZodObject<{
135
136
  locationIncludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
136
137
  locationExcludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
@@ -203,6 +204,7 @@ export declare const jobFiltersSchema: z.ZodObject<{
203
204
  memberSinceTo: string | null;
204
205
  } | null;
205
206
  includeClientsWithZeroReviews: boolean | null;
207
+ includeClientsWithLessThanPostedJobs: boolean | null;
206
208
  vendorQualifications: {
207
209
  locationIncludes: string[] | null;
208
210
  locationExcludes: string[] | null;
@@ -259,6 +261,7 @@ export declare const jobFiltersSchema: z.ZodObject<{
259
261
  enterpriseClient?: "all" | "true" | "false" | undefined;
260
262
  } | null;
261
263
  includeClientsWithZeroReviews: boolean | null;
264
+ includeClientsWithLessThanPostedJobs: boolean | null;
262
265
  vendorQualifications: {
263
266
  locationIncludes: string[] | null;
264
267
  locationExcludes: string[] | null;
@@ -329,7 +329,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
329
329
  answer: string;
330
330
  }>, "many">>;
331
331
  agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
332
- leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "viewed", "replied", "won"]>>;
332
+ leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "won"]>>;
333
333
  biddingAmount: z.ZodNullable<z.ZodNumber>;
334
334
  boosted: z.ZodNullable<z.ZodBoolean>;
335
335
  boostingAmount: z.ZodNullable<z.ZodNumber>;
@@ -443,7 +443,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
443
443
  answer: string;
444
444
  }[] | null;
445
445
  agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
446
- leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
446
+ leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "won" | null;
447
447
  biddingAmount: number | null;
448
448
  boosted: boolean | null;
449
449
  boostingAmount: number | null;
@@ -578,7 +578,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
578
578
  answer: string;
579
579
  }[] | null;
580
580
  agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
581
- leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
581
+ leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "won" | null;
582
582
  biddingAmount: number | null;
583
583
  boosted: boolean | null;
584
584
  boostingAmount: number | null;
@@ -930,7 +930,7 @@ export declare const leadResponseSchema: z.ZodObject<{
930
930
  answer: string;
931
931
  }>, "many">>;
932
932
  agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
933
- leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "viewed", "replied", "won"]>>;
933
+ leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "won"]>>;
934
934
  biddingAmount: z.ZodNullable<z.ZodNumber>;
935
935
  boosted: z.ZodNullable<z.ZodBoolean>;
936
936
  boostingAmount: z.ZodNullable<z.ZodNumber>;
@@ -1044,7 +1044,7 @@ export declare const leadResponseSchema: z.ZodObject<{
1044
1044
  answer: string;
1045
1045
  }[] | null;
1046
1046
  agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
1047
- leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
1047
+ leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "won" | null;
1048
1048
  biddingAmount: number | null;
1049
1049
  boosted: boolean | null;
1050
1050
  boostingAmount: number | null;
@@ -1179,7 +1179,7 @@ export declare const leadResponseSchema: z.ZodObject<{
1179
1179
  answer: string;
1180
1180
  }[] | null;
1181
1181
  agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
1182
- leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
1182
+ leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "won" | null;
1183
1183
  biddingAmount: number | null;
1184
1184
  boosted: boolean | null;
1185
1185
  boostingAmount: number | null;
@@ -1319,7 +1319,7 @@ export declare const leadResponseSchema: z.ZodObject<{
1319
1319
  answer: string;
1320
1320
  }[] | null;
1321
1321
  agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
1322
- leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
1322
+ leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "won" | null;
1323
1323
  biddingAmount: number | null;
1324
1324
  boosted: boolean | null;
1325
1325
  boostingAmount: number | null;
@@ -1459,7 +1459,7 @@ export declare const leadResponseSchema: z.ZodObject<{
1459
1459
  answer: string;
1460
1460
  }[] | null;
1461
1461
  agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
1462
- leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
1462
+ leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "won" | null;
1463
1463
  biddingAmount: number | null;
1464
1464
  boosted: boolean | null;
1465
1465
  boostingAmount: number | null;
@@ -2351,7 +2351,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
2351
2351
  answer: string;
2352
2352
  }>, "many">>;
2353
2353
  agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
2354
- leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "viewed", "replied", "won"]>>;
2354
+ leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "won"]>>;
2355
2355
  biddingAmount: z.ZodNullable<z.ZodNumber>;
2356
2356
  boosted: z.ZodNullable<z.ZodBoolean>;
2357
2357
  boostingAmount: z.ZodNullable<z.ZodNumber>;
@@ -2465,7 +2465,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
2465
2465
  answer: string;
2466
2466
  }[] | null;
2467
2467
  agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
2468
- leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
2468
+ leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "won" | null;
2469
2469
  biddingAmount: number | null;
2470
2470
  boosted: boolean | null;
2471
2471
  boostingAmount: number | null;
@@ -2600,7 +2600,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
2600
2600
  answer: string;
2601
2601
  }[] | null;
2602
2602
  agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
2603
- leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
2603
+ leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "won" | null;
2604
2604
  biddingAmount: number | null;
2605
2605
  boosted: boolean | null;
2606
2606
  boostingAmount: number | null;
@@ -2851,7 +2851,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
2851
2851
  answer: string;
2852
2852
  }[] | null;
2853
2853
  agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
2854
- leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
2854
+ leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "won" | null;
2855
2855
  biddingAmount: number | null;
2856
2856
  boosted: boolean | null;
2857
2857
  boostingAmount: number | null;
@@ -3102,7 +3102,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
3102
3102
  answer: string;
3103
3103
  }[] | null;
3104
3104
  agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
3105
- leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
3105
+ leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "won" | null;
3106
3106
  biddingAmount: number | null;
3107
3107
  boosted: boolean | null;
3108
3108
  boostingAmount: number | null;
@@ -3470,7 +3470,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
3470
3470
  answer: string;
3471
3471
  }>, "many">>;
3472
3472
  agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
3473
- leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "viewed", "replied", "won"]>>;
3473
+ leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "won"]>>;
3474
3474
  biddingAmount: z.ZodNullable<z.ZodNumber>;
3475
3475
  boosted: z.ZodNullable<z.ZodBoolean>;
3476
3476
  boostingAmount: z.ZodNullable<z.ZodNumber>;
@@ -3584,7 +3584,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
3584
3584
  answer: string;
3585
3585
  }[] | null;
3586
3586
  agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
3587
- leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
3587
+ leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "won" | null;
3588
3588
  biddingAmount: number | null;
3589
3589
  boosted: boolean | null;
3590
3590
  boostingAmount: number | null;
@@ -3719,7 +3719,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
3719
3719
  answer: string;
3720
3720
  }[] | null;
3721
3721
  agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
3722
- leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
3722
+ leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "won" | null;
3723
3723
  biddingAmount: number | null;
3724
3724
  boosted: boolean | null;
3725
3725
  boostingAmount: number | null;
@@ -3869,7 +3869,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
3869
3869
  answer: string;
3870
3870
  }[] | null;
3871
3871
  agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
3872
- leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
3872
+ leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "won" | null;
3873
3873
  biddingAmount: number | null;
3874
3874
  boosted: boolean | null;
3875
3875
  boostingAmount: number | null;
@@ -4011,7 +4011,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
4011
4011
  answer: string;
4012
4012
  }[] | null;
4013
4013
  agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
4014
- leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "viewed" | "replied" | "won" | null;
4014
+ leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "won" | null;
4015
4015
  biddingAmount: number | null;
4016
4016
  boosted: boolean | null;
4017
4017
  boostingAmount: number | null;
@@ -4071,9 +4071,7 @@ export interface Lead extends z.infer<typeof leadSchema> {
4071
4071
  agentStatus: LeadAgentStatus | null;
4072
4072
  leadStatus: LeadStatus | null;
4073
4073
  }
4074
- export interface LeadResponse extends z.infer<typeof leadResponseSchema> {
4075
- leads: Lead[];
4076
- }
4074
+ export type LeadResponse = z.infer<typeof leadResponseSchema>;
4077
4075
  export type FindLeadsRequest = z.infer<typeof findLeadsRequestSchema>;
4078
4076
  export type FindLeadsResponse = z.infer<typeof findLeadsResponseSchema>;
4079
4077
  export type GetCampaignLeadsRequestQuery = z.infer<typeof getCampaignLeadsRequestQuerySchema>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lancer-shared",
3
- "version": "1.2.213",
3
+ "version": "1.2.215",
4
4
  "description": "This package contains shared stuff.",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "dist/bundle.cjs.js",