lancer-shared 1.2.303 → 1.2.305

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.
@@ -6647,6 +6647,7 @@ const bidderAccountSchema = z.object({
6647
6647
  googleOauthTokens: z.any().nullable(),
6648
6648
  lastUsed: z.number().nullable(),
6649
6649
  multiLoginProfileId: z.string().nullable(),
6650
+ gologinProfileId: z.string().nullable(),
6650
6651
  proxyId: z.string().nullable(),
6651
6652
  newProxyId: z.string().nullable(),
6652
6653
  profilePhotoUrl: z.string().nullable(),
@@ -7008,6 +7009,7 @@ const agentGenerateProposalRequestSchema = z.object({
7008
7009
  applyToLeads: z
7009
7010
  .array(z.object({ leadId: z.string(), campaignId: z.string() }))
7010
7011
  .optional(),
7012
+ clientReviews: z.array(clientReviewSchema).optional(),
7011
7013
  });
7012
7014
  const agentGenerateProposalResponseSchema = z.object({
7013
7015
  coverLetter: z.string(),
@@ -7346,6 +7348,7 @@ const campaignSchema = z.object({
7346
7348
  biddingFixedHourlyRate: z.number().nullable(),
7347
7349
  alreadyHiredAction: alreadyHiredActionEnum,
7348
7350
  biddingHourlyRatePercentage: z.number().min(0).max(100).nullable(),
7351
+ biddingFixedPriceRate: z.number().nullable(),
7349
7352
  bidWithWarning: bidWithWarningEnum,
7350
7353
  leadCounts: z.record(leadStatusEnum, z.number()).nullable(),
7351
7354
  expenses: campaignExpensesSchema,
@@ -8288,6 +8291,7 @@ const bidPayloadProposalDataSchema = z.object({
8288
8291
  insufficeintBoostConnectsAction: insufficeintBoostConnectsActionEnum,
8289
8292
  biddingHourlyRateStrategy: biddingHourlyRateStrategyEnum,
8290
8293
  biddingHourlyRatePercentage: z.number().min(0).max(100).nullable(),
8294
+ biddingFixedPriceRate: z.number().nullable(),
8291
8295
  biddingFixedHourlyRate: z.number().nullable(),
8292
8296
  alreadyHiredAction: alreadyHiredActionEnum,
8293
8297
  insufficientConnectsAction: insufficientConnectsActionEnum,