lancer-shared 1.0.86 → 1.0.88
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/schemas/account/manager-account.d.ts +14 -0
- package/dist/schemas/account/manager-account.js +2 -0
- package/dist/schemas/campaign/campaign.d.ts +42 -0
- package/dist/schemas/job/job.d.ts +16 -16
- package/dist/schemas/job/pipeline-job.d.ts +3 -9
- package/dist/schemas/job/pipeline-job.js +0 -1
- package/dist/schemas/job-filters/job-filters.d.ts +10 -0
- package/dist/schemas/job-filters/job-filters.js +2 -0
- package/dist/schemas/upwork-account/index.d.ts +1 -1
- package/dist/schemas/upwork-account/index.js +1 -1
- package/dist/schemas/upwork-account/upwork-business-manager-account.d.ts +14 -14
- package/dist/schemas/upwork-account/upwork-business-manager-account.js +2 -2
- package/dist/schemas/upwork-account/upwork-scraping-account.d.ts +23 -23
- package/dist/schemas/upwork-account/upwork-scraping-account.js +3 -4
- package/dist/types/upwork-account/upwork-scraping-account.d.ts +2 -2
- package/package.json +1 -1
- package/dist/constants/upwork-filters.d.ts +0 -5
- package/dist/constants/upwork-filters.js +0 -75
- package/dist/schemas/ai-config/ai-config.d.ts +0 -39
- package/dist/schemas/ai-config/ai-config.js +0 -12
- package/dist/schemas/ai-config/index.d.ts +0 -1
- package/dist/schemas/ai-config/index.js +0 -17
- package/dist/schemas/bidding/proposal-dto.d.ts +0 -26
- package/dist/schemas/bidding/proposal-dto.js +0 -18
- package/dist/schemas/job/job-pipeline.d.ts +0 -74
- package/dist/schemas/job/job-pipeline.js +0 -29
- package/dist/schemas/job/job-suitability.d.ts +0 -12
- package/dist/schemas/job/job-suitability.js +0 -13
- package/dist/schemas/knowledge-object/index.d.ts +0 -1
- package/dist/schemas/knowledge-object/index.js +0 -17
- package/dist/schemas/knowledge-object/knowledge-object.d.ts +0 -128
- package/dist/schemas/knowledge-object/knowledge-object.js +0 -47
- package/dist/schemas/scraper/scrape-response.d.ts +0 -345
- package/dist/schemas/scraper/scrape-response.js +0 -9
- package/dist/schemas/upwork-account/upwork-scraper-account.d.ts +0 -92
- package/dist/schemas/upwork-account/upwork-scraper-account.js +0 -31
- package/dist/types/ai-config/ai-config.d.ts +0 -6
- package/dist/types/ai-config/ai-config.js +0 -2
- package/dist/types/ai-config/index.d.ts +0 -1
- package/dist/types/ai-config/index.js +0 -17
- package/dist/types/bidding/proposal-dto.d.ts +0 -3
- package/dist/types/bidding/proposal-dto.js +0 -2
- package/dist/types/job/job-pipeline.d.ts +0 -4
- package/dist/types/job/job-pipeline.js +0 -2
- package/dist/types/job/job-suitability.d.ts +0 -3
- package/dist/types/job/job-suitability.js +0 -2
- package/dist/types/knowledge-object/index.d.ts +0 -1
- package/dist/types/knowledge-object/index.js +0 -17
- package/dist/types/knowledge-object/knowledge-object.d.ts +0 -4
- package/dist/types/knowledge-object/knowledge-object.js +0 -2
- package/dist/types/scraper/scrape-response.d.ts +0 -4
- package/dist/types/scraper/scrape-response.js +0 -2
|
@@ -12,10 +12,14 @@ export declare const managerAccountSchema: z.ZodObject<{
|
|
|
12
12
|
isActive: z.ZodBoolean;
|
|
13
13
|
assignedOrganizations: z.ZodArray<z.ZodString, "many">;
|
|
14
14
|
lastUsed: z.ZodNullable<z.ZodNumber>;
|
|
15
|
+
createdAt: z.ZodNumber;
|
|
16
|
+
updatedAt: z.ZodNumber;
|
|
15
17
|
}, "strip", z.ZodTypeAny, {
|
|
16
18
|
id: string;
|
|
17
19
|
email: string;
|
|
18
20
|
status: "suspended" | "verification_required" | "shadow_banned" | "healthy" | "banned";
|
|
21
|
+
createdAt: number;
|
|
22
|
+
updatedAt: number;
|
|
19
23
|
cookies: any[] | null;
|
|
20
24
|
password: string;
|
|
21
25
|
isActive: boolean;
|
|
@@ -28,6 +32,8 @@ export declare const managerAccountSchema: z.ZodObject<{
|
|
|
28
32
|
id: string;
|
|
29
33
|
email: string;
|
|
30
34
|
status: "suspended" | "verification_required" | "shadow_banned" | "healthy" | "banned";
|
|
35
|
+
createdAt: number;
|
|
36
|
+
updatedAt: number;
|
|
31
37
|
cookies: any[] | null;
|
|
32
38
|
password: string;
|
|
33
39
|
isActive: boolean;
|
|
@@ -49,6 +55,8 @@ export declare const createManagerAccountSchema: z.ZodObject<Pick<{
|
|
|
49
55
|
isActive: z.ZodBoolean;
|
|
50
56
|
assignedOrganizations: z.ZodArray<z.ZodString, "many">;
|
|
51
57
|
lastUsed: z.ZodNullable<z.ZodNumber>;
|
|
58
|
+
createdAt: z.ZodNumber;
|
|
59
|
+
updatedAt: z.ZodNumber;
|
|
52
60
|
}, "email" | "status" | "password" | "isActive" | "provider" | "proxy" | "verified">, "strip", z.ZodTypeAny, {
|
|
53
61
|
email: string;
|
|
54
62
|
status: "suspended" | "verification_required" | "shadow_banned" | "healthy" | "banned";
|
|
@@ -69,6 +77,8 @@ export declare const createManagerAccountSchema: z.ZodObject<Pick<{
|
|
|
69
77
|
export declare const updateManagerAccountSchema: z.ZodObject<{
|
|
70
78
|
email: z.ZodOptional<z.ZodString>;
|
|
71
79
|
status: z.ZodOptional<z.ZodEnum<["verification_required", "shadow_banned", "healthy", "banned", "suspended"]>>;
|
|
80
|
+
createdAt: z.ZodOptional<z.ZodNumber>;
|
|
81
|
+
updatedAt: z.ZodOptional<z.ZodNumber>;
|
|
72
82
|
cookies: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodAny, "many">>>;
|
|
73
83
|
password: z.ZodOptional<z.ZodString>;
|
|
74
84
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -80,6 +90,8 @@ export declare const updateManagerAccountSchema: z.ZodObject<{
|
|
|
80
90
|
}, "strip", z.ZodTypeAny, {
|
|
81
91
|
email?: string | undefined;
|
|
82
92
|
status?: "suspended" | "verification_required" | "shadow_banned" | "healthy" | "banned" | undefined;
|
|
93
|
+
createdAt?: number | undefined;
|
|
94
|
+
updatedAt?: number | undefined;
|
|
83
95
|
cookies?: any[] | null | undefined;
|
|
84
96
|
password?: string | undefined;
|
|
85
97
|
isActive?: boolean | undefined;
|
|
@@ -91,6 +103,8 @@ export declare const updateManagerAccountSchema: z.ZodObject<{
|
|
|
91
103
|
}, {
|
|
92
104
|
email?: string | undefined;
|
|
93
105
|
status?: "suspended" | "verification_required" | "shadow_banned" | "healthy" | "banned" | undefined;
|
|
106
|
+
createdAt?: number | undefined;
|
|
107
|
+
updatedAt?: number | undefined;
|
|
94
108
|
cookies?: any[] | null | undefined;
|
|
95
109
|
password?: string | undefined;
|
|
96
110
|
isActive?: boolean | undefined;
|
|
@@ -19,6 +19,8 @@ exports.managerAccountSchema = zod_1.z.object({
|
|
|
19
19
|
isActive: zod_1.z.boolean(),
|
|
20
20
|
assignedOrganizations: zod_1.z.array(zod_1.z.string()),
|
|
21
21
|
lastUsed: zod_1.z.number().nullable(),
|
|
22
|
+
createdAt: zod_1.z.number(),
|
|
23
|
+
updatedAt: zod_1.z.number(),
|
|
22
24
|
});
|
|
23
25
|
exports.createManagerAccountSchema = exports.managerAccountSchema.pick({
|
|
24
26
|
email: true,
|
|
@@ -65,6 +65,8 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
65
65
|
minHireRate: z.ZodNullable<z.ZodNumber>;
|
|
66
66
|
clientIndustry: z.ZodNullable<z.ZodArray<z.ZodEnum<["Aerospace", "Agriculture & Forestry", "Art & Design", "Automotive", "Aviation", "Education", "Energy & Utilities", "Engineering & Architecture", "Fashion & Beauty", "Finance & Accounting", "Food & Beverage", "Government & Public Sector", "Health & Fitness", "HR & Business Services", "Legal", "Manufacturing & Construction", "Media & Entertainment", "Military & Defense", "Mining", "Real Estate", "Retail & Consumer Goods", "Sales & Marketing", "Science & Medicine", "Sports & Recreation", "Supply Chain & Logistics", "Tech & IT", "Transportation & Warehousing", "Travel & Hospitality"]>, "many">>;
|
|
67
67
|
companySize: z.ZodNullable<z.ZodArray<z.ZodEnum<["Individual client", "Small company (2-9 people)", "Mid-sized company (10-99 people)", "Large company (100-1,000 people)", "Large company (1,000+ people)", "Unspecified"]>, "many">>;
|
|
68
|
+
minJobsPosted: z.ZodNullable<z.ZodNumber>;
|
|
69
|
+
minAvgHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
68
70
|
}, "strip", z.ZodTypeAny, {
|
|
69
71
|
isPaymentVerified: "false" | "all" | "true";
|
|
70
72
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
@@ -75,6 +77,8 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
75
77
|
minTotalSpent: number | null;
|
|
76
78
|
minHireRate: number | null;
|
|
77
79
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
80
|
+
minJobsPosted: number | null;
|
|
81
|
+
minAvgHourlyRate: number | null;
|
|
78
82
|
}, {
|
|
79
83
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
80
84
|
clientLocationIncludes: string[] | null;
|
|
@@ -83,6 +87,8 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
83
87
|
minTotalSpent: number | null;
|
|
84
88
|
minHireRate: number | null;
|
|
85
89
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
90
|
+
minJobsPosted: number | null;
|
|
91
|
+
minAvgHourlyRate: number | null;
|
|
86
92
|
isPaymentVerified?: "false" | "all" | "true" | undefined;
|
|
87
93
|
enterpriseClient?: "false" | "all" | "true" | undefined;
|
|
88
94
|
}>>;
|
|
@@ -121,6 +127,8 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
121
127
|
minTotalSpent: number | null;
|
|
122
128
|
minHireRate: number | null;
|
|
123
129
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
130
|
+
minJobsPosted: number | null;
|
|
131
|
+
minAvgHourlyRate: number | null;
|
|
124
132
|
} | null;
|
|
125
133
|
vendorQualifications: {
|
|
126
134
|
includeRisingTalent: string | null;
|
|
@@ -161,6 +169,8 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
161
169
|
minTotalSpent: number | null;
|
|
162
170
|
minHireRate: number | null;
|
|
163
171
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
172
|
+
minJobsPosted: number | null;
|
|
173
|
+
minAvgHourlyRate: number | null;
|
|
164
174
|
isPaymentVerified?: "false" | "all" | "true" | undefined;
|
|
165
175
|
enterpriseClient?: "false" | "all" | "true" | undefined;
|
|
166
176
|
} | null;
|
|
@@ -278,6 +288,8 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
278
288
|
minTotalSpent: number | null;
|
|
279
289
|
minHireRate: number | null;
|
|
280
290
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
291
|
+
minJobsPosted: number | null;
|
|
292
|
+
minAvgHourlyRate: number | null;
|
|
281
293
|
} | null;
|
|
282
294
|
vendorQualifications: {
|
|
283
295
|
includeRisingTalent: string | null;
|
|
@@ -350,6 +362,8 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
350
362
|
minTotalSpent: number | null;
|
|
351
363
|
minHireRate: number | null;
|
|
352
364
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
365
|
+
minJobsPosted: number | null;
|
|
366
|
+
minAvgHourlyRate: number | null;
|
|
353
367
|
isPaymentVerified?: "false" | "all" | "true" | undefined;
|
|
354
368
|
enterpriseClient?: "false" | "all" | "true" | undefined;
|
|
355
369
|
} | null;
|
|
@@ -470,6 +484,8 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
470
484
|
minHireRate: z.ZodNullable<z.ZodNumber>;
|
|
471
485
|
clientIndustry: z.ZodNullable<z.ZodArray<z.ZodEnum<["Aerospace", "Agriculture & Forestry", "Art & Design", "Automotive", "Aviation", "Education", "Energy & Utilities", "Engineering & Architecture", "Fashion & Beauty", "Finance & Accounting", "Food & Beverage", "Government & Public Sector", "Health & Fitness", "HR & Business Services", "Legal", "Manufacturing & Construction", "Media & Entertainment", "Military & Defense", "Mining", "Real Estate", "Retail & Consumer Goods", "Sales & Marketing", "Science & Medicine", "Sports & Recreation", "Supply Chain & Logistics", "Tech & IT", "Transportation & Warehousing", "Travel & Hospitality"]>, "many">>;
|
|
472
486
|
companySize: z.ZodNullable<z.ZodArray<z.ZodEnum<["Individual client", "Small company (2-9 people)", "Mid-sized company (10-99 people)", "Large company (100-1,000 people)", "Large company (1,000+ people)", "Unspecified"]>, "many">>;
|
|
487
|
+
minJobsPosted: z.ZodNullable<z.ZodNumber>;
|
|
488
|
+
minAvgHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
473
489
|
}, "strip", z.ZodTypeAny, {
|
|
474
490
|
isPaymentVerified: "false" | "all" | "true";
|
|
475
491
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
@@ -480,6 +496,8 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
480
496
|
minTotalSpent: number | null;
|
|
481
497
|
minHireRate: number | null;
|
|
482
498
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
499
|
+
minJobsPosted: number | null;
|
|
500
|
+
minAvgHourlyRate: number | null;
|
|
483
501
|
}, {
|
|
484
502
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
485
503
|
clientLocationIncludes: string[] | null;
|
|
@@ -488,6 +506,8 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
488
506
|
minTotalSpent: number | null;
|
|
489
507
|
minHireRate: number | null;
|
|
490
508
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
509
|
+
minJobsPosted: number | null;
|
|
510
|
+
minAvgHourlyRate: number | null;
|
|
491
511
|
isPaymentVerified?: "false" | "all" | "true" | undefined;
|
|
492
512
|
enterpriseClient?: "false" | "all" | "true" | undefined;
|
|
493
513
|
}>>;
|
|
@@ -526,6 +546,8 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
526
546
|
minTotalSpent: number | null;
|
|
527
547
|
minHireRate: number | null;
|
|
528
548
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
549
|
+
minJobsPosted: number | null;
|
|
550
|
+
minAvgHourlyRate: number | null;
|
|
529
551
|
} | null;
|
|
530
552
|
vendorQualifications: {
|
|
531
553
|
includeRisingTalent: string | null;
|
|
@@ -566,6 +588,8 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
566
588
|
minTotalSpent: number | null;
|
|
567
589
|
minHireRate: number | null;
|
|
568
590
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
591
|
+
minJobsPosted: number | null;
|
|
592
|
+
minAvgHourlyRate: number | null;
|
|
569
593
|
isPaymentVerified?: "false" | "all" | "true" | undefined;
|
|
570
594
|
enterpriseClient?: "false" | "all" | "true" | undefined;
|
|
571
595
|
} | null;
|
|
@@ -680,6 +704,8 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
680
704
|
minTotalSpent: number | null;
|
|
681
705
|
minHireRate: number | null;
|
|
682
706
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
707
|
+
minJobsPosted: number | null;
|
|
708
|
+
minAvgHourlyRate: number | null;
|
|
683
709
|
} | null;
|
|
684
710
|
vendorQualifications: {
|
|
685
711
|
includeRisingTalent: string | null;
|
|
@@ -749,6 +775,8 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
749
775
|
minTotalSpent: number | null;
|
|
750
776
|
minHireRate: number | null;
|
|
751
777
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
778
|
+
minJobsPosted: number | null;
|
|
779
|
+
minAvgHourlyRate: number | null;
|
|
752
780
|
isPaymentVerified?: "false" | "all" | "true" | undefined;
|
|
753
781
|
enterpriseClient?: "false" | "all" | "true" | undefined;
|
|
754
782
|
} | null;
|
|
@@ -869,6 +897,8 @@ export declare const updateCampaignSchema: z.ZodObject<Omit<{
|
|
|
869
897
|
minHireRate: z.ZodNullable<z.ZodNumber>;
|
|
870
898
|
clientIndustry: z.ZodNullable<z.ZodArray<z.ZodEnum<["Aerospace", "Agriculture & Forestry", "Art & Design", "Automotive", "Aviation", "Education", "Energy & Utilities", "Engineering & Architecture", "Fashion & Beauty", "Finance & Accounting", "Food & Beverage", "Government & Public Sector", "Health & Fitness", "HR & Business Services", "Legal", "Manufacturing & Construction", "Media & Entertainment", "Military & Defense", "Mining", "Real Estate", "Retail & Consumer Goods", "Sales & Marketing", "Science & Medicine", "Sports & Recreation", "Supply Chain & Logistics", "Tech & IT", "Transportation & Warehousing", "Travel & Hospitality"]>, "many">>;
|
|
871
899
|
companySize: z.ZodNullable<z.ZodArray<z.ZodEnum<["Individual client", "Small company (2-9 people)", "Mid-sized company (10-99 people)", "Large company (100-1,000 people)", "Large company (1,000+ people)", "Unspecified"]>, "many">>;
|
|
900
|
+
minJobsPosted: z.ZodNullable<z.ZodNumber>;
|
|
901
|
+
minAvgHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
872
902
|
}, "strip", z.ZodTypeAny, {
|
|
873
903
|
isPaymentVerified: "false" | "all" | "true";
|
|
874
904
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
@@ -879,6 +909,8 @@ export declare const updateCampaignSchema: z.ZodObject<Omit<{
|
|
|
879
909
|
minTotalSpent: number | null;
|
|
880
910
|
minHireRate: number | null;
|
|
881
911
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
912
|
+
minJobsPosted: number | null;
|
|
913
|
+
minAvgHourlyRate: number | null;
|
|
882
914
|
}, {
|
|
883
915
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
884
916
|
clientLocationIncludes: string[] | null;
|
|
@@ -887,6 +919,8 @@ export declare const updateCampaignSchema: z.ZodObject<Omit<{
|
|
|
887
919
|
minTotalSpent: number | null;
|
|
888
920
|
minHireRate: number | null;
|
|
889
921
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
922
|
+
minJobsPosted: number | null;
|
|
923
|
+
minAvgHourlyRate: number | null;
|
|
890
924
|
isPaymentVerified?: "false" | "all" | "true" | undefined;
|
|
891
925
|
enterpriseClient?: "false" | "all" | "true" | undefined;
|
|
892
926
|
}>>;
|
|
@@ -925,6 +959,8 @@ export declare const updateCampaignSchema: z.ZodObject<Omit<{
|
|
|
925
959
|
minTotalSpent: number | null;
|
|
926
960
|
minHireRate: number | null;
|
|
927
961
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
962
|
+
minJobsPosted: number | null;
|
|
963
|
+
minAvgHourlyRate: number | null;
|
|
928
964
|
} | null;
|
|
929
965
|
vendorQualifications: {
|
|
930
966
|
includeRisingTalent: string | null;
|
|
@@ -965,6 +1001,8 @@ export declare const updateCampaignSchema: z.ZodObject<Omit<{
|
|
|
965
1001
|
minTotalSpent: number | null;
|
|
966
1002
|
minHireRate: number | null;
|
|
967
1003
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
1004
|
+
minJobsPosted: number | null;
|
|
1005
|
+
minAvgHourlyRate: number | null;
|
|
968
1006
|
isPaymentVerified?: "false" | "all" | "true" | undefined;
|
|
969
1007
|
enterpriseClient?: "false" | "all" | "true" | undefined;
|
|
970
1008
|
} | null;
|
|
@@ -1080,6 +1118,8 @@ export declare const updateCampaignSchema: z.ZodObject<Omit<{
|
|
|
1080
1118
|
minTotalSpent: number | null;
|
|
1081
1119
|
minHireRate: number | null;
|
|
1082
1120
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
1121
|
+
minJobsPosted: number | null;
|
|
1122
|
+
minAvgHourlyRate: number | null;
|
|
1083
1123
|
} | null;
|
|
1084
1124
|
vendorQualifications: {
|
|
1085
1125
|
includeRisingTalent: string | null;
|
|
@@ -1150,6 +1190,8 @@ export declare const updateCampaignSchema: z.ZodObject<Omit<{
|
|
|
1150
1190
|
minTotalSpent: number | null;
|
|
1151
1191
|
minHireRate: number | null;
|
|
1152
1192
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
1193
|
+
minJobsPosted: number | null;
|
|
1194
|
+
minAvgHourlyRate: number | null;
|
|
1153
1195
|
isPaymentVerified?: "false" | "all" | "true" | undefined;
|
|
1154
1196
|
enterpriseClient?: "false" | "all" | "true" | undefined;
|
|
1155
1197
|
} | null;
|
|
@@ -44,9 +44,9 @@ export declare const clientInfoSchema: z.ZodObject<{
|
|
|
44
44
|
}, "strip", z.ZodTypeAny, {
|
|
45
45
|
country: string | null;
|
|
46
46
|
region: string | null;
|
|
47
|
+
rating: number | null;
|
|
47
48
|
isPaymentVerified: boolean | null;
|
|
48
49
|
numberOfReviews: number | null;
|
|
49
|
-
rating: number | null;
|
|
50
50
|
jobsPosted: number | null;
|
|
51
51
|
totalSpent: number | null;
|
|
52
52
|
numberOfHires: number | null;
|
|
@@ -60,9 +60,9 @@ export declare const clientInfoSchema: z.ZodObject<{
|
|
|
60
60
|
}, {
|
|
61
61
|
country: string | null;
|
|
62
62
|
region: string | null;
|
|
63
|
+
rating: number | null;
|
|
63
64
|
isPaymentVerified: boolean | null;
|
|
64
65
|
numberOfReviews: number | null;
|
|
65
|
-
rating: number | null;
|
|
66
66
|
jobsPosted: number | null;
|
|
67
67
|
totalSpent: number | null;
|
|
68
68
|
numberOfHires: number | null;
|
|
@@ -187,9 +187,9 @@ export declare const upworkJobSchema: z.ZodObject<{
|
|
|
187
187
|
}, "strip", z.ZodTypeAny, {
|
|
188
188
|
country: string | null;
|
|
189
189
|
region: string | null;
|
|
190
|
+
rating: number | null;
|
|
190
191
|
isPaymentVerified: boolean | null;
|
|
191
192
|
numberOfReviews: number | null;
|
|
192
|
-
rating: number | null;
|
|
193
193
|
jobsPosted: number | null;
|
|
194
194
|
totalSpent: number | null;
|
|
195
195
|
numberOfHires: number | null;
|
|
@@ -203,9 +203,9 @@ export declare const upworkJobSchema: z.ZodObject<{
|
|
|
203
203
|
}, {
|
|
204
204
|
country: string | null;
|
|
205
205
|
region: string | null;
|
|
206
|
+
rating: number | null;
|
|
206
207
|
isPaymentVerified: boolean | null;
|
|
207
208
|
numberOfReviews: number | null;
|
|
208
|
-
rating: number | null;
|
|
209
209
|
jobsPosted: number | null;
|
|
210
210
|
totalSpent: number | null;
|
|
211
211
|
numberOfHires: number | null;
|
|
@@ -267,9 +267,9 @@ export declare const upworkJobSchema: z.ZodObject<{
|
|
|
267
267
|
clientInfo: {
|
|
268
268
|
country: string | null;
|
|
269
269
|
region: string | null;
|
|
270
|
+
rating: number | null;
|
|
270
271
|
isPaymentVerified: boolean | null;
|
|
271
272
|
numberOfReviews: number | null;
|
|
272
|
-
rating: number | null;
|
|
273
273
|
jobsPosted: number | null;
|
|
274
274
|
totalSpent: number | null;
|
|
275
275
|
numberOfHires: number | null;
|
|
@@ -319,9 +319,9 @@ export declare const upworkJobSchema: z.ZodObject<{
|
|
|
319
319
|
clientInfo: {
|
|
320
320
|
country: string | null;
|
|
321
321
|
region: string | null;
|
|
322
|
+
rating: number | null;
|
|
322
323
|
isPaymentVerified: boolean | null;
|
|
323
324
|
numberOfReviews: number | null;
|
|
324
|
-
rating: number | null;
|
|
325
325
|
jobsPosted: number | null;
|
|
326
326
|
totalSpent: number | null;
|
|
327
327
|
numberOfHires: number | null;
|
|
@@ -418,9 +418,9 @@ export declare const jobSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
418
418
|
}, "strip", z.ZodTypeAny, {
|
|
419
419
|
country: string | null;
|
|
420
420
|
region: string | null;
|
|
421
|
+
rating: number | null;
|
|
421
422
|
isPaymentVerified: boolean | null;
|
|
422
423
|
numberOfReviews: number | null;
|
|
423
|
-
rating: number | null;
|
|
424
424
|
jobsPosted: number | null;
|
|
425
425
|
totalSpent: number | null;
|
|
426
426
|
numberOfHires: number | null;
|
|
@@ -434,9 +434,9 @@ export declare const jobSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
434
434
|
}, {
|
|
435
435
|
country: string | null;
|
|
436
436
|
region: string | null;
|
|
437
|
+
rating: number | null;
|
|
437
438
|
isPaymentVerified: boolean | null;
|
|
438
439
|
numberOfReviews: number | null;
|
|
439
|
-
rating: number | null;
|
|
440
440
|
jobsPosted: number | null;
|
|
441
441
|
totalSpent: number | null;
|
|
442
442
|
numberOfHires: number | null;
|
|
@@ -550,9 +550,9 @@ export declare const jobSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
550
550
|
clientInfo: {
|
|
551
551
|
country: string | null;
|
|
552
552
|
region: string | null;
|
|
553
|
+
rating: number | null;
|
|
553
554
|
isPaymentVerified: boolean | null;
|
|
554
555
|
numberOfReviews: number | null;
|
|
555
|
-
rating: number | null;
|
|
556
556
|
jobsPosted: number | null;
|
|
557
557
|
totalSpent: number | null;
|
|
558
558
|
numberOfHires: number | null;
|
|
@@ -624,9 +624,9 @@ export declare const jobSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
624
624
|
clientInfo: {
|
|
625
625
|
country: string | null;
|
|
626
626
|
region: string | null;
|
|
627
|
+
rating: number | null;
|
|
627
628
|
isPaymentVerified: boolean | null;
|
|
628
629
|
numberOfReviews: number | null;
|
|
629
|
-
rating: number | null;
|
|
630
630
|
jobsPosted: number | null;
|
|
631
631
|
totalSpent: number | null;
|
|
632
632
|
numberOfHires: number | null;
|
|
@@ -752,9 +752,9 @@ export declare const jobResponseSchema: z.ZodObject<{
|
|
|
752
752
|
}, "strip", z.ZodTypeAny, {
|
|
753
753
|
country: string | null;
|
|
754
754
|
region: string | null;
|
|
755
|
+
rating: number | null;
|
|
755
756
|
isPaymentVerified: boolean | null;
|
|
756
757
|
numberOfReviews: number | null;
|
|
757
|
-
rating: number | null;
|
|
758
758
|
jobsPosted: number | null;
|
|
759
759
|
totalSpent: number | null;
|
|
760
760
|
numberOfHires: number | null;
|
|
@@ -768,9 +768,9 @@ export declare const jobResponseSchema: z.ZodObject<{
|
|
|
768
768
|
}, {
|
|
769
769
|
country: string | null;
|
|
770
770
|
region: string | null;
|
|
771
|
+
rating: number | null;
|
|
771
772
|
isPaymentVerified: boolean | null;
|
|
772
773
|
numberOfReviews: number | null;
|
|
773
|
-
rating: number | null;
|
|
774
774
|
jobsPosted: number | null;
|
|
775
775
|
totalSpent: number | null;
|
|
776
776
|
numberOfHires: number | null;
|
|
@@ -884,9 +884,9 @@ export declare const jobResponseSchema: z.ZodObject<{
|
|
|
884
884
|
clientInfo: {
|
|
885
885
|
country: string | null;
|
|
886
886
|
region: string | null;
|
|
887
|
+
rating: number | null;
|
|
887
888
|
isPaymentVerified: boolean | null;
|
|
888
889
|
numberOfReviews: number | null;
|
|
889
|
-
rating: number | null;
|
|
890
890
|
jobsPosted: number | null;
|
|
891
891
|
totalSpent: number | null;
|
|
892
892
|
numberOfHires: number | null;
|
|
@@ -958,9 +958,9 @@ export declare const jobResponseSchema: z.ZodObject<{
|
|
|
958
958
|
clientInfo: {
|
|
959
959
|
country: string | null;
|
|
960
960
|
region: string | null;
|
|
961
|
+
rating: number | null;
|
|
961
962
|
isPaymentVerified: boolean | null;
|
|
962
963
|
numberOfReviews: number | null;
|
|
963
|
-
rating: number | null;
|
|
964
964
|
jobsPosted: number | null;
|
|
965
965
|
totalSpent: number | null;
|
|
966
966
|
numberOfHires: number | null;
|
|
@@ -1037,9 +1037,9 @@ export declare const jobResponseSchema: z.ZodObject<{
|
|
|
1037
1037
|
clientInfo: {
|
|
1038
1038
|
country: string | null;
|
|
1039
1039
|
region: string | null;
|
|
1040
|
+
rating: number | null;
|
|
1040
1041
|
isPaymentVerified: boolean | null;
|
|
1041
1042
|
numberOfReviews: number | null;
|
|
1042
|
-
rating: number | null;
|
|
1043
1043
|
jobsPosted: number | null;
|
|
1044
1044
|
totalSpent: number | null;
|
|
1045
1045
|
numberOfHires: number | null;
|
|
@@ -1116,9 +1116,9 @@ export declare const jobResponseSchema: z.ZodObject<{
|
|
|
1116
1116
|
clientInfo: {
|
|
1117
1117
|
country: string | null;
|
|
1118
1118
|
region: string | null;
|
|
1119
|
+
rating: number | null;
|
|
1119
1120
|
isPaymentVerified: boolean | null;
|
|
1120
1121
|
numberOfReviews: number | null;
|
|
1121
|
-
rating: number | null;
|
|
1122
1122
|
jobsPosted: number | null;
|
|
1123
1123
|
totalSpent: number | null;
|
|
1124
1124
|
numberOfHires: number | null;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { z } from
|
|
1
|
+
import { z } from "zod";
|
|
2
2
|
export declare const jobPipelineDetailsSchema: z.ZodObject<Pick<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
3
3
|
id: z.ZodNullable<z.ZodString>;
|
|
4
4
|
createdAt: z.ZodNullable<z.ZodNumber>;
|
|
@@ -222,7 +222,7 @@ export declare const jobPipelineDetailsSchema: z.ZodObject<Pick<z.objectUtil.ext
|
|
|
222
222
|
biddingAmount: z.ZodOptional<z.ZodNumber>;
|
|
223
223
|
boosted: z.ZodOptional<z.ZodBoolean>;
|
|
224
224
|
boostingAmount: z.ZodOptional<z.ZodNumber>;
|
|
225
|
-
}>, "title" | "metadata" | "description" | "status" | "jobId" | "updatedAt" | "
|
|
225
|
+
}>, "title" | "metadata" | "description" | "status" | "jobId" | "updatedAt" | "clientInfo" | "addedAt" | "suitabilityRating" | "suitabilityReason" | "suitabilityStatus" | "biddingAmount" | "boosted" | "boostingAmount">, "strip", z.ZodTypeAny, {
|
|
226
226
|
title: string | null;
|
|
227
227
|
metadata: {
|
|
228
228
|
hourlyRate: {
|
|
@@ -233,7 +233,6 @@ export declare const jobPipelineDetailsSchema: z.ZodObject<Pick<z.objectUtil.ext
|
|
|
233
233
|
};
|
|
234
234
|
description: string | null;
|
|
235
235
|
jobId: string;
|
|
236
|
-
questions: string[] | null;
|
|
237
236
|
clientInfo: {
|
|
238
237
|
country: string | null;
|
|
239
238
|
};
|
|
@@ -257,7 +256,6 @@ export declare const jobPipelineDetailsSchema: z.ZodObject<Pick<z.objectUtil.ext
|
|
|
257
256
|
};
|
|
258
257
|
description: string | null;
|
|
259
258
|
jobId: string;
|
|
260
|
-
questions: string[] | null;
|
|
261
259
|
clientInfo: {
|
|
262
260
|
country: string | null;
|
|
263
261
|
};
|
|
@@ -495,7 +493,7 @@ export declare const jobPipelineResponseSchema: z.ZodObject<{
|
|
|
495
493
|
biddingAmount: z.ZodOptional<z.ZodNumber>;
|
|
496
494
|
boosted: z.ZodOptional<z.ZodBoolean>;
|
|
497
495
|
boostingAmount: z.ZodOptional<z.ZodNumber>;
|
|
498
|
-
}>, "title" | "metadata" | "description" | "status" | "jobId" | "updatedAt" | "
|
|
496
|
+
}>, "title" | "metadata" | "description" | "status" | "jobId" | "updatedAt" | "clientInfo" | "addedAt" | "suitabilityRating" | "suitabilityReason" | "suitabilityStatus" | "biddingAmount" | "boosted" | "boostingAmount">, "strip", z.ZodTypeAny, {
|
|
499
497
|
title: string | null;
|
|
500
498
|
metadata: {
|
|
501
499
|
hourlyRate: {
|
|
@@ -506,7 +504,6 @@ export declare const jobPipelineResponseSchema: z.ZodObject<{
|
|
|
506
504
|
};
|
|
507
505
|
description: string | null;
|
|
508
506
|
jobId: string;
|
|
509
|
-
questions: string[] | null;
|
|
510
507
|
clientInfo: {
|
|
511
508
|
country: string | null;
|
|
512
509
|
};
|
|
@@ -530,7 +527,6 @@ export declare const jobPipelineResponseSchema: z.ZodObject<{
|
|
|
530
527
|
};
|
|
531
528
|
description: string | null;
|
|
532
529
|
jobId: string;
|
|
533
|
-
questions: string[] | null;
|
|
534
530
|
clientInfo: {
|
|
535
531
|
country: string | null;
|
|
536
532
|
};
|
|
@@ -559,7 +555,6 @@ export declare const jobPipelineResponseSchema: z.ZodObject<{
|
|
|
559
555
|
};
|
|
560
556
|
description: string | null;
|
|
561
557
|
jobId: string;
|
|
562
|
-
questions: string[] | null;
|
|
563
558
|
clientInfo: {
|
|
564
559
|
country: string | null;
|
|
565
560
|
};
|
|
@@ -588,7 +583,6 @@ export declare const jobPipelineResponseSchema: z.ZodObject<{
|
|
|
588
583
|
};
|
|
589
584
|
description: string | null;
|
|
590
585
|
jobId: string;
|
|
591
|
-
questions: string[] | null;
|
|
592
586
|
clientInfo: {
|
|
593
587
|
country: string | null;
|
|
594
588
|
};
|
|
@@ -33,7 +33,6 @@ exports.jobPipelineDetailsSchema = job_details_1.jobDetailsSchema
|
|
|
33
33
|
biddingAmount: true,
|
|
34
34
|
boostingAmount: true,
|
|
35
35
|
boosted: true,
|
|
36
|
-
questions: true,
|
|
37
36
|
});
|
|
38
37
|
exports.jobPipelineResponseSchema = zod_1.z.object({
|
|
39
38
|
jobs: zod_1.z.array(exports.jobPipelineDetailsSchema),
|
|
@@ -72,6 +72,8 @@ export declare const jobFiltersSchema: z.ZodObject<{
|
|
|
72
72
|
minHireRate: z.ZodNullable<z.ZodNumber>;
|
|
73
73
|
clientIndustry: z.ZodNullable<z.ZodArray<z.ZodEnum<["Aerospace", "Agriculture & Forestry", "Art & Design", "Automotive", "Aviation", "Education", "Energy & Utilities", "Engineering & Architecture", "Fashion & Beauty", "Finance & Accounting", "Food & Beverage", "Government & Public Sector", "Health & Fitness", "HR & Business Services", "Legal", "Manufacturing & Construction", "Media & Entertainment", "Military & Defense", "Mining", "Real Estate", "Retail & Consumer Goods", "Sales & Marketing", "Science & Medicine", "Sports & Recreation", "Supply Chain & Logistics", "Tech & IT", "Transportation & Warehousing", "Travel & Hospitality"]>, "many">>;
|
|
74
74
|
companySize: z.ZodNullable<z.ZodArray<z.ZodEnum<["Individual client", "Small company (2-9 people)", "Mid-sized company (10-99 people)", "Large company (100-1,000 people)", "Large company (1,000+ people)", "Unspecified"]>, "many">>;
|
|
75
|
+
minJobsPosted: z.ZodNullable<z.ZodNumber>;
|
|
76
|
+
minAvgHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
75
77
|
}, "strip", z.ZodTypeAny, {
|
|
76
78
|
isPaymentVerified: "false" | "all" | "true";
|
|
77
79
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
@@ -82,6 +84,8 @@ export declare const jobFiltersSchema: z.ZodObject<{
|
|
|
82
84
|
minTotalSpent: number | null;
|
|
83
85
|
minHireRate: number | null;
|
|
84
86
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
87
|
+
minJobsPosted: number | null;
|
|
88
|
+
minAvgHourlyRate: number | null;
|
|
85
89
|
}, {
|
|
86
90
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
87
91
|
clientLocationIncludes: string[] | null;
|
|
@@ -90,6 +94,8 @@ export declare const jobFiltersSchema: z.ZodObject<{
|
|
|
90
94
|
minTotalSpent: number | null;
|
|
91
95
|
minHireRate: number | null;
|
|
92
96
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
97
|
+
minJobsPosted: number | null;
|
|
98
|
+
minAvgHourlyRate: number | null;
|
|
93
99
|
isPaymentVerified?: "false" | "all" | "true" | undefined;
|
|
94
100
|
enterpriseClient?: "false" | "all" | "true" | undefined;
|
|
95
101
|
}>>;
|
|
@@ -128,6 +134,8 @@ export declare const jobFiltersSchema: z.ZodObject<{
|
|
|
128
134
|
minTotalSpent: number | null;
|
|
129
135
|
minHireRate: number | null;
|
|
130
136
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
137
|
+
minJobsPosted: number | null;
|
|
138
|
+
minAvgHourlyRate: number | null;
|
|
131
139
|
} | null;
|
|
132
140
|
vendorQualifications: {
|
|
133
141
|
includeRisingTalent: string | null;
|
|
@@ -168,6 +176,8 @@ export declare const jobFiltersSchema: z.ZodObject<{
|
|
|
168
176
|
minTotalSpent: number | null;
|
|
169
177
|
minHireRate: number | null;
|
|
170
178
|
clientIndustry: ("Engineering & Architecture" | "Legal" | "Sales & Marketing" | "Aerospace" | "Agriculture & Forestry" | "Art & Design" | "Automotive" | "Aviation" | "Education" | "Energy & Utilities" | "Fashion & Beauty" | "Finance & Accounting" | "Food & Beverage" | "Government & Public Sector" | "Health & Fitness" | "HR & Business Services" | "Manufacturing & Construction" | "Media & Entertainment" | "Military & Defense" | "Mining" | "Real Estate" | "Retail & Consumer Goods" | "Science & Medicine" | "Sports & Recreation" | "Supply Chain & Logistics" | "Tech & IT" | "Transportation & Warehousing" | "Travel & Hospitality")[] | null;
|
|
179
|
+
minJobsPosted: number | null;
|
|
180
|
+
minAvgHourlyRate: number | null;
|
|
171
181
|
isPaymentVerified?: "false" | "all" | "true" | undefined;
|
|
172
182
|
enterpriseClient?: "false" | "all" | "true" | undefined;
|
|
173
183
|
} | null;
|
|
@@ -59,6 +59,8 @@ exports.jobFiltersSchema = zod_1.z.object({
|
|
|
59
59
|
minHireRate: zod_1.z.number().min(0).max(100).nullable(),
|
|
60
60
|
clientIndustry: zod_1.z.array(exports.clientIndustryEnum).nullable(),
|
|
61
61
|
companySize: zod_1.z.array(exports.clientSizeEnum).nullable(),
|
|
62
|
+
minJobsPosted: zod_1.z.number().nullable(),
|
|
63
|
+
minAvgHourlyRate: zod_1.z.number().nullable(),
|
|
62
64
|
})
|
|
63
65
|
.nullable(),
|
|
64
66
|
vendorQualifications: zod_1.z
|
|
@@ -16,4 +16,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./upwork-account-status"), exports);
|
|
18
18
|
__exportStar(require("./upwork-business-manager-account"), exports);
|
|
19
|
-
__exportStar(require("./upwork-
|
|
19
|
+
__exportStar(require("./upwork-scraping-account"), exports);
|