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.
- package/dist/bundle.cjs.js +6 -0
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +6 -0
- package/dist/bundle.esm.js.map +1 -1
- package/dist/schemas/bidder/bid.d.ts +19 -0
- package/dist/schemas/campaign/campaign-analytics.d.ts +8 -0
- package/dist/schemas/organization/index.d.ts +4 -0
- package/dist/schemas/scraper/scrape-payload.d.ts +5 -0
- package/package.json +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -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() });
|
|
@@ -8206,6 +8207,11 @@ const bidPayloadProposalDataSchema = z.object({
|
|
|
8206
8207
|
biddingFixedHourlyRate: z.number().nullable(),
|
|
8207
8208
|
alreadyHiredAction: alreadyHiredActionEnum,
|
|
8208
8209
|
insufficientConnectsAction: insufficientConnectsActionEnum,
|
|
8210
|
+
numberOfConnectsToBuyWhenInsufficient: z
|
|
8211
|
+
.number()
|
|
8212
|
+
.min(50)
|
|
8213
|
+
.max(1001)
|
|
8214
|
+
.nullable(),
|
|
8209
8215
|
isHourlyRate: z.boolean(),
|
|
8210
8216
|
jobMinHourlyRate: z.number().nullable(),
|
|
8211
8217
|
jobMaxHourlyRate: z.number().nullable(),
|