lancer-shared 1.2.265 → 1.2.266

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.
@@ -6212,6 +6212,7 @@ const upworkJobSchema = objectType({
6212
6212
  region: regionSchema.nullable(),
6213
6213
  bidRange: bidRangeSchema.nullable(),
6214
6214
  jobActivity: jobActivitySchema.nullable(),
6215
+ occupation: stringType().nullable(),
6215
6216
  activityUpdates: z
6216
6217
  .union([z.literal(1), z.literal(2), z.literal(3)])
6217
6218
  .nullable(),
@@ -6836,6 +6837,7 @@ const getCampaignLeadsStatusEnum = z.enum([
6836
6837
  'contacted',
6837
6838
  'viewed',
6838
6839
  'replied',
6840
+ 'rejected',
6839
6841
  ]);
6840
6842
  const getCampaignLeadsRequestQuerySchema = z.object({
6841
6843
  cursor: z.string().optional(),
@@ -7034,6 +7036,7 @@ const getOrganizationLeadsStatusEnum = z.enum([
7034
7036
  'contacted',
7035
7037
  'viewed',
7036
7038
  'replied',
7039
+ 'rejected',
7037
7040
  ]);
7038
7041
  const getOrganizationLeadsRequestQuerySchema = z.object({
7039
7042
  cursor: z.string().optional(),