lancer-shared 1.2.274 → 1.2.276

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.
@@ -7165,6 +7165,7 @@ const organizationSchema = objectType({
7165
7165
  nextProposalStatusSyncTime: numberType().nullable(),
7166
7166
  usBidderAccountSubscription: oneTimePaymentsSchema.optional(),
7167
7167
  insufficientConnectsAction: insufficientConnectsActionEnum.nullable(),
7168
+ numberOfConnectsToBuyWhenInsufficient: numberType().min(50).max(1001).nullable(),
7168
7169
  onboardingCompletions: recordType(stringType(), booleanType()).nullable(),
7169
7170
  });
7170
7171
  const organizationUpdateSchema = objectType({ planId: stringType() });
@@ -7360,6 +7361,7 @@ const campaignAIMetricsSchema = z.object({
7360
7361
 
7361
7362
  const campaignAnalyticsSchema = z.object({
7362
7363
  contacted: z.number().optional(),
7364
+ contactedSync: z.number().optional(),
7363
7365
  viewed: z.number().optional(),
7364
7366
  replied: z.number().optional(),
7365
7367
  won: z.number().optional(),
@@ -7375,6 +7377,7 @@ const campaignAnalyticsStatsSchema = z.object({
7375
7377
  statsByDate: z.array(z.object({
7376
7378
  label: z.string(),
7377
7379
  contacted: z.number(),
7380
+ contactedSync: z.number(),
7378
7381
  viewed: z.number(),
7379
7382
  replied: z.number(),
7380
7383
  won: z.number(),
@@ -7384,6 +7387,7 @@ const campaignAnalyticsStatsSchema = z.object({
7384
7387
  const campaignAnalyticsResponseSchema = z.object({
7385
7388
  jobsAnalyzed: z.number(),
7386
7389
  contacted: z.number(),
7390
+ contactedSync: z.number(),
7387
7391
  viewed: z.number(),
7388
7392
  replied: z.number(),
7389
7393
  won: z.number(),
@@ -8206,6 +8210,11 @@ const bidPayloadProposalDataSchema = z.object({
8206
8210
  biddingFixedHourlyRate: z.number().nullable(),
8207
8211
  alreadyHiredAction: alreadyHiredActionEnum,
8208
8212
  insufficientConnectsAction: insufficientConnectsActionEnum,
8213
+ numberOfConnectsToBuyWhenInsufficient: z
8214
+ .number()
8215
+ .min(50)
8216
+ .max(1001)
8217
+ .nullable(),
8209
8218
  isHourlyRate: z.boolean(),
8210
8219
  jobMinHourlyRate: z.number().nullable(),
8211
8220
  jobMaxHourlyRate: z.number().nullable(),