lancer-shared 1.2.302 → 1.2.303
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 +1 -0
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +1 -0
- package/dist/bundle.esm.js.map +1 -1
- package/dist/schemas/account/bidder-account.d.ts +40 -40
- package/dist/schemas/account/scraper-account.d.ts +27 -27
- package/dist/schemas/agent/index.d.ts +273 -273
- package/dist/schemas/agent/proposal.d.ts +4 -4
- package/dist/schemas/bidder/bid.d.ts +2358 -2358
- package/dist/schemas/campaign/campaign-analytics.d.ts +1404 -1404
- package/dist/schemas/campaign/campaign-chat-bot.d.ts +24 -24
- package/dist/schemas/campaign/campaign-expenses.d.ts +2 -2
- package/dist/schemas/campaign/campaign-insights.d.ts +12 -12
- package/dist/schemas/campaign/campaign.d.ts +566 -566
- package/dist/schemas/campaign/sequence/boost-node.d.ts +2 -2
- package/dist/schemas/campaign/sequence/client-size-node.d.ts +8 -8
- package/dist/schemas/campaign/sequence/client-spent-node.d.ts +16 -16
- package/dist/schemas/campaign/sequence/hire-rate-node.d.ts +16 -16
- package/dist/schemas/campaign/sequence/hourly-rate-node.d.ts +16 -16
- package/dist/schemas/campaign/sequence/rating-node.d.ts +16 -16
- package/dist/schemas/campaign/sequence/suitability-node.d.ts +16 -16
- package/dist/schemas/dashboard/index.d.ts +46 -46
- package/dist/schemas/golden-dataset/sample.d.ts +12 -12
- package/dist/schemas/infrastructure/index.d.ts +8 -8
- package/dist/schemas/invoice/index.d.ts +55 -55
- package/dist/schemas/job/index.d.ts +189 -189
- package/dist/schemas/job/job-api.d.ts +4 -4
- package/dist/schemas/job/job-details.d.ts +726 -726
- package/dist/schemas/job/job-filters.d.ts +55 -55
- package/dist/schemas/job/job-listing.d.ts +96 -96
- package/dist/schemas/job/nuxt.d.ts +130 -130
- package/dist/schemas/lead/index.d.ts +1040 -1040
- package/dist/schemas/lead/lead-status.d.ts +4 -4
- package/dist/schemas/logger/feed/feed-chunk-enrich.d.ts +16 -16
- package/dist/schemas/logger/feed/feed-enrich.d.ts +12 -12
- package/dist/schemas/logger/feed/feed-job-enrich.d.ts +272 -272
- package/dist/schemas/logger/feed/feed-scrape.d.ts +6 -6
- package/dist/schemas/logger/log-event.d.ts +103 -103
- package/dist/schemas/logger/scraper-events.d.ts +73 -73
- package/dist/schemas/notifications/index.d.ts +4 -4
- package/dist/schemas/organization/billing.d.ts +2 -2
- package/dist/schemas/organization/cover-letter.d.ts +4 -4
- package/dist/schemas/organization/index.d.ts +112 -112
- package/dist/schemas/organization/onboarding.d.ts +6 -6
- package/dist/schemas/organization/organization-leads.d.ts +4 -4
- package/dist/schemas/organization/subscription.d.ts +12 -12
- package/dist/schemas/plan/index.d.ts +55 -55
- package/dist/schemas/proxy/proxy.d.ts +29 -29
- package/dist/schemas/saved-search/index.d.ts +4 -4
- package/dist/schemas/scraper/scrape-payload.d.ts +876 -876
- package/dist/schemas/scraper/scrape-result.d.ts +174 -174
- package/dist/schemas/scraper/upwork-profile.d.ts +16 -16
- package/dist/schemas/shared.d.ts +1 -1
- package/dist/schemas/talent/index.d.ts +750 -750
- package/dist/schemas/transaction/index.d.ts +20 -20
- package/dist/schemas/upwork-analytics/index.d.ts +22 -22
- package/dist/schemas/usage/index.d.ts +16 -16
- package/dist/schemas/usage-event/index.d.ts +11 -11
- package/dist/schemas/user/index.d.ts +4 -4
- package/package.json +2 -2
|
@@ -10,18 +10,18 @@ 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" | "biddingFailed" | "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "viewed" | "replied" | "biddingScheduled" | "alreadyHired" | "won";
|
|
14
13
|
leadId: string;
|
|
15
14
|
organizationId: string;
|
|
16
15
|
campaignId: string;
|
|
16
|
+
status: "biddingFailed" | "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "biddingScheduled" | "alreadyHired" | "won";
|
|
17
17
|
proposalId?: string | undefined;
|
|
18
18
|
userId?: string | undefined;
|
|
19
19
|
wonAmount?: number | undefined;
|
|
20
20
|
}, {
|
|
21
|
-
status: "rejected" | "biddingFailed" | "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "viewed" | "replied" | "biddingScheduled" | "alreadyHired" | "won";
|
|
22
21
|
leadId: string;
|
|
23
22
|
organizationId: string;
|
|
24
23
|
campaignId: string;
|
|
24
|
+
status: "biddingFailed" | "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "biddingScheduled" | "alreadyHired" | "won";
|
|
25
25
|
proposalId?: string | undefined;
|
|
26
26
|
userId?: string | undefined;
|
|
27
27
|
wonAmount?: number | undefined;
|
|
@@ -30,10 +30,10 @@ export declare const updateOrganizationLeadsStatusPayloadSchema: z.ZodArray<z.Zo
|
|
|
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: "
|
|
33
|
+
status: "biddingFailed" | "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "biddingScheduled" | "alreadyHired" | "won";
|
|
34
34
|
applicationUid: string;
|
|
35
35
|
}, {
|
|
36
|
-
status: "
|
|
36
|
+
status: "biddingFailed" | "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "biddingScheduled" | "alreadyHired" | "won";
|
|
37
37
|
applicationUid: string;
|
|
38
38
|
}>, "many">;
|
|
39
39
|
export type LeadStatus = z.infer<typeof leadStatusEnum>;
|
|
@@ -9,17 +9,17 @@ export declare const feedChunkEnrichStartedEventMetadata: z.ZodObject<{
|
|
|
9
9
|
}, "strip", z.ZodTypeAny, {
|
|
10
10
|
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
11
11
|
accountId: string;
|
|
12
|
-
feedScrapeId: string;
|
|
13
12
|
accountEmail: string;
|
|
14
13
|
chunkSize: number;
|
|
15
14
|
feedEnrichId: string;
|
|
15
|
+
feedScrapeId: string;
|
|
16
16
|
}, {
|
|
17
17
|
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
18
18
|
accountId: string;
|
|
19
|
-
feedScrapeId: string;
|
|
20
19
|
accountEmail: string;
|
|
21
20
|
chunkSize: number;
|
|
22
21
|
feedEnrichId: string;
|
|
22
|
+
feedScrapeId: string;
|
|
23
23
|
}>;
|
|
24
24
|
export declare const feedChunkEnrichCompletedEventMetadata: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
|
25
25
|
region: z.ZodUnion<[z.ZodLiteral<"USOnly">, z.ZodLiteral<"UKOnly">, z.ZodLiteral<"Worldwide">, z.ZodLiteral<"All">]>;
|
|
@@ -28,28 +28,28 @@ export declare const feedChunkEnrichCompletedEventMetadata: z.ZodObject<z.object
|
|
|
28
28
|
chunkSize: z.ZodNumber;
|
|
29
29
|
feedEnrichId: z.ZodString;
|
|
30
30
|
feedScrapeId: z.ZodString;
|
|
31
|
-
}, "region" | "accountId" | "
|
|
31
|
+
}, "region" | "accountId" | "accountEmail" | "chunkSize" | "feedEnrichId" | "feedScrapeId">, {
|
|
32
32
|
duration: z.ZodString;
|
|
33
33
|
successfulEnrichJobCount: z.ZodNumber;
|
|
34
34
|
failedEnrichJobCount: z.ZodNumber;
|
|
35
35
|
}>, "strip", z.ZodTypeAny, {
|
|
36
36
|
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
37
|
-
duration: string;
|
|
38
37
|
accountId: string;
|
|
39
|
-
feedScrapeId: string;
|
|
40
38
|
accountEmail: string;
|
|
41
39
|
chunkSize: number;
|
|
42
40
|
feedEnrichId: string;
|
|
41
|
+
feedScrapeId: string;
|
|
42
|
+
duration: string;
|
|
43
43
|
successfulEnrichJobCount: number;
|
|
44
44
|
failedEnrichJobCount: number;
|
|
45
45
|
}, {
|
|
46
46
|
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
47
|
-
duration: string;
|
|
48
47
|
accountId: string;
|
|
49
|
-
feedScrapeId: string;
|
|
50
48
|
accountEmail: string;
|
|
51
49
|
chunkSize: number;
|
|
52
50
|
feedEnrichId: string;
|
|
51
|
+
feedScrapeId: string;
|
|
52
|
+
duration: string;
|
|
53
53
|
successfulEnrichJobCount: number;
|
|
54
54
|
failedEnrichJobCount: number;
|
|
55
55
|
}>;
|
|
@@ -60,30 +60,30 @@ export declare const feedChunkEnrichFailedEventMetadata: z.ZodObject<z.objectUti
|
|
|
60
60
|
chunkSize: z.ZodNumber;
|
|
61
61
|
feedEnrichId: z.ZodString;
|
|
62
62
|
feedScrapeId: z.ZodString;
|
|
63
|
-
}, "region" | "accountId" | "
|
|
63
|
+
}, "region" | "accountId" | "accountEmail" | "chunkSize" | "feedEnrichId" | "feedScrapeId">, {
|
|
64
64
|
errorMessage: z.ZodString;
|
|
65
65
|
errorCode: z.ZodString;
|
|
66
66
|
errorStack: z.ZodString;
|
|
67
67
|
}>, "strip", z.ZodTypeAny, {
|
|
68
|
-
errorCode: string;
|
|
69
68
|
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
70
69
|
accountId: string;
|
|
71
|
-
errorMessage: string;
|
|
72
|
-
feedScrapeId: string;
|
|
73
|
-
errorStack: string;
|
|
74
70
|
accountEmail: string;
|
|
75
71
|
chunkSize: number;
|
|
76
72
|
feedEnrichId: string;
|
|
77
|
-
|
|
73
|
+
feedScrapeId: string;
|
|
74
|
+
errorMessage: string;
|
|
78
75
|
errorCode: string;
|
|
76
|
+
errorStack: string;
|
|
77
|
+
}, {
|
|
79
78
|
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
80
79
|
accountId: string;
|
|
81
|
-
errorMessage: string;
|
|
82
|
-
feedScrapeId: string;
|
|
83
|
-
errorStack: string;
|
|
84
80
|
accountEmail: string;
|
|
85
81
|
chunkSize: number;
|
|
86
82
|
feedEnrichId: string;
|
|
83
|
+
feedScrapeId: string;
|
|
84
|
+
errorMessage: string;
|
|
85
|
+
errorCode: string;
|
|
86
|
+
errorStack: string;
|
|
87
87
|
}>;
|
|
88
88
|
export interface FeedChunkEnrichStartedEventMetadata extends z.infer<typeof feedChunkEnrichStartedEventMetadata> {
|
|
89
89
|
}
|
|
@@ -8,15 +8,15 @@ export declare const feedEnrichStartedEventMetadata: z.ZodObject<{
|
|
|
8
8
|
jobCount: z.ZodNumber;
|
|
9
9
|
}, "strip", z.ZodTypeAny, {
|
|
10
10
|
id: string;
|
|
11
|
-
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
12
11
|
feedScrapeId: string;
|
|
12
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
13
13
|
accountIds: string[];
|
|
14
14
|
accountEmails: string[];
|
|
15
15
|
jobCount: number;
|
|
16
16
|
}, {
|
|
17
17
|
id: string;
|
|
18
|
-
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
19
18
|
feedScrapeId: string;
|
|
19
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
20
20
|
accountIds: string[];
|
|
21
21
|
accountEmails: string[];
|
|
22
22
|
jobCount: number;
|
|
@@ -32,20 +32,20 @@ export declare const feedEnrichCompletedEventMetadata: z.ZodObject<z.objectUtil.
|
|
|
32
32
|
duration: z.ZodString;
|
|
33
33
|
}>, "strip", z.ZodTypeAny, {
|
|
34
34
|
id: string;
|
|
35
|
-
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
36
|
-
duration: string;
|
|
37
35
|
feedScrapeId: string;
|
|
36
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
38
37
|
accountIds: string[];
|
|
39
38
|
accountEmails: string[];
|
|
40
39
|
jobCount: number;
|
|
40
|
+
duration: string;
|
|
41
41
|
}, {
|
|
42
42
|
id: string;
|
|
43
|
-
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
44
|
-
duration: string;
|
|
45
43
|
feedScrapeId: string;
|
|
44
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
46
45
|
accountIds: string[];
|
|
47
46
|
accountEmails: string[];
|
|
48
47
|
jobCount: number;
|
|
48
|
+
duration: string;
|
|
49
49
|
}>;
|
|
50
50
|
export declare const feedEnrichFailedEventMetadata: z.ZodObject<z.objectUtil.extendShape<{
|
|
51
51
|
id: z.ZodString;
|
|
@@ -60,23 +60,23 @@ export declare const feedEnrichFailedEventMetadata: z.ZodObject<z.objectUtil.ext
|
|
|
60
60
|
errorStack: z.ZodString;
|
|
61
61
|
}>, "strip", z.ZodTypeAny, {
|
|
62
62
|
id: string;
|
|
63
|
-
errorCode: string;
|
|
64
|
-
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
65
|
-
errorMessage: string;
|
|
66
63
|
feedScrapeId: string;
|
|
64
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
67
65
|
accountIds: string[];
|
|
68
66
|
accountEmails: string[];
|
|
69
67
|
jobCount: number;
|
|
68
|
+
errorMessage: string;
|
|
69
|
+
errorCode: string;
|
|
70
70
|
errorStack: string;
|
|
71
71
|
}, {
|
|
72
72
|
id: string;
|
|
73
|
-
errorCode: string;
|
|
74
|
-
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
75
|
-
errorMessage: string;
|
|
76
73
|
feedScrapeId: string;
|
|
74
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
77
75
|
accountIds: string[];
|
|
78
76
|
accountEmails: string[];
|
|
79
77
|
jobCount: number;
|
|
78
|
+
errorMessage: string;
|
|
79
|
+
errorCode: string;
|
|
80
80
|
errorStack: string;
|
|
81
81
|
}>;
|
|
82
82
|
export interface FeedEnrichStartedEventMetadata extends z.infer<typeof feedEnrichStartedEventMetadata> {
|