lancer-shared 1.2.279 → 1.2.281
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 +3 -0
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +3 -0
- package/dist/bundle.esm.js.map +1 -1
- package/dist/schemas/agent/index.d.ts +5 -0
- package/dist/schemas/bidder/bid.d.ts +49 -0
- package/dist/schemas/campaign/campaign-analytics.d.ts +17 -0
- package/dist/schemas/campaign/campaign.d.ts +9 -0
- package/dist/schemas/lead/index.d.ts +18 -0
- package/dist/schemas/logger/log-event.d.ts +4 -1
- package/dist/schemas/scraper/scrape-payload.d.ts +10 -0
- package/package.json +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -6882,6 +6882,7 @@ const leadSchema = upworkJobSchema
|
|
|
6882
6882
|
biddingDelayInMinutes: numberType().nullable(),
|
|
6883
6883
|
checkFeedbackStatusCreatedAt: numberType().nullable(),
|
|
6884
6884
|
biddingScheduledAt: numberType().nullable(),
|
|
6885
|
+
coverLetterTemplateId: stringType().nullable(),
|
|
6885
6886
|
wonAmount: numberType().optional(),
|
|
6886
6887
|
feedbackCheckTaskId: stringType().nullable(),
|
|
6887
6888
|
bidDecision: z.enum(['proceeded', 'rejected']).nullable(),
|
|
@@ -7323,6 +7324,7 @@ const campaignSchema = z.object({
|
|
|
7323
7324
|
status: campaignStatusSchema.optional(),
|
|
7324
7325
|
bidConfig: bidConfigSchema.nullable(),
|
|
7325
7326
|
coverLetterTemplateId: z.string().nullable(),
|
|
7327
|
+
coverLetterTemplatesIds: z.array(z.string()).nullable(),
|
|
7326
7328
|
priority: z.number().nullable(),
|
|
7327
7329
|
coverLetterTemplate: coverLetterTemplateSchema.nullable(),
|
|
7328
7330
|
organizationProfileId: z.string().nullable(),
|
|
@@ -9039,6 +9041,7 @@ const proposalCompleteEventMetadataSchema = objectType({
|
|
|
9039
9041
|
provider: z.string().optional(),
|
|
9040
9042
|
promptTokens: z.number().optional(),
|
|
9041
9043
|
completionTokens: z.number().optional(),
|
|
9044
|
+
coverLetterTemplateId: z.string().optional(),
|
|
9042
9045
|
messages: z
|
|
9043
9046
|
.array(objectType({
|
|
9044
9047
|
role: z.string(),
|