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