lancer-shared 1.2.303 → 1.2.305
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 +4 -0
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +4 -0
- package/dist/bundle.esm.js.map +1 -1
- package/dist/schemas/account/bidder-account.d.ts +7 -0
- package/dist/schemas/agent/index.d.ts +158 -90
- package/dist/schemas/bidder/bid.d.ts +19 -0
- package/dist/schemas/campaign/campaign.d.ts +9 -0
- package/package.json +1 -1
package/dist/bundle.esm.js
CHANGED
|
@@ -6645,6 +6645,7 @@ const bidderAccountSchema = z.object({
|
|
|
6645
6645
|
googleOauthTokens: z.any().nullable(),
|
|
6646
6646
|
lastUsed: z.number().nullable(),
|
|
6647
6647
|
multiLoginProfileId: z.string().nullable(),
|
|
6648
|
+
gologinProfileId: z.string().nullable(),
|
|
6648
6649
|
proxyId: z.string().nullable(),
|
|
6649
6650
|
newProxyId: z.string().nullable(),
|
|
6650
6651
|
profilePhotoUrl: z.string().nullable(),
|
|
@@ -7006,6 +7007,7 @@ const agentGenerateProposalRequestSchema = z.object({
|
|
|
7006
7007
|
applyToLeads: z
|
|
7007
7008
|
.array(z.object({ leadId: z.string(), campaignId: z.string() }))
|
|
7008
7009
|
.optional(),
|
|
7010
|
+
clientReviews: z.array(clientReviewSchema).optional(),
|
|
7009
7011
|
});
|
|
7010
7012
|
const agentGenerateProposalResponseSchema = z.object({
|
|
7011
7013
|
coverLetter: z.string(),
|
|
@@ -7344,6 +7346,7 @@ const campaignSchema = z.object({
|
|
|
7344
7346
|
biddingFixedHourlyRate: z.number().nullable(),
|
|
7345
7347
|
alreadyHiredAction: alreadyHiredActionEnum,
|
|
7346
7348
|
biddingHourlyRatePercentage: z.number().min(0).max(100).nullable(),
|
|
7349
|
+
biddingFixedPriceRate: z.number().nullable(),
|
|
7347
7350
|
bidWithWarning: bidWithWarningEnum,
|
|
7348
7351
|
leadCounts: z.record(leadStatusEnum, z.number()).nullable(),
|
|
7349
7352
|
expenses: campaignExpensesSchema,
|
|
@@ -8286,6 +8289,7 @@ const bidPayloadProposalDataSchema = z.object({
|
|
|
8286
8289
|
insufficeintBoostConnectsAction: insufficeintBoostConnectsActionEnum,
|
|
8287
8290
|
biddingHourlyRateStrategy: biddingHourlyRateStrategyEnum,
|
|
8288
8291
|
biddingHourlyRatePercentage: z.number().min(0).max(100).nullable(),
|
|
8292
|
+
biddingFixedPriceRate: z.number().nullable(),
|
|
8289
8293
|
biddingFixedHourlyRate: z.number().nullable(),
|
|
8290
8294
|
alreadyHiredAction: alreadyHiredActionEnum,
|
|
8291
8295
|
insufficientConnectsAction: insufficientConnectsActionEnum,
|