lancer-shared 1.2.122 → 1.2.124
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 +298 -287
- package/dist/constants/job-filter-options.d.ts +2 -2
- package/dist/schemas/account/scraper-account.d.ts +11 -9
- package/dist/schemas/job/feed-job.d.ts +36 -12
- package/dist/schemas/job/job-filters.d.ts +14 -13
- package/dist/schemas/logger/log-event.d.ts +1067 -247
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Region } from
|
|
1
|
+
import { Region } from '../schemas';
|
|
2
2
|
export declare const JOB_FILTER_OPTIONS: {
|
|
3
3
|
REGIONS: readonly ["Worldwide", "USOnly", "UKOnly"];
|
|
4
4
|
PROJECT_DURATION: readonly ["Less than 1 month", "1 to 3 months", "3 to 6 months", "More than 6 months", "Unspecified"];
|
|
@@ -59,7 +59,7 @@ export declare const JOB_FILTER_OPTIONS: {
|
|
|
59
59
|
readonly value: "writing";
|
|
60
60
|
readonly children: readonly ["Content Writing", "Editing & Proofreading Services", "Professional & Business Writing", "Sales & Marketing Copywriting"];
|
|
61
61
|
}];
|
|
62
|
-
CATEGORIES: readonly ["Personal & Professional Coaching", "Accounting & Bookkeeping", "Financial Planning", "Recruiting & Human Resources", "Management Consulting & Analysis", "Other - Accounting & Consulting", "Data Entry & Transcription Services", "Virtual Assistance", "Project Management", "Market Research & Product Reviews", "Community Management & Tagging", "Customer Service & Tech Support", "Data Analysis & Testing", "Data Extraction/ETL", "Data Mining & Management", "AI & Machine Learning", "Art & Illustration", "Audio & Music Production", "Branding & Logo Design", "NFT, AR/VR & Game Art", "Graphic, Editorial & Presentation Design", "Performing Arts", "Photography", "Product Design", "Video & Animation", "Building & Landscape Architecture", "Chemical Engineering", "Civil & Structural Engineering", "Contract Manufacturing", "Electrical & Electronic Engineering", "Energy & Mechanical Engineering", "3D Modeling & CAD", "Database Management & Administration", "ERP/CRM Software", "Information Security & Compliance", "Network & System Administration", "DevOps & Solution Architecture", "Corporate & Contract Law", "International & Immigration Law", "Finance & Tax Law", "Public Law", "Digital Marketing", "Lead Generation & Telemarketing", "Marketing, PR & Brand Strategy", "Language Tutoring & Interpretation", "Translation & Localization Services", "Blockchain, NFT & Cryptocurrency", "AI Apps & Integration", "Desktop Application Development", "Ecommerce Development", "Game Design & Development", "Mobile Development", "Other - Software Development", "Product Management & Scrum", "QA Testing", "Scripts & Utilities", "Web & Mobile Design", "Web Development", "Sales & Marketing Copywriting", "Content Writing", "Editing & Proofreading Services", "Professional & Business Writing"];
|
|
62
|
+
CATEGORIES: readonly ["Interior & Trade Show Design", "Physical Sciences", "Personal & Professional Coaching", "Accounting & Bookkeeping", "Financial Planning", "Recruiting & Human Resources", "Management Consulting & Analysis", "Other - Accounting & Consulting", "Data Entry & Transcription Services", "Virtual Assistance", "Project Management", "Market Research & Product Reviews", "Community Management & Tagging", "Customer Service & Tech Support", "Data Analysis & Testing", "Data Extraction/ETL", "Data Mining & Management", "AI & Machine Learning", "Art & Illustration", "Audio & Music Production", "Branding & Logo Design", "NFT, AR/VR & Game Art", "Graphic, Editorial & Presentation Design", "Performing Arts", "Photography", "Product Design", "Video & Animation", "Building & Landscape Architecture", "Chemical Engineering", "Civil & Structural Engineering", "Contract Manufacturing", "Electrical & Electronic Engineering", "Energy & Mechanical Engineering", "3D Modeling & CAD", "Database Management & Administration", "ERP/CRM Software", "Information Security & Compliance", "Network & System Administration", "DevOps & Solution Architecture", "Corporate & Contract Law", "International & Immigration Law", "Finance & Tax Law", "Public Law", "Digital Marketing", "Lead Generation & Telemarketing", "Marketing, PR & Brand Strategy", "Language Tutoring & Interpretation", "Translation & Localization Services", "Blockchain, NFT & Cryptocurrency", "AI Apps & Integration", "Desktop Application Development", "Ecommerce Development", "Game Design & Development", "Mobile Development", "Other - Software Development", "Product Management & Scrum", "QA Testing", "Scripts & Utilities", "Web & Mobile Design", "Web Development", "Sales & Marketing Copywriting", "Content Writing", "Editing & Proofreading Services", "Professional & Business Writing"];
|
|
63
63
|
CLIENT_INDUSTRY: readonly ["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"];
|
|
64
64
|
CLIENT_SIZE: readonly ["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"];
|
|
65
65
|
};
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import { Proxy } from '../proxy';
|
|
3
3
|
export declare const scraperAccountType: z.ZodEnum<["feed", "job", "status", "activity", "profile", "unauthenticated"]>;
|
|
4
|
+
export declare const scraperAccountRegionEnum: z.ZodEnum<["Worldwide", "UKOnly", "USOnly"]>;
|
|
4
5
|
export declare const scraperAccountSchema: z.ZodObject<{
|
|
5
6
|
id: z.ZodString;
|
|
6
7
|
isActive: z.ZodBoolean;
|
|
7
|
-
region: z.ZodEnum<["
|
|
8
|
+
region: z.ZodEnum<["Worldwide", "UKOnly", "USOnly"]>;
|
|
8
9
|
email: z.ZodString;
|
|
9
10
|
password: z.ZodString;
|
|
10
11
|
securityQuestionAnswer: z.ZodNullable<z.ZodString>;
|
|
@@ -18,7 +19,7 @@ export declare const scraperAccountSchema: z.ZodObject<{
|
|
|
18
19
|
}, "strip", z.ZodTypeAny, {
|
|
19
20
|
id: string;
|
|
20
21
|
isActive: boolean;
|
|
21
|
-
region: "
|
|
22
|
+
region: "Worldwide" | "UKOnly" | "USOnly";
|
|
22
23
|
email: string;
|
|
23
24
|
password: string;
|
|
24
25
|
securityQuestionAnswer: string | null;
|
|
@@ -32,7 +33,7 @@ export declare const scraperAccountSchema: z.ZodObject<{
|
|
|
32
33
|
}, {
|
|
33
34
|
id: string;
|
|
34
35
|
isActive: boolean;
|
|
35
|
-
region: "
|
|
36
|
+
region: "Worldwide" | "UKOnly" | "USOnly";
|
|
36
37
|
email: string;
|
|
37
38
|
password: string;
|
|
38
39
|
securityQuestionAnswer: string | null;
|
|
@@ -47,7 +48,7 @@ export declare const scraperAccountSchema: z.ZodObject<{
|
|
|
47
48
|
export declare const createScraperAccountSchema: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
|
48
49
|
id: z.ZodString;
|
|
49
50
|
isActive: z.ZodBoolean;
|
|
50
|
-
region: z.ZodEnum<["
|
|
51
|
+
region: z.ZodEnum<["Worldwide", "UKOnly", "USOnly"]>;
|
|
51
52
|
email: z.ZodString;
|
|
52
53
|
password: z.ZodString;
|
|
53
54
|
securityQuestionAnswer: z.ZodNullable<z.ZodString>;
|
|
@@ -63,7 +64,7 @@ export declare const createScraperAccountSchema: z.ZodObject<z.objectUtil.extend
|
|
|
63
64
|
rotatingProxy: z.ZodOptional<z.ZodBoolean>;
|
|
64
65
|
}>, "strip", z.ZodTypeAny, {
|
|
65
66
|
isActive: boolean;
|
|
66
|
-
region: "
|
|
67
|
+
region: "Worldwide" | "UKOnly" | "USOnly";
|
|
67
68
|
email: string;
|
|
68
69
|
password: string;
|
|
69
70
|
securityQuestionAnswer: string | null;
|
|
@@ -72,7 +73,7 @@ export declare const createScraperAccountSchema: z.ZodObject<z.objectUtil.extend
|
|
|
72
73
|
rotatingProxy?: boolean | undefined;
|
|
73
74
|
}, {
|
|
74
75
|
isActive: boolean;
|
|
75
|
-
region: "
|
|
76
|
+
region: "Worldwide" | "UKOnly" | "USOnly";
|
|
76
77
|
email: string;
|
|
77
78
|
password: string;
|
|
78
79
|
securityQuestionAnswer: string | null;
|
|
@@ -82,7 +83,7 @@ export declare const createScraperAccountSchema: z.ZodObject<z.objectUtil.extend
|
|
|
82
83
|
}>;
|
|
83
84
|
export declare const updateScraperAccountSchema: z.ZodObject<{
|
|
84
85
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
85
|
-
region: z.ZodOptional<z.ZodEnum<["
|
|
86
|
+
region: z.ZodOptional<z.ZodEnum<["Worldwide", "UKOnly", "USOnly"]>>;
|
|
86
87
|
email: z.ZodOptional<z.ZodString>;
|
|
87
88
|
password: z.ZodOptional<z.ZodString>;
|
|
88
89
|
securityQuestionAnswer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -95,7 +96,7 @@ export declare const updateScraperAccountSchema: z.ZodObject<{
|
|
|
95
96
|
isProtected: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
96
97
|
}, "strip", z.ZodTypeAny, {
|
|
97
98
|
isActive?: boolean | undefined;
|
|
98
|
-
region?: "
|
|
99
|
+
region?: "Worldwide" | "UKOnly" | "USOnly" | undefined;
|
|
99
100
|
email?: string | undefined;
|
|
100
101
|
password?: string | undefined;
|
|
101
102
|
securityQuestionAnswer?: string | null | undefined;
|
|
@@ -108,7 +109,7 @@ export declare const updateScraperAccountSchema: z.ZodObject<{
|
|
|
108
109
|
isProtected?: boolean | undefined;
|
|
109
110
|
}, {
|
|
110
111
|
isActive?: boolean | undefined;
|
|
111
|
-
region?: "
|
|
112
|
+
region?: "Worldwide" | "UKOnly" | "USOnly" | undefined;
|
|
112
113
|
email?: string | undefined;
|
|
113
114
|
password?: string | undefined;
|
|
114
115
|
securityQuestionAnswer?: string | null | undefined;
|
|
@@ -126,3 +127,4 @@ export interface ScraperAccount extends z.infer<typeof scraperAccountSchema> {
|
|
|
126
127
|
}
|
|
127
128
|
export type CreateScraperAccount = z.infer<typeof createScraperAccountSchema>;
|
|
128
129
|
export type UpdateScraperAccount = z.infer<typeof updateScraperAccountSchema>;
|
|
130
|
+
export type ScraperAccountRegion = z.infer<typeof scraperAccountRegionEnum>;
|
|
@@ -4,6 +4,8 @@ export declare const feedJobSchemaV2: z.ZodObject<{
|
|
|
4
4
|
uid: z.ZodString;
|
|
5
5
|
ciphertext: z.ZodString;
|
|
6
6
|
title: z.ZodString;
|
|
7
|
+
category: z.ZodOptional<z.ZodString>;
|
|
8
|
+
jobUrl: z.ZodOptional<z.ZodString>;
|
|
7
9
|
description: z.ZodString;
|
|
8
10
|
createdOn: z.ZodString;
|
|
9
11
|
publishedOn: z.ZodString;
|
|
@@ -55,7 +57,7 @@ export declare const feedJobSchemaV2: z.ZodObject<{
|
|
|
55
57
|
freelancersToHire: z.ZodNumber;
|
|
56
58
|
relevanceEncoded: z.ZodString;
|
|
57
59
|
enterpriseJob: z.ZodBoolean;
|
|
58
|
-
tierText: z.ZodString
|
|
60
|
+
tierText: z.ZodNullable<z.ZodString>;
|
|
59
61
|
isApplied: z.ZodBoolean;
|
|
60
62
|
proposalsTier: z.ZodNullable<z.ZodString>;
|
|
61
63
|
premium: z.ZodBoolean;
|
|
@@ -127,7 +129,7 @@ export declare const feedJobSchemaV2: z.ZodObject<{
|
|
|
127
129
|
freelancersToHire: number;
|
|
128
130
|
relevanceEncoded: string;
|
|
129
131
|
enterpriseJob: boolean;
|
|
130
|
-
tierText: string;
|
|
132
|
+
tierText: string | null;
|
|
131
133
|
isApplied: boolean;
|
|
132
134
|
proposalsTier: string | null;
|
|
133
135
|
premium: boolean;
|
|
@@ -147,6 +149,8 @@ export declare const feedJobSchemaV2: z.ZodObject<{
|
|
|
147
149
|
amount: number;
|
|
148
150
|
};
|
|
149
151
|
isSTSVectorSearchResult: boolean;
|
|
152
|
+
category?: string | undefined;
|
|
153
|
+
jobUrl?: string | undefined;
|
|
150
154
|
clientRelation?: any;
|
|
151
155
|
}, {
|
|
152
156
|
type: number;
|
|
@@ -176,7 +180,7 @@ export declare const feedJobSchemaV2: z.ZodObject<{
|
|
|
176
180
|
freelancersToHire: number;
|
|
177
181
|
relevanceEncoded: string;
|
|
178
182
|
enterpriseJob: boolean;
|
|
179
|
-
tierText: string;
|
|
183
|
+
tierText: string | null;
|
|
180
184
|
isApplied: boolean;
|
|
181
185
|
proposalsTier: string | null;
|
|
182
186
|
premium: boolean;
|
|
@@ -196,6 +200,8 @@ export declare const feedJobSchemaV2: z.ZodObject<{
|
|
|
196
200
|
amount: number;
|
|
197
201
|
};
|
|
198
202
|
isSTSVectorSearchResult: boolean;
|
|
203
|
+
category?: string | undefined;
|
|
204
|
+
jobUrl?: string | undefined;
|
|
199
205
|
clientRelation?: any;
|
|
200
206
|
}>;
|
|
201
207
|
export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
@@ -218,6 +224,8 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
218
224
|
uid: z.ZodString;
|
|
219
225
|
ciphertext: z.ZodString;
|
|
220
226
|
title: z.ZodString;
|
|
227
|
+
category: z.ZodOptional<z.ZodString>;
|
|
228
|
+
jobUrl: z.ZodOptional<z.ZodString>;
|
|
221
229
|
description: z.ZodString;
|
|
222
230
|
createdOn: z.ZodString;
|
|
223
231
|
publishedOn: z.ZodString;
|
|
@@ -269,7 +277,7 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
269
277
|
freelancersToHire: z.ZodNumber;
|
|
270
278
|
relevanceEncoded: z.ZodString;
|
|
271
279
|
enterpriseJob: z.ZodBoolean;
|
|
272
|
-
tierText: z.ZodString
|
|
280
|
+
tierText: z.ZodNullable<z.ZodString>;
|
|
273
281
|
isApplied: z.ZodBoolean;
|
|
274
282
|
proposalsTier: z.ZodNullable<z.ZodString>;
|
|
275
283
|
premium: z.ZodBoolean;
|
|
@@ -341,7 +349,7 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
341
349
|
freelancersToHire: number;
|
|
342
350
|
relevanceEncoded: string;
|
|
343
351
|
enterpriseJob: boolean;
|
|
344
|
-
tierText: string;
|
|
352
|
+
tierText: string | null;
|
|
345
353
|
isApplied: boolean;
|
|
346
354
|
proposalsTier: string | null;
|
|
347
355
|
premium: boolean;
|
|
@@ -361,6 +369,8 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
361
369
|
amount: number;
|
|
362
370
|
};
|
|
363
371
|
isSTSVectorSearchResult: boolean;
|
|
372
|
+
category?: string | undefined;
|
|
373
|
+
jobUrl?: string | undefined;
|
|
364
374
|
clientRelation?: any;
|
|
365
375
|
}, {
|
|
366
376
|
type: number;
|
|
@@ -390,7 +400,7 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
390
400
|
freelancersToHire: number;
|
|
391
401
|
relevanceEncoded: string;
|
|
392
402
|
enterpriseJob: boolean;
|
|
393
|
-
tierText: string;
|
|
403
|
+
tierText: string | null;
|
|
394
404
|
isApplied: boolean;
|
|
395
405
|
proposalsTier: string | null;
|
|
396
406
|
premium: boolean;
|
|
@@ -410,6 +420,8 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
410
420
|
amount: number;
|
|
411
421
|
};
|
|
412
422
|
isSTSVectorSearchResult: boolean;
|
|
423
|
+
category?: string | undefined;
|
|
424
|
+
jobUrl?: string | undefined;
|
|
413
425
|
clientRelation?: any;
|
|
414
426
|
}>, "many">;
|
|
415
427
|
paging: z.ZodObject<{
|
|
@@ -463,7 +475,7 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
463
475
|
freelancersToHire: number;
|
|
464
476
|
relevanceEncoded: string;
|
|
465
477
|
enterpriseJob: boolean;
|
|
466
|
-
tierText: string;
|
|
478
|
+
tierText: string | null;
|
|
467
479
|
isApplied: boolean;
|
|
468
480
|
proposalsTier: string | null;
|
|
469
481
|
premium: boolean;
|
|
@@ -483,6 +495,8 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
483
495
|
amount: number;
|
|
484
496
|
};
|
|
485
497
|
isSTSVectorSearchResult: boolean;
|
|
498
|
+
category?: string | undefined;
|
|
499
|
+
jobUrl?: string | undefined;
|
|
486
500
|
clientRelation?: any;
|
|
487
501
|
}[];
|
|
488
502
|
paging: {
|
|
@@ -528,7 +542,7 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
528
542
|
freelancersToHire: number;
|
|
529
543
|
relevanceEncoded: string;
|
|
530
544
|
enterpriseJob: boolean;
|
|
531
|
-
tierText: string;
|
|
545
|
+
tierText: string | null;
|
|
532
546
|
isApplied: boolean;
|
|
533
547
|
proposalsTier: string | null;
|
|
534
548
|
premium: boolean;
|
|
@@ -548,6 +562,8 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
548
562
|
amount: number;
|
|
549
563
|
};
|
|
550
564
|
isSTSVectorSearchResult: boolean;
|
|
565
|
+
category?: string | undefined;
|
|
566
|
+
jobUrl?: string | undefined;
|
|
551
567
|
clientRelation?: any;
|
|
552
568
|
}[];
|
|
553
569
|
paging: {
|
|
@@ -595,7 +611,7 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
595
611
|
freelancersToHire: number;
|
|
596
612
|
relevanceEncoded: string;
|
|
597
613
|
enterpriseJob: boolean;
|
|
598
|
-
tierText: string;
|
|
614
|
+
tierText: string | null;
|
|
599
615
|
isApplied: boolean;
|
|
600
616
|
proposalsTier: string | null;
|
|
601
617
|
premium: boolean;
|
|
@@ -615,6 +631,8 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
615
631
|
amount: number;
|
|
616
632
|
};
|
|
617
633
|
isSTSVectorSearchResult: boolean;
|
|
634
|
+
category?: string | undefined;
|
|
635
|
+
jobUrl?: string | undefined;
|
|
618
636
|
clientRelation?: any;
|
|
619
637
|
}[];
|
|
620
638
|
paging: {
|
|
@@ -662,7 +680,7 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
662
680
|
freelancersToHire: number;
|
|
663
681
|
relevanceEncoded: string;
|
|
664
682
|
enterpriseJob: boolean;
|
|
665
|
-
tierText: string;
|
|
683
|
+
tierText: string | null;
|
|
666
684
|
isApplied: boolean;
|
|
667
685
|
proposalsTier: string | null;
|
|
668
686
|
premium: boolean;
|
|
@@ -682,6 +700,8 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
682
700
|
amount: number;
|
|
683
701
|
};
|
|
684
702
|
isSTSVectorSearchResult: boolean;
|
|
703
|
+
category?: string | undefined;
|
|
704
|
+
jobUrl?: string | undefined;
|
|
685
705
|
clientRelation?: any;
|
|
686
706
|
}[];
|
|
687
707
|
paging: {
|
|
@@ -731,7 +751,7 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
731
751
|
freelancersToHire: number;
|
|
732
752
|
relevanceEncoded: string;
|
|
733
753
|
enterpriseJob: boolean;
|
|
734
|
-
tierText: string;
|
|
754
|
+
tierText: string | null;
|
|
735
755
|
isApplied: boolean;
|
|
736
756
|
proposalsTier: string | null;
|
|
737
757
|
premium: boolean;
|
|
@@ -751,6 +771,8 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
751
771
|
amount: number;
|
|
752
772
|
};
|
|
753
773
|
isSTSVectorSearchResult: boolean;
|
|
774
|
+
category?: string | undefined;
|
|
775
|
+
jobUrl?: string | undefined;
|
|
754
776
|
clientRelation?: any;
|
|
755
777
|
}[];
|
|
756
778
|
paging: {
|
|
@@ -800,7 +822,7 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
800
822
|
freelancersToHire: number;
|
|
801
823
|
relevanceEncoded: string;
|
|
802
824
|
enterpriseJob: boolean;
|
|
803
|
-
tierText: string;
|
|
825
|
+
tierText: string | null;
|
|
804
826
|
isApplied: boolean;
|
|
805
827
|
proposalsTier: string | null;
|
|
806
828
|
premium: boolean;
|
|
@@ -820,6 +842,8 @@ export declare const nuxtStateJobsSearchSchema: z.ZodObject<{
|
|
|
820
842
|
amount: number;
|
|
821
843
|
};
|
|
822
844
|
isSTSVectorSearchResult: boolean;
|
|
845
|
+
category?: string | undefined;
|
|
846
|
+
jobUrl?: string | undefined;
|
|
823
847
|
clientRelation?: any;
|
|
824
848
|
}[];
|
|
825
849
|
paging: {
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { z } from
|
|
2
|
-
import { Region } from
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
import { Region } from '../shared';
|
|
3
3
|
export declare const projectDurationEnum: z.ZodEnum<["Less than 1 month", "1 to 3 months", "3 to 6 months", "More than 6 months", "Unspecified"]>;
|
|
4
4
|
export declare const engagementTypeEnum: z.ZodEnum<["Less than 30 hrs/week", "More than 30 hrs/week", "Unspecified"]>;
|
|
5
5
|
export declare const vendorTypeEnum: z.ZodEnum<["Independent", "Agency", "Unspecified"]>;
|
|
6
6
|
export declare const paymentTypeEnum: z.ZodEnum<["Unspecified", "Hourly", "Fixed-price"]>;
|
|
7
|
-
export declare const categoryEnum: z.ZodEnum<["Personal & Professional Coaching", "Accounting & Bookkeeping", "Financial Planning", "Recruiting & Human Resources", "Management Consulting & Analysis", "Other - Accounting & Consulting", "Data Entry & Transcription Services", "Virtual Assistance", "Project Management", "Market Research & Product Reviews", "Community Management & Tagging", "Customer Service & Tech Support", "Data Analysis & Testing", "Data Extraction/ETL", "Data Mining & Management", "AI & Machine Learning", "Art & Illustration", "Audio & Music Production", "Branding & Logo Design", "NFT, AR/VR & Game Art", "Graphic, Editorial & Presentation Design", "Performing Arts", "Photography", "Product Design", "Video & Animation", "Building & Landscape Architecture", "Chemical Engineering", "Civil & Structural Engineering", "Contract Manufacturing", "Electrical & Electronic Engineering", "Energy & Mechanical Engineering", "3D Modeling & CAD", "Database Management & Administration", "ERP/CRM Software", "Information Security & Compliance", "Network & System Administration", "DevOps & Solution Architecture", "Corporate & Contract Law", "International & Immigration Law", "Finance & Tax Law", "Public Law", "Digital Marketing", "Lead Generation & Telemarketing", "Marketing, PR & Brand Strategy", "Language Tutoring & Interpretation", "Translation & Localization Services", "Blockchain, NFT & Cryptocurrency", "AI Apps & Integration", "Desktop Application Development", "Ecommerce Development", "Game Design & Development", "Mobile Development", "Other - Software Development", "Product Management & Scrum", "QA Testing", "Scripts & Utilities", "Web & Mobile Design", "Web Development", "Sales & Marketing Copywriting", "Content Writing", "Editing & Proofreading Services", "Professional & Business Writing"]>;
|
|
7
|
+
export declare const categoryEnum: z.ZodEnum<["Interior & Trade Show Design", "Physical Sciences", "Personal & Professional Coaching", "Accounting & Bookkeeping", "Financial Planning", "Recruiting & Human Resources", "Management Consulting & Analysis", "Other - Accounting & Consulting", "Data Entry & Transcription Services", "Virtual Assistance", "Project Management", "Market Research & Product Reviews", "Community Management & Tagging", "Customer Service & Tech Support", "Data Analysis & Testing", "Data Extraction/ETL", "Data Mining & Management", "AI & Machine Learning", "Art & Illustration", "Audio & Music Production", "Branding & Logo Design", "NFT, AR/VR & Game Art", "Graphic, Editorial & Presentation Design", "Performing Arts", "Photography", "Product Design", "Video & Animation", "Building & Landscape Architecture", "Chemical Engineering", "Civil & Structural Engineering", "Contract Manufacturing", "Electrical & Electronic Engineering", "Energy & Mechanical Engineering", "3D Modeling & CAD", "Database Management & Administration", "ERP/CRM Software", "Information Security & Compliance", "Network & System Administration", "DevOps & Solution Architecture", "Corporate & Contract Law", "International & Immigration Law", "Finance & Tax Law", "Public Law", "Digital Marketing", "Lead Generation & Telemarketing", "Marketing, PR & Brand Strategy", "Language Tutoring & Interpretation", "Translation & Localization Services", "Blockchain, NFT & Cryptocurrency", "AI Apps & Integration", "Desktop Application Development", "Ecommerce Development", "Game Design & Development", "Mobile Development", "Other - Software Development", "Product Management & Scrum", "QA Testing", "Scripts & Utilities", "Web & Mobile Design", "Web Development", "Sales & Marketing Copywriting", "Content Writing", "Editing & Proofreading Services", "Professional & Business Writing"]>;
|
|
8
8
|
export declare const clientIndustryEnum: 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"]>;
|
|
9
9
|
export declare const clientSizeEnum: 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"]>;
|
|
10
10
|
export declare const talentTypeEnum: z.ZodEnum<["Agency", "Independent", "Unspecified"]>;
|
|
@@ -30,14 +30,14 @@ export declare const jobFiltersSchema: z.ZodObject<{
|
|
|
30
30
|
isFeatured: z.ZodNullable<z.ZodEnum<["all", "true", "false"]>>;
|
|
31
31
|
regions: z.ZodNullable<z.ZodArray<z.ZodEnum<["all", "Worldwide", "UKOnly", "USOnly"]>, "many">>;
|
|
32
32
|
categories: z.ZodNullable<z.ZodObject<{
|
|
33
|
-
includes: z.ZodNullable<z.ZodArray<z.ZodEnum<["Personal & Professional Coaching", "Accounting & Bookkeeping", "Financial Planning", "Recruiting & Human Resources", "Management Consulting & Analysis", "Other - Accounting & Consulting", "Data Entry & Transcription Services", "Virtual Assistance", "Project Management", "Market Research & Product Reviews", "Community Management & Tagging", "Customer Service & Tech Support", "Data Analysis & Testing", "Data Extraction/ETL", "Data Mining & Management", "AI & Machine Learning", "Art & Illustration", "Audio & Music Production", "Branding & Logo Design", "NFT, AR/VR & Game Art", "Graphic, Editorial & Presentation Design", "Performing Arts", "Photography", "Product Design", "Video & Animation", "Building & Landscape Architecture", "Chemical Engineering", "Civil & Structural Engineering", "Contract Manufacturing", "Electrical & Electronic Engineering", "Energy & Mechanical Engineering", "3D Modeling & CAD", "Database Management & Administration", "ERP/CRM Software", "Information Security & Compliance", "Network & System Administration", "DevOps & Solution Architecture", "Corporate & Contract Law", "International & Immigration Law", "Finance & Tax Law", "Public Law", "Digital Marketing", "Lead Generation & Telemarketing", "Marketing, PR & Brand Strategy", "Language Tutoring & Interpretation", "Translation & Localization Services", "Blockchain, NFT & Cryptocurrency", "AI Apps & Integration", "Desktop Application Development", "Ecommerce Development", "Game Design & Development", "Mobile Development", "Other - Software Development", "Product Management & Scrum", "QA Testing", "Scripts & Utilities", "Web & Mobile Design", "Web Development", "Sales & Marketing Copywriting", "Content Writing", "Editing & Proofreading Services", "Professional & Business Writing"]>, "many">>;
|
|
34
|
-
excludes: z.ZodNullable<z.ZodArray<z.ZodEnum<["Personal & Professional Coaching", "Accounting & Bookkeeping", "Financial Planning", "Recruiting & Human Resources", "Management Consulting & Analysis", "Other - Accounting & Consulting", "Data Entry & Transcription Services", "Virtual Assistance", "Project Management", "Market Research & Product Reviews", "Community Management & Tagging", "Customer Service & Tech Support", "Data Analysis & Testing", "Data Extraction/ETL", "Data Mining & Management", "AI & Machine Learning", "Art & Illustration", "Audio & Music Production", "Branding & Logo Design", "NFT, AR/VR & Game Art", "Graphic, Editorial & Presentation Design", "Performing Arts", "Photography", "Product Design", "Video & Animation", "Building & Landscape Architecture", "Chemical Engineering", "Civil & Structural Engineering", "Contract Manufacturing", "Electrical & Electronic Engineering", "Energy & Mechanical Engineering", "3D Modeling & CAD", "Database Management & Administration", "ERP/CRM Software", "Information Security & Compliance", "Network & System Administration", "DevOps & Solution Architecture", "Corporate & Contract Law", "International & Immigration Law", "Finance & Tax Law", "Public Law", "Digital Marketing", "Lead Generation & Telemarketing", "Marketing, PR & Brand Strategy", "Language Tutoring & Interpretation", "Translation & Localization Services", "Blockchain, NFT & Cryptocurrency", "AI Apps & Integration", "Desktop Application Development", "Ecommerce Development", "Game Design & Development", "Mobile Development", "Other - Software Development", "Product Management & Scrum", "QA Testing", "Scripts & Utilities", "Web & Mobile Design", "Web Development", "Sales & Marketing Copywriting", "Content Writing", "Editing & Proofreading Services", "Professional & Business Writing"]>, "many">>;
|
|
33
|
+
includes: z.ZodNullable<z.ZodArray<z.ZodEnum<["Interior & Trade Show Design", "Physical Sciences", "Personal & Professional Coaching", "Accounting & Bookkeeping", "Financial Planning", "Recruiting & Human Resources", "Management Consulting & Analysis", "Other - Accounting & Consulting", "Data Entry & Transcription Services", "Virtual Assistance", "Project Management", "Market Research & Product Reviews", "Community Management & Tagging", "Customer Service & Tech Support", "Data Analysis & Testing", "Data Extraction/ETL", "Data Mining & Management", "AI & Machine Learning", "Art & Illustration", "Audio & Music Production", "Branding & Logo Design", "NFT, AR/VR & Game Art", "Graphic, Editorial & Presentation Design", "Performing Arts", "Photography", "Product Design", "Video & Animation", "Building & Landscape Architecture", "Chemical Engineering", "Civil & Structural Engineering", "Contract Manufacturing", "Electrical & Electronic Engineering", "Energy & Mechanical Engineering", "3D Modeling & CAD", "Database Management & Administration", "ERP/CRM Software", "Information Security & Compliance", "Network & System Administration", "DevOps & Solution Architecture", "Corporate & Contract Law", "International & Immigration Law", "Finance & Tax Law", "Public Law", "Digital Marketing", "Lead Generation & Telemarketing", "Marketing, PR & Brand Strategy", "Language Tutoring & Interpretation", "Translation & Localization Services", "Blockchain, NFT & Cryptocurrency", "AI Apps & Integration", "Desktop Application Development", "Ecommerce Development", "Game Design & Development", "Mobile Development", "Other - Software Development", "Product Management & Scrum", "QA Testing", "Scripts & Utilities", "Web & Mobile Design", "Web Development", "Sales & Marketing Copywriting", "Content Writing", "Editing & Proofreading Services", "Professional & Business Writing"]>, "many">>;
|
|
34
|
+
excludes: z.ZodNullable<z.ZodArray<z.ZodEnum<["Interior & Trade Show Design", "Physical Sciences", "Personal & Professional Coaching", "Accounting & Bookkeeping", "Financial Planning", "Recruiting & Human Resources", "Management Consulting & Analysis", "Other - Accounting & Consulting", "Data Entry & Transcription Services", "Virtual Assistance", "Project Management", "Market Research & Product Reviews", "Community Management & Tagging", "Customer Service & Tech Support", "Data Analysis & Testing", "Data Extraction/ETL", "Data Mining & Management", "AI & Machine Learning", "Art & Illustration", "Audio & Music Production", "Branding & Logo Design", "NFT, AR/VR & Game Art", "Graphic, Editorial & Presentation Design", "Performing Arts", "Photography", "Product Design", "Video & Animation", "Building & Landscape Architecture", "Chemical Engineering", "Civil & Structural Engineering", "Contract Manufacturing", "Electrical & Electronic Engineering", "Energy & Mechanical Engineering", "3D Modeling & CAD", "Database Management & Administration", "ERP/CRM Software", "Information Security & Compliance", "Network & System Administration", "DevOps & Solution Architecture", "Corporate & Contract Law", "International & Immigration Law", "Finance & Tax Law", "Public Law", "Digital Marketing", "Lead Generation & Telemarketing", "Marketing, PR & Brand Strategy", "Language Tutoring & Interpretation", "Translation & Localization Services", "Blockchain, NFT & Cryptocurrency", "AI Apps & Integration", "Desktop Application Development", "Ecommerce Development", "Game Design & Development", "Mobile Development", "Other - Software Development", "Product Management & Scrum", "QA Testing", "Scripts & Utilities", "Web & Mobile Design", "Web Development", "Sales & Marketing Copywriting", "Content Writing", "Editing & Proofreading Services", "Professional & Business Writing"]>, "many">>;
|
|
35
35
|
}, "strip", z.ZodTypeAny, {
|
|
36
|
-
includes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting")[] | null;
|
|
37
|
-
excludes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting")[] | null;
|
|
36
|
+
includes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting" | "Interior & Trade Show Design" | "Physical Sciences")[] | null;
|
|
37
|
+
excludes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting" | "Interior & Trade Show Design" | "Physical Sciences")[] | null;
|
|
38
38
|
}, {
|
|
39
|
-
includes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting")[] | null;
|
|
40
|
-
excludes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting")[] | null;
|
|
39
|
+
includes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting" | "Interior & Trade Show Design" | "Physical Sciences")[] | null;
|
|
40
|
+
excludes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting" | "Interior & Trade Show Design" | "Physical Sciences")[] | null;
|
|
41
41
|
}>>;
|
|
42
42
|
payment: z.ZodNullable<z.ZodObject<{
|
|
43
43
|
paymentType: z.ZodNullable<z.ZodArray<z.ZodEnum<["Unspecified", "Hourly", "Fixed-price"]>, "many">>;
|
|
@@ -150,8 +150,8 @@ export declare const jobFiltersSchema: z.ZodObject<{
|
|
|
150
150
|
isFeatured: "all" | "true" | "false" | null;
|
|
151
151
|
regions: ("Worldwide" | "USOnly" | "UKOnly" | "all")[] | null;
|
|
152
152
|
categories: {
|
|
153
|
-
includes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting")[] | null;
|
|
154
|
-
excludes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting")[] | null;
|
|
153
|
+
includes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting" | "Interior & Trade Show Design" | "Physical Sciences")[] | null;
|
|
154
|
+
excludes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting" | "Interior & Trade Show Design" | "Physical Sciences")[] | null;
|
|
155
155
|
} | null;
|
|
156
156
|
payment: {
|
|
157
157
|
paymentType: ("Unspecified" | "Hourly" | "Fixed-price")[] | null;
|
|
@@ -200,8 +200,8 @@ export declare const jobFiltersSchema: z.ZodObject<{
|
|
|
200
200
|
isFeatured: "all" | "true" | "false" | null;
|
|
201
201
|
regions: ("Worldwide" | "USOnly" | "UKOnly" | "all")[] | null;
|
|
202
202
|
categories: {
|
|
203
|
-
includes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting")[] | null;
|
|
204
|
-
excludes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting")[] | null;
|
|
203
|
+
includes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting" | "Interior & Trade Show Design" | "Physical Sciences")[] | null;
|
|
204
|
+
excludes: ("Accounting & Bookkeeping" | "Financial Planning" | "Management Consulting & Analysis" | "Other - Accounting & Consulting" | "Personal & Professional Coaching" | "Recruiting & Human Resources" | "Data Entry & Transcription Services" | "Market Research & Product Reviews" | "Project Management" | "Virtual Assistance" | "Community Management & Tagging" | "Customer Service & Tech Support" | "AI & Machine Learning" | "Data Analysis & Testing" | "Data Extraction/ETL" | "Data Mining & Management" | "Art & Illustration" | "Audio & Music Production" | "Branding & Logo Design" | "Graphic, Editorial & Presentation Design" | "NFT, AR/VR & Game Art" | "Performing Arts" | "Photography" | "Product Design" | "Video & Animation" | "3D Modeling & CAD" | "Building & Landscape Architecture" | "Chemical Engineering" | "Civil & Structural Engineering" | "Contract Manufacturing" | "Electrical & Electronic Engineering" | "Energy & Mechanical Engineering" | "Database Management & Administration" | "DevOps & Solution Architecture" | "ERP/CRM Software" | "Information Security & Compliance" | "Network & System Administration" | "Corporate & Contract Law" | "Finance & Tax Law" | "International & Immigration Law" | "Public Law" | "Digital Marketing" | "Lead Generation & Telemarketing" | "Marketing, PR & Brand Strategy" | "Language Tutoring & Interpretation" | "Translation & Localization Services" | "AI Apps & Integration" | "Blockchain, NFT & Cryptocurrency" | "Desktop Application Development" | "Ecommerce Development" | "Game Design & Development" | "Mobile Development" | "Other - Software Development" | "Product Management & Scrum" | "QA Testing" | "Scripts & Utilities" | "Web & Mobile Design" | "Web Development" | "Content Writing" | "Editing & Proofreading Services" | "Professional & Business Writing" | "Sales & Marketing Copywriting" | "Interior & Trade Show Design" | "Physical Sciences")[] | null;
|
|
205
205
|
} | null;
|
|
206
206
|
payment: {
|
|
207
207
|
paymentType: ("Unspecified" | "Hourly" | "Fixed-price")[] | null;
|
|
@@ -250,6 +250,7 @@ export type ExperienceLevel = z.infer<typeof experienceLevelEnum>;
|
|
|
250
250
|
export type IsPaymentVerified = z.infer<typeof isPaymentVerifiedEnum>;
|
|
251
251
|
export type IsPhoneVerified = z.infer<typeof isPaymentVerifiedEnum>;
|
|
252
252
|
export type HasQuestions = z.infer<typeof hasQuestionsEnum>;
|
|
253
|
+
export type JobCategory = z.infer<typeof categoryEnum>;
|
|
253
254
|
export interface Counts {
|
|
254
255
|
experienceLevel: Record<ExperienceLevel, number>;
|
|
255
256
|
paymentType: Record<PaymentType, number>;
|