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.esm.js
CHANGED
|
@@ -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(),
|