lancer-shared 1.0.157 → 1.0.158
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/bidder-account.d.ts +35 -35
- package/dist/schemas/account/scraper-account.d.ts +29 -29
- package/dist/schemas/bid/bid.d.ts +26 -26
- package/dist/schemas/campaign/campaign-analytics.d.ts +14 -14
- package/dist/schemas/campaign/campaign.d.ts +252 -252
- package/dist/schemas/index.d.ts +11 -10
- package/dist/schemas/index.js +11 -10
- package/dist/schemas/job-filters/job-filters.d.ts +36 -36
- package/dist/schemas/lead/lead-note.d.ts +4 -4
- package/dist/schemas/lead/lead.d.ts +270 -270
- package/dist/schemas/proxy/index.d.ts +1 -0
- package/dist/schemas/proxy/index.js +17 -0
- package/dist/schemas/proxy/proxy.d.ts +31 -0
- package/dist/schemas/proxy/proxy.js +15 -0
- package/dist/schemas/saved-search/index.d.ts +2 -2
- package/dist/schemas/scraper/scrape-payload.d.ts +6 -6
- package/dist/schemas/scraper/scrape-result.d.ts +84 -84
- package/package.json +1 -1
|
@@ -19,32 +19,32 @@ export declare const bidderAccountSchema: z.ZodObject<{
|
|
|
19
19
|
id: string;
|
|
20
20
|
email: string;
|
|
21
21
|
status: "suspended" | "verification_required" | "shadow_banned" | "healthy" | "banned";
|
|
22
|
-
createdAt: number;
|
|
23
|
-
updatedAt: number;
|
|
24
|
-
cookies: any[] | null;
|
|
25
|
-
password: string;
|
|
26
|
-
isActive: boolean;
|
|
27
|
-
multiLoginProfileId: string | null;
|
|
28
22
|
provider: "user-provided" | "lancer-provided";
|
|
23
|
+
password: string;
|
|
24
|
+
cookies: any[] | null;
|
|
29
25
|
verified: boolean;
|
|
26
|
+
isActive: boolean;
|
|
30
27
|
assignedOrganizations: string[];
|
|
31
28
|
lastUsed: number | null;
|
|
29
|
+
multiLoginProfileId: string | null;
|
|
32
30
|
proxy: string | null;
|
|
31
|
+
createdAt: number;
|
|
32
|
+
updatedAt: number;
|
|
33
33
|
}, {
|
|
34
34
|
id: string;
|
|
35
35
|
email: string;
|
|
36
36
|
status: "suspended" | "verification_required" | "shadow_banned" | "healthy" | "banned";
|
|
37
|
-
createdAt: number;
|
|
38
|
-
updatedAt: number;
|
|
39
|
-
cookies: any[] | null;
|
|
40
|
-
password: string;
|
|
41
|
-
isActive: boolean;
|
|
42
|
-
multiLoginProfileId: string | null;
|
|
43
37
|
provider: "user-provided" | "lancer-provided";
|
|
38
|
+
password: string;
|
|
39
|
+
cookies: any[] | null;
|
|
44
40
|
verified: boolean;
|
|
41
|
+
isActive: boolean;
|
|
45
42
|
assignedOrganizations: string[];
|
|
46
43
|
lastUsed: number | null;
|
|
44
|
+
multiLoginProfileId: string | null;
|
|
47
45
|
proxy: string | null;
|
|
46
|
+
createdAt: number;
|
|
47
|
+
updatedAt: number;
|
|
48
48
|
}>;
|
|
49
49
|
export declare const createBidderAccountSchema: z.ZodObject<Pick<{
|
|
50
50
|
id: z.ZodString;
|
|
@@ -61,61 +61,61 @@ export declare const createBidderAccountSchema: z.ZodObject<Pick<{
|
|
|
61
61
|
proxy: z.ZodNullable<z.ZodString>;
|
|
62
62
|
createdAt: z.ZodNumber;
|
|
63
63
|
updatedAt: z.ZodNumber;
|
|
64
|
-
}, "email" | "status" | "
|
|
64
|
+
}, "email" | "status" | "provider" | "password" | "verified" | "isActive">, "strip", z.ZodTypeAny, {
|
|
65
65
|
email: string;
|
|
66
66
|
status: "suspended" | "verification_required" | "shadow_banned" | "healthy" | "banned";
|
|
67
|
-
password: string;
|
|
68
|
-
isActive: boolean;
|
|
69
67
|
provider: "user-provided" | "lancer-provided";
|
|
68
|
+
password: string;
|
|
70
69
|
verified: boolean;
|
|
70
|
+
isActive: boolean;
|
|
71
71
|
}, {
|
|
72
72
|
email: string;
|
|
73
73
|
status: "suspended" | "verification_required" | "shadow_banned" | "healthy" | "banned";
|
|
74
|
-
password: string;
|
|
75
|
-
isActive: boolean;
|
|
76
74
|
provider: "user-provided" | "lancer-provided";
|
|
75
|
+
password: string;
|
|
77
76
|
verified: boolean;
|
|
77
|
+
isActive: boolean;
|
|
78
78
|
}>;
|
|
79
79
|
export declare const updateBidderAccountSchema: z.ZodObject<{
|
|
80
80
|
email: z.ZodOptional<z.ZodString>;
|
|
81
81
|
status: z.ZodOptional<z.ZodEnum<["verification_required", "shadow_banned", "healthy", "banned", "suspended"]>>;
|
|
82
|
-
createdAt: z.ZodOptional<z.ZodNumber>;
|
|
83
|
-
updatedAt: z.ZodOptional<z.ZodNumber>;
|
|
84
|
-
cookies: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodAny, "many">>>;
|
|
85
|
-
password: z.ZodOptional<z.ZodString>;
|
|
86
|
-
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
87
|
-
multiLoginProfileId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
88
82
|
provider: z.ZodOptional<z.ZodEnum<["user-provided", "lancer-provided"]>>;
|
|
83
|
+
password: z.ZodOptional<z.ZodString>;
|
|
84
|
+
cookies: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodAny, "many">>>;
|
|
89
85
|
verified: z.ZodOptional<z.ZodBoolean>;
|
|
86
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
90
87
|
assignedOrganizations: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
91
88
|
lastUsed: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
89
|
+
multiLoginProfileId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
92
90
|
proxy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
91
|
+
createdAt: z.ZodOptional<z.ZodNumber>;
|
|
92
|
+
updatedAt: z.ZodOptional<z.ZodNumber>;
|
|
93
93
|
}, "strip", z.ZodTypeAny, {
|
|
94
94
|
email?: string | undefined;
|
|
95
95
|
status?: "suspended" | "verification_required" | "shadow_banned" | "healthy" | "banned" | undefined;
|
|
96
|
-
createdAt?: number | undefined;
|
|
97
|
-
updatedAt?: number | undefined;
|
|
98
|
-
cookies?: any[] | null | undefined;
|
|
99
|
-
password?: string | undefined;
|
|
100
|
-
isActive?: boolean | undefined;
|
|
101
|
-
multiLoginProfileId?: string | null | undefined;
|
|
102
96
|
provider?: "user-provided" | "lancer-provided" | undefined;
|
|
97
|
+
password?: string | undefined;
|
|
98
|
+
cookies?: any[] | null | undefined;
|
|
103
99
|
verified?: boolean | undefined;
|
|
100
|
+
isActive?: boolean | undefined;
|
|
104
101
|
assignedOrganizations?: string[] | undefined;
|
|
105
102
|
lastUsed?: number | null | undefined;
|
|
103
|
+
multiLoginProfileId?: string | null | undefined;
|
|
106
104
|
proxy?: string | null | undefined;
|
|
105
|
+
createdAt?: number | undefined;
|
|
106
|
+
updatedAt?: number | undefined;
|
|
107
107
|
}, {
|
|
108
108
|
email?: string | undefined;
|
|
109
109
|
status?: "suspended" | "verification_required" | "shadow_banned" | "healthy" | "banned" | undefined;
|
|
110
|
-
createdAt?: number | undefined;
|
|
111
|
-
updatedAt?: number | undefined;
|
|
112
|
-
cookies?: any[] | null | undefined;
|
|
113
|
-
password?: string | undefined;
|
|
114
|
-
isActive?: boolean | undefined;
|
|
115
|
-
multiLoginProfileId?: string | null | undefined;
|
|
116
110
|
provider?: "user-provided" | "lancer-provided" | undefined;
|
|
111
|
+
password?: string | undefined;
|
|
112
|
+
cookies?: any[] | null | undefined;
|
|
117
113
|
verified?: boolean | undefined;
|
|
114
|
+
isActive?: boolean | undefined;
|
|
118
115
|
assignedOrganizations?: string[] | undefined;
|
|
119
116
|
lastUsed?: number | null | undefined;
|
|
117
|
+
multiLoginProfileId?: string | null | undefined;
|
|
120
118
|
proxy?: string | null | undefined;
|
|
119
|
+
createdAt?: number | undefined;
|
|
120
|
+
updatedAt?: number | undefined;
|
|
121
121
|
}>;
|
|
@@ -16,13 +16,13 @@ export declare const scraperAccountSchema: z.ZodObject<{
|
|
|
16
16
|
screenshotUrl: z.ZodString;
|
|
17
17
|
htmlUrl: z.ZodString;
|
|
18
18
|
}, "strip", z.ZodTypeAny, {
|
|
19
|
-
timestamp: number;
|
|
20
19
|
errorMessage: string;
|
|
20
|
+
timestamp: number;
|
|
21
21
|
screenshotUrl: string;
|
|
22
22
|
htmlUrl: string;
|
|
23
23
|
}, {
|
|
24
|
-
timestamp: number;
|
|
25
24
|
errorMessage: string;
|
|
25
|
+
timestamp: number;
|
|
26
26
|
screenshotUrl: string;
|
|
27
27
|
htmlUrl: string;
|
|
28
28
|
}>, "many">;
|
|
@@ -30,16 +30,16 @@ export declare const scraperAccountSchema: z.ZodObject<{
|
|
|
30
30
|
id: string;
|
|
31
31
|
email: string;
|
|
32
32
|
status: "suspended" | "verification_required" | "shadow_banned" | "healthy" | "banned";
|
|
33
|
-
region: "all" | "
|
|
34
|
-
cookies: Record<string, string>;
|
|
33
|
+
region: "all" | "Worldwide" | "UKOnly" | "USOnly";
|
|
35
34
|
password: string;
|
|
36
|
-
|
|
35
|
+
cookies: Record<string, string>;
|
|
37
36
|
verified: boolean;
|
|
37
|
+
isActive: boolean;
|
|
38
38
|
lastUsed: number;
|
|
39
39
|
proxy_credentials: string;
|
|
40
40
|
errors: {
|
|
41
|
-
timestamp: number;
|
|
42
41
|
errorMessage: string;
|
|
42
|
+
timestamp: number;
|
|
43
43
|
screenshotUrl: string;
|
|
44
44
|
htmlUrl: string;
|
|
45
45
|
}[];
|
|
@@ -47,16 +47,16 @@ export declare const scraperAccountSchema: z.ZodObject<{
|
|
|
47
47
|
id: string;
|
|
48
48
|
email: string;
|
|
49
49
|
status: "suspended" | "verification_required" | "shadow_banned" | "healthy" | "banned";
|
|
50
|
-
region: "all" | "
|
|
51
|
-
cookies: Record<string, string>;
|
|
50
|
+
region: "all" | "Worldwide" | "UKOnly" | "USOnly";
|
|
52
51
|
password: string;
|
|
53
|
-
|
|
52
|
+
cookies: Record<string, string>;
|
|
54
53
|
verified: boolean;
|
|
54
|
+
isActive: boolean;
|
|
55
55
|
lastUsed: number;
|
|
56
56
|
proxy_credentials: string;
|
|
57
57
|
errors: {
|
|
58
|
-
timestamp: number;
|
|
59
58
|
errorMessage: string;
|
|
59
|
+
timestamp: number;
|
|
60
60
|
screenshotUrl: string;
|
|
61
61
|
htmlUrl: string;
|
|
62
62
|
}[];
|
|
@@ -78,39 +78,39 @@ export declare const createScraperAccountSchema: z.ZodObject<Pick<{
|
|
|
78
78
|
screenshotUrl: z.ZodString;
|
|
79
79
|
htmlUrl: z.ZodString;
|
|
80
80
|
}, "strip", z.ZodTypeAny, {
|
|
81
|
-
timestamp: number;
|
|
82
81
|
errorMessage: string;
|
|
82
|
+
timestamp: number;
|
|
83
83
|
screenshotUrl: string;
|
|
84
84
|
htmlUrl: string;
|
|
85
85
|
}, {
|
|
86
|
-
timestamp: number;
|
|
87
86
|
errorMessage: string;
|
|
87
|
+
timestamp: number;
|
|
88
88
|
screenshotUrl: string;
|
|
89
89
|
htmlUrl: string;
|
|
90
90
|
}>, "many">;
|
|
91
|
-
}, "email" | "region" | "password" | "
|
|
91
|
+
}, "email" | "region" | "password" | "verified" | "isActive" | "proxy_credentials">, "strip", z.ZodTypeAny, {
|
|
92
92
|
email: string;
|
|
93
|
-
region: "all" | "
|
|
93
|
+
region: "all" | "Worldwide" | "UKOnly" | "USOnly";
|
|
94
94
|
password: string;
|
|
95
|
-
isActive: boolean;
|
|
96
95
|
verified: boolean;
|
|
96
|
+
isActive: boolean;
|
|
97
97
|
proxy_credentials: string;
|
|
98
98
|
}, {
|
|
99
99
|
email: string;
|
|
100
|
-
region: "all" | "
|
|
100
|
+
region: "all" | "Worldwide" | "UKOnly" | "USOnly";
|
|
101
101
|
password: string;
|
|
102
|
-
isActive: boolean;
|
|
103
102
|
verified: boolean;
|
|
103
|
+
isActive: boolean;
|
|
104
104
|
proxy_credentials: string;
|
|
105
105
|
}>;
|
|
106
106
|
export declare const updateScraperAccountSchema: z.ZodObject<{
|
|
107
107
|
email: z.ZodOptional<z.ZodString>;
|
|
108
108
|
status: z.ZodOptional<z.ZodEnum<["verification_required", "shadow_banned", "healthy", "banned", "suspended"]>>;
|
|
109
109
|
region: z.ZodOptional<z.ZodEnum<["all", "Worldwide", "UKOnly", "USOnly"]>>;
|
|
110
|
-
cookies: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
111
110
|
password: z.ZodOptional<z.ZodString>;
|
|
112
|
-
|
|
111
|
+
cookies: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
113
112
|
verified: z.ZodOptional<z.ZodBoolean>;
|
|
113
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
114
114
|
lastUsed: z.ZodOptional<z.ZodNumber>;
|
|
115
115
|
proxy_credentials: z.ZodOptional<z.ZodString>;
|
|
116
116
|
errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -119,45 +119,45 @@ export declare const updateScraperAccountSchema: z.ZodObject<{
|
|
|
119
119
|
screenshotUrl: z.ZodString;
|
|
120
120
|
htmlUrl: z.ZodString;
|
|
121
121
|
}, "strip", z.ZodTypeAny, {
|
|
122
|
-
timestamp: number;
|
|
123
122
|
errorMessage: string;
|
|
123
|
+
timestamp: number;
|
|
124
124
|
screenshotUrl: string;
|
|
125
125
|
htmlUrl: string;
|
|
126
126
|
}, {
|
|
127
|
-
timestamp: number;
|
|
128
127
|
errorMessage: string;
|
|
128
|
+
timestamp: number;
|
|
129
129
|
screenshotUrl: string;
|
|
130
130
|
htmlUrl: string;
|
|
131
131
|
}>, "many">>;
|
|
132
132
|
}, "strip", z.ZodTypeAny, {
|
|
133
133
|
email?: string | undefined;
|
|
134
134
|
status?: "suspended" | "verification_required" | "shadow_banned" | "healthy" | "banned" | undefined;
|
|
135
|
-
region?: "all" | "
|
|
136
|
-
cookies?: Record<string, string> | undefined;
|
|
135
|
+
region?: "all" | "Worldwide" | "UKOnly" | "USOnly" | undefined;
|
|
137
136
|
password?: string | undefined;
|
|
138
|
-
|
|
137
|
+
cookies?: Record<string, string> | undefined;
|
|
139
138
|
verified?: boolean | undefined;
|
|
139
|
+
isActive?: boolean | undefined;
|
|
140
140
|
lastUsed?: number | undefined;
|
|
141
141
|
proxy_credentials?: string | undefined;
|
|
142
142
|
errors?: {
|
|
143
|
-
timestamp: number;
|
|
144
143
|
errorMessage: string;
|
|
144
|
+
timestamp: number;
|
|
145
145
|
screenshotUrl: string;
|
|
146
146
|
htmlUrl: string;
|
|
147
147
|
}[] | undefined;
|
|
148
148
|
}, {
|
|
149
149
|
email?: string | undefined;
|
|
150
150
|
status?: "suspended" | "verification_required" | "shadow_banned" | "healthy" | "banned" | undefined;
|
|
151
|
-
region?: "all" | "
|
|
152
|
-
cookies?: Record<string, string> | undefined;
|
|
151
|
+
region?: "all" | "Worldwide" | "UKOnly" | "USOnly" | undefined;
|
|
153
152
|
password?: string | undefined;
|
|
154
|
-
|
|
153
|
+
cookies?: Record<string, string> | undefined;
|
|
155
154
|
verified?: boolean | undefined;
|
|
155
|
+
isActive?: boolean | undefined;
|
|
156
156
|
lastUsed?: number | undefined;
|
|
157
157
|
proxy_credentials?: string | undefined;
|
|
158
158
|
errors?: {
|
|
159
|
-
timestamp: number;
|
|
160
159
|
errorMessage: string;
|
|
160
|
+
timestamp: number;
|
|
161
161
|
screenshotUrl: string;
|
|
162
162
|
htmlUrl: string;
|
|
163
163
|
}[] | undefined;
|
|
@@ -21,8 +21,8 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
21
21
|
question: string;
|
|
22
22
|
}[] | null;
|
|
23
23
|
boostingEnabled: boolean;
|
|
24
|
-
maximumBoost: number | null;
|
|
25
24
|
minimumBoost: number | null;
|
|
25
|
+
maximumBoost: number | null;
|
|
26
26
|
}, {
|
|
27
27
|
coverLetter: string;
|
|
28
28
|
questionAnswerPairs: {
|
|
@@ -30,8 +30,8 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
30
30
|
question: string;
|
|
31
31
|
}[] | null;
|
|
32
32
|
boostingEnabled: boolean;
|
|
33
|
-
maximumBoost: number | null;
|
|
34
33
|
minimumBoost: number | null;
|
|
34
|
+
maximumBoost: number | null;
|
|
35
35
|
}>;
|
|
36
36
|
export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
37
37
|
coverLetter: z.ZodString;
|
|
@@ -55,8 +55,8 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
55
55
|
question: string;
|
|
56
56
|
}[] | null;
|
|
57
57
|
boostingEnabled: boolean;
|
|
58
|
-
maximumBoost: number | null;
|
|
59
58
|
minimumBoost: number | null;
|
|
59
|
+
maximumBoost: number | null;
|
|
60
60
|
}, {
|
|
61
61
|
coverLetter: string;
|
|
62
62
|
questionAnswerPairs: {
|
|
@@ -64,8 +64,8 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
64
64
|
question: string;
|
|
65
65
|
}[] | null;
|
|
66
66
|
boostingEnabled: boolean;
|
|
67
|
-
maximumBoost: number | null;
|
|
68
67
|
minimumBoost: number | null;
|
|
68
|
+
maximumBoost: number | null;
|
|
69
69
|
}>;
|
|
70
70
|
export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
71
71
|
coverLetter: z.ZodString;
|
|
@@ -93,8 +93,8 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
93
93
|
question: string;
|
|
94
94
|
}[] | null;
|
|
95
95
|
boostingEnabled: boolean;
|
|
96
|
-
maximumBoost: number | null;
|
|
97
96
|
minimumBoost: number | null;
|
|
97
|
+
maximumBoost: number | null;
|
|
98
98
|
agencyName: string;
|
|
99
99
|
contractorName: string;
|
|
100
100
|
specializedProfile: string | null;
|
|
@@ -105,8 +105,8 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
105
105
|
question: string;
|
|
106
106
|
}[] | null;
|
|
107
107
|
boostingEnabled: boolean;
|
|
108
|
-
maximumBoost: number | null;
|
|
109
108
|
minimumBoost: number | null;
|
|
109
|
+
maximumBoost: number | null;
|
|
110
110
|
agencyName: string;
|
|
111
111
|
contractorName: string;
|
|
112
112
|
specializedProfile: string | null;
|
|
@@ -119,16 +119,16 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
119
119
|
multiLoginProfileId: z.ZodString;
|
|
120
120
|
}, "strip", z.ZodTypeAny, {
|
|
121
121
|
username: string;
|
|
122
|
-
cookies: any[];
|
|
123
122
|
password: string;
|
|
124
|
-
|
|
123
|
+
cookies: any[];
|
|
125
124
|
multiLoginProfileId: string;
|
|
125
|
+
jobUrl: string;
|
|
126
126
|
}, {
|
|
127
127
|
username: string;
|
|
128
|
-
cookies: any[];
|
|
129
128
|
password: string;
|
|
130
|
-
|
|
129
|
+
cookies: any[];
|
|
131
130
|
multiLoginProfileId: string;
|
|
131
|
+
jobUrl: string;
|
|
132
132
|
}>;
|
|
133
133
|
export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
134
134
|
jobUrl: z.ZodString;
|
|
@@ -163,8 +163,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
163
163
|
question: string;
|
|
164
164
|
}[] | null;
|
|
165
165
|
boostingEnabled: boolean;
|
|
166
|
-
maximumBoost: number | null;
|
|
167
166
|
minimumBoost: number | null;
|
|
167
|
+
maximumBoost: number | null;
|
|
168
168
|
agencyName: string;
|
|
169
169
|
contractorName: string;
|
|
170
170
|
specializedProfile: string | null;
|
|
@@ -175,18 +175,18 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
175
175
|
question: string;
|
|
176
176
|
}[] | null;
|
|
177
177
|
boostingEnabled: boolean;
|
|
178
|
-
maximumBoost: number | null;
|
|
179
178
|
minimumBoost: number | null;
|
|
179
|
+
maximumBoost: number | null;
|
|
180
180
|
agencyName: string;
|
|
181
181
|
contractorName: string;
|
|
182
182
|
specializedProfile: string | null;
|
|
183
183
|
}>;
|
|
184
184
|
}>, "strip", z.ZodTypeAny, {
|
|
185
185
|
username: string;
|
|
186
|
-
cookies: any[];
|
|
187
186
|
password: string;
|
|
188
|
-
|
|
187
|
+
cookies: any[];
|
|
189
188
|
multiLoginProfileId: string;
|
|
189
|
+
jobUrl: string;
|
|
190
190
|
proposalData: {
|
|
191
191
|
coverLetter: string;
|
|
192
192
|
questionAnswerPairs: {
|
|
@@ -194,18 +194,18 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
194
194
|
question: string;
|
|
195
195
|
}[] | null;
|
|
196
196
|
boostingEnabled: boolean;
|
|
197
|
-
maximumBoost: number | null;
|
|
198
197
|
minimumBoost: number | null;
|
|
198
|
+
maximumBoost: number | null;
|
|
199
199
|
agencyName: string;
|
|
200
200
|
contractorName: string;
|
|
201
201
|
specializedProfile: string | null;
|
|
202
202
|
};
|
|
203
203
|
}, {
|
|
204
204
|
username: string;
|
|
205
|
-
cookies: any[];
|
|
206
205
|
password: string;
|
|
207
|
-
|
|
206
|
+
cookies: any[];
|
|
208
207
|
multiLoginProfileId: string;
|
|
208
|
+
jobUrl: string;
|
|
209
209
|
proposalData: {
|
|
210
210
|
coverLetter: string;
|
|
211
211
|
questionAnswerPairs: {
|
|
@@ -213,8 +213,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
213
213
|
question: string;
|
|
214
214
|
}[] | null;
|
|
215
215
|
boostingEnabled: boolean;
|
|
216
|
-
maximumBoost: number | null;
|
|
217
216
|
minimumBoost: number | null;
|
|
217
|
+
maximumBoost: number | null;
|
|
218
218
|
agencyName: string;
|
|
219
219
|
contractorName: string;
|
|
220
220
|
specializedProfile: string | null;
|
|
@@ -249,8 +249,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
249
249
|
question: string;
|
|
250
250
|
}[] | null;
|
|
251
251
|
boostingEnabled: boolean;
|
|
252
|
-
maximumBoost: number | null;
|
|
253
252
|
minimumBoost: number | null;
|
|
253
|
+
maximumBoost: number | null;
|
|
254
254
|
}, {
|
|
255
255
|
coverLetter: string;
|
|
256
256
|
questionAnswerPairs: {
|
|
@@ -258,15 +258,15 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
258
258
|
question: string;
|
|
259
259
|
}[] | null;
|
|
260
260
|
boostingEnabled: boolean;
|
|
261
|
-
maximumBoost: number | null;
|
|
262
261
|
minimumBoost: number | null;
|
|
262
|
+
maximumBoost: number | null;
|
|
263
263
|
}>;
|
|
264
264
|
}>, "strip", z.ZodTypeAny, {
|
|
265
265
|
username: string;
|
|
266
|
-
cookies: any[];
|
|
267
266
|
password: string;
|
|
268
|
-
|
|
267
|
+
cookies: any[];
|
|
269
268
|
multiLoginProfileId: string;
|
|
269
|
+
jobUrl: string;
|
|
270
270
|
proposalData: {
|
|
271
271
|
coverLetter: string;
|
|
272
272
|
questionAnswerPairs: {
|
|
@@ -274,15 +274,15 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
274
274
|
question: string;
|
|
275
275
|
}[] | null;
|
|
276
276
|
boostingEnabled: boolean;
|
|
277
|
-
maximumBoost: number | null;
|
|
278
277
|
minimumBoost: number | null;
|
|
278
|
+
maximumBoost: number | null;
|
|
279
279
|
};
|
|
280
280
|
}, {
|
|
281
281
|
username: string;
|
|
282
|
-
cookies: any[];
|
|
283
282
|
password: string;
|
|
284
|
-
|
|
283
|
+
cookies: any[];
|
|
285
284
|
multiLoginProfileId: string;
|
|
285
|
+
jobUrl: string;
|
|
286
286
|
proposalData: {
|
|
287
287
|
coverLetter: string;
|
|
288
288
|
questionAnswerPairs: {
|
|
@@ -290,8 +290,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
290
290
|
question: string;
|
|
291
291
|
}[] | null;
|
|
292
292
|
boostingEnabled: boolean;
|
|
293
|
-
maximumBoost: number | null;
|
|
294
293
|
minimumBoost: number | null;
|
|
294
|
+
maximumBoost: number | null;
|
|
295
295
|
};
|
|
296
296
|
}>;
|
|
297
297
|
export declare const bidDtoSchema: z.ZodObject<{
|
|
@@ -141,22 +141,22 @@ export declare const campaignActivitySchema: z.ZodObject<{
|
|
|
141
141
|
}, "strip", z.ZodTypeAny, {
|
|
142
142
|
hours: string | null;
|
|
143
143
|
duration: string | null;
|
|
144
|
+
paymentType: string | null;
|
|
144
145
|
experienceLevel: string | null;
|
|
145
146
|
hourlyRate: {
|
|
146
147
|
max: number | null;
|
|
147
148
|
min: number | null;
|
|
148
149
|
} | null;
|
|
149
|
-
paymentType: string | null;
|
|
150
150
|
fixedPrice: number | null;
|
|
151
151
|
}, {
|
|
152
152
|
hours: string | null;
|
|
153
153
|
duration: string | null;
|
|
154
|
+
paymentType: string | null;
|
|
154
155
|
experienceLevel: string | null;
|
|
155
156
|
hourlyRate: {
|
|
156
157
|
max: number | null;
|
|
157
158
|
min: number | null;
|
|
158
159
|
} | null;
|
|
159
|
-
paymentType: string | null;
|
|
160
160
|
fixedPrice: number | null;
|
|
161
161
|
}>>;
|
|
162
162
|
clientInfo: z.ZodNullable<z.ZodObject<{
|
|
@@ -182,8 +182,10 @@ export declare const campaignActivitySchema: z.ZodObject<{
|
|
|
182
182
|
region: string | null;
|
|
183
183
|
isPaymentVerified: boolean | null;
|
|
184
184
|
isPhoneVerified: boolean | null;
|
|
185
|
-
|
|
185
|
+
enterpriseClient: boolean | null;
|
|
186
|
+
companySize: string | null;
|
|
186
187
|
rating: number | null;
|
|
188
|
+
numberOfReviews: number | null;
|
|
187
189
|
jobsPosted: number | null;
|
|
188
190
|
totalSpent: number | null;
|
|
189
191
|
numberOfHires: number | null;
|
|
@@ -192,16 +194,16 @@ export declare const campaignActivitySchema: z.ZodObject<{
|
|
|
192
194
|
hireRate: number | null;
|
|
193
195
|
memberSince: string | null;
|
|
194
196
|
companyIndustry: string | null;
|
|
195
|
-
companySize: string | null;
|
|
196
|
-
enterpriseClient: boolean | null;
|
|
197
197
|
avgHourlyRatePaid: number | null;
|
|
198
198
|
}, {
|
|
199
199
|
country: string | null;
|
|
200
200
|
region: string | null;
|
|
201
201
|
isPaymentVerified: boolean | null;
|
|
202
202
|
isPhoneVerified: boolean | null;
|
|
203
|
-
|
|
203
|
+
enterpriseClient: boolean | null;
|
|
204
|
+
companySize: string | null;
|
|
204
205
|
rating: number | null;
|
|
206
|
+
numberOfReviews: number | null;
|
|
205
207
|
jobsPosted: number | null;
|
|
206
208
|
totalSpent: number | null;
|
|
207
209
|
numberOfHires: number | null;
|
|
@@ -210,8 +212,6 @@ export declare const campaignActivitySchema: z.ZodObject<{
|
|
|
210
212
|
hireRate: number | null;
|
|
211
213
|
memberSince: string | null;
|
|
212
214
|
companyIndustry: string | null;
|
|
213
|
-
companySize: string | null;
|
|
214
|
-
enterpriseClient: boolean | null;
|
|
215
215
|
avgHourlyRatePaid: number | null;
|
|
216
216
|
}>>;
|
|
217
217
|
vendorQualifications: z.ZodNullable<z.ZodObject<{
|
|
@@ -223,18 +223,18 @@ export declare const campaignActivitySchema: z.ZodObject<{
|
|
|
223
223
|
includeRisingTalent: z.ZodNullable<z.ZodString>;
|
|
224
224
|
}, "strip", z.ZodTypeAny, {
|
|
225
225
|
location: string | null;
|
|
226
|
-
|
|
226
|
+
includeRisingTalent: string | null;
|
|
227
|
+
talentType: "unspecified" | "Independent" | "Agency" | null;
|
|
227
228
|
englishLevel: string | null;
|
|
228
229
|
minimumEarnings: number | null;
|
|
229
230
|
jobSuccessScore: string | null;
|
|
230
|
-
includeRisingTalent: string | null;
|
|
231
231
|
}, {
|
|
232
232
|
location: string | null;
|
|
233
|
-
|
|
233
|
+
includeRisingTalent: string | null;
|
|
234
|
+
talentType: "unspecified" | "Independent" | "Agency" | null;
|
|
234
235
|
englishLevel: string | null;
|
|
235
236
|
minimumEarnings: number | null;
|
|
236
237
|
jobSuccessScore: string | null;
|
|
237
|
-
includeRisingTalent: string | null;
|
|
238
238
|
}>>;
|
|
239
239
|
processed: z.ZodNullable<z.ZodBoolean>;
|
|
240
240
|
isFeatured: z.ZodNullable<z.ZodBoolean>;
|
|
@@ -252,9 +252,9 @@ export declare const campaignActivitySchema: z.ZodObject<{
|
|
|
252
252
|
numHours: z.ZodNullable<z.ZodNumber>;
|
|
253
253
|
totalBilled: z.ZodNullable<z.ZodNumber>;
|
|
254
254
|
}, "strip", z.ZodTypeAny, {
|
|
255
|
+
paymentType: string | null;
|
|
255
256
|
jobTitle: string | null;
|
|
256
257
|
hourlyRate: number | null;
|
|
257
|
-
paymentType: string | null;
|
|
258
258
|
fixedPrice: number | null;
|
|
259
259
|
freelancerName: string | null;
|
|
260
260
|
freelancerRating: number | null;
|
|
@@ -265,9 +265,9 @@ export declare const campaignActivitySchema: z.ZodObject<{
|
|
|
265
265
|
numHours: number | null;
|
|
266
266
|
totalBilled: number | null;
|
|
267
267
|
}, {
|
|
268
|
+
paymentType: string | null;
|
|
268
269
|
jobTitle: string | null;
|
|
269
270
|
hourlyRate: number | null;
|
|
270
|
-
paymentType: string | null;
|
|
271
271
|
fixedPrice: number | null;
|
|
272
272
|
freelancerName: string | null;
|
|
273
273
|
freelancerRating: number | null;
|