lancer-shared 1.2.302 → 1.2.303
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 +1 -0
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +1 -0
- package/dist/bundle.esm.js.map +1 -1
- package/dist/schemas/account/bidder-account.d.ts +40 -40
- package/dist/schemas/account/scraper-account.d.ts +27 -27
- package/dist/schemas/agent/index.d.ts +273 -273
- package/dist/schemas/agent/proposal.d.ts +4 -4
- package/dist/schemas/bidder/bid.d.ts +2358 -2358
- package/dist/schemas/campaign/campaign-analytics.d.ts +1404 -1404
- package/dist/schemas/campaign/campaign-chat-bot.d.ts +24 -24
- package/dist/schemas/campaign/campaign-expenses.d.ts +2 -2
- package/dist/schemas/campaign/campaign-insights.d.ts +12 -12
- package/dist/schemas/campaign/campaign.d.ts +566 -566
- package/dist/schemas/campaign/sequence/boost-node.d.ts +2 -2
- package/dist/schemas/campaign/sequence/client-size-node.d.ts +8 -8
- package/dist/schemas/campaign/sequence/client-spent-node.d.ts +16 -16
- package/dist/schemas/campaign/sequence/hire-rate-node.d.ts +16 -16
- package/dist/schemas/campaign/sequence/hourly-rate-node.d.ts +16 -16
- package/dist/schemas/campaign/sequence/rating-node.d.ts +16 -16
- package/dist/schemas/campaign/sequence/suitability-node.d.ts +16 -16
- package/dist/schemas/dashboard/index.d.ts +46 -46
- package/dist/schemas/golden-dataset/sample.d.ts +12 -12
- package/dist/schemas/infrastructure/index.d.ts +8 -8
- package/dist/schemas/invoice/index.d.ts +55 -55
- package/dist/schemas/job/index.d.ts +189 -189
- package/dist/schemas/job/job-api.d.ts +4 -4
- package/dist/schemas/job/job-details.d.ts +726 -726
- package/dist/schemas/job/job-filters.d.ts +55 -55
- package/dist/schemas/job/job-listing.d.ts +96 -96
- package/dist/schemas/job/nuxt.d.ts +130 -130
- package/dist/schemas/lead/index.d.ts +1040 -1040
- package/dist/schemas/lead/lead-status.d.ts +4 -4
- package/dist/schemas/logger/feed/feed-chunk-enrich.d.ts +16 -16
- package/dist/schemas/logger/feed/feed-enrich.d.ts +12 -12
- package/dist/schemas/logger/feed/feed-job-enrich.d.ts +272 -272
- package/dist/schemas/logger/feed/feed-scrape.d.ts +6 -6
- package/dist/schemas/logger/log-event.d.ts +103 -103
- package/dist/schemas/logger/scraper-events.d.ts +73 -73
- package/dist/schemas/notifications/index.d.ts +4 -4
- package/dist/schemas/organization/billing.d.ts +2 -2
- package/dist/schemas/organization/cover-letter.d.ts +4 -4
- package/dist/schemas/organization/index.d.ts +112 -112
- package/dist/schemas/organization/onboarding.d.ts +6 -6
- package/dist/schemas/organization/organization-leads.d.ts +4 -4
- package/dist/schemas/organization/subscription.d.ts +12 -12
- package/dist/schemas/plan/index.d.ts +55 -55
- package/dist/schemas/proxy/proxy.d.ts +29 -29
- package/dist/schemas/saved-search/index.d.ts +4 -4
- package/dist/schemas/scraper/scrape-payload.d.ts +876 -876
- package/dist/schemas/scraper/scrape-result.d.ts +174 -174
- package/dist/schemas/scraper/upwork-profile.d.ts +16 -16
- package/dist/schemas/shared.d.ts +1 -1
- package/dist/schemas/talent/index.d.ts +750 -750
- package/dist/schemas/transaction/index.d.ts +20 -20
- package/dist/schemas/upwork-analytics/index.d.ts +22 -22
- package/dist/schemas/usage/index.d.ts +16 -16
- package/dist/schemas/usage-event/index.d.ts +11 -11
- package/dist/schemas/user/index.d.ts +4 -4
- package/package.json +2 -2
|
@@ -15,16 +15,16 @@ declare const nuxtStateProfileSchema: z.ZodObject<{
|
|
|
15
15
|
}, "strip", z.ZodTypeAny, {
|
|
16
16
|
country: string;
|
|
17
17
|
region: string;
|
|
18
|
-
timezone: string;
|
|
19
18
|
subregion: string;
|
|
19
|
+
timezone: string;
|
|
20
20
|
state?: string | undefined;
|
|
21
21
|
city?: string | undefined;
|
|
22
22
|
zip?: string | undefined;
|
|
23
23
|
}, {
|
|
24
24
|
country: string;
|
|
25
25
|
region: string;
|
|
26
|
-
timezone: string;
|
|
27
26
|
subregion: string;
|
|
27
|
+
timezone: string;
|
|
28
28
|
state?: string | undefined;
|
|
29
29
|
city?: string | undefined;
|
|
30
30
|
zip?: string | undefined;
|
|
@@ -33,11 +33,11 @@ declare const nuxtStateProfileSchema: z.ZodObject<{
|
|
|
33
33
|
rawValue: z.ZodString;
|
|
34
34
|
currency: z.ZodString;
|
|
35
35
|
}, "strip", z.ZodTypeAny, {
|
|
36
|
-
currency: string;
|
|
37
36
|
rawValue: string;
|
|
38
|
-
}, {
|
|
39
37
|
currency: string;
|
|
38
|
+
}, {
|
|
40
39
|
rawValue: string;
|
|
40
|
+
currency: string;
|
|
41
41
|
}>>;
|
|
42
42
|
portrait: z.ZodOptional<z.ZodObject<{
|
|
43
43
|
portrait: z.ZodString;
|
|
@@ -55,25 +55,25 @@ declare const nuxtStateProfileSchema: z.ZodObject<{
|
|
|
55
55
|
prettyName: z.ZodString;
|
|
56
56
|
uid: z.ZodString;
|
|
57
57
|
}, "strip", z.ZodTypeAny, {
|
|
58
|
-
uid: string;
|
|
59
58
|
prettyName: string;
|
|
60
|
-
}, {
|
|
61
59
|
uid: string;
|
|
60
|
+
}, {
|
|
62
61
|
prettyName: string;
|
|
62
|
+
uid: string;
|
|
63
63
|
}>;
|
|
64
64
|
uid: z.ZodString;
|
|
65
65
|
}, "strip", z.ZodTypeAny, {
|
|
66
|
+
uid: string;
|
|
66
67
|
skill: {
|
|
67
|
-
uid: string;
|
|
68
68
|
prettyName: string;
|
|
69
|
+
uid: string;
|
|
69
70
|
};
|
|
70
|
-
uid: string;
|
|
71
71
|
}, {
|
|
72
|
+
uid: string;
|
|
72
73
|
skill: {
|
|
73
|
-
uid: string;
|
|
74
74
|
prettyName: string;
|
|
75
|
+
uid: string;
|
|
75
76
|
};
|
|
76
|
-
uid: string;
|
|
77
77
|
}>, "many">>;
|
|
78
78
|
stats: z.ZodOptional<z.ZodObject<{
|
|
79
79
|
hideJss: z.ZodBoolean;
|
|
@@ -89,27 +89,27 @@ declare const nuxtStateProfileSchema: z.ZodObject<{
|
|
|
89
89
|
totalFpJobs: z.ZodNumber;
|
|
90
90
|
totalCompletedJobs: z.ZodNumber;
|
|
91
91
|
}, "strip", z.ZodTypeAny, {
|
|
92
|
-
totalHours: number;
|
|
93
|
-
rate: number;
|
|
94
|
-
jobSuccessScore: number;
|
|
95
92
|
hideJss: boolean;
|
|
96
93
|
hideEarnings: boolean;
|
|
97
94
|
topRatedStatus: string;
|
|
98
95
|
topRatedStatusEx: string;
|
|
96
|
+
rate: number;
|
|
99
97
|
earned: number;
|
|
98
|
+
jobSuccessScore: number;
|
|
99
|
+
totalHours: number;
|
|
100
100
|
totalHourlyJobs: number;
|
|
101
101
|
totalFpJobs: number;
|
|
102
102
|
totalCompletedJobs: number;
|
|
103
103
|
rankInfo?: any;
|
|
104
104
|
}, {
|
|
105
|
-
totalHours: number;
|
|
106
|
-
rate: number;
|
|
107
|
-
jobSuccessScore: number;
|
|
108
105
|
hideJss: boolean;
|
|
109
106
|
hideEarnings: boolean;
|
|
110
107
|
topRatedStatus: string;
|
|
111
108
|
topRatedStatusEx: string;
|
|
109
|
+
rate: number;
|
|
112
110
|
earned: number;
|
|
111
|
+
jobSuccessScore: number;
|
|
112
|
+
totalHours: number;
|
|
113
113
|
totalHourlyJobs: number;
|
|
114
114
|
totalFpJobs: number;
|
|
115
115
|
totalCompletedJobs: number;
|
|
@@ -136,26 +136,26 @@ declare const nuxtStateProfileSchema: z.ZodObject<{
|
|
|
136
136
|
level2?: string | undefined;
|
|
137
137
|
}>;
|
|
138
138
|
}, "strip", z.ZodTypeAny, {
|
|
139
|
+
uid: string;
|
|
139
140
|
title: string;
|
|
141
|
+
publicPortfolioItem: boolean;
|
|
140
142
|
category: {
|
|
141
143
|
id?: string | undefined;
|
|
142
144
|
level1?: string | undefined;
|
|
143
145
|
level2?: string | undefined;
|
|
144
146
|
};
|
|
145
|
-
uid: string;
|
|
146
|
-
publicPortfolioItem: boolean;
|
|
147
147
|
description?: string | undefined;
|
|
148
148
|
videoUrl?: string | undefined;
|
|
149
149
|
thumbnailUrl?: string | undefined;
|
|
150
150
|
}, {
|
|
151
|
+
uid: string;
|
|
151
152
|
title: string;
|
|
153
|
+
publicPortfolioItem: boolean;
|
|
152
154
|
category: {
|
|
153
155
|
id?: string | undefined;
|
|
154
156
|
level1?: string | undefined;
|
|
155
157
|
level2?: string | undefined;
|
|
156
158
|
};
|
|
157
|
-
uid: string;
|
|
158
|
-
publicPortfolioItem: boolean;
|
|
159
159
|
description?: string | undefined;
|
|
160
160
|
videoUrl?: string | undefined;
|
|
161
161
|
thumbnailUrl?: string | undefined;
|
|
@@ -167,134 +167,134 @@ declare const nuxtStateProfileSchema: z.ZodObject<{
|
|
|
167
167
|
boosted: z.ZodOptional<z.ZodBoolean>;
|
|
168
168
|
boostedWouldHaveBeen: z.ZodOptional<z.ZodBoolean>;
|
|
169
169
|
}, "strip", z.ZodTypeAny, {
|
|
170
|
+
description?: string | undefined;
|
|
171
|
+
title?: string | undefined;
|
|
172
|
+
portrait?: {
|
|
173
|
+
portrait: string;
|
|
174
|
+
} | undefined;
|
|
175
|
+
firstName?: string | undefined;
|
|
176
|
+
lastName?: string | undefined;
|
|
170
177
|
location?: {
|
|
171
178
|
country: string;
|
|
172
179
|
region: string;
|
|
173
|
-
timezone: string;
|
|
174
180
|
subregion: string;
|
|
181
|
+
timezone: string;
|
|
175
182
|
state?: string | undefined;
|
|
176
183
|
city?: string | undefined;
|
|
177
184
|
zip?: string | undefined;
|
|
178
185
|
} | undefined;
|
|
179
|
-
|
|
180
|
-
|
|
186
|
+
chargeRate?: {
|
|
187
|
+
rawValue: string;
|
|
188
|
+
currency: string;
|
|
189
|
+
} | undefined;
|
|
190
|
+
profileUrl?: string | undefined;
|
|
191
|
+
offerConsultations?: boolean | undefined;
|
|
192
|
+
jobSummariesAssignmentRids?: any;
|
|
193
|
+
shortName?: string | undefined;
|
|
194
|
+
skills?: {
|
|
195
|
+
uid: string;
|
|
196
|
+
skill: {
|
|
197
|
+
prettyName: string;
|
|
198
|
+
uid: string;
|
|
199
|
+
};
|
|
200
|
+
}[] | undefined;
|
|
181
201
|
stats?: {
|
|
182
|
-
totalHours: number;
|
|
183
|
-
rate: number;
|
|
184
|
-
jobSuccessScore: number;
|
|
185
202
|
hideJss: boolean;
|
|
186
203
|
hideEarnings: boolean;
|
|
187
204
|
topRatedStatus: string;
|
|
188
205
|
topRatedStatusEx: string;
|
|
206
|
+
rate: number;
|
|
189
207
|
earned: number;
|
|
208
|
+
jobSuccessScore: number;
|
|
209
|
+
totalHours: number;
|
|
190
210
|
totalHourlyJobs: number;
|
|
191
211
|
totalFpJobs: number;
|
|
192
212
|
totalCompletedJobs: number;
|
|
193
213
|
rankInfo?: any;
|
|
194
214
|
} | undefined;
|
|
195
|
-
specializedProfiles?: any[] | undefined;
|
|
196
|
-
skills?: {
|
|
197
|
-
skill: {
|
|
198
|
-
uid: string;
|
|
199
|
-
prettyName: string;
|
|
200
|
-
};
|
|
201
|
-
uid: string;
|
|
202
|
-
}[] | undefined;
|
|
203
|
-
boosted?: boolean | undefined;
|
|
204
|
-
profileUrl?: string | undefined;
|
|
205
|
-
portrait?: {
|
|
206
|
-
portrait: string;
|
|
207
|
-
} | undefined;
|
|
208
|
-
firstName?: string | undefined;
|
|
209
|
-
lastName?: string | undefined;
|
|
210
|
-
chargeRate?: {
|
|
211
|
-
currency: string;
|
|
212
|
-
rawValue: string;
|
|
213
|
-
} | undefined;
|
|
214
|
-
offerConsultations?: boolean | undefined;
|
|
215
|
-
jobSummariesAssignmentRids?: any;
|
|
216
|
-
shortName?: string | undefined;
|
|
217
215
|
portfolioItems?: {
|
|
216
|
+
uid: string;
|
|
218
217
|
title: string;
|
|
218
|
+
publicPortfolioItem: boolean;
|
|
219
219
|
category: {
|
|
220
220
|
id?: string | undefined;
|
|
221
221
|
level1?: string | undefined;
|
|
222
222
|
level2?: string | undefined;
|
|
223
223
|
};
|
|
224
|
-
uid: string;
|
|
225
|
-
publicPortfolioItem: boolean;
|
|
226
224
|
description?: string | undefined;
|
|
227
225
|
videoUrl?: string | undefined;
|
|
228
226
|
thumbnailUrl?: string | undefined;
|
|
229
227
|
}[] | undefined;
|
|
230
228
|
totalPortfolioItems?: number | undefined;
|
|
229
|
+
specializedProfiles?: any[] | undefined;
|
|
231
230
|
isDiversityCertified?: boolean | undefined;
|
|
232
231
|
isBoosted?: boolean | undefined;
|
|
232
|
+
boosted?: boolean | undefined;
|
|
233
233
|
boostedWouldHaveBeen?: boolean | undefined;
|
|
234
234
|
}, {
|
|
235
|
+
description?: string | undefined;
|
|
236
|
+
title?: string | undefined;
|
|
237
|
+
portrait?: {
|
|
238
|
+
portrait: string;
|
|
239
|
+
} | undefined;
|
|
240
|
+
firstName?: string | undefined;
|
|
241
|
+
lastName?: string | undefined;
|
|
235
242
|
location?: {
|
|
236
243
|
country: string;
|
|
237
244
|
region: string;
|
|
238
|
-
timezone: string;
|
|
239
245
|
subregion: string;
|
|
246
|
+
timezone: string;
|
|
240
247
|
state?: string | undefined;
|
|
241
248
|
city?: string | undefined;
|
|
242
249
|
zip?: string | undefined;
|
|
243
250
|
} | undefined;
|
|
244
|
-
|
|
245
|
-
|
|
251
|
+
chargeRate?: {
|
|
252
|
+
rawValue: string;
|
|
253
|
+
currency: string;
|
|
254
|
+
} | undefined;
|
|
255
|
+
profileUrl?: string | undefined;
|
|
256
|
+
offerConsultations?: boolean | undefined;
|
|
257
|
+
jobSummariesAssignmentRids?: any;
|
|
258
|
+
shortName?: string | undefined;
|
|
259
|
+
skills?: {
|
|
260
|
+
uid: string;
|
|
261
|
+
skill: {
|
|
262
|
+
prettyName: string;
|
|
263
|
+
uid: string;
|
|
264
|
+
};
|
|
265
|
+
}[] | undefined;
|
|
246
266
|
stats?: {
|
|
247
|
-
totalHours: number;
|
|
248
|
-
rate: number;
|
|
249
|
-
jobSuccessScore: number;
|
|
250
267
|
hideJss: boolean;
|
|
251
268
|
hideEarnings: boolean;
|
|
252
269
|
topRatedStatus: string;
|
|
253
270
|
topRatedStatusEx: string;
|
|
271
|
+
rate: number;
|
|
254
272
|
earned: number;
|
|
273
|
+
jobSuccessScore: number;
|
|
274
|
+
totalHours: number;
|
|
255
275
|
totalHourlyJobs: number;
|
|
256
276
|
totalFpJobs: number;
|
|
257
277
|
totalCompletedJobs: number;
|
|
258
278
|
rankInfo?: any;
|
|
259
279
|
} | undefined;
|
|
260
|
-
specializedProfiles?: any[] | undefined;
|
|
261
|
-
skills?: {
|
|
262
|
-
skill: {
|
|
263
|
-
uid: string;
|
|
264
|
-
prettyName: string;
|
|
265
|
-
};
|
|
266
|
-
uid: string;
|
|
267
|
-
}[] | undefined;
|
|
268
|
-
boosted?: boolean | undefined;
|
|
269
|
-
profileUrl?: string | undefined;
|
|
270
|
-
portrait?: {
|
|
271
|
-
portrait: string;
|
|
272
|
-
} | undefined;
|
|
273
|
-
firstName?: string | undefined;
|
|
274
|
-
lastName?: string | undefined;
|
|
275
|
-
chargeRate?: {
|
|
276
|
-
currency: string;
|
|
277
|
-
rawValue: string;
|
|
278
|
-
} | undefined;
|
|
279
|
-
offerConsultations?: boolean | undefined;
|
|
280
|
-
jobSummariesAssignmentRids?: any;
|
|
281
|
-
shortName?: string | undefined;
|
|
282
280
|
portfolioItems?: {
|
|
281
|
+
uid: string;
|
|
283
282
|
title: string;
|
|
283
|
+
publicPortfolioItem: boolean;
|
|
284
284
|
category: {
|
|
285
285
|
id?: string | undefined;
|
|
286
286
|
level1?: string | undefined;
|
|
287
287
|
level2?: string | undefined;
|
|
288
288
|
};
|
|
289
|
-
uid: string;
|
|
290
|
-
publicPortfolioItem: boolean;
|
|
291
289
|
description?: string | undefined;
|
|
292
290
|
videoUrl?: string | undefined;
|
|
293
291
|
thumbnailUrl?: string | undefined;
|
|
294
292
|
}[] | undefined;
|
|
295
293
|
totalPortfolioItems?: number | undefined;
|
|
294
|
+
specializedProfiles?: any[] | undefined;
|
|
296
295
|
isDiversityCertified?: boolean | undefined;
|
|
297
296
|
isBoosted?: boolean | undefined;
|
|
297
|
+
boosted?: boolean | undefined;
|
|
298
298
|
boostedWouldHaveBeen?: boolean | undefined;
|
|
299
299
|
}>;
|
|
300
300
|
export declare const upworkTalentSchema: z.ZodObject<{
|
|
@@ -328,16 +328,16 @@ export declare const upworkTalentSchema: z.ZodObject<{
|
|
|
328
328
|
}, "strip", z.ZodTypeAny, {
|
|
329
329
|
country: string;
|
|
330
330
|
region: string;
|
|
331
|
-
timezone: string;
|
|
332
331
|
subregion: string;
|
|
332
|
+
timezone: string;
|
|
333
333
|
state?: string | undefined;
|
|
334
334
|
city?: string | undefined;
|
|
335
335
|
zip?: string | undefined;
|
|
336
336
|
}, {
|
|
337
337
|
country: string;
|
|
338
338
|
region: string;
|
|
339
|
-
timezone: string;
|
|
340
339
|
subregion: string;
|
|
340
|
+
timezone: string;
|
|
341
341
|
state?: string | undefined;
|
|
342
342
|
city?: string | undefined;
|
|
343
343
|
zip?: string | undefined;
|
|
@@ -346,11 +346,11 @@ export declare const upworkTalentSchema: z.ZodObject<{
|
|
|
346
346
|
rawValue: z.ZodString;
|
|
347
347
|
currency: z.ZodString;
|
|
348
348
|
}, "strip", z.ZodTypeAny, {
|
|
349
|
-
currency: string;
|
|
350
349
|
rawValue: string;
|
|
351
|
-
}, {
|
|
352
350
|
currency: string;
|
|
351
|
+
}, {
|
|
353
352
|
rawValue: string;
|
|
353
|
+
currency: string;
|
|
354
354
|
}>>;
|
|
355
355
|
portrait: z.ZodOptional<z.ZodObject<{
|
|
356
356
|
portrait: z.ZodString;
|
|
@@ -368,25 +368,25 @@ export declare const upworkTalentSchema: z.ZodObject<{
|
|
|
368
368
|
prettyName: z.ZodString;
|
|
369
369
|
uid: z.ZodString;
|
|
370
370
|
}, "strip", z.ZodTypeAny, {
|
|
371
|
-
uid: string;
|
|
372
371
|
prettyName: string;
|
|
373
|
-
}, {
|
|
374
372
|
uid: string;
|
|
373
|
+
}, {
|
|
375
374
|
prettyName: string;
|
|
375
|
+
uid: string;
|
|
376
376
|
}>;
|
|
377
377
|
uid: z.ZodString;
|
|
378
378
|
}, "strip", z.ZodTypeAny, {
|
|
379
|
+
uid: string;
|
|
379
380
|
skill: {
|
|
380
|
-
uid: string;
|
|
381
381
|
prettyName: string;
|
|
382
|
+
uid: string;
|
|
382
383
|
};
|
|
383
|
-
uid: string;
|
|
384
384
|
}, {
|
|
385
|
+
uid: string;
|
|
385
386
|
skill: {
|
|
386
|
-
uid: string;
|
|
387
387
|
prettyName: string;
|
|
388
|
+
uid: string;
|
|
388
389
|
};
|
|
389
|
-
uid: string;
|
|
390
390
|
}>, "many">>;
|
|
391
391
|
stats: z.ZodOptional<z.ZodObject<{
|
|
392
392
|
hideJss: z.ZodBoolean;
|
|
@@ -402,27 +402,27 @@ export declare const upworkTalentSchema: z.ZodObject<{
|
|
|
402
402
|
totalFpJobs: z.ZodNumber;
|
|
403
403
|
totalCompletedJobs: z.ZodNumber;
|
|
404
404
|
}, "strip", z.ZodTypeAny, {
|
|
405
|
-
totalHours: number;
|
|
406
|
-
rate: number;
|
|
407
|
-
jobSuccessScore: number;
|
|
408
405
|
hideJss: boolean;
|
|
409
406
|
hideEarnings: boolean;
|
|
410
407
|
topRatedStatus: string;
|
|
411
408
|
topRatedStatusEx: string;
|
|
409
|
+
rate: number;
|
|
412
410
|
earned: number;
|
|
411
|
+
jobSuccessScore: number;
|
|
412
|
+
totalHours: number;
|
|
413
413
|
totalHourlyJobs: number;
|
|
414
414
|
totalFpJobs: number;
|
|
415
415
|
totalCompletedJobs: number;
|
|
416
416
|
rankInfo?: any;
|
|
417
417
|
}, {
|
|
418
|
-
totalHours: number;
|
|
419
|
-
rate: number;
|
|
420
|
-
jobSuccessScore: number;
|
|
421
418
|
hideJss: boolean;
|
|
422
419
|
hideEarnings: boolean;
|
|
423
420
|
topRatedStatus: string;
|
|
424
421
|
topRatedStatusEx: string;
|
|
422
|
+
rate: number;
|
|
425
423
|
earned: number;
|
|
424
|
+
jobSuccessScore: number;
|
|
425
|
+
totalHours: number;
|
|
426
426
|
totalHourlyJobs: number;
|
|
427
427
|
totalFpJobs: number;
|
|
428
428
|
totalCompletedJobs: number;
|
|
@@ -449,26 +449,26 @@ export declare const upworkTalentSchema: z.ZodObject<{
|
|
|
449
449
|
level2?: string | undefined;
|
|
450
450
|
}>;
|
|
451
451
|
}, "strip", z.ZodTypeAny, {
|
|
452
|
+
uid: string;
|
|
452
453
|
title: string;
|
|
454
|
+
publicPortfolioItem: boolean;
|
|
453
455
|
category: {
|
|
454
456
|
id?: string | undefined;
|
|
455
457
|
level1?: string | undefined;
|
|
456
458
|
level2?: string | undefined;
|
|
457
459
|
};
|
|
458
|
-
uid: string;
|
|
459
|
-
publicPortfolioItem: boolean;
|
|
460
460
|
description?: string | undefined;
|
|
461
461
|
videoUrl?: string | undefined;
|
|
462
462
|
thumbnailUrl?: string | undefined;
|
|
463
463
|
}, {
|
|
464
|
+
uid: string;
|
|
464
465
|
title: string;
|
|
466
|
+
publicPortfolioItem: boolean;
|
|
465
467
|
category: {
|
|
466
468
|
id?: string | undefined;
|
|
467
469
|
level1?: string | undefined;
|
|
468
470
|
level2?: string | undefined;
|
|
469
471
|
};
|
|
470
|
-
uid: string;
|
|
471
|
-
publicPortfolioItem: boolean;
|
|
472
472
|
description?: string | undefined;
|
|
473
473
|
videoUrl?: string | undefined;
|
|
474
474
|
thumbnailUrl?: string | undefined;
|
|
@@ -480,134 +480,134 @@ export declare const upworkTalentSchema: z.ZodObject<{
|
|
|
480
480
|
boosted: z.ZodOptional<z.ZodBoolean>;
|
|
481
481
|
boostedWouldHaveBeen: z.ZodOptional<z.ZodBoolean>;
|
|
482
482
|
}, "strip", z.ZodTypeAny, {
|
|
483
|
+
description?: string | undefined;
|
|
484
|
+
title?: string | undefined;
|
|
485
|
+
portrait?: {
|
|
486
|
+
portrait: string;
|
|
487
|
+
} | undefined;
|
|
488
|
+
firstName?: string | undefined;
|
|
489
|
+
lastName?: string | undefined;
|
|
483
490
|
location?: {
|
|
484
491
|
country: string;
|
|
485
492
|
region: string;
|
|
486
|
-
timezone: string;
|
|
487
493
|
subregion: string;
|
|
494
|
+
timezone: string;
|
|
488
495
|
state?: string | undefined;
|
|
489
496
|
city?: string | undefined;
|
|
490
497
|
zip?: string | undefined;
|
|
491
498
|
} | undefined;
|
|
492
|
-
|
|
493
|
-
|
|
499
|
+
chargeRate?: {
|
|
500
|
+
rawValue: string;
|
|
501
|
+
currency: string;
|
|
502
|
+
} | undefined;
|
|
503
|
+
profileUrl?: string | undefined;
|
|
504
|
+
offerConsultations?: boolean | undefined;
|
|
505
|
+
jobSummariesAssignmentRids?: any;
|
|
506
|
+
shortName?: string | undefined;
|
|
507
|
+
skills?: {
|
|
508
|
+
uid: string;
|
|
509
|
+
skill: {
|
|
510
|
+
prettyName: string;
|
|
511
|
+
uid: string;
|
|
512
|
+
};
|
|
513
|
+
}[] | undefined;
|
|
494
514
|
stats?: {
|
|
495
|
-
totalHours: number;
|
|
496
|
-
rate: number;
|
|
497
|
-
jobSuccessScore: number;
|
|
498
515
|
hideJss: boolean;
|
|
499
516
|
hideEarnings: boolean;
|
|
500
517
|
topRatedStatus: string;
|
|
501
518
|
topRatedStatusEx: string;
|
|
519
|
+
rate: number;
|
|
502
520
|
earned: number;
|
|
521
|
+
jobSuccessScore: number;
|
|
522
|
+
totalHours: number;
|
|
503
523
|
totalHourlyJobs: number;
|
|
504
524
|
totalFpJobs: number;
|
|
505
525
|
totalCompletedJobs: number;
|
|
506
526
|
rankInfo?: any;
|
|
507
527
|
} | undefined;
|
|
508
|
-
specializedProfiles?: any[] | undefined;
|
|
509
|
-
skills?: {
|
|
510
|
-
skill: {
|
|
511
|
-
uid: string;
|
|
512
|
-
prettyName: string;
|
|
513
|
-
};
|
|
514
|
-
uid: string;
|
|
515
|
-
}[] | undefined;
|
|
516
|
-
boosted?: boolean | undefined;
|
|
517
|
-
profileUrl?: string | undefined;
|
|
518
|
-
portrait?: {
|
|
519
|
-
portrait: string;
|
|
520
|
-
} | undefined;
|
|
521
|
-
firstName?: string | undefined;
|
|
522
|
-
lastName?: string | undefined;
|
|
523
|
-
chargeRate?: {
|
|
524
|
-
currency: string;
|
|
525
|
-
rawValue: string;
|
|
526
|
-
} | undefined;
|
|
527
|
-
offerConsultations?: boolean | undefined;
|
|
528
|
-
jobSummariesAssignmentRids?: any;
|
|
529
|
-
shortName?: string | undefined;
|
|
530
528
|
portfolioItems?: {
|
|
529
|
+
uid: string;
|
|
531
530
|
title: string;
|
|
531
|
+
publicPortfolioItem: boolean;
|
|
532
532
|
category: {
|
|
533
533
|
id?: string | undefined;
|
|
534
534
|
level1?: string | undefined;
|
|
535
535
|
level2?: string | undefined;
|
|
536
536
|
};
|
|
537
|
-
uid: string;
|
|
538
|
-
publicPortfolioItem: boolean;
|
|
539
537
|
description?: string | undefined;
|
|
540
538
|
videoUrl?: string | undefined;
|
|
541
539
|
thumbnailUrl?: string | undefined;
|
|
542
540
|
}[] | undefined;
|
|
543
541
|
totalPortfolioItems?: number | undefined;
|
|
542
|
+
specializedProfiles?: any[] | undefined;
|
|
544
543
|
isDiversityCertified?: boolean | undefined;
|
|
545
544
|
isBoosted?: boolean | undefined;
|
|
545
|
+
boosted?: boolean | undefined;
|
|
546
546
|
boostedWouldHaveBeen?: boolean | undefined;
|
|
547
547
|
}, {
|
|
548
|
+
description?: string | undefined;
|
|
549
|
+
title?: string | undefined;
|
|
550
|
+
portrait?: {
|
|
551
|
+
portrait: string;
|
|
552
|
+
} | undefined;
|
|
553
|
+
firstName?: string | undefined;
|
|
554
|
+
lastName?: string | undefined;
|
|
548
555
|
location?: {
|
|
549
556
|
country: string;
|
|
550
557
|
region: string;
|
|
551
|
-
timezone: string;
|
|
552
558
|
subregion: string;
|
|
559
|
+
timezone: string;
|
|
553
560
|
state?: string | undefined;
|
|
554
561
|
city?: string | undefined;
|
|
555
562
|
zip?: string | undefined;
|
|
556
563
|
} | undefined;
|
|
557
|
-
|
|
558
|
-
|
|
564
|
+
chargeRate?: {
|
|
565
|
+
rawValue: string;
|
|
566
|
+
currency: string;
|
|
567
|
+
} | undefined;
|
|
568
|
+
profileUrl?: string | undefined;
|
|
569
|
+
offerConsultations?: boolean | undefined;
|
|
570
|
+
jobSummariesAssignmentRids?: any;
|
|
571
|
+
shortName?: string | undefined;
|
|
572
|
+
skills?: {
|
|
573
|
+
uid: string;
|
|
574
|
+
skill: {
|
|
575
|
+
prettyName: string;
|
|
576
|
+
uid: string;
|
|
577
|
+
};
|
|
578
|
+
}[] | undefined;
|
|
559
579
|
stats?: {
|
|
560
|
-
totalHours: number;
|
|
561
|
-
rate: number;
|
|
562
|
-
jobSuccessScore: number;
|
|
563
580
|
hideJss: boolean;
|
|
564
581
|
hideEarnings: boolean;
|
|
565
582
|
topRatedStatus: string;
|
|
566
583
|
topRatedStatusEx: string;
|
|
584
|
+
rate: number;
|
|
567
585
|
earned: number;
|
|
586
|
+
jobSuccessScore: number;
|
|
587
|
+
totalHours: number;
|
|
568
588
|
totalHourlyJobs: number;
|
|
569
589
|
totalFpJobs: number;
|
|
570
590
|
totalCompletedJobs: number;
|
|
571
591
|
rankInfo?: any;
|
|
572
592
|
} | undefined;
|
|
573
|
-
specializedProfiles?: any[] | undefined;
|
|
574
|
-
skills?: {
|
|
575
|
-
skill: {
|
|
576
|
-
uid: string;
|
|
577
|
-
prettyName: string;
|
|
578
|
-
};
|
|
579
|
-
uid: string;
|
|
580
|
-
}[] | undefined;
|
|
581
|
-
boosted?: boolean | undefined;
|
|
582
|
-
profileUrl?: string | undefined;
|
|
583
|
-
portrait?: {
|
|
584
|
-
portrait: string;
|
|
585
|
-
} | undefined;
|
|
586
|
-
firstName?: string | undefined;
|
|
587
|
-
lastName?: string | undefined;
|
|
588
|
-
chargeRate?: {
|
|
589
|
-
currency: string;
|
|
590
|
-
rawValue: string;
|
|
591
|
-
} | undefined;
|
|
592
|
-
offerConsultations?: boolean | undefined;
|
|
593
|
-
jobSummariesAssignmentRids?: any;
|
|
594
|
-
shortName?: string | undefined;
|
|
595
593
|
portfolioItems?: {
|
|
594
|
+
uid: string;
|
|
596
595
|
title: string;
|
|
596
|
+
publicPortfolioItem: boolean;
|
|
597
597
|
category: {
|
|
598
598
|
id?: string | undefined;
|
|
599
599
|
level1?: string | undefined;
|
|
600
600
|
level2?: string | undefined;
|
|
601
601
|
};
|
|
602
|
-
uid: string;
|
|
603
|
-
publicPortfolioItem: boolean;
|
|
604
602
|
description?: string | undefined;
|
|
605
603
|
videoUrl?: string | undefined;
|
|
606
604
|
thumbnailUrl?: string | undefined;
|
|
607
605
|
}[] | undefined;
|
|
608
606
|
totalPortfolioItems?: number | undefined;
|
|
607
|
+
specializedProfiles?: any[] | undefined;
|
|
609
608
|
isDiversityCertified?: boolean | undefined;
|
|
610
609
|
isBoosted?: boolean | undefined;
|
|
610
|
+
boosted?: boolean | undefined;
|
|
611
611
|
boostedWouldHaveBeen?: boolean | undefined;
|
|
612
612
|
}>;
|
|
613
613
|
agency: z.ZodObject<{
|
|
@@ -620,19 +620,19 @@ export declare const upworkTalentSchema: z.ZodObject<{
|
|
|
620
620
|
totalEarnings: z.ZodNumber;
|
|
621
621
|
isAgencyDiversityCertified: z.ZodArray<z.ZodAny, "many">;
|
|
622
622
|
}, "strip", z.ZodTypeAny, {
|
|
623
|
-
name: string;
|
|
624
|
-
ciphertext: string;
|
|
625
623
|
hideEarnings: boolean;
|
|
624
|
+
ciphertext: string;
|
|
626
625
|
orgId: string;
|
|
626
|
+
name: string;
|
|
627
627
|
classifications: any[];
|
|
628
628
|
totalEarnings: number;
|
|
629
629
|
isAgencyDiversityCertified: any[];
|
|
630
630
|
logo?: string | undefined;
|
|
631
631
|
}, {
|
|
632
|
-
name: string;
|
|
633
|
-
ciphertext: string;
|
|
634
632
|
hideEarnings: boolean;
|
|
633
|
+
ciphertext: string;
|
|
635
634
|
orgId: string;
|
|
635
|
+
name: string;
|
|
636
636
|
classifications: any[];
|
|
637
637
|
totalEarnings: number;
|
|
638
638
|
isAgencyDiversityCertified: any[];
|
|
@@ -650,175 +650,175 @@ export declare const upworkTalentSchema: z.ZodObject<{
|
|
|
650
650
|
options: {
|
|
651
651
|
position: number;
|
|
652
652
|
};
|
|
653
|
+
identity: {
|
|
654
|
+
uid: string;
|
|
655
|
+
ciphertext: string;
|
|
656
|
+
id?: string | undefined;
|
|
657
|
+
};
|
|
658
|
+
isPibAvailable: boolean;
|
|
653
659
|
profile: {
|
|
660
|
+
description?: string | undefined;
|
|
661
|
+
title?: string | undefined;
|
|
662
|
+
portrait?: {
|
|
663
|
+
portrait: string;
|
|
664
|
+
} | undefined;
|
|
665
|
+
firstName?: string | undefined;
|
|
666
|
+
lastName?: string | undefined;
|
|
654
667
|
location?: {
|
|
655
668
|
country: string;
|
|
656
669
|
region: string;
|
|
657
|
-
timezone: string;
|
|
658
670
|
subregion: string;
|
|
671
|
+
timezone: string;
|
|
659
672
|
state?: string | undefined;
|
|
660
673
|
city?: string | undefined;
|
|
661
674
|
zip?: string | undefined;
|
|
662
675
|
} | undefined;
|
|
663
|
-
|
|
664
|
-
|
|
676
|
+
chargeRate?: {
|
|
677
|
+
rawValue: string;
|
|
678
|
+
currency: string;
|
|
679
|
+
} | undefined;
|
|
680
|
+
profileUrl?: string | undefined;
|
|
681
|
+
offerConsultations?: boolean | undefined;
|
|
682
|
+
jobSummariesAssignmentRids?: any;
|
|
683
|
+
shortName?: string | undefined;
|
|
684
|
+
skills?: {
|
|
685
|
+
uid: string;
|
|
686
|
+
skill: {
|
|
687
|
+
prettyName: string;
|
|
688
|
+
uid: string;
|
|
689
|
+
};
|
|
690
|
+
}[] | undefined;
|
|
665
691
|
stats?: {
|
|
666
|
-
totalHours: number;
|
|
667
|
-
rate: number;
|
|
668
|
-
jobSuccessScore: number;
|
|
669
692
|
hideJss: boolean;
|
|
670
693
|
hideEarnings: boolean;
|
|
671
694
|
topRatedStatus: string;
|
|
672
695
|
topRatedStatusEx: string;
|
|
696
|
+
rate: number;
|
|
673
697
|
earned: number;
|
|
698
|
+
jobSuccessScore: number;
|
|
699
|
+
totalHours: number;
|
|
674
700
|
totalHourlyJobs: number;
|
|
675
701
|
totalFpJobs: number;
|
|
676
702
|
totalCompletedJobs: number;
|
|
677
703
|
rankInfo?: any;
|
|
678
704
|
} | undefined;
|
|
679
|
-
specializedProfiles?: any[] | undefined;
|
|
680
|
-
skills?: {
|
|
681
|
-
skill: {
|
|
682
|
-
uid: string;
|
|
683
|
-
prettyName: string;
|
|
684
|
-
};
|
|
685
|
-
uid: string;
|
|
686
|
-
}[] | undefined;
|
|
687
|
-
boosted?: boolean | undefined;
|
|
688
|
-
profileUrl?: string | undefined;
|
|
689
|
-
portrait?: {
|
|
690
|
-
portrait: string;
|
|
691
|
-
} | undefined;
|
|
692
|
-
firstName?: string | undefined;
|
|
693
|
-
lastName?: string | undefined;
|
|
694
|
-
chargeRate?: {
|
|
695
|
-
currency: string;
|
|
696
|
-
rawValue: string;
|
|
697
|
-
} | undefined;
|
|
698
|
-
offerConsultations?: boolean | undefined;
|
|
699
|
-
jobSummariesAssignmentRids?: any;
|
|
700
|
-
shortName?: string | undefined;
|
|
701
705
|
portfolioItems?: {
|
|
706
|
+
uid: string;
|
|
702
707
|
title: string;
|
|
708
|
+
publicPortfolioItem: boolean;
|
|
703
709
|
category: {
|
|
704
710
|
id?: string | undefined;
|
|
705
711
|
level1?: string | undefined;
|
|
706
712
|
level2?: string | undefined;
|
|
707
713
|
};
|
|
708
|
-
uid: string;
|
|
709
|
-
publicPortfolioItem: boolean;
|
|
710
714
|
description?: string | undefined;
|
|
711
715
|
videoUrl?: string | undefined;
|
|
712
716
|
thumbnailUrl?: string | undefined;
|
|
713
717
|
}[] | undefined;
|
|
714
718
|
totalPortfolioItems?: number | undefined;
|
|
719
|
+
specializedProfiles?: any[] | undefined;
|
|
715
720
|
isDiversityCertified?: boolean | undefined;
|
|
716
721
|
isBoosted?: boolean | undefined;
|
|
722
|
+
boosted?: boolean | undefined;
|
|
717
723
|
boostedWouldHaveBeen?: boolean | undefined;
|
|
718
724
|
};
|
|
719
725
|
agency: {
|
|
720
|
-
name: string;
|
|
721
|
-
ciphertext: string;
|
|
722
726
|
hideEarnings: boolean;
|
|
727
|
+
ciphertext: string;
|
|
723
728
|
orgId: string;
|
|
729
|
+
name: string;
|
|
724
730
|
classifications: any[];
|
|
725
731
|
totalEarnings: number;
|
|
726
732
|
isAgencyDiversityCertified: any[];
|
|
727
733
|
logo?: string | undefined;
|
|
728
734
|
};
|
|
735
|
+
linkedInURL?: string | null | undefined;
|
|
736
|
+
}, {
|
|
737
|
+
options: {
|
|
738
|
+
position: number;
|
|
739
|
+
};
|
|
729
740
|
identity: {
|
|
730
741
|
uid: string;
|
|
731
742
|
ciphertext: string;
|
|
732
743
|
id?: string | undefined;
|
|
733
744
|
};
|
|
734
745
|
isPibAvailable: boolean;
|
|
735
|
-
linkedInURL?: string | null | undefined;
|
|
736
|
-
}, {
|
|
737
|
-
options: {
|
|
738
|
-
position: number;
|
|
739
|
-
};
|
|
740
746
|
profile: {
|
|
747
|
+
description?: string | undefined;
|
|
748
|
+
title?: string | undefined;
|
|
749
|
+
portrait?: {
|
|
750
|
+
portrait: string;
|
|
751
|
+
} | undefined;
|
|
752
|
+
firstName?: string | undefined;
|
|
753
|
+
lastName?: string | undefined;
|
|
741
754
|
location?: {
|
|
742
755
|
country: string;
|
|
743
756
|
region: string;
|
|
744
|
-
timezone: string;
|
|
745
757
|
subregion: string;
|
|
758
|
+
timezone: string;
|
|
746
759
|
state?: string | undefined;
|
|
747
760
|
city?: string | undefined;
|
|
748
761
|
zip?: string | undefined;
|
|
749
762
|
} | undefined;
|
|
750
|
-
|
|
751
|
-
|
|
763
|
+
chargeRate?: {
|
|
764
|
+
rawValue: string;
|
|
765
|
+
currency: string;
|
|
766
|
+
} | undefined;
|
|
767
|
+
profileUrl?: string | undefined;
|
|
768
|
+
offerConsultations?: boolean | undefined;
|
|
769
|
+
jobSummariesAssignmentRids?: any;
|
|
770
|
+
shortName?: string | undefined;
|
|
771
|
+
skills?: {
|
|
772
|
+
uid: string;
|
|
773
|
+
skill: {
|
|
774
|
+
prettyName: string;
|
|
775
|
+
uid: string;
|
|
776
|
+
};
|
|
777
|
+
}[] | undefined;
|
|
752
778
|
stats?: {
|
|
753
|
-
totalHours: number;
|
|
754
|
-
rate: number;
|
|
755
|
-
jobSuccessScore: number;
|
|
756
779
|
hideJss: boolean;
|
|
757
780
|
hideEarnings: boolean;
|
|
758
781
|
topRatedStatus: string;
|
|
759
782
|
topRatedStatusEx: string;
|
|
783
|
+
rate: number;
|
|
760
784
|
earned: number;
|
|
785
|
+
jobSuccessScore: number;
|
|
786
|
+
totalHours: number;
|
|
761
787
|
totalHourlyJobs: number;
|
|
762
788
|
totalFpJobs: number;
|
|
763
789
|
totalCompletedJobs: number;
|
|
764
790
|
rankInfo?: any;
|
|
765
791
|
} | undefined;
|
|
766
|
-
specializedProfiles?: any[] | undefined;
|
|
767
|
-
skills?: {
|
|
768
|
-
skill: {
|
|
769
|
-
uid: string;
|
|
770
|
-
prettyName: string;
|
|
771
|
-
};
|
|
772
|
-
uid: string;
|
|
773
|
-
}[] | undefined;
|
|
774
|
-
boosted?: boolean | undefined;
|
|
775
|
-
profileUrl?: string | undefined;
|
|
776
|
-
portrait?: {
|
|
777
|
-
portrait: string;
|
|
778
|
-
} | undefined;
|
|
779
|
-
firstName?: string | undefined;
|
|
780
|
-
lastName?: string | undefined;
|
|
781
|
-
chargeRate?: {
|
|
782
|
-
currency: string;
|
|
783
|
-
rawValue: string;
|
|
784
|
-
} | undefined;
|
|
785
|
-
offerConsultations?: boolean | undefined;
|
|
786
|
-
jobSummariesAssignmentRids?: any;
|
|
787
|
-
shortName?: string | undefined;
|
|
788
792
|
portfolioItems?: {
|
|
793
|
+
uid: string;
|
|
789
794
|
title: string;
|
|
795
|
+
publicPortfolioItem: boolean;
|
|
790
796
|
category: {
|
|
791
797
|
id?: string | undefined;
|
|
792
798
|
level1?: string | undefined;
|
|
793
799
|
level2?: string | undefined;
|
|
794
800
|
};
|
|
795
|
-
uid: string;
|
|
796
|
-
publicPortfolioItem: boolean;
|
|
797
801
|
description?: string | undefined;
|
|
798
802
|
videoUrl?: string | undefined;
|
|
799
803
|
thumbnailUrl?: string | undefined;
|
|
800
804
|
}[] | undefined;
|
|
801
805
|
totalPortfolioItems?: number | undefined;
|
|
806
|
+
specializedProfiles?: any[] | undefined;
|
|
802
807
|
isDiversityCertified?: boolean | undefined;
|
|
803
808
|
isBoosted?: boolean | undefined;
|
|
809
|
+
boosted?: boolean | undefined;
|
|
804
810
|
boostedWouldHaveBeen?: boolean | undefined;
|
|
805
811
|
};
|
|
806
812
|
agency: {
|
|
807
|
-
name: string;
|
|
808
|
-
ciphertext: string;
|
|
809
813
|
hideEarnings: boolean;
|
|
814
|
+
ciphertext: string;
|
|
810
815
|
orgId: string;
|
|
816
|
+
name: string;
|
|
811
817
|
classifications: any[];
|
|
812
818
|
totalEarnings: number;
|
|
813
819
|
isAgencyDiversityCertified: any[];
|
|
814
820
|
logo?: string | undefined;
|
|
815
821
|
};
|
|
816
|
-
identity: {
|
|
817
|
-
uid: string;
|
|
818
|
-
ciphertext: string;
|
|
819
|
-
id?: string | undefined;
|
|
820
|
-
};
|
|
821
|
-
isPibAvailable: boolean;
|
|
822
822
|
linkedInURL?: string | null | undefined;
|
|
823
823
|
}>;
|
|
824
824
|
export declare const profileSearchNuxtObjectStateSchema: z.ZodObject<{
|
|
@@ -828,13 +828,13 @@ export declare const profileSearchNuxtObjectStateSchema: z.ZodObject<{
|
|
|
828
828
|
loaded: z.ZodBoolean;
|
|
829
829
|
failed: z.ZodBoolean;
|
|
830
830
|
}, "strip", z.ZodTypeAny, {
|
|
831
|
+
loading: boolean;
|
|
831
832
|
loaded: boolean;
|
|
832
833
|
failed: boolean;
|
|
833
|
-
loading: boolean;
|
|
834
834
|
}, {
|
|
835
|
+
loading: boolean;
|
|
835
836
|
loaded: boolean;
|
|
836
837
|
failed: boolean;
|
|
837
|
-
loading: boolean;
|
|
838
838
|
}>;
|
|
839
839
|
profiles: z.ZodArray<z.ZodObject<{
|
|
840
840
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -852,16 +852,16 @@ export declare const profileSearchNuxtObjectStateSchema: z.ZodObject<{
|
|
|
852
852
|
}, "strip", z.ZodTypeAny, {
|
|
853
853
|
country: string;
|
|
854
854
|
region: string;
|
|
855
|
-
timezone: string;
|
|
856
855
|
subregion: string;
|
|
856
|
+
timezone: string;
|
|
857
857
|
state?: string | undefined;
|
|
858
858
|
city?: string | undefined;
|
|
859
859
|
zip?: string | undefined;
|
|
860
860
|
}, {
|
|
861
861
|
country: string;
|
|
862
862
|
region: string;
|
|
863
|
-
timezone: string;
|
|
864
863
|
subregion: string;
|
|
864
|
+
timezone: string;
|
|
865
865
|
state?: string | undefined;
|
|
866
866
|
city?: string | undefined;
|
|
867
867
|
zip?: string | undefined;
|
|
@@ -870,11 +870,11 @@ export declare const profileSearchNuxtObjectStateSchema: z.ZodObject<{
|
|
|
870
870
|
rawValue: z.ZodString;
|
|
871
871
|
currency: z.ZodString;
|
|
872
872
|
}, "strip", z.ZodTypeAny, {
|
|
873
|
-
currency: string;
|
|
874
873
|
rawValue: string;
|
|
875
|
-
}, {
|
|
876
874
|
currency: string;
|
|
875
|
+
}, {
|
|
877
876
|
rawValue: string;
|
|
877
|
+
currency: string;
|
|
878
878
|
}>>;
|
|
879
879
|
portrait: z.ZodOptional<z.ZodObject<{
|
|
880
880
|
portrait: z.ZodString;
|
|
@@ -892,25 +892,25 @@ export declare const profileSearchNuxtObjectStateSchema: z.ZodObject<{
|
|
|
892
892
|
prettyName: z.ZodString;
|
|
893
893
|
uid: z.ZodString;
|
|
894
894
|
}, "strip", z.ZodTypeAny, {
|
|
895
|
-
uid: string;
|
|
896
895
|
prettyName: string;
|
|
897
|
-
}, {
|
|
898
896
|
uid: string;
|
|
897
|
+
}, {
|
|
899
898
|
prettyName: string;
|
|
899
|
+
uid: string;
|
|
900
900
|
}>;
|
|
901
901
|
uid: z.ZodString;
|
|
902
902
|
}, "strip", z.ZodTypeAny, {
|
|
903
|
+
uid: string;
|
|
903
904
|
skill: {
|
|
904
|
-
uid: string;
|
|
905
905
|
prettyName: string;
|
|
906
|
+
uid: string;
|
|
906
907
|
};
|
|
907
|
-
uid: string;
|
|
908
908
|
}, {
|
|
909
|
+
uid: string;
|
|
909
910
|
skill: {
|
|
910
|
-
uid: string;
|
|
911
911
|
prettyName: string;
|
|
912
|
+
uid: string;
|
|
912
913
|
};
|
|
913
|
-
uid: string;
|
|
914
914
|
}>, "many">>;
|
|
915
915
|
stats: z.ZodOptional<z.ZodObject<{
|
|
916
916
|
hideJss: z.ZodBoolean;
|
|
@@ -926,27 +926,27 @@ export declare const profileSearchNuxtObjectStateSchema: z.ZodObject<{
|
|
|
926
926
|
totalFpJobs: z.ZodNumber;
|
|
927
927
|
totalCompletedJobs: z.ZodNumber;
|
|
928
928
|
}, "strip", z.ZodTypeAny, {
|
|
929
|
-
totalHours: number;
|
|
930
|
-
rate: number;
|
|
931
|
-
jobSuccessScore: number;
|
|
932
929
|
hideJss: boolean;
|
|
933
930
|
hideEarnings: boolean;
|
|
934
931
|
topRatedStatus: string;
|
|
935
932
|
topRatedStatusEx: string;
|
|
933
|
+
rate: number;
|
|
936
934
|
earned: number;
|
|
935
|
+
jobSuccessScore: number;
|
|
936
|
+
totalHours: number;
|
|
937
937
|
totalHourlyJobs: number;
|
|
938
938
|
totalFpJobs: number;
|
|
939
939
|
totalCompletedJobs: number;
|
|
940
940
|
rankInfo?: any;
|
|
941
941
|
}, {
|
|
942
|
-
totalHours: number;
|
|
943
|
-
rate: number;
|
|
944
|
-
jobSuccessScore: number;
|
|
945
942
|
hideJss: boolean;
|
|
946
943
|
hideEarnings: boolean;
|
|
947
944
|
topRatedStatus: string;
|
|
948
945
|
topRatedStatusEx: string;
|
|
946
|
+
rate: number;
|
|
949
947
|
earned: number;
|
|
948
|
+
jobSuccessScore: number;
|
|
949
|
+
totalHours: number;
|
|
950
950
|
totalHourlyJobs: number;
|
|
951
951
|
totalFpJobs: number;
|
|
952
952
|
totalCompletedJobs: number;
|
|
@@ -973,26 +973,26 @@ export declare const profileSearchNuxtObjectStateSchema: z.ZodObject<{
|
|
|
973
973
|
level2?: string | undefined;
|
|
974
974
|
}>;
|
|
975
975
|
}, "strip", z.ZodTypeAny, {
|
|
976
|
+
uid: string;
|
|
976
977
|
title: string;
|
|
978
|
+
publicPortfolioItem: boolean;
|
|
977
979
|
category: {
|
|
978
980
|
id?: string | undefined;
|
|
979
981
|
level1?: string | undefined;
|
|
980
982
|
level2?: string | undefined;
|
|
981
983
|
};
|
|
982
|
-
uid: string;
|
|
983
|
-
publicPortfolioItem: boolean;
|
|
984
984
|
description?: string | undefined;
|
|
985
985
|
videoUrl?: string | undefined;
|
|
986
986
|
thumbnailUrl?: string | undefined;
|
|
987
987
|
}, {
|
|
988
|
+
uid: string;
|
|
988
989
|
title: string;
|
|
990
|
+
publicPortfolioItem: boolean;
|
|
989
991
|
category: {
|
|
990
992
|
id?: string | undefined;
|
|
991
993
|
level1?: string | undefined;
|
|
992
994
|
level2?: string | undefined;
|
|
993
995
|
};
|
|
994
|
-
uid: string;
|
|
995
|
-
publicPortfolioItem: boolean;
|
|
996
996
|
description?: string | undefined;
|
|
997
997
|
videoUrl?: string | undefined;
|
|
998
998
|
thumbnailUrl?: string | undefined;
|
|
@@ -1004,134 +1004,134 @@ export declare const profileSearchNuxtObjectStateSchema: z.ZodObject<{
|
|
|
1004
1004
|
boosted: z.ZodOptional<z.ZodBoolean>;
|
|
1005
1005
|
boostedWouldHaveBeen: z.ZodOptional<z.ZodBoolean>;
|
|
1006
1006
|
}, "strip", z.ZodTypeAny, {
|
|
1007
|
+
description?: string | undefined;
|
|
1008
|
+
title?: string | undefined;
|
|
1009
|
+
portrait?: {
|
|
1010
|
+
portrait: string;
|
|
1011
|
+
} | undefined;
|
|
1012
|
+
firstName?: string | undefined;
|
|
1013
|
+
lastName?: string | undefined;
|
|
1007
1014
|
location?: {
|
|
1008
1015
|
country: string;
|
|
1009
1016
|
region: string;
|
|
1010
|
-
timezone: string;
|
|
1011
1017
|
subregion: string;
|
|
1018
|
+
timezone: string;
|
|
1012
1019
|
state?: string | undefined;
|
|
1013
1020
|
city?: string | undefined;
|
|
1014
1021
|
zip?: string | undefined;
|
|
1015
1022
|
} | undefined;
|
|
1016
|
-
|
|
1017
|
-
|
|
1023
|
+
chargeRate?: {
|
|
1024
|
+
rawValue: string;
|
|
1025
|
+
currency: string;
|
|
1026
|
+
} | undefined;
|
|
1027
|
+
profileUrl?: string | undefined;
|
|
1028
|
+
offerConsultations?: boolean | undefined;
|
|
1029
|
+
jobSummariesAssignmentRids?: any;
|
|
1030
|
+
shortName?: string | undefined;
|
|
1031
|
+
skills?: {
|
|
1032
|
+
uid: string;
|
|
1033
|
+
skill: {
|
|
1034
|
+
prettyName: string;
|
|
1035
|
+
uid: string;
|
|
1036
|
+
};
|
|
1037
|
+
}[] | undefined;
|
|
1018
1038
|
stats?: {
|
|
1019
|
-
totalHours: number;
|
|
1020
|
-
rate: number;
|
|
1021
|
-
jobSuccessScore: number;
|
|
1022
1039
|
hideJss: boolean;
|
|
1023
1040
|
hideEarnings: boolean;
|
|
1024
1041
|
topRatedStatus: string;
|
|
1025
1042
|
topRatedStatusEx: string;
|
|
1043
|
+
rate: number;
|
|
1026
1044
|
earned: number;
|
|
1045
|
+
jobSuccessScore: number;
|
|
1046
|
+
totalHours: number;
|
|
1027
1047
|
totalHourlyJobs: number;
|
|
1028
1048
|
totalFpJobs: number;
|
|
1029
1049
|
totalCompletedJobs: number;
|
|
1030
1050
|
rankInfo?: any;
|
|
1031
1051
|
} | undefined;
|
|
1032
|
-
specializedProfiles?: any[] | undefined;
|
|
1033
|
-
skills?: {
|
|
1034
|
-
skill: {
|
|
1035
|
-
uid: string;
|
|
1036
|
-
prettyName: string;
|
|
1037
|
-
};
|
|
1038
|
-
uid: string;
|
|
1039
|
-
}[] | undefined;
|
|
1040
|
-
boosted?: boolean | undefined;
|
|
1041
|
-
profileUrl?: string | undefined;
|
|
1042
|
-
portrait?: {
|
|
1043
|
-
portrait: string;
|
|
1044
|
-
} | undefined;
|
|
1045
|
-
firstName?: string | undefined;
|
|
1046
|
-
lastName?: string | undefined;
|
|
1047
|
-
chargeRate?: {
|
|
1048
|
-
currency: string;
|
|
1049
|
-
rawValue: string;
|
|
1050
|
-
} | undefined;
|
|
1051
|
-
offerConsultations?: boolean | undefined;
|
|
1052
|
-
jobSummariesAssignmentRids?: any;
|
|
1053
|
-
shortName?: string | undefined;
|
|
1054
1052
|
portfolioItems?: {
|
|
1053
|
+
uid: string;
|
|
1055
1054
|
title: string;
|
|
1055
|
+
publicPortfolioItem: boolean;
|
|
1056
1056
|
category: {
|
|
1057
1057
|
id?: string | undefined;
|
|
1058
1058
|
level1?: string | undefined;
|
|
1059
1059
|
level2?: string | undefined;
|
|
1060
1060
|
};
|
|
1061
|
-
uid: string;
|
|
1062
|
-
publicPortfolioItem: boolean;
|
|
1063
1061
|
description?: string | undefined;
|
|
1064
1062
|
videoUrl?: string | undefined;
|
|
1065
1063
|
thumbnailUrl?: string | undefined;
|
|
1066
1064
|
}[] | undefined;
|
|
1067
1065
|
totalPortfolioItems?: number | undefined;
|
|
1066
|
+
specializedProfiles?: any[] | undefined;
|
|
1068
1067
|
isDiversityCertified?: boolean | undefined;
|
|
1069
1068
|
isBoosted?: boolean | undefined;
|
|
1069
|
+
boosted?: boolean | undefined;
|
|
1070
1070
|
boostedWouldHaveBeen?: boolean | undefined;
|
|
1071
1071
|
}, {
|
|
1072
|
+
description?: string | undefined;
|
|
1073
|
+
title?: string | undefined;
|
|
1074
|
+
portrait?: {
|
|
1075
|
+
portrait: string;
|
|
1076
|
+
} | undefined;
|
|
1077
|
+
firstName?: string | undefined;
|
|
1078
|
+
lastName?: string | undefined;
|
|
1072
1079
|
location?: {
|
|
1073
1080
|
country: string;
|
|
1074
1081
|
region: string;
|
|
1075
|
-
timezone: string;
|
|
1076
1082
|
subregion: string;
|
|
1083
|
+
timezone: string;
|
|
1077
1084
|
state?: string | undefined;
|
|
1078
1085
|
city?: string | undefined;
|
|
1079
1086
|
zip?: string | undefined;
|
|
1080
1087
|
} | undefined;
|
|
1081
|
-
|
|
1082
|
-
|
|
1088
|
+
chargeRate?: {
|
|
1089
|
+
rawValue: string;
|
|
1090
|
+
currency: string;
|
|
1091
|
+
} | undefined;
|
|
1092
|
+
profileUrl?: string | undefined;
|
|
1093
|
+
offerConsultations?: boolean | undefined;
|
|
1094
|
+
jobSummariesAssignmentRids?: any;
|
|
1095
|
+
shortName?: string | undefined;
|
|
1096
|
+
skills?: {
|
|
1097
|
+
uid: string;
|
|
1098
|
+
skill: {
|
|
1099
|
+
prettyName: string;
|
|
1100
|
+
uid: string;
|
|
1101
|
+
};
|
|
1102
|
+
}[] | undefined;
|
|
1083
1103
|
stats?: {
|
|
1084
|
-
totalHours: number;
|
|
1085
|
-
rate: number;
|
|
1086
|
-
jobSuccessScore: number;
|
|
1087
1104
|
hideJss: boolean;
|
|
1088
1105
|
hideEarnings: boolean;
|
|
1089
1106
|
topRatedStatus: string;
|
|
1090
1107
|
topRatedStatusEx: string;
|
|
1108
|
+
rate: number;
|
|
1091
1109
|
earned: number;
|
|
1110
|
+
jobSuccessScore: number;
|
|
1111
|
+
totalHours: number;
|
|
1092
1112
|
totalHourlyJobs: number;
|
|
1093
1113
|
totalFpJobs: number;
|
|
1094
1114
|
totalCompletedJobs: number;
|
|
1095
1115
|
rankInfo?: any;
|
|
1096
1116
|
} | undefined;
|
|
1097
|
-
specializedProfiles?: any[] | undefined;
|
|
1098
|
-
skills?: {
|
|
1099
|
-
skill: {
|
|
1100
|
-
uid: string;
|
|
1101
|
-
prettyName: string;
|
|
1102
|
-
};
|
|
1103
|
-
uid: string;
|
|
1104
|
-
}[] | undefined;
|
|
1105
|
-
boosted?: boolean | undefined;
|
|
1106
|
-
profileUrl?: string | undefined;
|
|
1107
|
-
portrait?: {
|
|
1108
|
-
portrait: string;
|
|
1109
|
-
} | undefined;
|
|
1110
|
-
firstName?: string | undefined;
|
|
1111
|
-
lastName?: string | undefined;
|
|
1112
|
-
chargeRate?: {
|
|
1113
|
-
currency: string;
|
|
1114
|
-
rawValue: string;
|
|
1115
|
-
} | undefined;
|
|
1116
|
-
offerConsultations?: boolean | undefined;
|
|
1117
|
-
jobSummariesAssignmentRids?: any;
|
|
1118
|
-
shortName?: string | undefined;
|
|
1119
1117
|
portfolioItems?: {
|
|
1118
|
+
uid: string;
|
|
1120
1119
|
title: string;
|
|
1120
|
+
publicPortfolioItem: boolean;
|
|
1121
1121
|
category: {
|
|
1122
1122
|
id?: string | undefined;
|
|
1123
1123
|
level1?: string | undefined;
|
|
1124
1124
|
level2?: string | undefined;
|
|
1125
1125
|
};
|
|
1126
|
-
uid: string;
|
|
1127
|
-
publicPortfolioItem: boolean;
|
|
1128
1126
|
description?: string | undefined;
|
|
1129
1127
|
videoUrl?: string | undefined;
|
|
1130
1128
|
thumbnailUrl?: string | undefined;
|
|
1131
1129
|
}[] | undefined;
|
|
1132
1130
|
totalPortfolioItems?: number | undefined;
|
|
1131
|
+
specializedProfiles?: any[] | undefined;
|
|
1133
1132
|
isDiversityCertified?: boolean | undefined;
|
|
1134
1133
|
isBoosted?: boolean | undefined;
|
|
1134
|
+
boosted?: boolean | undefined;
|
|
1135
1135
|
boostedWouldHaveBeen?: boolean | undefined;
|
|
1136
1136
|
}>, "many">;
|
|
1137
1137
|
currentPage: z.ZodNumber;
|
|
@@ -1144,20 +1144,20 @@ export declare const profileSearchNuxtObjectStateSchema: z.ZodObject<{
|
|
|
1144
1144
|
page: z.ZodNumber;
|
|
1145
1145
|
perPage: z.ZodNumber;
|
|
1146
1146
|
}, "strip", z.ZodTypeAny, {
|
|
1147
|
-
offset: number;
|
|
1148
1147
|
total: number;
|
|
1149
|
-
|
|
1148
|
+
offset: number;
|
|
1150
1149
|
count: number;
|
|
1151
1150
|
originTotal: number;
|
|
1152
1151
|
pagesTotal: number;
|
|
1152
|
+
page: number;
|
|
1153
1153
|
perPage: number;
|
|
1154
1154
|
}, {
|
|
1155
|
-
offset: number;
|
|
1156
1155
|
total: number;
|
|
1157
|
-
|
|
1156
|
+
offset: number;
|
|
1158
1157
|
count: number;
|
|
1159
1158
|
originTotal: number;
|
|
1160
1159
|
pagesTotal: number;
|
|
1160
|
+
page: number;
|
|
1161
1161
|
perPage: number;
|
|
1162
1162
|
}>;
|
|
1163
1163
|
flags: z.ZodObject<{
|
|
@@ -1170,84 +1170,84 @@ export declare const profileSearchNuxtObjectStateSchema: z.ZodObject<{
|
|
|
1170
1170
|
searchQueryCache: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
1171
1171
|
}, "strip", z.ZodTypeAny, {
|
|
1172
1172
|
status: {
|
|
1173
|
+
loading: boolean;
|
|
1173
1174
|
loaded: boolean;
|
|
1174
1175
|
failed: boolean;
|
|
1175
|
-
loading: boolean;
|
|
1176
1176
|
};
|
|
1177
1177
|
profiles: {
|
|
1178
|
+
description?: string | undefined;
|
|
1179
|
+
title?: string | undefined;
|
|
1180
|
+
portrait?: {
|
|
1181
|
+
portrait: string;
|
|
1182
|
+
} | undefined;
|
|
1183
|
+
firstName?: string | undefined;
|
|
1184
|
+
lastName?: string | undefined;
|
|
1178
1185
|
location?: {
|
|
1179
1186
|
country: string;
|
|
1180
1187
|
region: string;
|
|
1181
|
-
timezone: string;
|
|
1182
1188
|
subregion: string;
|
|
1189
|
+
timezone: string;
|
|
1183
1190
|
state?: string | undefined;
|
|
1184
1191
|
city?: string | undefined;
|
|
1185
1192
|
zip?: string | undefined;
|
|
1186
1193
|
} | undefined;
|
|
1187
|
-
|
|
1188
|
-
|
|
1194
|
+
chargeRate?: {
|
|
1195
|
+
rawValue: string;
|
|
1196
|
+
currency: string;
|
|
1197
|
+
} | undefined;
|
|
1198
|
+
profileUrl?: string | undefined;
|
|
1199
|
+
offerConsultations?: boolean | undefined;
|
|
1200
|
+
jobSummariesAssignmentRids?: any;
|
|
1201
|
+
shortName?: string | undefined;
|
|
1202
|
+
skills?: {
|
|
1203
|
+
uid: string;
|
|
1204
|
+
skill: {
|
|
1205
|
+
prettyName: string;
|
|
1206
|
+
uid: string;
|
|
1207
|
+
};
|
|
1208
|
+
}[] | undefined;
|
|
1189
1209
|
stats?: {
|
|
1190
|
-
totalHours: number;
|
|
1191
|
-
rate: number;
|
|
1192
|
-
jobSuccessScore: number;
|
|
1193
1210
|
hideJss: boolean;
|
|
1194
1211
|
hideEarnings: boolean;
|
|
1195
1212
|
topRatedStatus: string;
|
|
1196
1213
|
topRatedStatusEx: string;
|
|
1214
|
+
rate: number;
|
|
1197
1215
|
earned: number;
|
|
1216
|
+
jobSuccessScore: number;
|
|
1217
|
+
totalHours: number;
|
|
1198
1218
|
totalHourlyJobs: number;
|
|
1199
1219
|
totalFpJobs: number;
|
|
1200
1220
|
totalCompletedJobs: number;
|
|
1201
1221
|
rankInfo?: any;
|
|
1202
1222
|
} | undefined;
|
|
1203
|
-
specializedProfiles?: any[] | undefined;
|
|
1204
|
-
skills?: {
|
|
1205
|
-
skill: {
|
|
1206
|
-
uid: string;
|
|
1207
|
-
prettyName: string;
|
|
1208
|
-
};
|
|
1209
|
-
uid: string;
|
|
1210
|
-
}[] | undefined;
|
|
1211
|
-
boosted?: boolean | undefined;
|
|
1212
|
-
profileUrl?: string | undefined;
|
|
1213
|
-
portrait?: {
|
|
1214
|
-
portrait: string;
|
|
1215
|
-
} | undefined;
|
|
1216
|
-
firstName?: string | undefined;
|
|
1217
|
-
lastName?: string | undefined;
|
|
1218
|
-
chargeRate?: {
|
|
1219
|
-
currency: string;
|
|
1220
|
-
rawValue: string;
|
|
1221
|
-
} | undefined;
|
|
1222
|
-
offerConsultations?: boolean | undefined;
|
|
1223
|
-
jobSummariesAssignmentRids?: any;
|
|
1224
|
-
shortName?: string | undefined;
|
|
1225
1223
|
portfolioItems?: {
|
|
1224
|
+
uid: string;
|
|
1226
1225
|
title: string;
|
|
1226
|
+
publicPortfolioItem: boolean;
|
|
1227
1227
|
category: {
|
|
1228
1228
|
id?: string | undefined;
|
|
1229
1229
|
level1?: string | undefined;
|
|
1230
1230
|
level2?: string | undefined;
|
|
1231
1231
|
};
|
|
1232
|
-
uid: string;
|
|
1233
|
-
publicPortfolioItem: boolean;
|
|
1234
1232
|
description?: string | undefined;
|
|
1235
1233
|
videoUrl?: string | undefined;
|
|
1236
1234
|
thumbnailUrl?: string | undefined;
|
|
1237
1235
|
}[] | undefined;
|
|
1238
1236
|
totalPortfolioItems?: number | undefined;
|
|
1237
|
+
specializedProfiles?: any[] | undefined;
|
|
1239
1238
|
isDiversityCertified?: boolean | undefined;
|
|
1240
1239
|
isBoosted?: boolean | undefined;
|
|
1240
|
+
boosted?: boolean | undefined;
|
|
1241
1241
|
boostedWouldHaveBeen?: boolean | undefined;
|
|
1242
1242
|
}[];
|
|
1243
1243
|
currentPage: number;
|
|
1244
1244
|
paging: {
|
|
1245
|
-
offset: number;
|
|
1246
1245
|
total: number;
|
|
1247
|
-
|
|
1246
|
+
offset: number;
|
|
1248
1247
|
count: number;
|
|
1249
1248
|
originTotal: number;
|
|
1250
1249
|
pagesTotal: number;
|
|
1250
|
+
page: number;
|
|
1251
1251
|
perPage: number;
|
|
1252
1252
|
};
|
|
1253
1253
|
flags: {
|
|
@@ -1256,84 +1256,84 @@ export declare const profileSearchNuxtObjectStateSchema: z.ZodObject<{
|
|
|
1256
1256
|
searchQueryCache: Record<string, any>;
|
|
1257
1257
|
}, {
|
|
1258
1258
|
status: {
|
|
1259
|
+
loading: boolean;
|
|
1259
1260
|
loaded: boolean;
|
|
1260
1261
|
failed: boolean;
|
|
1261
|
-
loading: boolean;
|
|
1262
1262
|
};
|
|
1263
1263
|
profiles: {
|
|
1264
|
+
description?: string | undefined;
|
|
1265
|
+
title?: string | undefined;
|
|
1266
|
+
portrait?: {
|
|
1267
|
+
portrait: string;
|
|
1268
|
+
} | undefined;
|
|
1269
|
+
firstName?: string | undefined;
|
|
1270
|
+
lastName?: string | undefined;
|
|
1264
1271
|
location?: {
|
|
1265
1272
|
country: string;
|
|
1266
1273
|
region: string;
|
|
1267
|
-
timezone: string;
|
|
1268
1274
|
subregion: string;
|
|
1275
|
+
timezone: string;
|
|
1269
1276
|
state?: string | undefined;
|
|
1270
1277
|
city?: string | undefined;
|
|
1271
1278
|
zip?: string | undefined;
|
|
1272
1279
|
} | undefined;
|
|
1273
|
-
|
|
1274
|
-
|
|
1280
|
+
chargeRate?: {
|
|
1281
|
+
rawValue: string;
|
|
1282
|
+
currency: string;
|
|
1283
|
+
} | undefined;
|
|
1284
|
+
profileUrl?: string | undefined;
|
|
1285
|
+
offerConsultations?: boolean | undefined;
|
|
1286
|
+
jobSummariesAssignmentRids?: any;
|
|
1287
|
+
shortName?: string | undefined;
|
|
1288
|
+
skills?: {
|
|
1289
|
+
uid: string;
|
|
1290
|
+
skill: {
|
|
1291
|
+
prettyName: string;
|
|
1292
|
+
uid: string;
|
|
1293
|
+
};
|
|
1294
|
+
}[] | undefined;
|
|
1275
1295
|
stats?: {
|
|
1276
|
-
totalHours: number;
|
|
1277
|
-
rate: number;
|
|
1278
|
-
jobSuccessScore: number;
|
|
1279
1296
|
hideJss: boolean;
|
|
1280
1297
|
hideEarnings: boolean;
|
|
1281
1298
|
topRatedStatus: string;
|
|
1282
1299
|
topRatedStatusEx: string;
|
|
1300
|
+
rate: number;
|
|
1283
1301
|
earned: number;
|
|
1302
|
+
jobSuccessScore: number;
|
|
1303
|
+
totalHours: number;
|
|
1284
1304
|
totalHourlyJobs: number;
|
|
1285
1305
|
totalFpJobs: number;
|
|
1286
1306
|
totalCompletedJobs: number;
|
|
1287
1307
|
rankInfo?: any;
|
|
1288
1308
|
} | undefined;
|
|
1289
|
-
|
|
1290
|
-
skills?: {
|
|
1291
|
-
skill: {
|
|
1292
|
-
uid: string;
|
|
1293
|
-
prettyName: string;
|
|
1294
|
-
};
|
|
1309
|
+
portfolioItems?: {
|
|
1295
1310
|
uid: string;
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
rawValue: string;
|
|
1307
|
-
} | undefined;
|
|
1308
|
-
offerConsultations?: boolean | undefined;
|
|
1309
|
-
jobSummariesAssignmentRids?: any;
|
|
1310
|
-
shortName?: string | undefined;
|
|
1311
|
-
portfolioItems?: {
|
|
1312
|
-
title: string;
|
|
1313
|
-
category: {
|
|
1314
|
-
id?: string | undefined;
|
|
1315
|
-
level1?: string | undefined;
|
|
1316
|
-
level2?: string | undefined;
|
|
1317
|
-
};
|
|
1318
|
-
uid: string;
|
|
1319
|
-
publicPortfolioItem: boolean;
|
|
1320
|
-
description?: string | undefined;
|
|
1321
|
-
videoUrl?: string | undefined;
|
|
1322
|
-
thumbnailUrl?: string | undefined;
|
|
1311
|
+
title: string;
|
|
1312
|
+
publicPortfolioItem: boolean;
|
|
1313
|
+
category: {
|
|
1314
|
+
id?: string | undefined;
|
|
1315
|
+
level1?: string | undefined;
|
|
1316
|
+
level2?: string | undefined;
|
|
1317
|
+
};
|
|
1318
|
+
description?: string | undefined;
|
|
1319
|
+
videoUrl?: string | undefined;
|
|
1320
|
+
thumbnailUrl?: string | undefined;
|
|
1323
1321
|
}[] | undefined;
|
|
1324
1322
|
totalPortfolioItems?: number | undefined;
|
|
1323
|
+
specializedProfiles?: any[] | undefined;
|
|
1325
1324
|
isDiversityCertified?: boolean | undefined;
|
|
1326
1325
|
isBoosted?: boolean | undefined;
|
|
1326
|
+
boosted?: boolean | undefined;
|
|
1327
1327
|
boostedWouldHaveBeen?: boolean | undefined;
|
|
1328
1328
|
}[];
|
|
1329
1329
|
currentPage: number;
|
|
1330
1330
|
paging: {
|
|
1331
|
-
offset: number;
|
|
1332
1331
|
total: number;
|
|
1333
|
-
|
|
1332
|
+
offset: number;
|
|
1334
1333
|
count: number;
|
|
1335
1334
|
originTotal: number;
|
|
1336
1335
|
pagesTotal: number;
|
|
1336
|
+
page: number;
|
|
1337
1337
|
perPage: number;
|
|
1338
1338
|
};
|
|
1339
1339
|
flags: {
|
|
@@ -1344,84 +1344,84 @@ export declare const profileSearchNuxtObjectStateSchema: z.ZodObject<{
|
|
|
1344
1344
|
}, "strip", z.ZodTypeAny, {
|
|
1345
1345
|
profilesSearch: {
|
|
1346
1346
|
status: {
|
|
1347
|
+
loading: boolean;
|
|
1347
1348
|
loaded: boolean;
|
|
1348
1349
|
failed: boolean;
|
|
1349
|
-
loading: boolean;
|
|
1350
1350
|
};
|
|
1351
1351
|
profiles: {
|
|
1352
|
+
description?: string | undefined;
|
|
1353
|
+
title?: string | undefined;
|
|
1354
|
+
portrait?: {
|
|
1355
|
+
portrait: string;
|
|
1356
|
+
} | undefined;
|
|
1357
|
+
firstName?: string | undefined;
|
|
1358
|
+
lastName?: string | undefined;
|
|
1352
1359
|
location?: {
|
|
1353
1360
|
country: string;
|
|
1354
1361
|
region: string;
|
|
1355
|
-
timezone: string;
|
|
1356
1362
|
subregion: string;
|
|
1363
|
+
timezone: string;
|
|
1357
1364
|
state?: string | undefined;
|
|
1358
1365
|
city?: string | undefined;
|
|
1359
1366
|
zip?: string | undefined;
|
|
1360
1367
|
} | undefined;
|
|
1361
|
-
|
|
1362
|
-
|
|
1368
|
+
chargeRate?: {
|
|
1369
|
+
rawValue: string;
|
|
1370
|
+
currency: string;
|
|
1371
|
+
} | undefined;
|
|
1372
|
+
profileUrl?: string | undefined;
|
|
1373
|
+
offerConsultations?: boolean | undefined;
|
|
1374
|
+
jobSummariesAssignmentRids?: any;
|
|
1375
|
+
shortName?: string | undefined;
|
|
1376
|
+
skills?: {
|
|
1377
|
+
uid: string;
|
|
1378
|
+
skill: {
|
|
1379
|
+
prettyName: string;
|
|
1380
|
+
uid: string;
|
|
1381
|
+
};
|
|
1382
|
+
}[] | undefined;
|
|
1363
1383
|
stats?: {
|
|
1364
|
-
totalHours: number;
|
|
1365
|
-
rate: number;
|
|
1366
|
-
jobSuccessScore: number;
|
|
1367
1384
|
hideJss: boolean;
|
|
1368
1385
|
hideEarnings: boolean;
|
|
1369
1386
|
topRatedStatus: string;
|
|
1370
1387
|
topRatedStatusEx: string;
|
|
1388
|
+
rate: number;
|
|
1371
1389
|
earned: number;
|
|
1390
|
+
jobSuccessScore: number;
|
|
1391
|
+
totalHours: number;
|
|
1372
1392
|
totalHourlyJobs: number;
|
|
1373
1393
|
totalFpJobs: number;
|
|
1374
1394
|
totalCompletedJobs: number;
|
|
1375
1395
|
rankInfo?: any;
|
|
1376
1396
|
} | undefined;
|
|
1377
|
-
specializedProfiles?: any[] | undefined;
|
|
1378
|
-
skills?: {
|
|
1379
|
-
skill: {
|
|
1380
|
-
uid: string;
|
|
1381
|
-
prettyName: string;
|
|
1382
|
-
};
|
|
1383
|
-
uid: string;
|
|
1384
|
-
}[] | undefined;
|
|
1385
|
-
boosted?: boolean | undefined;
|
|
1386
|
-
profileUrl?: string | undefined;
|
|
1387
|
-
portrait?: {
|
|
1388
|
-
portrait: string;
|
|
1389
|
-
} | undefined;
|
|
1390
|
-
firstName?: string | undefined;
|
|
1391
|
-
lastName?: string | undefined;
|
|
1392
|
-
chargeRate?: {
|
|
1393
|
-
currency: string;
|
|
1394
|
-
rawValue: string;
|
|
1395
|
-
} | undefined;
|
|
1396
|
-
offerConsultations?: boolean | undefined;
|
|
1397
|
-
jobSummariesAssignmentRids?: any;
|
|
1398
|
-
shortName?: string | undefined;
|
|
1399
1397
|
portfolioItems?: {
|
|
1398
|
+
uid: string;
|
|
1400
1399
|
title: string;
|
|
1400
|
+
publicPortfolioItem: boolean;
|
|
1401
1401
|
category: {
|
|
1402
1402
|
id?: string | undefined;
|
|
1403
1403
|
level1?: string | undefined;
|
|
1404
1404
|
level2?: string | undefined;
|
|
1405
1405
|
};
|
|
1406
|
-
uid: string;
|
|
1407
|
-
publicPortfolioItem: boolean;
|
|
1408
1406
|
description?: string | undefined;
|
|
1409
1407
|
videoUrl?: string | undefined;
|
|
1410
1408
|
thumbnailUrl?: string | undefined;
|
|
1411
1409
|
}[] | undefined;
|
|
1412
1410
|
totalPortfolioItems?: number | undefined;
|
|
1411
|
+
specializedProfiles?: any[] | undefined;
|
|
1413
1412
|
isDiversityCertified?: boolean | undefined;
|
|
1414
1413
|
isBoosted?: boolean | undefined;
|
|
1414
|
+
boosted?: boolean | undefined;
|
|
1415
1415
|
boostedWouldHaveBeen?: boolean | undefined;
|
|
1416
1416
|
}[];
|
|
1417
1417
|
currentPage: number;
|
|
1418
1418
|
paging: {
|
|
1419
|
-
offset: number;
|
|
1420
1419
|
total: number;
|
|
1421
|
-
|
|
1420
|
+
offset: number;
|
|
1422
1421
|
count: number;
|
|
1423
1422
|
originTotal: number;
|
|
1424
1423
|
pagesTotal: number;
|
|
1424
|
+
page: number;
|
|
1425
1425
|
perPage: number;
|
|
1426
1426
|
};
|
|
1427
1427
|
flags: {
|
|
@@ -1432,84 +1432,84 @@ export declare const profileSearchNuxtObjectStateSchema: z.ZodObject<{
|
|
|
1432
1432
|
}, {
|
|
1433
1433
|
profilesSearch: {
|
|
1434
1434
|
status: {
|
|
1435
|
+
loading: boolean;
|
|
1435
1436
|
loaded: boolean;
|
|
1436
1437
|
failed: boolean;
|
|
1437
|
-
loading: boolean;
|
|
1438
1438
|
};
|
|
1439
1439
|
profiles: {
|
|
1440
|
+
description?: string | undefined;
|
|
1441
|
+
title?: string | undefined;
|
|
1442
|
+
portrait?: {
|
|
1443
|
+
portrait: string;
|
|
1444
|
+
} | undefined;
|
|
1445
|
+
firstName?: string | undefined;
|
|
1446
|
+
lastName?: string | undefined;
|
|
1440
1447
|
location?: {
|
|
1441
1448
|
country: string;
|
|
1442
1449
|
region: string;
|
|
1443
|
-
timezone: string;
|
|
1444
1450
|
subregion: string;
|
|
1451
|
+
timezone: string;
|
|
1445
1452
|
state?: string | undefined;
|
|
1446
1453
|
city?: string | undefined;
|
|
1447
1454
|
zip?: string | undefined;
|
|
1448
1455
|
} | undefined;
|
|
1449
|
-
|
|
1450
|
-
|
|
1456
|
+
chargeRate?: {
|
|
1457
|
+
rawValue: string;
|
|
1458
|
+
currency: string;
|
|
1459
|
+
} | undefined;
|
|
1460
|
+
profileUrl?: string | undefined;
|
|
1461
|
+
offerConsultations?: boolean | undefined;
|
|
1462
|
+
jobSummariesAssignmentRids?: any;
|
|
1463
|
+
shortName?: string | undefined;
|
|
1464
|
+
skills?: {
|
|
1465
|
+
uid: string;
|
|
1466
|
+
skill: {
|
|
1467
|
+
prettyName: string;
|
|
1468
|
+
uid: string;
|
|
1469
|
+
};
|
|
1470
|
+
}[] | undefined;
|
|
1451
1471
|
stats?: {
|
|
1452
|
-
totalHours: number;
|
|
1453
|
-
rate: number;
|
|
1454
|
-
jobSuccessScore: number;
|
|
1455
1472
|
hideJss: boolean;
|
|
1456
1473
|
hideEarnings: boolean;
|
|
1457
1474
|
topRatedStatus: string;
|
|
1458
1475
|
topRatedStatusEx: string;
|
|
1476
|
+
rate: number;
|
|
1459
1477
|
earned: number;
|
|
1478
|
+
jobSuccessScore: number;
|
|
1479
|
+
totalHours: number;
|
|
1460
1480
|
totalHourlyJobs: number;
|
|
1461
1481
|
totalFpJobs: number;
|
|
1462
1482
|
totalCompletedJobs: number;
|
|
1463
1483
|
rankInfo?: any;
|
|
1464
1484
|
} | undefined;
|
|
1465
|
-
specializedProfiles?: any[] | undefined;
|
|
1466
|
-
skills?: {
|
|
1467
|
-
skill: {
|
|
1468
|
-
uid: string;
|
|
1469
|
-
prettyName: string;
|
|
1470
|
-
};
|
|
1471
|
-
uid: string;
|
|
1472
|
-
}[] | undefined;
|
|
1473
|
-
boosted?: boolean | undefined;
|
|
1474
|
-
profileUrl?: string | undefined;
|
|
1475
|
-
portrait?: {
|
|
1476
|
-
portrait: string;
|
|
1477
|
-
} | undefined;
|
|
1478
|
-
firstName?: string | undefined;
|
|
1479
|
-
lastName?: string | undefined;
|
|
1480
|
-
chargeRate?: {
|
|
1481
|
-
currency: string;
|
|
1482
|
-
rawValue: string;
|
|
1483
|
-
} | undefined;
|
|
1484
|
-
offerConsultations?: boolean | undefined;
|
|
1485
|
-
jobSummariesAssignmentRids?: any;
|
|
1486
|
-
shortName?: string | undefined;
|
|
1487
1485
|
portfolioItems?: {
|
|
1486
|
+
uid: string;
|
|
1488
1487
|
title: string;
|
|
1488
|
+
publicPortfolioItem: boolean;
|
|
1489
1489
|
category: {
|
|
1490
1490
|
id?: string | undefined;
|
|
1491
1491
|
level1?: string | undefined;
|
|
1492
1492
|
level2?: string | undefined;
|
|
1493
1493
|
};
|
|
1494
|
-
uid: string;
|
|
1495
|
-
publicPortfolioItem: boolean;
|
|
1496
1494
|
description?: string | undefined;
|
|
1497
1495
|
videoUrl?: string | undefined;
|
|
1498
1496
|
thumbnailUrl?: string | undefined;
|
|
1499
1497
|
}[] | undefined;
|
|
1500
1498
|
totalPortfolioItems?: number | undefined;
|
|
1499
|
+
specializedProfiles?: any[] | undefined;
|
|
1501
1500
|
isDiversityCertified?: boolean | undefined;
|
|
1502
1501
|
isBoosted?: boolean | undefined;
|
|
1502
|
+
boosted?: boolean | undefined;
|
|
1503
1503
|
boostedWouldHaveBeen?: boolean | undefined;
|
|
1504
1504
|
}[];
|
|
1505
1505
|
currentPage: number;
|
|
1506
1506
|
paging: {
|
|
1507
|
-
offset: number;
|
|
1508
1507
|
total: number;
|
|
1509
|
-
|
|
1508
|
+
offset: number;
|
|
1510
1509
|
count: number;
|
|
1511
1510
|
originTotal: number;
|
|
1512
1511
|
pagesTotal: number;
|
|
1512
|
+
page: number;
|
|
1513
1513
|
perPage: number;
|
|
1514
1514
|
};
|
|
1515
1515
|
flags: {
|
|
@@ -1526,13 +1526,13 @@ export declare const profileSearchNuxtObjectSchema: z.ZodObject<{
|
|
|
1526
1526
|
loaded: z.ZodBoolean;
|
|
1527
1527
|
failed: z.ZodBoolean;
|
|
1528
1528
|
}, "strip", z.ZodTypeAny, {
|
|
1529
|
+
loading: boolean;
|
|
1529
1530
|
loaded: boolean;
|
|
1530
1531
|
failed: boolean;
|
|
1531
|
-
loading: boolean;
|
|
1532
1532
|
}, {
|
|
1533
|
+
loading: boolean;
|
|
1533
1534
|
loaded: boolean;
|
|
1534
1535
|
failed: boolean;
|
|
1535
|
-
loading: boolean;
|
|
1536
1536
|
}>;
|
|
1537
1537
|
profiles: z.ZodArray<z.ZodObject<{
|
|
1538
1538
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -1550,16 +1550,16 @@ export declare const profileSearchNuxtObjectSchema: z.ZodObject<{
|
|
|
1550
1550
|
}, "strip", z.ZodTypeAny, {
|
|
1551
1551
|
country: string;
|
|
1552
1552
|
region: string;
|
|
1553
|
-
timezone: string;
|
|
1554
1553
|
subregion: string;
|
|
1554
|
+
timezone: string;
|
|
1555
1555
|
state?: string | undefined;
|
|
1556
1556
|
city?: string | undefined;
|
|
1557
1557
|
zip?: string | undefined;
|
|
1558
1558
|
}, {
|
|
1559
1559
|
country: string;
|
|
1560
1560
|
region: string;
|
|
1561
|
-
timezone: string;
|
|
1562
1561
|
subregion: string;
|
|
1562
|
+
timezone: string;
|
|
1563
1563
|
state?: string | undefined;
|
|
1564
1564
|
city?: string | undefined;
|
|
1565
1565
|
zip?: string | undefined;
|
|
@@ -1568,11 +1568,11 @@ export declare const profileSearchNuxtObjectSchema: z.ZodObject<{
|
|
|
1568
1568
|
rawValue: z.ZodString;
|
|
1569
1569
|
currency: z.ZodString;
|
|
1570
1570
|
}, "strip", z.ZodTypeAny, {
|
|
1571
|
-
currency: string;
|
|
1572
1571
|
rawValue: string;
|
|
1573
|
-
}, {
|
|
1574
1572
|
currency: string;
|
|
1573
|
+
}, {
|
|
1575
1574
|
rawValue: string;
|
|
1575
|
+
currency: string;
|
|
1576
1576
|
}>>;
|
|
1577
1577
|
portrait: z.ZodOptional<z.ZodObject<{
|
|
1578
1578
|
portrait: z.ZodString;
|
|
@@ -1590,25 +1590,25 @@ export declare const profileSearchNuxtObjectSchema: z.ZodObject<{
|
|
|
1590
1590
|
prettyName: z.ZodString;
|
|
1591
1591
|
uid: z.ZodString;
|
|
1592
1592
|
}, "strip", z.ZodTypeAny, {
|
|
1593
|
-
uid: string;
|
|
1594
1593
|
prettyName: string;
|
|
1595
|
-
}, {
|
|
1596
1594
|
uid: string;
|
|
1595
|
+
}, {
|
|
1597
1596
|
prettyName: string;
|
|
1597
|
+
uid: string;
|
|
1598
1598
|
}>;
|
|
1599
1599
|
uid: z.ZodString;
|
|
1600
1600
|
}, "strip", z.ZodTypeAny, {
|
|
1601
|
+
uid: string;
|
|
1601
1602
|
skill: {
|
|
1602
|
-
uid: string;
|
|
1603
1603
|
prettyName: string;
|
|
1604
|
+
uid: string;
|
|
1604
1605
|
};
|
|
1605
|
-
uid: string;
|
|
1606
1606
|
}, {
|
|
1607
|
+
uid: string;
|
|
1607
1608
|
skill: {
|
|
1608
|
-
uid: string;
|
|
1609
1609
|
prettyName: string;
|
|
1610
|
+
uid: string;
|
|
1610
1611
|
};
|
|
1611
|
-
uid: string;
|
|
1612
1612
|
}>, "many">>;
|
|
1613
1613
|
stats: z.ZodOptional<z.ZodObject<{
|
|
1614
1614
|
hideJss: z.ZodBoolean;
|
|
@@ -1624,27 +1624,27 @@ export declare const profileSearchNuxtObjectSchema: z.ZodObject<{
|
|
|
1624
1624
|
totalFpJobs: z.ZodNumber;
|
|
1625
1625
|
totalCompletedJobs: z.ZodNumber;
|
|
1626
1626
|
}, "strip", z.ZodTypeAny, {
|
|
1627
|
-
totalHours: number;
|
|
1628
|
-
rate: number;
|
|
1629
|
-
jobSuccessScore: number;
|
|
1630
1627
|
hideJss: boolean;
|
|
1631
1628
|
hideEarnings: boolean;
|
|
1632
1629
|
topRatedStatus: string;
|
|
1633
1630
|
topRatedStatusEx: string;
|
|
1631
|
+
rate: number;
|
|
1634
1632
|
earned: number;
|
|
1633
|
+
jobSuccessScore: number;
|
|
1634
|
+
totalHours: number;
|
|
1635
1635
|
totalHourlyJobs: number;
|
|
1636
1636
|
totalFpJobs: number;
|
|
1637
1637
|
totalCompletedJobs: number;
|
|
1638
1638
|
rankInfo?: any;
|
|
1639
1639
|
}, {
|
|
1640
|
-
totalHours: number;
|
|
1641
|
-
rate: number;
|
|
1642
|
-
jobSuccessScore: number;
|
|
1643
1640
|
hideJss: boolean;
|
|
1644
1641
|
hideEarnings: boolean;
|
|
1645
1642
|
topRatedStatus: string;
|
|
1646
1643
|
topRatedStatusEx: string;
|
|
1644
|
+
rate: number;
|
|
1647
1645
|
earned: number;
|
|
1646
|
+
jobSuccessScore: number;
|
|
1647
|
+
totalHours: number;
|
|
1648
1648
|
totalHourlyJobs: number;
|
|
1649
1649
|
totalFpJobs: number;
|
|
1650
1650
|
totalCompletedJobs: number;
|
|
@@ -1671,26 +1671,26 @@ export declare const profileSearchNuxtObjectSchema: z.ZodObject<{
|
|
|
1671
1671
|
level2?: string | undefined;
|
|
1672
1672
|
}>;
|
|
1673
1673
|
}, "strip", z.ZodTypeAny, {
|
|
1674
|
+
uid: string;
|
|
1674
1675
|
title: string;
|
|
1676
|
+
publicPortfolioItem: boolean;
|
|
1675
1677
|
category: {
|
|
1676
1678
|
id?: string | undefined;
|
|
1677
1679
|
level1?: string | undefined;
|
|
1678
1680
|
level2?: string | undefined;
|
|
1679
1681
|
};
|
|
1680
|
-
uid: string;
|
|
1681
|
-
publicPortfolioItem: boolean;
|
|
1682
1682
|
description?: string | undefined;
|
|
1683
1683
|
videoUrl?: string | undefined;
|
|
1684
1684
|
thumbnailUrl?: string | undefined;
|
|
1685
1685
|
}, {
|
|
1686
|
+
uid: string;
|
|
1686
1687
|
title: string;
|
|
1688
|
+
publicPortfolioItem: boolean;
|
|
1687
1689
|
category: {
|
|
1688
1690
|
id?: string | undefined;
|
|
1689
1691
|
level1?: string | undefined;
|
|
1690
1692
|
level2?: string | undefined;
|
|
1691
1693
|
};
|
|
1692
|
-
uid: string;
|
|
1693
|
-
publicPortfolioItem: boolean;
|
|
1694
1694
|
description?: string | undefined;
|
|
1695
1695
|
videoUrl?: string | undefined;
|
|
1696
1696
|
thumbnailUrl?: string | undefined;
|
|
@@ -1702,134 +1702,134 @@ export declare const profileSearchNuxtObjectSchema: z.ZodObject<{
|
|
|
1702
1702
|
boosted: z.ZodOptional<z.ZodBoolean>;
|
|
1703
1703
|
boostedWouldHaveBeen: z.ZodOptional<z.ZodBoolean>;
|
|
1704
1704
|
}, "strip", z.ZodTypeAny, {
|
|
1705
|
+
description?: string | undefined;
|
|
1706
|
+
title?: string | undefined;
|
|
1707
|
+
portrait?: {
|
|
1708
|
+
portrait: string;
|
|
1709
|
+
} | undefined;
|
|
1710
|
+
firstName?: string | undefined;
|
|
1711
|
+
lastName?: string | undefined;
|
|
1705
1712
|
location?: {
|
|
1706
1713
|
country: string;
|
|
1707
1714
|
region: string;
|
|
1708
|
-
timezone: string;
|
|
1709
1715
|
subregion: string;
|
|
1716
|
+
timezone: string;
|
|
1710
1717
|
state?: string | undefined;
|
|
1711
1718
|
city?: string | undefined;
|
|
1712
1719
|
zip?: string | undefined;
|
|
1713
1720
|
} | undefined;
|
|
1714
|
-
|
|
1715
|
-
|
|
1721
|
+
chargeRate?: {
|
|
1722
|
+
rawValue: string;
|
|
1723
|
+
currency: string;
|
|
1724
|
+
} | undefined;
|
|
1725
|
+
profileUrl?: string | undefined;
|
|
1726
|
+
offerConsultations?: boolean | undefined;
|
|
1727
|
+
jobSummariesAssignmentRids?: any;
|
|
1728
|
+
shortName?: string | undefined;
|
|
1729
|
+
skills?: {
|
|
1730
|
+
uid: string;
|
|
1731
|
+
skill: {
|
|
1732
|
+
prettyName: string;
|
|
1733
|
+
uid: string;
|
|
1734
|
+
};
|
|
1735
|
+
}[] | undefined;
|
|
1716
1736
|
stats?: {
|
|
1717
|
-
totalHours: number;
|
|
1718
|
-
rate: number;
|
|
1719
|
-
jobSuccessScore: number;
|
|
1720
1737
|
hideJss: boolean;
|
|
1721
1738
|
hideEarnings: boolean;
|
|
1722
1739
|
topRatedStatus: string;
|
|
1723
1740
|
topRatedStatusEx: string;
|
|
1741
|
+
rate: number;
|
|
1724
1742
|
earned: number;
|
|
1743
|
+
jobSuccessScore: number;
|
|
1744
|
+
totalHours: number;
|
|
1725
1745
|
totalHourlyJobs: number;
|
|
1726
1746
|
totalFpJobs: number;
|
|
1727
1747
|
totalCompletedJobs: number;
|
|
1728
1748
|
rankInfo?: any;
|
|
1729
1749
|
} | undefined;
|
|
1730
|
-
|
|
1731
|
-
skills?: {
|
|
1732
|
-
skill: {
|
|
1733
|
-
uid: string;
|
|
1734
|
-
prettyName: string;
|
|
1735
|
-
};
|
|
1750
|
+
portfolioItems?: {
|
|
1736
1751
|
uid: string;
|
|
1737
|
-
}[] | undefined;
|
|
1738
|
-
boosted?: boolean | undefined;
|
|
1739
|
-
profileUrl?: string | undefined;
|
|
1740
|
-
portrait?: {
|
|
1741
|
-
portrait: string;
|
|
1742
|
-
} | undefined;
|
|
1743
|
-
firstName?: string | undefined;
|
|
1744
|
-
lastName?: string | undefined;
|
|
1745
|
-
chargeRate?: {
|
|
1746
|
-
currency: string;
|
|
1747
|
-
rawValue: string;
|
|
1748
|
-
} | undefined;
|
|
1749
|
-
offerConsultations?: boolean | undefined;
|
|
1750
|
-
jobSummariesAssignmentRids?: any;
|
|
1751
|
-
shortName?: string | undefined;
|
|
1752
|
-
portfolioItems?: {
|
|
1753
1752
|
title: string;
|
|
1753
|
+
publicPortfolioItem: boolean;
|
|
1754
1754
|
category: {
|
|
1755
1755
|
id?: string | undefined;
|
|
1756
1756
|
level1?: string | undefined;
|
|
1757
1757
|
level2?: string | undefined;
|
|
1758
1758
|
};
|
|
1759
|
-
uid: string;
|
|
1760
|
-
publicPortfolioItem: boolean;
|
|
1761
1759
|
description?: string | undefined;
|
|
1762
1760
|
videoUrl?: string | undefined;
|
|
1763
1761
|
thumbnailUrl?: string | undefined;
|
|
1764
1762
|
}[] | undefined;
|
|
1765
1763
|
totalPortfolioItems?: number | undefined;
|
|
1764
|
+
specializedProfiles?: any[] | undefined;
|
|
1766
1765
|
isDiversityCertified?: boolean | undefined;
|
|
1767
1766
|
isBoosted?: boolean | undefined;
|
|
1767
|
+
boosted?: boolean | undefined;
|
|
1768
1768
|
boostedWouldHaveBeen?: boolean | undefined;
|
|
1769
1769
|
}, {
|
|
1770
|
+
description?: string | undefined;
|
|
1771
|
+
title?: string | undefined;
|
|
1772
|
+
portrait?: {
|
|
1773
|
+
portrait: string;
|
|
1774
|
+
} | undefined;
|
|
1775
|
+
firstName?: string | undefined;
|
|
1776
|
+
lastName?: string | undefined;
|
|
1770
1777
|
location?: {
|
|
1771
1778
|
country: string;
|
|
1772
1779
|
region: string;
|
|
1773
|
-
timezone: string;
|
|
1774
1780
|
subregion: string;
|
|
1781
|
+
timezone: string;
|
|
1775
1782
|
state?: string | undefined;
|
|
1776
1783
|
city?: string | undefined;
|
|
1777
1784
|
zip?: string | undefined;
|
|
1778
1785
|
} | undefined;
|
|
1779
|
-
|
|
1780
|
-
|
|
1786
|
+
chargeRate?: {
|
|
1787
|
+
rawValue: string;
|
|
1788
|
+
currency: string;
|
|
1789
|
+
} | undefined;
|
|
1790
|
+
profileUrl?: string | undefined;
|
|
1791
|
+
offerConsultations?: boolean | undefined;
|
|
1792
|
+
jobSummariesAssignmentRids?: any;
|
|
1793
|
+
shortName?: string | undefined;
|
|
1794
|
+
skills?: {
|
|
1795
|
+
uid: string;
|
|
1796
|
+
skill: {
|
|
1797
|
+
prettyName: string;
|
|
1798
|
+
uid: string;
|
|
1799
|
+
};
|
|
1800
|
+
}[] | undefined;
|
|
1781
1801
|
stats?: {
|
|
1782
|
-
totalHours: number;
|
|
1783
|
-
rate: number;
|
|
1784
|
-
jobSuccessScore: number;
|
|
1785
1802
|
hideJss: boolean;
|
|
1786
1803
|
hideEarnings: boolean;
|
|
1787
1804
|
topRatedStatus: string;
|
|
1788
1805
|
topRatedStatusEx: string;
|
|
1806
|
+
rate: number;
|
|
1789
1807
|
earned: number;
|
|
1808
|
+
jobSuccessScore: number;
|
|
1809
|
+
totalHours: number;
|
|
1790
1810
|
totalHourlyJobs: number;
|
|
1791
1811
|
totalFpJobs: number;
|
|
1792
1812
|
totalCompletedJobs: number;
|
|
1793
1813
|
rankInfo?: any;
|
|
1794
1814
|
} | undefined;
|
|
1795
|
-
specializedProfiles?: any[] | undefined;
|
|
1796
|
-
skills?: {
|
|
1797
|
-
skill: {
|
|
1798
|
-
uid: string;
|
|
1799
|
-
prettyName: string;
|
|
1800
|
-
};
|
|
1801
|
-
uid: string;
|
|
1802
|
-
}[] | undefined;
|
|
1803
|
-
boosted?: boolean | undefined;
|
|
1804
|
-
profileUrl?: string | undefined;
|
|
1805
|
-
portrait?: {
|
|
1806
|
-
portrait: string;
|
|
1807
|
-
} | undefined;
|
|
1808
|
-
firstName?: string | undefined;
|
|
1809
|
-
lastName?: string | undefined;
|
|
1810
|
-
chargeRate?: {
|
|
1811
|
-
currency: string;
|
|
1812
|
-
rawValue: string;
|
|
1813
|
-
} | undefined;
|
|
1814
|
-
offerConsultations?: boolean | undefined;
|
|
1815
|
-
jobSummariesAssignmentRids?: any;
|
|
1816
|
-
shortName?: string | undefined;
|
|
1817
1815
|
portfolioItems?: {
|
|
1816
|
+
uid: string;
|
|
1818
1817
|
title: string;
|
|
1818
|
+
publicPortfolioItem: boolean;
|
|
1819
1819
|
category: {
|
|
1820
1820
|
id?: string | undefined;
|
|
1821
1821
|
level1?: string | undefined;
|
|
1822
1822
|
level2?: string | undefined;
|
|
1823
1823
|
};
|
|
1824
|
-
uid: string;
|
|
1825
|
-
publicPortfolioItem: boolean;
|
|
1826
1824
|
description?: string | undefined;
|
|
1827
1825
|
videoUrl?: string | undefined;
|
|
1828
1826
|
thumbnailUrl?: string | undefined;
|
|
1829
1827
|
}[] | undefined;
|
|
1830
1828
|
totalPortfolioItems?: number | undefined;
|
|
1829
|
+
specializedProfiles?: any[] | undefined;
|
|
1831
1830
|
isDiversityCertified?: boolean | undefined;
|
|
1832
1831
|
isBoosted?: boolean | undefined;
|
|
1832
|
+
boosted?: boolean | undefined;
|
|
1833
1833
|
boostedWouldHaveBeen?: boolean | undefined;
|
|
1834
1834
|
}>, "many">;
|
|
1835
1835
|
currentPage: z.ZodNumber;
|
|
@@ -1842,20 +1842,20 @@ export declare const profileSearchNuxtObjectSchema: z.ZodObject<{
|
|
|
1842
1842
|
page: z.ZodNumber;
|
|
1843
1843
|
perPage: z.ZodNumber;
|
|
1844
1844
|
}, "strip", z.ZodTypeAny, {
|
|
1845
|
-
offset: number;
|
|
1846
1845
|
total: number;
|
|
1847
|
-
|
|
1846
|
+
offset: number;
|
|
1848
1847
|
count: number;
|
|
1849
1848
|
originTotal: number;
|
|
1850
1849
|
pagesTotal: number;
|
|
1850
|
+
page: number;
|
|
1851
1851
|
perPage: number;
|
|
1852
1852
|
}, {
|
|
1853
|
-
offset: number;
|
|
1854
1853
|
total: number;
|
|
1855
|
-
|
|
1854
|
+
offset: number;
|
|
1856
1855
|
count: number;
|
|
1857
1856
|
originTotal: number;
|
|
1858
1857
|
pagesTotal: number;
|
|
1858
|
+
page: number;
|
|
1859
1859
|
perPage: number;
|
|
1860
1860
|
}>;
|
|
1861
1861
|
flags: z.ZodObject<{
|
|
@@ -1868,84 +1868,84 @@ export declare const profileSearchNuxtObjectSchema: z.ZodObject<{
|
|
|
1868
1868
|
searchQueryCache: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
1869
1869
|
}, "strip", z.ZodTypeAny, {
|
|
1870
1870
|
status: {
|
|
1871
|
+
loading: boolean;
|
|
1871
1872
|
loaded: boolean;
|
|
1872
1873
|
failed: boolean;
|
|
1873
|
-
loading: boolean;
|
|
1874
1874
|
};
|
|
1875
1875
|
profiles: {
|
|
1876
|
+
description?: string | undefined;
|
|
1877
|
+
title?: string | undefined;
|
|
1878
|
+
portrait?: {
|
|
1879
|
+
portrait: string;
|
|
1880
|
+
} | undefined;
|
|
1881
|
+
firstName?: string | undefined;
|
|
1882
|
+
lastName?: string | undefined;
|
|
1876
1883
|
location?: {
|
|
1877
1884
|
country: string;
|
|
1878
1885
|
region: string;
|
|
1879
|
-
timezone: string;
|
|
1880
1886
|
subregion: string;
|
|
1887
|
+
timezone: string;
|
|
1881
1888
|
state?: string | undefined;
|
|
1882
1889
|
city?: string | undefined;
|
|
1883
1890
|
zip?: string | undefined;
|
|
1884
1891
|
} | undefined;
|
|
1885
|
-
|
|
1886
|
-
|
|
1892
|
+
chargeRate?: {
|
|
1893
|
+
rawValue: string;
|
|
1894
|
+
currency: string;
|
|
1895
|
+
} | undefined;
|
|
1896
|
+
profileUrl?: string | undefined;
|
|
1897
|
+
offerConsultations?: boolean | undefined;
|
|
1898
|
+
jobSummariesAssignmentRids?: any;
|
|
1899
|
+
shortName?: string | undefined;
|
|
1900
|
+
skills?: {
|
|
1901
|
+
uid: string;
|
|
1902
|
+
skill: {
|
|
1903
|
+
prettyName: string;
|
|
1904
|
+
uid: string;
|
|
1905
|
+
};
|
|
1906
|
+
}[] | undefined;
|
|
1887
1907
|
stats?: {
|
|
1888
|
-
totalHours: number;
|
|
1889
|
-
rate: number;
|
|
1890
|
-
jobSuccessScore: number;
|
|
1891
1908
|
hideJss: boolean;
|
|
1892
1909
|
hideEarnings: boolean;
|
|
1893
1910
|
topRatedStatus: string;
|
|
1894
1911
|
topRatedStatusEx: string;
|
|
1912
|
+
rate: number;
|
|
1895
1913
|
earned: number;
|
|
1914
|
+
jobSuccessScore: number;
|
|
1915
|
+
totalHours: number;
|
|
1896
1916
|
totalHourlyJobs: number;
|
|
1897
1917
|
totalFpJobs: number;
|
|
1898
1918
|
totalCompletedJobs: number;
|
|
1899
1919
|
rankInfo?: any;
|
|
1900
1920
|
} | undefined;
|
|
1901
|
-
specializedProfiles?: any[] | undefined;
|
|
1902
|
-
skills?: {
|
|
1903
|
-
skill: {
|
|
1904
|
-
uid: string;
|
|
1905
|
-
prettyName: string;
|
|
1906
|
-
};
|
|
1907
|
-
uid: string;
|
|
1908
|
-
}[] | undefined;
|
|
1909
|
-
boosted?: boolean | undefined;
|
|
1910
|
-
profileUrl?: string | undefined;
|
|
1911
|
-
portrait?: {
|
|
1912
|
-
portrait: string;
|
|
1913
|
-
} | undefined;
|
|
1914
|
-
firstName?: string | undefined;
|
|
1915
|
-
lastName?: string | undefined;
|
|
1916
|
-
chargeRate?: {
|
|
1917
|
-
currency: string;
|
|
1918
|
-
rawValue: string;
|
|
1919
|
-
} | undefined;
|
|
1920
|
-
offerConsultations?: boolean | undefined;
|
|
1921
|
-
jobSummariesAssignmentRids?: any;
|
|
1922
|
-
shortName?: string | undefined;
|
|
1923
1921
|
portfolioItems?: {
|
|
1922
|
+
uid: string;
|
|
1924
1923
|
title: string;
|
|
1924
|
+
publicPortfolioItem: boolean;
|
|
1925
1925
|
category: {
|
|
1926
1926
|
id?: string | undefined;
|
|
1927
1927
|
level1?: string | undefined;
|
|
1928
1928
|
level2?: string | undefined;
|
|
1929
1929
|
};
|
|
1930
|
-
uid: string;
|
|
1931
|
-
publicPortfolioItem: boolean;
|
|
1932
1930
|
description?: string | undefined;
|
|
1933
1931
|
videoUrl?: string | undefined;
|
|
1934
1932
|
thumbnailUrl?: string | undefined;
|
|
1935
1933
|
}[] | undefined;
|
|
1936
1934
|
totalPortfolioItems?: number | undefined;
|
|
1935
|
+
specializedProfiles?: any[] | undefined;
|
|
1937
1936
|
isDiversityCertified?: boolean | undefined;
|
|
1938
1937
|
isBoosted?: boolean | undefined;
|
|
1938
|
+
boosted?: boolean | undefined;
|
|
1939
1939
|
boostedWouldHaveBeen?: boolean | undefined;
|
|
1940
1940
|
}[];
|
|
1941
1941
|
currentPage: number;
|
|
1942
1942
|
paging: {
|
|
1943
|
-
offset: number;
|
|
1944
1943
|
total: number;
|
|
1945
|
-
|
|
1944
|
+
offset: number;
|
|
1946
1945
|
count: number;
|
|
1947
1946
|
originTotal: number;
|
|
1948
1947
|
pagesTotal: number;
|
|
1948
|
+
page: number;
|
|
1949
1949
|
perPage: number;
|
|
1950
1950
|
};
|
|
1951
1951
|
flags: {
|
|
@@ -1954,84 +1954,84 @@ export declare const profileSearchNuxtObjectSchema: z.ZodObject<{
|
|
|
1954
1954
|
searchQueryCache: Record<string, any>;
|
|
1955
1955
|
}, {
|
|
1956
1956
|
status: {
|
|
1957
|
+
loading: boolean;
|
|
1957
1958
|
loaded: boolean;
|
|
1958
1959
|
failed: boolean;
|
|
1959
|
-
loading: boolean;
|
|
1960
1960
|
};
|
|
1961
1961
|
profiles: {
|
|
1962
|
+
description?: string | undefined;
|
|
1963
|
+
title?: string | undefined;
|
|
1964
|
+
portrait?: {
|
|
1965
|
+
portrait: string;
|
|
1966
|
+
} | undefined;
|
|
1967
|
+
firstName?: string | undefined;
|
|
1968
|
+
lastName?: string | undefined;
|
|
1962
1969
|
location?: {
|
|
1963
1970
|
country: string;
|
|
1964
1971
|
region: string;
|
|
1965
|
-
timezone: string;
|
|
1966
1972
|
subregion: string;
|
|
1973
|
+
timezone: string;
|
|
1967
1974
|
state?: string | undefined;
|
|
1968
1975
|
city?: string | undefined;
|
|
1969
1976
|
zip?: string | undefined;
|
|
1970
1977
|
} | undefined;
|
|
1971
|
-
|
|
1972
|
-
|
|
1978
|
+
chargeRate?: {
|
|
1979
|
+
rawValue: string;
|
|
1980
|
+
currency: string;
|
|
1981
|
+
} | undefined;
|
|
1982
|
+
profileUrl?: string | undefined;
|
|
1983
|
+
offerConsultations?: boolean | undefined;
|
|
1984
|
+
jobSummariesAssignmentRids?: any;
|
|
1985
|
+
shortName?: string | undefined;
|
|
1986
|
+
skills?: {
|
|
1987
|
+
uid: string;
|
|
1988
|
+
skill: {
|
|
1989
|
+
prettyName: string;
|
|
1990
|
+
uid: string;
|
|
1991
|
+
};
|
|
1992
|
+
}[] | undefined;
|
|
1973
1993
|
stats?: {
|
|
1974
|
-
totalHours: number;
|
|
1975
|
-
rate: number;
|
|
1976
|
-
jobSuccessScore: number;
|
|
1977
1994
|
hideJss: boolean;
|
|
1978
1995
|
hideEarnings: boolean;
|
|
1979
1996
|
topRatedStatus: string;
|
|
1980
1997
|
topRatedStatusEx: string;
|
|
1998
|
+
rate: number;
|
|
1981
1999
|
earned: number;
|
|
2000
|
+
jobSuccessScore: number;
|
|
2001
|
+
totalHours: number;
|
|
1982
2002
|
totalHourlyJobs: number;
|
|
1983
2003
|
totalFpJobs: number;
|
|
1984
2004
|
totalCompletedJobs: number;
|
|
1985
2005
|
rankInfo?: any;
|
|
1986
2006
|
} | undefined;
|
|
1987
|
-
specializedProfiles?: any[] | undefined;
|
|
1988
|
-
skills?: {
|
|
1989
|
-
skill: {
|
|
1990
|
-
uid: string;
|
|
1991
|
-
prettyName: string;
|
|
1992
|
-
};
|
|
1993
|
-
uid: string;
|
|
1994
|
-
}[] | undefined;
|
|
1995
|
-
boosted?: boolean | undefined;
|
|
1996
|
-
profileUrl?: string | undefined;
|
|
1997
|
-
portrait?: {
|
|
1998
|
-
portrait: string;
|
|
1999
|
-
} | undefined;
|
|
2000
|
-
firstName?: string | undefined;
|
|
2001
|
-
lastName?: string | undefined;
|
|
2002
|
-
chargeRate?: {
|
|
2003
|
-
currency: string;
|
|
2004
|
-
rawValue: string;
|
|
2005
|
-
} | undefined;
|
|
2006
|
-
offerConsultations?: boolean | undefined;
|
|
2007
|
-
jobSummariesAssignmentRids?: any;
|
|
2008
|
-
shortName?: string | undefined;
|
|
2009
2007
|
portfolioItems?: {
|
|
2008
|
+
uid: string;
|
|
2010
2009
|
title: string;
|
|
2010
|
+
publicPortfolioItem: boolean;
|
|
2011
2011
|
category: {
|
|
2012
2012
|
id?: string | undefined;
|
|
2013
2013
|
level1?: string | undefined;
|
|
2014
2014
|
level2?: string | undefined;
|
|
2015
2015
|
};
|
|
2016
|
-
uid: string;
|
|
2017
|
-
publicPortfolioItem: boolean;
|
|
2018
2016
|
description?: string | undefined;
|
|
2019
2017
|
videoUrl?: string | undefined;
|
|
2020
2018
|
thumbnailUrl?: string | undefined;
|
|
2021
2019
|
}[] | undefined;
|
|
2022
2020
|
totalPortfolioItems?: number | undefined;
|
|
2021
|
+
specializedProfiles?: any[] | undefined;
|
|
2023
2022
|
isDiversityCertified?: boolean | undefined;
|
|
2024
2023
|
isBoosted?: boolean | undefined;
|
|
2024
|
+
boosted?: boolean | undefined;
|
|
2025
2025
|
boostedWouldHaveBeen?: boolean | undefined;
|
|
2026
2026
|
}[];
|
|
2027
2027
|
currentPage: number;
|
|
2028
2028
|
paging: {
|
|
2029
|
-
offset: number;
|
|
2030
2029
|
total: number;
|
|
2031
|
-
|
|
2030
|
+
offset: number;
|
|
2032
2031
|
count: number;
|
|
2033
2032
|
originTotal: number;
|
|
2034
2033
|
pagesTotal: number;
|
|
2034
|
+
page: number;
|
|
2035
2035
|
perPage: number;
|
|
2036
2036
|
};
|
|
2037
2037
|
flags: {
|
|
@@ -2042,84 +2042,84 @@ export declare const profileSearchNuxtObjectSchema: z.ZodObject<{
|
|
|
2042
2042
|
}, "strip", z.ZodTypeAny, {
|
|
2043
2043
|
profilesSearch: {
|
|
2044
2044
|
status: {
|
|
2045
|
+
loading: boolean;
|
|
2045
2046
|
loaded: boolean;
|
|
2046
2047
|
failed: boolean;
|
|
2047
|
-
loading: boolean;
|
|
2048
2048
|
};
|
|
2049
2049
|
profiles: {
|
|
2050
|
+
description?: string | undefined;
|
|
2051
|
+
title?: string | undefined;
|
|
2052
|
+
portrait?: {
|
|
2053
|
+
portrait: string;
|
|
2054
|
+
} | undefined;
|
|
2055
|
+
firstName?: string | undefined;
|
|
2056
|
+
lastName?: string | undefined;
|
|
2050
2057
|
location?: {
|
|
2051
2058
|
country: string;
|
|
2052
2059
|
region: string;
|
|
2053
|
-
timezone: string;
|
|
2054
2060
|
subregion: string;
|
|
2061
|
+
timezone: string;
|
|
2055
2062
|
state?: string | undefined;
|
|
2056
2063
|
city?: string | undefined;
|
|
2057
2064
|
zip?: string | undefined;
|
|
2058
2065
|
} | undefined;
|
|
2059
|
-
|
|
2060
|
-
|
|
2066
|
+
chargeRate?: {
|
|
2067
|
+
rawValue: string;
|
|
2068
|
+
currency: string;
|
|
2069
|
+
} | undefined;
|
|
2070
|
+
profileUrl?: string | undefined;
|
|
2071
|
+
offerConsultations?: boolean | undefined;
|
|
2072
|
+
jobSummariesAssignmentRids?: any;
|
|
2073
|
+
shortName?: string | undefined;
|
|
2074
|
+
skills?: {
|
|
2075
|
+
uid: string;
|
|
2076
|
+
skill: {
|
|
2077
|
+
prettyName: string;
|
|
2078
|
+
uid: string;
|
|
2079
|
+
};
|
|
2080
|
+
}[] | undefined;
|
|
2061
2081
|
stats?: {
|
|
2062
|
-
totalHours: number;
|
|
2063
|
-
rate: number;
|
|
2064
|
-
jobSuccessScore: number;
|
|
2065
2082
|
hideJss: boolean;
|
|
2066
2083
|
hideEarnings: boolean;
|
|
2067
2084
|
topRatedStatus: string;
|
|
2068
2085
|
topRatedStatusEx: string;
|
|
2086
|
+
rate: number;
|
|
2069
2087
|
earned: number;
|
|
2088
|
+
jobSuccessScore: number;
|
|
2089
|
+
totalHours: number;
|
|
2070
2090
|
totalHourlyJobs: number;
|
|
2071
2091
|
totalFpJobs: number;
|
|
2072
2092
|
totalCompletedJobs: number;
|
|
2073
2093
|
rankInfo?: any;
|
|
2074
2094
|
} | undefined;
|
|
2075
|
-
specializedProfiles?: any[] | undefined;
|
|
2076
|
-
skills?: {
|
|
2077
|
-
skill: {
|
|
2078
|
-
uid: string;
|
|
2079
|
-
prettyName: string;
|
|
2080
|
-
};
|
|
2081
|
-
uid: string;
|
|
2082
|
-
}[] | undefined;
|
|
2083
|
-
boosted?: boolean | undefined;
|
|
2084
|
-
profileUrl?: string | undefined;
|
|
2085
|
-
portrait?: {
|
|
2086
|
-
portrait: string;
|
|
2087
|
-
} | undefined;
|
|
2088
|
-
firstName?: string | undefined;
|
|
2089
|
-
lastName?: string | undefined;
|
|
2090
|
-
chargeRate?: {
|
|
2091
|
-
currency: string;
|
|
2092
|
-
rawValue: string;
|
|
2093
|
-
} | undefined;
|
|
2094
|
-
offerConsultations?: boolean | undefined;
|
|
2095
|
-
jobSummariesAssignmentRids?: any;
|
|
2096
|
-
shortName?: string | undefined;
|
|
2097
2095
|
portfolioItems?: {
|
|
2096
|
+
uid: string;
|
|
2098
2097
|
title: string;
|
|
2098
|
+
publicPortfolioItem: boolean;
|
|
2099
2099
|
category: {
|
|
2100
2100
|
id?: string | undefined;
|
|
2101
2101
|
level1?: string | undefined;
|
|
2102
2102
|
level2?: string | undefined;
|
|
2103
2103
|
};
|
|
2104
|
-
uid: string;
|
|
2105
|
-
publicPortfolioItem: boolean;
|
|
2106
2104
|
description?: string | undefined;
|
|
2107
2105
|
videoUrl?: string | undefined;
|
|
2108
2106
|
thumbnailUrl?: string | undefined;
|
|
2109
2107
|
}[] | undefined;
|
|
2110
2108
|
totalPortfolioItems?: number | undefined;
|
|
2109
|
+
specializedProfiles?: any[] | undefined;
|
|
2111
2110
|
isDiversityCertified?: boolean | undefined;
|
|
2112
2111
|
isBoosted?: boolean | undefined;
|
|
2112
|
+
boosted?: boolean | undefined;
|
|
2113
2113
|
boostedWouldHaveBeen?: boolean | undefined;
|
|
2114
2114
|
}[];
|
|
2115
2115
|
currentPage: number;
|
|
2116
2116
|
paging: {
|
|
2117
|
-
offset: number;
|
|
2118
2117
|
total: number;
|
|
2119
|
-
|
|
2118
|
+
offset: number;
|
|
2120
2119
|
count: number;
|
|
2121
2120
|
originTotal: number;
|
|
2122
2121
|
pagesTotal: number;
|
|
2122
|
+
page: number;
|
|
2123
2123
|
perPage: number;
|
|
2124
2124
|
};
|
|
2125
2125
|
flags: {
|
|
@@ -2130,84 +2130,84 @@ export declare const profileSearchNuxtObjectSchema: z.ZodObject<{
|
|
|
2130
2130
|
}, {
|
|
2131
2131
|
profilesSearch: {
|
|
2132
2132
|
status: {
|
|
2133
|
+
loading: boolean;
|
|
2133
2134
|
loaded: boolean;
|
|
2134
2135
|
failed: boolean;
|
|
2135
|
-
loading: boolean;
|
|
2136
2136
|
};
|
|
2137
2137
|
profiles: {
|
|
2138
|
+
description?: string | undefined;
|
|
2139
|
+
title?: string | undefined;
|
|
2140
|
+
portrait?: {
|
|
2141
|
+
portrait: string;
|
|
2142
|
+
} | undefined;
|
|
2143
|
+
firstName?: string | undefined;
|
|
2144
|
+
lastName?: string | undefined;
|
|
2138
2145
|
location?: {
|
|
2139
2146
|
country: string;
|
|
2140
2147
|
region: string;
|
|
2141
|
-
timezone: string;
|
|
2142
2148
|
subregion: string;
|
|
2149
|
+
timezone: string;
|
|
2143
2150
|
state?: string | undefined;
|
|
2144
2151
|
city?: string | undefined;
|
|
2145
2152
|
zip?: string | undefined;
|
|
2146
2153
|
} | undefined;
|
|
2147
|
-
|
|
2148
|
-
|
|
2154
|
+
chargeRate?: {
|
|
2155
|
+
rawValue: string;
|
|
2156
|
+
currency: string;
|
|
2157
|
+
} | undefined;
|
|
2158
|
+
profileUrl?: string | undefined;
|
|
2159
|
+
offerConsultations?: boolean | undefined;
|
|
2160
|
+
jobSummariesAssignmentRids?: any;
|
|
2161
|
+
shortName?: string | undefined;
|
|
2162
|
+
skills?: {
|
|
2163
|
+
uid: string;
|
|
2164
|
+
skill: {
|
|
2165
|
+
prettyName: string;
|
|
2166
|
+
uid: string;
|
|
2167
|
+
};
|
|
2168
|
+
}[] | undefined;
|
|
2149
2169
|
stats?: {
|
|
2150
|
-
totalHours: number;
|
|
2151
|
-
rate: number;
|
|
2152
|
-
jobSuccessScore: number;
|
|
2153
2170
|
hideJss: boolean;
|
|
2154
2171
|
hideEarnings: boolean;
|
|
2155
2172
|
topRatedStatus: string;
|
|
2156
2173
|
topRatedStatusEx: string;
|
|
2174
|
+
rate: number;
|
|
2157
2175
|
earned: number;
|
|
2176
|
+
jobSuccessScore: number;
|
|
2177
|
+
totalHours: number;
|
|
2158
2178
|
totalHourlyJobs: number;
|
|
2159
2179
|
totalFpJobs: number;
|
|
2160
2180
|
totalCompletedJobs: number;
|
|
2161
2181
|
rankInfo?: any;
|
|
2162
2182
|
} | undefined;
|
|
2163
|
-
specializedProfiles?: any[] | undefined;
|
|
2164
|
-
skills?: {
|
|
2165
|
-
skill: {
|
|
2166
|
-
uid: string;
|
|
2167
|
-
prettyName: string;
|
|
2168
|
-
};
|
|
2169
|
-
uid: string;
|
|
2170
|
-
}[] | undefined;
|
|
2171
|
-
boosted?: boolean | undefined;
|
|
2172
|
-
profileUrl?: string | undefined;
|
|
2173
|
-
portrait?: {
|
|
2174
|
-
portrait: string;
|
|
2175
|
-
} | undefined;
|
|
2176
|
-
firstName?: string | undefined;
|
|
2177
|
-
lastName?: string | undefined;
|
|
2178
|
-
chargeRate?: {
|
|
2179
|
-
currency: string;
|
|
2180
|
-
rawValue: string;
|
|
2181
|
-
} | undefined;
|
|
2182
|
-
offerConsultations?: boolean | undefined;
|
|
2183
|
-
jobSummariesAssignmentRids?: any;
|
|
2184
|
-
shortName?: string | undefined;
|
|
2185
2183
|
portfolioItems?: {
|
|
2184
|
+
uid: string;
|
|
2186
2185
|
title: string;
|
|
2186
|
+
publicPortfolioItem: boolean;
|
|
2187
2187
|
category: {
|
|
2188
2188
|
id?: string | undefined;
|
|
2189
2189
|
level1?: string | undefined;
|
|
2190
2190
|
level2?: string | undefined;
|
|
2191
2191
|
};
|
|
2192
|
-
uid: string;
|
|
2193
|
-
publicPortfolioItem: boolean;
|
|
2194
2192
|
description?: string | undefined;
|
|
2195
2193
|
videoUrl?: string | undefined;
|
|
2196
2194
|
thumbnailUrl?: string | undefined;
|
|
2197
2195
|
}[] | undefined;
|
|
2198
2196
|
totalPortfolioItems?: number | undefined;
|
|
2197
|
+
specializedProfiles?: any[] | undefined;
|
|
2199
2198
|
isDiversityCertified?: boolean | undefined;
|
|
2200
2199
|
isBoosted?: boolean | undefined;
|
|
2200
|
+
boosted?: boolean | undefined;
|
|
2201
2201
|
boostedWouldHaveBeen?: boolean | undefined;
|
|
2202
2202
|
}[];
|
|
2203
2203
|
currentPage: number;
|
|
2204
2204
|
paging: {
|
|
2205
|
-
offset: number;
|
|
2206
2205
|
total: number;
|
|
2207
|
-
|
|
2206
|
+
offset: number;
|
|
2208
2207
|
count: number;
|
|
2209
2208
|
originTotal: number;
|
|
2210
2209
|
pagesTotal: number;
|
|
2210
|
+
page: number;
|
|
2211
2211
|
perPage: number;
|
|
2212
2212
|
};
|
|
2213
2213
|
flags: {
|
|
@@ -2220,84 +2220,84 @@ export declare const profileSearchNuxtObjectSchema: z.ZodObject<{
|
|
|
2220
2220
|
state: {
|
|
2221
2221
|
profilesSearch: {
|
|
2222
2222
|
status: {
|
|
2223
|
+
loading: boolean;
|
|
2223
2224
|
loaded: boolean;
|
|
2224
2225
|
failed: boolean;
|
|
2225
|
-
loading: boolean;
|
|
2226
2226
|
};
|
|
2227
2227
|
profiles: {
|
|
2228
|
+
description?: string | undefined;
|
|
2229
|
+
title?: string | undefined;
|
|
2230
|
+
portrait?: {
|
|
2231
|
+
portrait: string;
|
|
2232
|
+
} | undefined;
|
|
2233
|
+
firstName?: string | undefined;
|
|
2234
|
+
lastName?: string | undefined;
|
|
2228
2235
|
location?: {
|
|
2229
2236
|
country: string;
|
|
2230
2237
|
region: string;
|
|
2231
|
-
timezone: string;
|
|
2232
2238
|
subregion: string;
|
|
2239
|
+
timezone: string;
|
|
2233
2240
|
state?: string | undefined;
|
|
2234
2241
|
city?: string | undefined;
|
|
2235
2242
|
zip?: string | undefined;
|
|
2236
2243
|
} | undefined;
|
|
2237
|
-
|
|
2238
|
-
|
|
2244
|
+
chargeRate?: {
|
|
2245
|
+
rawValue: string;
|
|
2246
|
+
currency: string;
|
|
2247
|
+
} | undefined;
|
|
2248
|
+
profileUrl?: string | undefined;
|
|
2249
|
+
offerConsultations?: boolean | undefined;
|
|
2250
|
+
jobSummariesAssignmentRids?: any;
|
|
2251
|
+
shortName?: string | undefined;
|
|
2252
|
+
skills?: {
|
|
2253
|
+
uid: string;
|
|
2254
|
+
skill: {
|
|
2255
|
+
prettyName: string;
|
|
2256
|
+
uid: string;
|
|
2257
|
+
};
|
|
2258
|
+
}[] | undefined;
|
|
2239
2259
|
stats?: {
|
|
2240
|
-
totalHours: number;
|
|
2241
|
-
rate: number;
|
|
2242
|
-
jobSuccessScore: number;
|
|
2243
2260
|
hideJss: boolean;
|
|
2244
2261
|
hideEarnings: boolean;
|
|
2245
2262
|
topRatedStatus: string;
|
|
2246
2263
|
topRatedStatusEx: string;
|
|
2264
|
+
rate: number;
|
|
2247
2265
|
earned: number;
|
|
2266
|
+
jobSuccessScore: number;
|
|
2267
|
+
totalHours: number;
|
|
2248
2268
|
totalHourlyJobs: number;
|
|
2249
2269
|
totalFpJobs: number;
|
|
2250
2270
|
totalCompletedJobs: number;
|
|
2251
2271
|
rankInfo?: any;
|
|
2252
2272
|
} | undefined;
|
|
2253
|
-
specializedProfiles?: any[] | undefined;
|
|
2254
|
-
skills?: {
|
|
2255
|
-
skill: {
|
|
2256
|
-
uid: string;
|
|
2257
|
-
prettyName: string;
|
|
2258
|
-
};
|
|
2259
|
-
uid: string;
|
|
2260
|
-
}[] | undefined;
|
|
2261
|
-
boosted?: boolean | undefined;
|
|
2262
|
-
profileUrl?: string | undefined;
|
|
2263
|
-
portrait?: {
|
|
2264
|
-
portrait: string;
|
|
2265
|
-
} | undefined;
|
|
2266
|
-
firstName?: string | undefined;
|
|
2267
|
-
lastName?: string | undefined;
|
|
2268
|
-
chargeRate?: {
|
|
2269
|
-
currency: string;
|
|
2270
|
-
rawValue: string;
|
|
2271
|
-
} | undefined;
|
|
2272
|
-
offerConsultations?: boolean | undefined;
|
|
2273
|
-
jobSummariesAssignmentRids?: any;
|
|
2274
|
-
shortName?: string | undefined;
|
|
2275
2273
|
portfolioItems?: {
|
|
2274
|
+
uid: string;
|
|
2276
2275
|
title: string;
|
|
2276
|
+
publicPortfolioItem: boolean;
|
|
2277
2277
|
category: {
|
|
2278
2278
|
id?: string | undefined;
|
|
2279
2279
|
level1?: string | undefined;
|
|
2280
2280
|
level2?: string | undefined;
|
|
2281
2281
|
};
|
|
2282
|
-
uid: string;
|
|
2283
|
-
publicPortfolioItem: boolean;
|
|
2284
2282
|
description?: string | undefined;
|
|
2285
2283
|
videoUrl?: string | undefined;
|
|
2286
2284
|
thumbnailUrl?: string | undefined;
|
|
2287
2285
|
}[] | undefined;
|
|
2288
2286
|
totalPortfolioItems?: number | undefined;
|
|
2287
|
+
specializedProfiles?: any[] | undefined;
|
|
2289
2288
|
isDiversityCertified?: boolean | undefined;
|
|
2290
2289
|
isBoosted?: boolean | undefined;
|
|
2290
|
+
boosted?: boolean | undefined;
|
|
2291
2291
|
boostedWouldHaveBeen?: boolean | undefined;
|
|
2292
2292
|
}[];
|
|
2293
2293
|
currentPage: number;
|
|
2294
2294
|
paging: {
|
|
2295
|
-
offset: number;
|
|
2296
2295
|
total: number;
|
|
2297
|
-
|
|
2296
|
+
offset: number;
|
|
2298
2297
|
count: number;
|
|
2299
2298
|
originTotal: number;
|
|
2300
2299
|
pagesTotal: number;
|
|
2300
|
+
page: number;
|
|
2301
2301
|
perPage: number;
|
|
2302
2302
|
};
|
|
2303
2303
|
flags: {
|
|
@@ -2310,84 +2310,84 @@ export declare const profileSearchNuxtObjectSchema: z.ZodObject<{
|
|
|
2310
2310
|
state: {
|
|
2311
2311
|
profilesSearch: {
|
|
2312
2312
|
status: {
|
|
2313
|
+
loading: boolean;
|
|
2313
2314
|
loaded: boolean;
|
|
2314
2315
|
failed: boolean;
|
|
2315
|
-
loading: boolean;
|
|
2316
2316
|
};
|
|
2317
2317
|
profiles: {
|
|
2318
|
+
description?: string | undefined;
|
|
2319
|
+
title?: string | undefined;
|
|
2320
|
+
portrait?: {
|
|
2321
|
+
portrait: string;
|
|
2322
|
+
} | undefined;
|
|
2323
|
+
firstName?: string | undefined;
|
|
2324
|
+
lastName?: string | undefined;
|
|
2318
2325
|
location?: {
|
|
2319
2326
|
country: string;
|
|
2320
2327
|
region: string;
|
|
2321
|
-
timezone: string;
|
|
2322
2328
|
subregion: string;
|
|
2329
|
+
timezone: string;
|
|
2323
2330
|
state?: string | undefined;
|
|
2324
2331
|
city?: string | undefined;
|
|
2325
2332
|
zip?: string | undefined;
|
|
2326
2333
|
} | undefined;
|
|
2327
|
-
|
|
2328
|
-
|
|
2334
|
+
chargeRate?: {
|
|
2335
|
+
rawValue: string;
|
|
2336
|
+
currency: string;
|
|
2337
|
+
} | undefined;
|
|
2338
|
+
profileUrl?: string | undefined;
|
|
2339
|
+
offerConsultations?: boolean | undefined;
|
|
2340
|
+
jobSummariesAssignmentRids?: any;
|
|
2341
|
+
shortName?: string | undefined;
|
|
2342
|
+
skills?: {
|
|
2343
|
+
uid: string;
|
|
2344
|
+
skill: {
|
|
2345
|
+
prettyName: string;
|
|
2346
|
+
uid: string;
|
|
2347
|
+
};
|
|
2348
|
+
}[] | undefined;
|
|
2329
2349
|
stats?: {
|
|
2330
|
-
totalHours: number;
|
|
2331
|
-
rate: number;
|
|
2332
|
-
jobSuccessScore: number;
|
|
2333
2350
|
hideJss: boolean;
|
|
2334
2351
|
hideEarnings: boolean;
|
|
2335
2352
|
topRatedStatus: string;
|
|
2336
2353
|
topRatedStatusEx: string;
|
|
2354
|
+
rate: number;
|
|
2337
2355
|
earned: number;
|
|
2356
|
+
jobSuccessScore: number;
|
|
2357
|
+
totalHours: number;
|
|
2338
2358
|
totalHourlyJobs: number;
|
|
2339
2359
|
totalFpJobs: number;
|
|
2340
2360
|
totalCompletedJobs: number;
|
|
2341
2361
|
rankInfo?: any;
|
|
2342
2362
|
} | undefined;
|
|
2343
|
-
specializedProfiles?: any[] | undefined;
|
|
2344
|
-
skills?: {
|
|
2345
|
-
skill: {
|
|
2346
|
-
uid: string;
|
|
2347
|
-
prettyName: string;
|
|
2348
|
-
};
|
|
2349
|
-
uid: string;
|
|
2350
|
-
}[] | undefined;
|
|
2351
|
-
boosted?: boolean | undefined;
|
|
2352
|
-
profileUrl?: string | undefined;
|
|
2353
|
-
portrait?: {
|
|
2354
|
-
portrait: string;
|
|
2355
|
-
} | undefined;
|
|
2356
|
-
firstName?: string | undefined;
|
|
2357
|
-
lastName?: string | undefined;
|
|
2358
|
-
chargeRate?: {
|
|
2359
|
-
currency: string;
|
|
2360
|
-
rawValue: string;
|
|
2361
|
-
} | undefined;
|
|
2362
|
-
offerConsultations?: boolean | undefined;
|
|
2363
|
-
jobSummariesAssignmentRids?: any;
|
|
2364
|
-
shortName?: string | undefined;
|
|
2365
2363
|
portfolioItems?: {
|
|
2364
|
+
uid: string;
|
|
2366
2365
|
title: string;
|
|
2366
|
+
publicPortfolioItem: boolean;
|
|
2367
2367
|
category: {
|
|
2368
2368
|
id?: string | undefined;
|
|
2369
2369
|
level1?: string | undefined;
|
|
2370
2370
|
level2?: string | undefined;
|
|
2371
2371
|
};
|
|
2372
|
-
uid: string;
|
|
2373
|
-
publicPortfolioItem: boolean;
|
|
2374
2372
|
description?: string | undefined;
|
|
2375
2373
|
videoUrl?: string | undefined;
|
|
2376
2374
|
thumbnailUrl?: string | undefined;
|
|
2377
2375
|
}[] | undefined;
|
|
2378
2376
|
totalPortfolioItems?: number | undefined;
|
|
2377
|
+
specializedProfiles?: any[] | undefined;
|
|
2379
2378
|
isDiversityCertified?: boolean | undefined;
|
|
2380
2379
|
isBoosted?: boolean | undefined;
|
|
2380
|
+
boosted?: boolean | undefined;
|
|
2381
2381
|
boostedWouldHaveBeen?: boolean | undefined;
|
|
2382
2382
|
}[];
|
|
2383
2383
|
currentPage: number;
|
|
2384
2384
|
paging: {
|
|
2385
|
-
offset: number;
|
|
2386
2385
|
total: number;
|
|
2387
|
-
|
|
2386
|
+
offset: number;
|
|
2388
2387
|
count: number;
|
|
2389
2388
|
originTotal: number;
|
|
2390
2389
|
pagesTotal: number;
|
|
2390
|
+
page: number;
|
|
2391
2391
|
perPage: number;
|
|
2392
2392
|
};
|
|
2393
2393
|
flags: {
|