lancer-shared 1.2.290 → 1.2.291

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.
@@ -7260,11 +7260,13 @@ const campaignExpensesSchema = z.object({
7260
7260
  boosted: z.number().default(0),
7261
7261
  });
7262
7262
 
7263
+ const bidAsEnum = z.enum(['agency', 'freelancer']);
7263
7264
  const bidConfigSchema = z.object({
7264
7265
  agencyName: z.string().nullable(),
7265
7266
  bidderId: z.string().nullable(),
7266
7267
  contractorName: z.string().nullable(),
7267
7268
  specialisedProfile: z.string().nullable(),
7269
+ bidAs: bidAsEnum.nullable(),
7268
7270
  });
7269
7271
  const campaignStatusSchema = z.union([
7270
7272
  z.literal('active'),
@@ -24234,6 +24236,7 @@ exports.agentStatusSchema = agentStatusSchema;
24234
24236
  exports.agentTaskResponseSchema = agentTaskResponseSchema;
24235
24237
  exports.aiConfigSchema = aiConfigSchema;
24236
24238
  exports.alreadyHiredActionEnum = alreadyHiredActionEnum;
24239
+ exports.bidAsEnum = bidAsEnum;
24237
24240
  exports.bidConfigSchema = bidConfigSchema;
24238
24241
  exports.bidDtoSchema = bidDtoSchema;
24239
24242
  exports.bidFailedSchema = bidFailedSchema;