lancer-shared 1.2.241 → 1.2.242

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.
Files changed (53) hide show
  1. package/dist/bundle.cjs.js.map +1 -0
  2. package/dist/bundle.esm.js.map +1 -0
  3. package/dist/schemas/account/bidder-account.d.ts +75 -75
  4. package/dist/schemas/account/scraper-account.d.ts +37 -37
  5. package/dist/schemas/agent/index.d.ts +285 -285
  6. package/dist/schemas/agent/proposal.d.ts +6 -6
  7. package/dist/schemas/bidder/bid.d.ts +2345 -2345
  8. package/dist/schemas/campaign/campaign-analytics.d.ts +857 -857
  9. package/dist/schemas/campaign/campaign-chat-bot.d.ts +25 -25
  10. package/dist/schemas/campaign/campaign-expenses.d.ts +2 -2
  11. package/dist/schemas/campaign/campaign-insights.d.ts +12 -12
  12. package/dist/schemas/campaign/campaign.d.ts +201 -201
  13. package/dist/schemas/campaign/sequence/boost-node.d.ts +2 -2
  14. package/dist/schemas/campaign/sequence/client-size-node.d.ts +8 -8
  15. package/dist/schemas/campaign/sequence/client-spent-node.d.ts +16 -16
  16. package/dist/schemas/campaign/sequence/hire-rate-node.d.ts +16 -16
  17. package/dist/schemas/campaign/sequence/hourly-rate-node.d.ts +16 -16
  18. package/dist/schemas/campaign/sequence/rating-node.d.ts +16 -16
  19. package/dist/schemas/campaign/sequence/suitability-node.d.ts +16 -16
  20. package/dist/schemas/dashboard/index.d.ts +34 -34
  21. package/dist/schemas/infrastructure/index.d.ts +8 -8
  22. package/dist/schemas/invoice/index.d.ts +51 -51
  23. package/dist/schemas/job/index.d.ts +212 -212
  24. package/dist/schemas/job/job-api.d.ts +4 -4
  25. package/dist/schemas/job/job-details.d.ts +736 -736
  26. package/dist/schemas/job/job-filters.d.ts +14 -14
  27. package/dist/schemas/job/job-listing.d.ts +94 -94
  28. package/dist/schemas/job/nuxt.d.ts +150 -150
  29. package/dist/schemas/lead/index.d.ts +1022 -1022
  30. package/dist/schemas/lead/lead-status.d.ts +10 -10
  31. package/dist/schemas/logger/feed/feed-chunk-enrich.d.ts +25 -25
  32. package/dist/schemas/logger/feed/feed-enrich.d.ts +15 -15
  33. package/dist/schemas/logger/feed/feed-job-enrich.d.ts +321 -321
  34. package/dist/schemas/logger/feed/feed-scrape.d.ts +15 -15
  35. package/dist/schemas/logger/log-event.d.ts +91 -91
  36. package/dist/schemas/logger/scraper-events.d.ts +90 -90
  37. package/dist/schemas/notifications/index.d.ts +4 -4
  38. package/dist/schemas/organization/cover-letter.d.ts +2 -2
  39. package/dist/schemas/organization/index.d.ts +104 -104
  40. package/dist/schemas/organization/subscription.d.ts +6 -6
  41. package/dist/schemas/plan/index.d.ts +14 -14
  42. package/dist/schemas/proxy/proxy.d.ts +20 -20
  43. package/dist/schemas/saved-search/index.d.ts +4 -4
  44. package/dist/schemas/scraper/scrape-payload.d.ts +621 -621
  45. package/dist/schemas/scraper/scrape-result.d.ts +214 -214
  46. package/dist/schemas/scraper/upwork-profile.d.ts +16 -16
  47. package/dist/schemas/shared.d.ts +1 -1
  48. package/dist/schemas/talent/index.d.ts +854 -854
  49. package/dist/schemas/transaction/index.d.ts +18 -18
  50. package/dist/schemas/usage/index.d.ts +16 -16
  51. package/dist/schemas/usage-event/index.d.ts +4 -4
  52. package/dist/schemas/user/index.d.ts +4 -4
  53. package/package.json +8 -6
@@ -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;
7
8
  jobTitle: string;
8
9
  period: string;
9
- description: string;
10
10
  }, {
11
+ description: string;
11
12
  jobTitle: string;
12
13
  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
- description: string;
21
20
  title: string;
21
+ description: string;
22
22
  skills: string[];
23
23
  }, {
24
- description: string;
25
24
  title: string;
25
+ description: 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;
39
40
  jobTitle: string;
40
41
  period: string;
41
- description: string;
42
42
  }, {
43
+ description: string;
43
44
  jobTitle: string;
44
45
  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
- description: string;
54
53
  title: string;
54
+ description: string;
55
55
  skills: string[];
56
56
  }, {
57
- description: string;
58
57
  title: string;
58
+ description: string;
59
59
  skills: string[];
60
60
  }>, "many">>;
61
61
  }, "strip", import("zod").ZodTypeAny, {
62
- skills: string[] | null;
63
62
  name: string | null;
64
63
  country: string | null;
64
+ languages: Record<string, string> | null;
65
+ skills: string[] | null;
65
66
  bio: string | null;
66
67
  certifications: string[] | null;
67
68
  employmentHistory: {
69
+ description: string;
68
70
  jobTitle: string;
69
71
  period: string;
70
- description: string;
71
72
  }[] | null;
72
- languages: Record<string, string> | null;
73
73
  portfolio: {
74
- description: string;
75
74
  title: string;
75
+ description: string;
76
76
  skills: string[];
77
77
  }[] | null;
78
78
  }, {
79
- skills: string[] | null;
80
79
  name: string | null;
81
80
  country: string | null;
81
+ languages: Record<string, string> | null;
82
+ skills: string[] | null;
82
83
  bio: string | null;
83
84
  certifications: string[] | null;
84
85
  employmentHistory: {
86
+ description: string;
85
87
  jobTitle: string;
86
88
  period: string;
87
- description: string;
88
89
  }[] | null;
89
- languages: Record<string, string> | null;
90
90
  portfolio: {
91
- description: string;
92
91
  title: string;
92
+ description: string;
93
93
  skills: string[];
94
94
  }[] | null;
95
95
  }>;
@@ -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 | "true" | "false">;
2
+ export declare const booleanSchema: z.ZodEffects<z.ZodUnion<[z.ZodBoolean, z.ZodLiteral<"true">, z.ZodLiteral<"false">]>, boolean, boolean | "false" | "true">;
3
3
  export declare const dateSchema: (params?: {
4
4
  invalid_type_error?: string;
5
5
  required_error?: string;