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