lancer-shared 1.2.262 → 1.2.263

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.
@@ -6726,6 +6726,7 @@ const leadStatusEnum = z.enum([
6726
6726
  'viewed',
6727
6727
  'replied',
6728
6728
  'biddingProcessing',
6729
+ 'biddingFailed',
6729
6730
  'won',
6730
6731
  ]);
6731
6732
  const updateLeadStatusSchema = z.object({
@@ -6794,6 +6795,7 @@ const leadSchema = upworkJobSchema
6794
6795
  inQueue: booleanType().nullable(),
6795
6796
  biddingDelayInMinutes: numberType().nullable(),
6796
6797
  checkFeedbackStatusCreatedAt: numberType().nullable(),
6798
+ biddingScheduledAt: numberType().nullable(),
6797
6799
  wonAmount: numberType().optional(),
6798
6800
  feedbackCheckTaskId: stringType().nullable(),
6799
6801
  bidDecision: z.enum(['proceeded', 'rejected']).nullable(),
@@ -7399,6 +7401,7 @@ const updateCampaignAnalyticsSchema = z.object({
7399
7401
  'unsuitableJobs',
7400
7402
  'wonAmount',
7401
7403
  'biddingProcessing',
7404
+ 'biddingFailed',
7402
7405
  ])),
7403
7406
  });
7404
7407