lancer-shared 1.2.274 → 1.2.275

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() });
@@ -8204,6 +8205,11 @@ const bidPayloadProposalDataSchema = z.object({
8204
8205
  biddingFixedHourlyRate: z.number().nullable(),
8205
8206
  alreadyHiredAction: alreadyHiredActionEnum,
8206
8207
  insufficientConnectsAction: insufficientConnectsActionEnum,
8208
+ numberOfConnectsToBuyWhenInsufficient: z
8209
+ .number()
8210
+ .min(50)
8211
+ .max(1001)
8212
+ .nullable(),
8207
8213
  isHourlyRate: z.boolean(),
8208
8214
  jobMinHourlyRate: z.number().nullable(),
8209
8215
  jobMaxHourlyRate: z.number().nullable(),