lancer-shared 1.2.264 → 1.2.266
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 +9 -0
- package/dist/schemas/job/index.d.ts +3 -0
- package/dist/schemas/lead/index.d.ts +27 -4
- package/dist/schemas/logger/feed/feed-job-enrich.d.ts +5 -0
- package/dist/schemas/organization/organization-leads.d.ts +4 -4
- package/dist/schemas/scraper/scrape-payload.d.ts +5 -0
- package/dist/schemas/scraper/scrape-result.d.ts +5 -0
- package/package.json +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -6212,6 +6212,7 @@ const upworkJobSchema = objectType({
|
|
|
6212
6212
|
region: regionSchema.nullable(),
|
|
6213
6213
|
bidRange: bidRangeSchema.nullable(),
|
|
6214
6214
|
jobActivity: jobActivitySchema.nullable(),
|
|
6215
|
+
occupation: stringType().nullable(),
|
|
6215
6216
|
activityUpdates: z
|
|
6216
6217
|
.union([z.literal(1), z.literal(2), z.literal(3)])
|
|
6217
6218
|
.nullable(),
|
|
@@ -6836,6 +6837,7 @@ const getCampaignLeadsStatusEnum = z.enum([
|
|
|
6836
6837
|
'contacted',
|
|
6837
6838
|
'viewed',
|
|
6838
6839
|
'replied',
|
|
6840
|
+
'rejected',
|
|
6839
6841
|
]);
|
|
6840
6842
|
const getCampaignLeadsRequestQuerySchema = z.object({
|
|
6841
6843
|
cursor: z.string().optional(),
|
|
@@ -7034,6 +7036,7 @@ const getOrganizationLeadsStatusEnum = z.enum([
|
|
|
7034
7036
|
'contacted',
|
|
7035
7037
|
'viewed',
|
|
7036
7038
|
'replied',
|
|
7039
|
+
'rejected',
|
|
7037
7040
|
]);
|
|
7038
7041
|
const getOrganizationLeadsRequestQuerySchema = z.object({
|
|
7039
7042
|
cursor: z.string().optional(),
|