lancer-shared 1.2.279 → 1.2.281

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.
@@ -6880,6 +6880,7 @@ const leadSchema = upworkJobSchema
6880
6880
  biddingDelayInMinutes: numberType().nullable(),
6881
6881
  checkFeedbackStatusCreatedAt: numberType().nullable(),
6882
6882
  biddingScheduledAt: numberType().nullable(),
6883
+ coverLetterTemplateId: stringType().nullable(),
6883
6884
  wonAmount: numberType().optional(),
6884
6885
  feedbackCheckTaskId: stringType().nullable(),
6885
6886
  bidDecision: z.enum(['proceeded', 'rejected']).nullable(),
@@ -7321,6 +7322,7 @@ const campaignSchema = z.object({
7321
7322
  status: campaignStatusSchema.optional(),
7322
7323
  bidConfig: bidConfigSchema.nullable(),
7323
7324
  coverLetterTemplateId: z.string().nullable(),
7325
+ coverLetterTemplatesIds: z.array(z.string()).nullable(),
7324
7326
  priority: z.number().nullable(),
7325
7327
  coverLetterTemplate: coverLetterTemplateSchema.nullable(),
7326
7328
  organizationProfileId: z.string().nullable(),
@@ -9037,6 +9039,7 @@ const proposalCompleteEventMetadataSchema = objectType({
9037
9039
  provider: z.string().optional(),
9038
9040
  promptTokens: z.number().optional(),
9039
9041
  completionTokens: z.number().optional(),
9042
+ coverLetterTemplateId: z.string().optional(),
9040
9043
  messages: z
9041
9044
  .array(objectType({
9042
9045
  role: z.string(),