lancer-shared 1.2.302 → 1.2.304
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 +47 -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 +2377 -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 +575 -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
|
@@ -4,25 +4,25 @@ export declare const employmentHistorySchema: import("zod").ZodObject<{
|
|
|
4
4
|
period: import("zod").ZodString;
|
|
5
5
|
description: import("zod").ZodString;
|
|
6
6
|
}, "strip", import("zod").ZodTypeAny, {
|
|
7
|
-
description: string;
|
|
8
7
|
jobTitle: string;
|
|
9
8
|
period: string;
|
|
10
|
-
}, {
|
|
11
9
|
description: string;
|
|
10
|
+
}, {
|
|
12
11
|
jobTitle: string;
|
|
13
12
|
period: string;
|
|
13
|
+
description: string;
|
|
14
14
|
}>;
|
|
15
15
|
export declare const portfolioSchema: import("zod").ZodObject<{
|
|
16
16
|
title: import("zod").ZodString;
|
|
17
17
|
description: import("zod").ZodString;
|
|
18
18
|
skills: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
19
19
|
}, "strip", import("zod").ZodTypeAny, {
|
|
20
|
-
title: string;
|
|
21
20
|
description: string;
|
|
21
|
+
title: string;
|
|
22
22
|
skills: string[];
|
|
23
23
|
}, {
|
|
24
|
-
title: string;
|
|
25
24
|
description: string;
|
|
25
|
+
title: string;
|
|
26
26
|
skills: string[];
|
|
27
27
|
}>;
|
|
28
28
|
export declare const upworkProfileSchema: import("zod").ZodObject<{
|
|
@@ -36,13 +36,13 @@ export declare const upworkProfileSchema: import("zod").ZodObject<{
|
|
|
36
36
|
period: import("zod").ZodString;
|
|
37
37
|
description: import("zod").ZodString;
|
|
38
38
|
}, "strip", import("zod").ZodTypeAny, {
|
|
39
|
-
description: string;
|
|
40
39
|
jobTitle: string;
|
|
41
40
|
period: string;
|
|
42
|
-
}, {
|
|
43
41
|
description: string;
|
|
42
|
+
}, {
|
|
44
43
|
jobTitle: string;
|
|
45
44
|
period: string;
|
|
45
|
+
description: string;
|
|
46
46
|
}>, "many">>;
|
|
47
47
|
languages: import("zod").ZodNullable<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
48
48
|
portfolio: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -50,46 +50,46 @@ export declare const upworkProfileSchema: import("zod").ZodObject<{
|
|
|
50
50
|
description: import("zod").ZodString;
|
|
51
51
|
skills: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
52
52
|
}, "strip", import("zod").ZodTypeAny, {
|
|
53
|
-
title: string;
|
|
54
53
|
description: string;
|
|
54
|
+
title: string;
|
|
55
55
|
skills: string[];
|
|
56
56
|
}, {
|
|
57
|
-
title: string;
|
|
58
57
|
description: string;
|
|
58
|
+
title: string;
|
|
59
59
|
skills: string[];
|
|
60
60
|
}>, "many">>;
|
|
61
61
|
}, "strip", import("zod").ZodTypeAny, {
|
|
62
|
+
skills: string[] | null;
|
|
62
63
|
name: string | null;
|
|
63
64
|
country: string | null;
|
|
64
|
-
languages: Record<string, string> | null;
|
|
65
|
-
skills: string[] | null;
|
|
66
65
|
bio: string | null;
|
|
67
66
|
certifications: string[] | null;
|
|
68
67
|
employmentHistory: {
|
|
69
|
-
description: string;
|
|
70
68
|
jobTitle: string;
|
|
71
69
|
period: string;
|
|
70
|
+
description: string;
|
|
72
71
|
}[] | null;
|
|
72
|
+
languages: Record<string, string> | null;
|
|
73
73
|
portfolio: {
|
|
74
|
-
title: string;
|
|
75
74
|
description: string;
|
|
75
|
+
title: string;
|
|
76
76
|
skills: string[];
|
|
77
77
|
}[] | null;
|
|
78
78
|
}, {
|
|
79
|
+
skills: string[] | null;
|
|
79
80
|
name: string | null;
|
|
80
81
|
country: string | null;
|
|
81
|
-
languages: Record<string, string> | null;
|
|
82
|
-
skills: string[] | null;
|
|
83
82
|
bio: string | null;
|
|
84
83
|
certifications: string[] | null;
|
|
85
84
|
employmentHistory: {
|
|
86
|
-
description: string;
|
|
87
85
|
jobTitle: string;
|
|
88
86
|
period: string;
|
|
87
|
+
description: string;
|
|
89
88
|
}[] | null;
|
|
89
|
+
languages: Record<string, string> | null;
|
|
90
90
|
portfolio: {
|
|
91
|
-
title: string;
|
|
92
91
|
description: string;
|
|
92
|
+
title: string;
|
|
93
93
|
skills: string[];
|
|
94
94
|
}[] | null;
|
|
95
95
|
}>;
|
package/dist/schemas/shared.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export declare const booleanSchema: z.ZodEffects<z.ZodUnion<[z.ZodBoolean, z.ZodLiteral<"true">, z.ZodLiteral<"false">]>, boolean, boolean | "
|
|
2
|
+
export declare const booleanSchema: z.ZodEffects<z.ZodUnion<[z.ZodBoolean, z.ZodLiteral<"true">, z.ZodLiteral<"false">]>, boolean, boolean | "true" | "false">;
|
|
3
3
|
export declare const dateSchema: (params?: {
|
|
4
4
|
invalid_type_error?: string;
|
|
5
5
|
required_error?: string;
|