lancer-shared 1.2.270 → 1.2.272
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 +13 -6
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +13 -7
- package/dist/bundle.esm.js.map +1 -1
- package/dist/constants/routes.d.ts +1 -1
- package/dist/schemas/account/bidder-account.d.ts +20 -20
- package/dist/schemas/account/scraper-account.d.ts +22 -22
- package/dist/schemas/agent/index.d.ts +216 -216
- package/dist/schemas/agent/proposal.d.ts +2 -2
- package/dist/schemas/bidder/bid.d.ts +2062 -2043
- package/dist/schemas/campaign/campaign-analytics.d.ts +840 -784
- package/dist/schemas/campaign/campaign-chat-bot.d.ts +9 -9
- package/dist/schemas/campaign/campaign.d.ts +378 -378
- package/dist/schemas/dashboard/index.d.ts +12 -12
- package/dist/schemas/golden-dataset/sample.d.ts +8 -8
- package/dist/schemas/invoice/index.d.ts +4 -4
- package/dist/schemas/job/index.d.ts +112 -112
- package/dist/schemas/job/job-api.d.ts +6 -6
- package/dist/schemas/job/job-details.d.ts +74 -74
- package/dist/schemas/job/job-filters.d.ts +47 -47
- package/dist/schemas/job/job-listing.d.ts +22 -22
- package/dist/schemas/job/nuxt.d.ts +24 -24
- package/dist/schemas/lead/index.d.ts +845 -844
- package/dist/schemas/lead/insufficient-connects-action.d.ts +3 -0
- package/dist/schemas/lead/lead-status.d.ts +10 -10
- package/dist/schemas/logger/feed/feed-chunk-enrich.d.ts +6 -6
- package/dist/schemas/logger/feed/feed-enrich.d.ts +6 -6
- package/dist/schemas/logger/feed/feed-job-enrich.d.ts +140 -140
- package/dist/schemas/logger/feed/feed-scrape.d.ts +6 -6
- package/dist/schemas/logger/log-event.d.ts +72 -72
- package/dist/schemas/logger/scraper-events.d.ts +28 -28
- package/dist/schemas/notifications/index.d.ts +4 -4
- package/dist/schemas/organization/billing.d.ts +2 -2
- package/dist/schemas/organization/index.d.ts +86 -66
- package/dist/schemas/organization/organization-leads.d.ts +4 -4
- package/dist/schemas/organization/subscription.d.ts +15 -9
- package/dist/schemas/plan/index.d.ts +22 -22
- package/dist/schemas/proxy/proxy.d.ts +2 -2
- package/dist/schemas/scraper/scrape-payload.d.ts +514 -495
- package/dist/schemas/scraper/scrape-result.d.ts +136 -136
- package/dist/schemas/talent/index.d.ts +148 -148
- package/dist/schemas/transaction/index.d.ts +2 -2
- package/dist/schemas/usage/index.d.ts +2 -2
- package/dist/schemas/usage-event/index.d.ts +8 -8
- package/package.json +1 -1
|
@@ -10,30 +10,30 @@ export declare const updateLeadStatusSchema: z.ZodObject<{
|
|
|
10
10
|
userId: z.ZodOptional<z.ZodString>;
|
|
11
11
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
12
12
|
}, "strip", z.ZodTypeAny, {
|
|
13
|
-
status: "rejected" | "
|
|
14
|
-
campaignId: string;
|
|
15
|
-
organizationId: string;
|
|
13
|
+
status: "rejected" | "biddingFailed" | "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "viewed" | "replied" | "biddingScheduled" | "alreadyHired" | "won";
|
|
16
14
|
leadId: string;
|
|
17
|
-
|
|
15
|
+
organizationId: string;
|
|
16
|
+
campaignId: string;
|
|
18
17
|
proposalId?: string | undefined;
|
|
18
|
+
userId?: string | undefined;
|
|
19
19
|
wonAmount?: number | undefined;
|
|
20
20
|
}, {
|
|
21
|
-
status: "rejected" | "
|
|
22
|
-
campaignId: string;
|
|
23
|
-
organizationId: string;
|
|
21
|
+
status: "rejected" | "biddingFailed" | "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "viewed" | "replied" | "biddingScheduled" | "alreadyHired" | "won";
|
|
24
22
|
leadId: string;
|
|
25
|
-
|
|
23
|
+
organizationId: string;
|
|
24
|
+
campaignId: string;
|
|
26
25
|
proposalId?: string | undefined;
|
|
26
|
+
userId?: string | undefined;
|
|
27
27
|
wonAmount?: number | undefined;
|
|
28
28
|
}>;
|
|
29
29
|
export declare const updateOrganizationLeadsStatusPayloadSchema: z.ZodArray<z.ZodObject<{
|
|
30
30
|
applicationUid: z.ZodString;
|
|
31
31
|
status: z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>;
|
|
32
32
|
}, "strip", z.ZodTypeAny, {
|
|
33
|
-
status: "rejected" | "
|
|
33
|
+
status: "rejected" | "biddingFailed" | "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "viewed" | "replied" | "biddingScheduled" | "alreadyHired" | "won";
|
|
34
34
|
applicationUid: string;
|
|
35
35
|
}, {
|
|
36
|
-
status: "rejected" | "
|
|
36
|
+
status: "rejected" | "biddingFailed" | "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "viewed" | "replied" | "biddingScheduled" | "alreadyHired" | "won";
|
|
37
37
|
applicationUid: string;
|
|
38
38
|
}>, "many">;
|
|
39
39
|
export type LeadStatus = z.infer<typeof leadStatusEnum>;
|
|
@@ -7,14 +7,14 @@ export declare const feedChunkEnrichStartedEventMetadata: z.ZodObject<{
|
|
|
7
7
|
feedEnrichId: z.ZodString;
|
|
8
8
|
feedScrapeId: z.ZodString;
|
|
9
9
|
}, "strip", z.ZodTypeAny, {
|
|
10
|
-
region: "
|
|
10
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
11
11
|
accountId: string;
|
|
12
12
|
feedScrapeId: string;
|
|
13
13
|
accountEmail: string;
|
|
14
14
|
chunkSize: number;
|
|
15
15
|
feedEnrichId: string;
|
|
16
16
|
}, {
|
|
17
|
-
region: "
|
|
17
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
18
18
|
accountId: string;
|
|
19
19
|
feedScrapeId: string;
|
|
20
20
|
accountEmail: string;
|
|
@@ -33,7 +33,7 @@ export declare const feedChunkEnrichCompletedEventMetadata: z.ZodObject<z.object
|
|
|
33
33
|
successfulEnrichJobCount: z.ZodNumber;
|
|
34
34
|
failedEnrichJobCount: z.ZodNumber;
|
|
35
35
|
}>, "strip", z.ZodTypeAny, {
|
|
36
|
-
region: "
|
|
36
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
37
37
|
duration: string;
|
|
38
38
|
accountId: string;
|
|
39
39
|
feedScrapeId: string;
|
|
@@ -43,7 +43,7 @@ export declare const feedChunkEnrichCompletedEventMetadata: z.ZodObject<z.object
|
|
|
43
43
|
successfulEnrichJobCount: number;
|
|
44
44
|
failedEnrichJobCount: number;
|
|
45
45
|
}, {
|
|
46
|
-
region: "
|
|
46
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
47
47
|
duration: string;
|
|
48
48
|
accountId: string;
|
|
49
49
|
feedScrapeId: string;
|
|
@@ -66,7 +66,7 @@ export declare const feedChunkEnrichFailedEventMetadata: z.ZodObject<z.objectUti
|
|
|
66
66
|
errorStack: z.ZodString;
|
|
67
67
|
}>, "strip", z.ZodTypeAny, {
|
|
68
68
|
errorCode: string;
|
|
69
|
-
region: "
|
|
69
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
70
70
|
accountId: string;
|
|
71
71
|
errorMessage: string;
|
|
72
72
|
feedScrapeId: string;
|
|
@@ -76,7 +76,7 @@ export declare const feedChunkEnrichFailedEventMetadata: z.ZodObject<z.objectUti
|
|
|
76
76
|
feedEnrichId: string;
|
|
77
77
|
}, {
|
|
78
78
|
errorCode: string;
|
|
79
|
-
region: "
|
|
79
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
80
80
|
accountId: string;
|
|
81
81
|
errorMessage: string;
|
|
82
82
|
feedScrapeId: string;
|
|
@@ -8,14 +8,14 @@ export declare const feedEnrichStartedEventMetadata: z.ZodObject<{
|
|
|
8
8
|
jobCount: z.ZodNumber;
|
|
9
9
|
}, "strip", z.ZodTypeAny, {
|
|
10
10
|
id: string;
|
|
11
|
-
region: "
|
|
11
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
12
12
|
feedScrapeId: string;
|
|
13
13
|
accountIds: string[];
|
|
14
14
|
accountEmails: string[];
|
|
15
15
|
jobCount: number;
|
|
16
16
|
}, {
|
|
17
17
|
id: string;
|
|
18
|
-
region: "
|
|
18
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
19
19
|
feedScrapeId: string;
|
|
20
20
|
accountIds: string[];
|
|
21
21
|
accountEmails: string[];
|
|
@@ -32,7 +32,7 @@ export declare const feedEnrichCompletedEventMetadata: z.ZodObject<z.objectUtil.
|
|
|
32
32
|
duration: z.ZodString;
|
|
33
33
|
}>, "strip", z.ZodTypeAny, {
|
|
34
34
|
id: string;
|
|
35
|
-
region: "
|
|
35
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
36
36
|
duration: string;
|
|
37
37
|
feedScrapeId: string;
|
|
38
38
|
accountIds: string[];
|
|
@@ -40,7 +40,7 @@ export declare const feedEnrichCompletedEventMetadata: z.ZodObject<z.objectUtil.
|
|
|
40
40
|
jobCount: number;
|
|
41
41
|
}, {
|
|
42
42
|
id: string;
|
|
43
|
-
region: "
|
|
43
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
44
44
|
duration: string;
|
|
45
45
|
feedScrapeId: string;
|
|
46
46
|
accountIds: string[];
|
|
@@ -61,7 +61,7 @@ export declare const feedEnrichFailedEventMetadata: z.ZodObject<z.objectUtil.ext
|
|
|
61
61
|
}>, "strip", z.ZodTypeAny, {
|
|
62
62
|
id: string;
|
|
63
63
|
errorCode: string;
|
|
64
|
-
region: "
|
|
64
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
65
65
|
errorMessage: string;
|
|
66
66
|
feedScrapeId: string;
|
|
67
67
|
accountIds: string[];
|
|
@@ -71,7 +71,7 @@ export declare const feedEnrichFailedEventMetadata: z.ZodObject<z.objectUtil.ext
|
|
|
71
71
|
}, {
|
|
72
72
|
id: string;
|
|
73
73
|
errorCode: string;
|
|
74
|
-
region: "
|
|
74
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
75
75
|
errorMessage: string;
|
|
76
76
|
feedScrapeId: string;
|
|
77
77
|
accountIds: string[];
|