lancer-shared 1.2.145 → 1.2.146

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.
Files changed (207) hide show
  1. package/dist/bundle.cjs.js +4 -4
  2. package/dist/constants/account-status.d.ts +3 -0
  3. package/dist/constants/account-status.js +17 -0
  4. package/dist/constants/collections.js +13 -11
  5. package/dist/constants/common-questions.js +4 -1
  6. package/dist/constants/index.js +32 -10
  7. package/dist/constants/job-filter-options.js +4 -1
  8. package/dist/constants/job-status.js +12 -7
  9. package/dist/constants/mappings/countryMapping.js +3 -1
  10. package/dist/constants/mappings/regionMapping.js +3 -1
  11. package/dist/constants/organization.d.ts +2 -2
  12. package/dist/constants/proxies.d.ts +4 -0
  13. package/dist/constants/routes.js +37 -39
  14. package/dist/constants/upwork-accounts.js +6 -3
  15. package/dist/constants/upwork-filters.d.ts +5 -0
  16. package/dist/constants/upwork-filters.js +75 -0
  17. package/dist/index.js +20 -4
  18. package/dist/schemas/account/account-status.js +5 -2
  19. package/dist/schemas/account/bidder-account.js +24 -22
  20. package/dist/schemas/account/exceptions/no-bidder-accounts-available.d.ts +5 -0
  21. package/dist/schemas/account/index.js +19 -3
  22. package/dist/schemas/account/manager-account.d.ts +116 -0
  23. package/dist/schemas/account/manager-account.js +38 -0
  24. package/dist/schemas/account/scraper-account.js +24 -21
  25. package/dist/schemas/ai/ai-config.js +11 -8
  26. package/dist/schemas/ai/index.js +19 -3
  27. package/dist/schemas/ai/proposal.js +13 -10
  28. package/dist/schemas/ai/suitability.js +11 -8
  29. package/dist/schemas/ai-config/ai-config.d.ts +39 -0
  30. package/dist/schemas/ai-config/ai-config.js +12 -0
  31. package/dist/schemas/ai-config/index.d.ts +1 -0
  32. package/dist/schemas/ai-config/index.js +17 -0
  33. package/dist/schemas/bid/bid-result.js +13 -9
  34. package/dist/schemas/bid/bid-status.d.ts +30 -0
  35. package/dist/schemas/bid/bid-status.js +15 -0
  36. package/dist/schemas/bid/bid.js +30 -29
  37. package/dist/schemas/bid/exceptions/base-exception.d.ts +4 -0
  38. package/dist/schemas/bid/exceptions/evalute-element.exception.d.ts +5 -0
  39. package/dist/schemas/bid/exceptions/wait-for-function-timeout.d.ts +5 -0
  40. package/dist/schemas/bid/index.js +18 -2
  41. package/dist/schemas/bidding/index.d.ts +1 -0
  42. package/dist/schemas/bidding/index.js +17 -0
  43. package/dist/schemas/bidding/proposal-bidding-status.d.ts +26 -0
  44. package/dist/schemas/bidding/proposal-bidding-status.js +18 -0
  45. package/dist/schemas/bidding/proposal-dto.d.ts +26 -0
  46. package/dist/schemas/bidding/proposal-dto.js +18 -0
  47. package/dist/schemas/campaign/campaign-ai-metrics.js +8 -5
  48. package/dist/schemas/campaign/campaign-analytics.js +31 -32
  49. package/dist/schemas/campaign/campaign-expenses.js +8 -5
  50. package/dist/schemas/campaign/campaign-insights.js +30 -30
  51. package/dist/schemas/campaign/campaign-integrations.d.ts +0 -5
  52. package/dist/schemas/campaign/campaign-integrations.js +13 -10
  53. package/dist/schemas/campaign/campaign-job-count.js +6 -3
  54. package/dist/schemas/campaign/campaign.d.ts +3 -2
  55. package/dist/schemas/campaign/campaign.js +35 -32
  56. package/dist/schemas/campaign/index.js +23 -7
  57. package/dist/schemas/chat-message/chat-message.js +10 -7
  58. package/dist/schemas/chat-message/index.js +17 -1
  59. package/dist/schemas/config/agency-config.js +9 -6
  60. package/dist/schemas/config/index.js +17 -1
  61. package/dist/schemas/index.js +32 -17
  62. package/dist/schemas/job/feed-job.d.ts +866 -0
  63. package/dist/schemas/job/index.js +19 -0
  64. package/dist/schemas/job/job-details.js +29 -0
  65. package/dist/schemas/job/job-note.d.ts +83 -0
  66. package/dist/schemas/job/job-note.js +30 -0
  67. package/dist/schemas/job/job-pipeline.d.ts +74 -0
  68. package/dist/schemas/job/job-pipeline.js +29 -0
  69. package/dist/schemas/job/job-status.d.ts +3 -0
  70. package/dist/schemas/job/job-status.js +27 -0
  71. package/dist/schemas/job/job-suitability.d.ts +12 -0
  72. package/dist/schemas/job/job-suitability.js +13 -0
  73. package/dist/schemas/job/job.d.ts +1160 -0
  74. package/dist/schemas/job/job.js +90 -0
  75. package/dist/schemas/job/pipeline-job.d.ts +608 -0
  76. package/dist/schemas/job/pipeline-job.js +43 -0
  77. package/dist/schemas/job/upwork-job.d.ts +334 -0
  78. package/dist/schemas/job/upwork-job.js +60 -0
  79. package/dist/schemas/job-filters/index.js +17 -1
  80. package/dist/schemas/job-filters/job-filters.js +65 -62
  81. package/dist/schemas/knowledge-object/index.d.ts +1 -0
  82. package/dist/schemas/knowledge-object/index.js +17 -0
  83. package/dist/schemas/knowledge-object/knowledge-object.d.ts +128 -0
  84. package/dist/schemas/knowledge-object/knowledge-object.js +47 -0
  85. package/dist/schemas/lead/index.js +19 -173
  86. package/dist/schemas/lead/lead-note.js +16 -13
  87. package/dist/schemas/lead/lead-status.js +6 -3
  88. package/dist/schemas/lead/lead.d.ts +1897 -0
  89. package/dist/schemas/lead/lead.js +143 -0
  90. package/dist/schemas/logger/index.js +17 -1
  91. package/dist/schemas/logger/log-event.js +49 -100
  92. package/dist/schemas/organization/index.js +17 -70
  93. package/dist/schemas/organization/organization.d.ts +7 -177
  94. package/dist/schemas/organization/organization.js +17 -14
  95. package/dist/schemas/proxy/index.js +17 -3
  96. package/dist/schemas/proxy/proxy.js +19 -25
  97. package/dist/schemas/saved-search/index.js +11 -8
  98. package/dist/schemas/scraper/index.js +18 -2
  99. package/dist/schemas/scraper/scrape-payload.js +14 -19
  100. package/dist/schemas/scraper/scrape-response.d.ts +345 -0
  101. package/dist/schemas/scraper/scrape-response.js +9 -0
  102. package/dist/schemas/scraper/scrape-result.js +21 -21
  103. package/dist/schemas/shared.js +9 -12
  104. package/dist/schemas/time-filter/index.js +8 -5
  105. package/dist/schemas/upwork-account/index.d.ts +3 -0
  106. package/dist/schemas/upwork-account/index.js +19 -0
  107. package/dist/schemas/upwork-account/upwork-account-status.d.ts +2 -0
  108. package/dist/schemas/upwork-account/upwork-account-status.js +11 -0
  109. package/dist/schemas/upwork-account/upwork-business-manager-account.d.ts +95 -0
  110. package/dist/schemas/upwork-account/upwork-business-manager-account.js +35 -0
  111. package/dist/schemas/upwork-account/upwork-scraper-account.d.ts +92 -0
  112. package/dist/schemas/upwork-account/upwork-scraper-account.js +31 -0
  113. package/dist/schemas/upwork-account/upwork-scraping-account.d.ts +90 -0
  114. package/dist/schemas/upwork-account/upwork-scraping-account.js +30 -0
  115. package/dist/schemas/user/index.js +41 -38
  116. package/dist/types/account/account-status.js +2 -1
  117. package/dist/types/account/bidder-account.js +2 -1
  118. package/dist/types/account/index.js +19 -3
  119. package/dist/types/account/manager-account.d.ts +7 -0
  120. package/dist/types/account/manager-account.js +2 -0
  121. package/dist/types/account/scraper-account.js +2 -1
  122. package/dist/types/ai/ai-config.js +2 -1
  123. package/dist/types/ai/index.js +19 -3
  124. package/dist/types/ai/proposal.js +2 -1
  125. package/dist/types/ai/suitability.js +2 -1
  126. package/dist/types/ai-config/ai-config.d.ts +6 -0
  127. package/dist/types/ai-config/ai-config.js +2 -0
  128. package/dist/types/ai-config/index.d.ts +1 -0
  129. package/dist/types/ai-config/index.js +17 -0
  130. package/dist/types/bid/bid-result.js +2 -1
  131. package/dist/types/bid/bid-status.d.ts +5 -0
  132. package/dist/types/bid/bid-status.js +2 -0
  133. package/dist/types/bid/bid.js +2 -1
  134. package/dist/types/bid/index.js +18 -2
  135. package/dist/types/bidding/index.d.ts +1 -0
  136. package/dist/types/bidding/index.js +17 -0
  137. package/dist/types/bidding/proposal-bidding-status.d.ts +3 -0
  138. package/dist/types/bidding/proposal-bidding-status.js +2 -0
  139. package/dist/types/bidding/proposal-dto.d.ts +3 -0
  140. package/dist/types/bidding/proposal-dto.js +2 -0
  141. package/dist/types/campaign/campaign-analytics.js +2 -1
  142. package/dist/types/campaign/campaign-expenses.js +2 -1
  143. package/dist/types/campaign/campaign-insights.js +2 -1
  144. package/dist/types/campaign/campaign-integrations.js +2 -1
  145. package/dist/types/campaign/campaign-job-count.js +2 -1
  146. package/dist/types/campaign/campaign.js +2 -1
  147. package/dist/types/campaign/index.js +22 -6
  148. package/dist/types/chat-message/chat-message.js +2 -1
  149. package/dist/types/chat-message/index.js +17 -1
  150. package/dist/types/config/agency-config.js +2 -1
  151. package/dist/types/config/index.js +17 -1
  152. package/dist/types/index.js +29 -15
  153. package/dist/types/job/index.js +19 -3
  154. package/dist/types/job/job-details.d.ts +36 -0
  155. package/dist/types/job/job-details.js +2 -0
  156. package/dist/types/job/job-note.js +2 -1
  157. package/dist/types/job/job-pipeline.d.ts +4 -0
  158. package/dist/types/job/job-pipeline.js +2 -0
  159. package/dist/types/job/job-status.js +4 -1
  160. package/dist/types/job/job-suitability.d.ts +3 -0
  161. package/dist/types/job/job-suitability.js +2 -0
  162. package/dist/types/job/job.d.ts +36 -0
  163. package/dist/types/job/job.js +2 -0
  164. package/dist/types/job-filters/index.js +17 -1
  165. package/dist/types/job-filters/job-filters.js +2 -1
  166. package/dist/types/knowledge-object/index.d.ts +1 -0
  167. package/dist/types/knowledge-object/index.js +17 -0
  168. package/dist/types/knowledge-object/knowledge-object.d.ts +4 -0
  169. package/dist/types/knowledge-object/knowledge-object.js +2 -0
  170. package/dist/types/logger/index.js +17 -1
  171. package/dist/types/logger/log-event.js +2 -1
  172. package/dist/types/saved-search/index.js +2 -1
  173. package/dist/types/scraper/index.js +18 -2
  174. package/dist/types/scraper/scrape-payload.js +2 -1
  175. package/dist/types/scraper/scrape-response.d.ts +4 -0
  176. package/dist/types/scraper/scrape-response.js +2 -0
  177. package/dist/types/scraper/scrape-result.js +2 -1
  178. package/dist/types/time-filter/index.js +2 -1
  179. package/dist/types/upwork-account/index.d.ts +3 -0
  180. package/dist/types/upwork-account/index.js +19 -0
  181. package/dist/types/upwork-account/upwork-account-status.d.ts +3 -0
  182. package/dist/types/upwork-account/upwork-account-status.js +2 -0
  183. package/dist/types/upwork-account/upwork-business-manager-account.d.ts +7 -0
  184. package/dist/types/upwork-account/upwork-business-manager-account.js +2 -0
  185. package/dist/types/upwork-account/upwork-scraping-account.d.ts +5 -0
  186. package/dist/types/upwork-account/upwork-scraping-account.js +2 -0
  187. package/dist/types/user/index.js +2 -1
  188. package/dist/utils/index.js +17 -1
  189. package/dist/utils/try-catch.js +23 -8
  190. package/package.json +2 -2
  191. package/dist/schemas/event/index.d.ts +0 -58
  192. package/dist/schemas/job/haha.json +0 -581
  193. package/dist/schemas/lead/nuxt.js +0 -287
  194. package/dist/schemas/meter-event/index.d.ts +0 -12
  195. package/dist/schemas/organization/member.js +0 -7
  196. package/dist/schemas/organization/subscription.js +0 -17
  197. package/dist/schemas/profile/index.d.ts +0 -2551
  198. package/dist/schemas/proxy/proxy-available-replacements.js +0 -3
  199. package/dist/schemas/proxy/proxy-country.js +0 -249
  200. package/dist/schemas/talent/index.d.ts +0 -1314
  201. package/dist/schemas/tier/index.d.ts +0 -119
  202. package/dist/schemas/transaction/index.js +0 -17
  203. package/dist/schemas/usage/index.js +0 -18
  204. package/dist/types/job/nuxt.js +0 -1
  205. package/dist/types/shared.js +0 -1
  206. package/dist/types/transaction/index.js +0 -1
  207. package/dist/types/usage/index.js +0 -1
@@ -1,2551 +0,0 @@
1
- import { z } from "zod";
2
- declare const nuxtStateProfileSchema: z.ZodObject<{
3
- identity: z.ZodObject<{
4
- id: z.ZodString;
5
- ciphertext: z.ZodString;
6
- uid: z.ZodString;
7
- }, "strip", z.ZodTypeAny, {
8
- uid: string;
9
- id: string;
10
- ciphertext: string;
11
- }, {
12
- uid: string;
13
- id: string;
14
- ciphertext: string;
15
- }>;
16
- isPIBAvailable: z.ZodBoolean;
17
- profile: z.ZodObject<{
18
- title: z.ZodString;
19
- firstName: z.ZodString;
20
- lastName: z.ZodString;
21
- description: z.ZodString;
22
- location: z.ZodObject<{
23
- country: z.ZodString;
24
- state: z.ZodNullable<z.ZodString>;
25
- city: z.ZodNullable<z.ZodString>;
26
- region: z.ZodString;
27
- subregion: z.ZodString;
28
- timezone: z.ZodString;
29
- zip: z.ZodNullable<z.ZodString>;
30
- }, "strip", z.ZodTypeAny, {
31
- country: string;
32
- state: string | null;
33
- city: string | null;
34
- region: string;
35
- subregion: string;
36
- timezone: string;
37
- zip: string | null;
38
- }, {
39
- country: string;
40
- state: string | null;
41
- city: string | null;
42
- region: string;
43
- subregion: string;
44
- timezone: string;
45
- zip: string | null;
46
- }>;
47
- chargeRate: z.ZodObject<{
48
- rawValue: z.ZodString;
49
- currency: z.ZodString;
50
- }, "strip", z.ZodTypeAny, {
51
- rawValue: string;
52
- currency: string;
53
- }, {
54
- rawValue: string;
55
- currency: string;
56
- }>;
57
- portrait: z.ZodObject<{
58
- portrait: z.ZodString;
59
- }, "strip", z.ZodTypeAny, {
60
- portrait: string;
61
- }, {
62
- portrait: string;
63
- }>;
64
- profileUrl: z.ZodString;
65
- offerConsultations: z.ZodBoolean;
66
- jobSummariesAssignmentRids: z.ZodNullable<z.ZodAny>;
67
- shortName: z.ZodString;
68
- skills: z.ZodArray<z.ZodObject<{
69
- skill: z.ZodObject<{
70
- prettyName: z.ZodString;
71
- uid: z.ZodString;
72
- }, "strip", z.ZodTypeAny, {
73
- prettyName: string;
74
- uid: string;
75
- }, {
76
- prettyName: string;
77
- uid: string;
78
- }>;
79
- uid: z.ZodString;
80
- }, "strip", z.ZodTypeAny, {
81
- skill: {
82
- prettyName: string;
83
- uid: string;
84
- };
85
- uid: string;
86
- }, {
87
- skill: {
88
- prettyName: string;
89
- uid: string;
90
- };
91
- uid: string;
92
- }>, "many">;
93
- stats: z.ZodObject<{
94
- hideJss: z.ZodBoolean;
95
- hideEarnings: z.ZodBoolean;
96
- topRatedStatus: z.ZodString;
97
- topRatedStatusEx: z.ZodString;
98
- rate: z.ZodNumber;
99
- earned: z.ZodNumber;
100
- jobSuccessScore: z.ZodNumber;
101
- rankInfo: z.ZodNullable<z.ZodAny>;
102
- totalHours: z.ZodNumber;
103
- totalHourlyJobs: z.ZodNumber;
104
- totalFpJobs: z.ZodNumber;
105
- totalCompletedJobs: z.ZodNumber;
106
- }, "strip", z.ZodTypeAny, {
107
- hideJss: boolean;
108
- hideEarnings: boolean;
109
- topRatedStatus: string;
110
- topRatedStatusEx: string;
111
- rate: number;
112
- earned: number;
113
- jobSuccessScore: number;
114
- totalHours: number;
115
- totalHourlyJobs: number;
116
- totalFpJobs: number;
117
- totalCompletedJobs: number;
118
- rankInfo?: any;
119
- }, {
120
- hideJss: boolean;
121
- hideEarnings: boolean;
122
- topRatedStatus: string;
123
- topRatedStatusEx: string;
124
- rate: number;
125
- earned: number;
126
- jobSuccessScore: number;
127
- totalHours: number;
128
- totalHourlyJobs: number;
129
- totalFpJobs: number;
130
- totalCompletedJobs: number;
131
- rankInfo?: any;
132
- }>;
133
- portfolioItems: z.ZodArray<z.ZodObject<{
134
- description: z.ZodNullable<z.ZodString>;
135
- title: z.ZodString;
136
- videoUrl: z.ZodNullable<z.ZodString>;
137
- uid: z.ZodString;
138
- thumbnailUrl: z.ZodNullable<z.ZodString>;
139
- publicPortfolioItem: z.ZodBoolean;
140
- category: z.ZodObject<{
141
- id: z.ZodNullable<z.ZodString>;
142
- level1: z.ZodNullable<z.ZodString>;
143
- level2: z.ZodNullable<z.ZodString>;
144
- }, "strip", z.ZodTypeAny, {
145
- id: string | null;
146
- level1: string | null;
147
- level2: string | null;
148
- }, {
149
- id: string | null;
150
- level1: string | null;
151
- level2: string | null;
152
- }>;
153
- }, "strip", z.ZodTypeAny, {
154
- uid: string;
155
- description: string | null;
156
- title: string;
157
- videoUrl: string | null;
158
- thumbnailUrl: string | null;
159
- publicPortfolioItem: boolean;
160
- category: {
161
- id: string | null;
162
- level1: string | null;
163
- level2: string | null;
164
- };
165
- }, {
166
- uid: string;
167
- description: string | null;
168
- title: string;
169
- videoUrl: string | null;
170
- thumbnailUrl: string | null;
171
- publicPortfolioItem: boolean;
172
- category: {
173
- id: string | null;
174
- level1: string | null;
175
- level2: string | null;
176
- };
177
- }>, "many">;
178
- totalPortfolioItems: z.ZodNumber;
179
- specializedProfiles: z.ZodArray<z.ZodAny, "many">;
180
- isDiversityCertified: z.ZodBoolean;
181
- isBoosted: z.ZodBoolean;
182
- boosted: z.ZodBoolean;
183
- boostedWouldHaveBeen: z.ZodBoolean;
184
- }, "strip", z.ZodTypeAny, {
185
- description: string;
186
- title: string;
187
- firstName: string;
188
- lastName: string;
189
- location: {
190
- country: string;
191
- state: string | null;
192
- city: string | null;
193
- region: string;
194
- subregion: string;
195
- timezone: string;
196
- zip: string | null;
197
- };
198
- chargeRate: {
199
- rawValue: string;
200
- currency: string;
201
- };
202
- portrait: {
203
- portrait: string;
204
- };
205
- profileUrl: string;
206
- offerConsultations: boolean;
207
- shortName: string;
208
- skills: {
209
- skill: {
210
- prettyName: string;
211
- uid: string;
212
- };
213
- uid: string;
214
- }[];
215
- stats: {
216
- hideJss: boolean;
217
- hideEarnings: boolean;
218
- topRatedStatus: string;
219
- topRatedStatusEx: string;
220
- rate: number;
221
- earned: number;
222
- jobSuccessScore: number;
223
- totalHours: number;
224
- totalHourlyJobs: number;
225
- totalFpJobs: number;
226
- totalCompletedJobs: number;
227
- rankInfo?: any;
228
- };
229
- portfolioItems: {
230
- uid: string;
231
- description: string | null;
232
- title: string;
233
- videoUrl: string | null;
234
- thumbnailUrl: string | null;
235
- publicPortfolioItem: boolean;
236
- category: {
237
- id: string | null;
238
- level1: string | null;
239
- level2: string | null;
240
- };
241
- }[];
242
- totalPortfolioItems: number;
243
- specializedProfiles: any[];
244
- isDiversityCertified: boolean;
245
- isBoosted: boolean;
246
- boosted: boolean;
247
- boostedWouldHaveBeen: boolean;
248
- jobSummariesAssignmentRids?: any;
249
- }, {
250
- description: string;
251
- title: string;
252
- firstName: string;
253
- lastName: string;
254
- location: {
255
- country: string;
256
- state: string | null;
257
- city: string | null;
258
- region: string;
259
- subregion: string;
260
- timezone: string;
261
- zip: string | null;
262
- };
263
- chargeRate: {
264
- rawValue: string;
265
- currency: string;
266
- };
267
- portrait: {
268
- portrait: string;
269
- };
270
- profileUrl: string;
271
- offerConsultations: boolean;
272
- shortName: string;
273
- skills: {
274
- skill: {
275
- prettyName: string;
276
- uid: string;
277
- };
278
- uid: string;
279
- }[];
280
- stats: {
281
- hideJss: boolean;
282
- hideEarnings: boolean;
283
- topRatedStatus: string;
284
- topRatedStatusEx: string;
285
- rate: number;
286
- earned: number;
287
- jobSuccessScore: number;
288
- totalHours: number;
289
- totalHourlyJobs: number;
290
- totalFpJobs: number;
291
- totalCompletedJobs: number;
292
- rankInfo?: any;
293
- };
294
- portfolioItems: {
295
- uid: string;
296
- description: string | null;
297
- title: string;
298
- videoUrl: string | null;
299
- thumbnailUrl: string | null;
300
- publicPortfolioItem: boolean;
301
- category: {
302
- id: string | null;
303
- level1: string | null;
304
- level2: string | null;
305
- };
306
- }[];
307
- totalPortfolioItems: number;
308
- specializedProfiles: any[];
309
- isDiversityCertified: boolean;
310
- isBoosted: boolean;
311
- boosted: boolean;
312
- boostedWouldHaveBeen: boolean;
313
- jobSummariesAssignmentRids?: any;
314
- }>;
315
- agency: z.ZodObject<{
316
- orgId: z.ZodString;
317
- ciphertext: z.ZodString;
318
- name: z.ZodString;
319
- classifications: z.ZodArray<z.ZodAny, "many">;
320
- logo: z.ZodNullable<z.ZodString>;
321
- hideEarnings: z.ZodBoolean;
322
- totalEarnings: z.ZodNumber;
323
- isAgencyDiversityCertified: z.ZodArray<z.ZodAny, "many">;
324
- }, "strip", z.ZodTypeAny, {
325
- hideEarnings: boolean;
326
- ciphertext: string;
327
- orgId: string;
328
- name: string;
329
- classifications: any[];
330
- logo: string | null;
331
- totalEarnings: number;
332
- isAgencyDiversityCertified: any[];
333
- }, {
334
- hideEarnings: boolean;
335
- ciphertext: string;
336
- orgId: string;
337
- name: string;
338
- classifications: any[];
339
- logo: string | null;
340
- totalEarnings: number;
341
- isAgencyDiversityCertified: any[];
342
- }>;
343
- options: z.ZodObject<{
344
- position: z.ZodNumber;
345
- }, "strip", z.ZodTypeAny, {
346
- position: number;
347
- }, {
348
- position: number;
349
- }>;
350
- }, "strip", z.ZodTypeAny, {
351
- options: {
352
- position: number;
353
- };
354
- identity: {
355
- uid: string;
356
- id: string;
357
- ciphertext: string;
358
- };
359
- isPIBAvailable: boolean;
360
- profile: {
361
- description: string;
362
- title: string;
363
- firstName: string;
364
- lastName: string;
365
- location: {
366
- country: string;
367
- state: string | null;
368
- city: string | null;
369
- region: string;
370
- subregion: string;
371
- timezone: string;
372
- zip: string | null;
373
- };
374
- chargeRate: {
375
- rawValue: string;
376
- currency: string;
377
- };
378
- portrait: {
379
- portrait: string;
380
- };
381
- profileUrl: string;
382
- offerConsultations: boolean;
383
- shortName: string;
384
- skills: {
385
- skill: {
386
- prettyName: string;
387
- uid: string;
388
- };
389
- uid: string;
390
- }[];
391
- stats: {
392
- hideJss: boolean;
393
- hideEarnings: boolean;
394
- topRatedStatus: string;
395
- topRatedStatusEx: string;
396
- rate: number;
397
- earned: number;
398
- jobSuccessScore: number;
399
- totalHours: number;
400
- totalHourlyJobs: number;
401
- totalFpJobs: number;
402
- totalCompletedJobs: number;
403
- rankInfo?: any;
404
- };
405
- portfolioItems: {
406
- uid: string;
407
- description: string | null;
408
- title: string;
409
- videoUrl: string | null;
410
- thumbnailUrl: string | null;
411
- publicPortfolioItem: boolean;
412
- category: {
413
- id: string | null;
414
- level1: string | null;
415
- level2: string | null;
416
- };
417
- }[];
418
- totalPortfolioItems: number;
419
- specializedProfiles: any[];
420
- isDiversityCertified: boolean;
421
- isBoosted: boolean;
422
- boosted: boolean;
423
- boostedWouldHaveBeen: boolean;
424
- jobSummariesAssignmentRids?: any;
425
- };
426
- agency: {
427
- hideEarnings: boolean;
428
- ciphertext: string;
429
- orgId: string;
430
- name: string;
431
- classifications: any[];
432
- logo: string | null;
433
- totalEarnings: number;
434
- isAgencyDiversityCertified: any[];
435
- };
436
- }, {
437
- options: {
438
- position: number;
439
- };
440
- identity: {
441
- uid: string;
442
- id: string;
443
- ciphertext: string;
444
- };
445
- isPIBAvailable: boolean;
446
- profile: {
447
- description: string;
448
- title: string;
449
- firstName: string;
450
- lastName: string;
451
- location: {
452
- country: string;
453
- state: string | null;
454
- city: string | null;
455
- region: string;
456
- subregion: string;
457
- timezone: string;
458
- zip: string | null;
459
- };
460
- chargeRate: {
461
- rawValue: string;
462
- currency: string;
463
- };
464
- portrait: {
465
- portrait: string;
466
- };
467
- profileUrl: string;
468
- offerConsultations: boolean;
469
- shortName: string;
470
- skills: {
471
- skill: {
472
- prettyName: string;
473
- uid: string;
474
- };
475
- uid: string;
476
- }[];
477
- stats: {
478
- hideJss: boolean;
479
- hideEarnings: boolean;
480
- topRatedStatus: string;
481
- topRatedStatusEx: string;
482
- rate: number;
483
- earned: number;
484
- jobSuccessScore: number;
485
- totalHours: number;
486
- totalHourlyJobs: number;
487
- totalFpJobs: number;
488
- totalCompletedJobs: number;
489
- rankInfo?: any;
490
- };
491
- portfolioItems: {
492
- uid: string;
493
- description: string | null;
494
- title: string;
495
- videoUrl: string | null;
496
- thumbnailUrl: string | null;
497
- publicPortfolioItem: boolean;
498
- category: {
499
- id: string | null;
500
- level1: string | null;
501
- level2: string | null;
502
- };
503
- }[];
504
- totalPortfolioItems: number;
505
- specializedProfiles: any[];
506
- isDiversityCertified: boolean;
507
- isBoosted: boolean;
508
- boosted: boolean;
509
- boostedWouldHaveBeen: boolean;
510
- jobSummariesAssignmentRids?: any;
511
- };
512
- agency: {
513
- hideEarnings: boolean;
514
- ciphertext: string;
515
- orgId: string;
516
- name: string;
517
- classifications: any[];
518
- logo: string | null;
519
- totalEarnings: number;
520
- isAgencyDiversityCertified: any[];
521
- };
522
- }>;
523
- export declare const nuxtStateProfilesSearchSchema: z.ZodObject<{
524
- status: z.ZodObject<{
525
- loading: z.ZodBoolean;
526
- loaded: z.ZodBoolean;
527
- failed: z.ZodBoolean;
528
- }, "strip", z.ZodTypeAny, {
529
- loading: boolean;
530
- loaded: boolean;
531
- failed: boolean;
532
- }, {
533
- loading: boolean;
534
- loaded: boolean;
535
- failed: boolean;
536
- }>;
537
- profiles: z.ZodArray<z.ZodObject<{
538
- identity: z.ZodObject<{
539
- id: z.ZodString;
540
- ciphertext: z.ZodString;
541
- uid: z.ZodString;
542
- }, "strip", z.ZodTypeAny, {
543
- uid: string;
544
- id: string;
545
- ciphertext: string;
546
- }, {
547
- uid: string;
548
- id: string;
549
- ciphertext: string;
550
- }>;
551
- isPIBAvailable: z.ZodBoolean;
552
- profile: z.ZodObject<{
553
- title: z.ZodString;
554
- firstName: z.ZodString;
555
- lastName: z.ZodString;
556
- description: z.ZodString;
557
- location: z.ZodObject<{
558
- country: z.ZodString;
559
- state: z.ZodNullable<z.ZodString>;
560
- city: z.ZodNullable<z.ZodString>;
561
- region: z.ZodString;
562
- subregion: z.ZodString;
563
- timezone: z.ZodString;
564
- zip: z.ZodNullable<z.ZodString>;
565
- }, "strip", z.ZodTypeAny, {
566
- country: string;
567
- state: string | null;
568
- city: string | null;
569
- region: string;
570
- subregion: string;
571
- timezone: string;
572
- zip: string | null;
573
- }, {
574
- country: string;
575
- state: string | null;
576
- city: string | null;
577
- region: string;
578
- subregion: string;
579
- timezone: string;
580
- zip: string | null;
581
- }>;
582
- chargeRate: z.ZodObject<{
583
- rawValue: z.ZodString;
584
- currency: z.ZodString;
585
- }, "strip", z.ZodTypeAny, {
586
- rawValue: string;
587
- currency: string;
588
- }, {
589
- rawValue: string;
590
- currency: string;
591
- }>;
592
- portrait: z.ZodObject<{
593
- portrait: z.ZodString;
594
- }, "strip", z.ZodTypeAny, {
595
- portrait: string;
596
- }, {
597
- portrait: string;
598
- }>;
599
- profileUrl: z.ZodString;
600
- offerConsultations: z.ZodBoolean;
601
- jobSummariesAssignmentRids: z.ZodNullable<z.ZodAny>;
602
- shortName: z.ZodString;
603
- skills: z.ZodArray<z.ZodObject<{
604
- skill: z.ZodObject<{
605
- prettyName: z.ZodString;
606
- uid: z.ZodString;
607
- }, "strip", z.ZodTypeAny, {
608
- prettyName: string;
609
- uid: string;
610
- }, {
611
- prettyName: string;
612
- uid: string;
613
- }>;
614
- uid: z.ZodString;
615
- }, "strip", z.ZodTypeAny, {
616
- skill: {
617
- prettyName: string;
618
- uid: string;
619
- };
620
- uid: string;
621
- }, {
622
- skill: {
623
- prettyName: string;
624
- uid: string;
625
- };
626
- uid: string;
627
- }>, "many">;
628
- stats: z.ZodObject<{
629
- hideJss: z.ZodBoolean;
630
- hideEarnings: z.ZodBoolean;
631
- topRatedStatus: z.ZodString;
632
- topRatedStatusEx: z.ZodString;
633
- rate: z.ZodNumber;
634
- earned: z.ZodNumber;
635
- jobSuccessScore: z.ZodNumber;
636
- rankInfo: z.ZodNullable<z.ZodAny>;
637
- totalHours: z.ZodNumber;
638
- totalHourlyJobs: z.ZodNumber;
639
- totalFpJobs: z.ZodNumber;
640
- totalCompletedJobs: z.ZodNumber;
641
- }, "strip", z.ZodTypeAny, {
642
- hideJss: boolean;
643
- hideEarnings: boolean;
644
- topRatedStatus: string;
645
- topRatedStatusEx: string;
646
- rate: number;
647
- earned: number;
648
- jobSuccessScore: number;
649
- totalHours: number;
650
- totalHourlyJobs: number;
651
- totalFpJobs: number;
652
- totalCompletedJobs: number;
653
- rankInfo?: any;
654
- }, {
655
- hideJss: boolean;
656
- hideEarnings: boolean;
657
- topRatedStatus: string;
658
- topRatedStatusEx: string;
659
- rate: number;
660
- earned: number;
661
- jobSuccessScore: number;
662
- totalHours: number;
663
- totalHourlyJobs: number;
664
- totalFpJobs: number;
665
- totalCompletedJobs: number;
666
- rankInfo?: any;
667
- }>;
668
- portfolioItems: z.ZodArray<z.ZodObject<{
669
- description: z.ZodNullable<z.ZodString>;
670
- title: z.ZodString;
671
- videoUrl: z.ZodNullable<z.ZodString>;
672
- uid: z.ZodString;
673
- thumbnailUrl: z.ZodNullable<z.ZodString>;
674
- publicPortfolioItem: z.ZodBoolean;
675
- category: z.ZodObject<{
676
- id: z.ZodNullable<z.ZodString>;
677
- level1: z.ZodNullable<z.ZodString>;
678
- level2: z.ZodNullable<z.ZodString>;
679
- }, "strip", z.ZodTypeAny, {
680
- id: string | null;
681
- level1: string | null;
682
- level2: string | null;
683
- }, {
684
- id: string | null;
685
- level1: string | null;
686
- level2: string | null;
687
- }>;
688
- }, "strip", z.ZodTypeAny, {
689
- uid: string;
690
- description: string | null;
691
- title: string;
692
- videoUrl: string | null;
693
- thumbnailUrl: string | null;
694
- publicPortfolioItem: boolean;
695
- category: {
696
- id: string | null;
697
- level1: string | null;
698
- level2: string | null;
699
- };
700
- }, {
701
- uid: string;
702
- description: string | null;
703
- title: string;
704
- videoUrl: string | null;
705
- thumbnailUrl: string | null;
706
- publicPortfolioItem: boolean;
707
- category: {
708
- id: string | null;
709
- level1: string | null;
710
- level2: string | null;
711
- };
712
- }>, "many">;
713
- totalPortfolioItems: z.ZodNumber;
714
- specializedProfiles: z.ZodArray<z.ZodAny, "many">;
715
- isDiversityCertified: z.ZodBoolean;
716
- isBoosted: z.ZodBoolean;
717
- boosted: z.ZodBoolean;
718
- boostedWouldHaveBeen: z.ZodBoolean;
719
- }, "strip", z.ZodTypeAny, {
720
- description: string;
721
- title: string;
722
- firstName: string;
723
- lastName: string;
724
- location: {
725
- country: string;
726
- state: string | null;
727
- city: string | null;
728
- region: string;
729
- subregion: string;
730
- timezone: string;
731
- zip: string | null;
732
- };
733
- chargeRate: {
734
- rawValue: string;
735
- currency: string;
736
- };
737
- portrait: {
738
- portrait: string;
739
- };
740
- profileUrl: string;
741
- offerConsultations: boolean;
742
- shortName: string;
743
- skills: {
744
- skill: {
745
- prettyName: string;
746
- uid: string;
747
- };
748
- uid: string;
749
- }[];
750
- stats: {
751
- hideJss: boolean;
752
- hideEarnings: boolean;
753
- topRatedStatus: string;
754
- topRatedStatusEx: string;
755
- rate: number;
756
- earned: number;
757
- jobSuccessScore: number;
758
- totalHours: number;
759
- totalHourlyJobs: number;
760
- totalFpJobs: number;
761
- totalCompletedJobs: number;
762
- rankInfo?: any;
763
- };
764
- portfolioItems: {
765
- uid: string;
766
- description: string | null;
767
- title: string;
768
- videoUrl: string | null;
769
- thumbnailUrl: string | null;
770
- publicPortfolioItem: boolean;
771
- category: {
772
- id: string | null;
773
- level1: string | null;
774
- level2: string | null;
775
- };
776
- }[];
777
- totalPortfolioItems: number;
778
- specializedProfiles: any[];
779
- isDiversityCertified: boolean;
780
- isBoosted: boolean;
781
- boosted: boolean;
782
- boostedWouldHaveBeen: boolean;
783
- jobSummariesAssignmentRids?: any;
784
- }, {
785
- description: string;
786
- title: string;
787
- firstName: string;
788
- lastName: string;
789
- location: {
790
- country: string;
791
- state: string | null;
792
- city: string | null;
793
- region: string;
794
- subregion: string;
795
- timezone: string;
796
- zip: string | null;
797
- };
798
- chargeRate: {
799
- rawValue: string;
800
- currency: string;
801
- };
802
- portrait: {
803
- portrait: string;
804
- };
805
- profileUrl: string;
806
- offerConsultations: boolean;
807
- shortName: string;
808
- skills: {
809
- skill: {
810
- prettyName: string;
811
- uid: string;
812
- };
813
- uid: string;
814
- }[];
815
- stats: {
816
- hideJss: boolean;
817
- hideEarnings: boolean;
818
- topRatedStatus: string;
819
- topRatedStatusEx: string;
820
- rate: number;
821
- earned: number;
822
- jobSuccessScore: number;
823
- totalHours: number;
824
- totalHourlyJobs: number;
825
- totalFpJobs: number;
826
- totalCompletedJobs: number;
827
- rankInfo?: any;
828
- };
829
- portfolioItems: {
830
- uid: string;
831
- description: string | null;
832
- title: string;
833
- videoUrl: string | null;
834
- thumbnailUrl: string | null;
835
- publicPortfolioItem: boolean;
836
- category: {
837
- id: string | null;
838
- level1: string | null;
839
- level2: string | null;
840
- };
841
- }[];
842
- totalPortfolioItems: number;
843
- specializedProfiles: any[];
844
- isDiversityCertified: boolean;
845
- isBoosted: boolean;
846
- boosted: boolean;
847
- boostedWouldHaveBeen: boolean;
848
- jobSummariesAssignmentRids?: any;
849
- }>;
850
- agency: z.ZodObject<{
851
- orgId: z.ZodString;
852
- ciphertext: z.ZodString;
853
- name: z.ZodString;
854
- classifications: z.ZodArray<z.ZodAny, "many">;
855
- logo: z.ZodNullable<z.ZodString>;
856
- hideEarnings: z.ZodBoolean;
857
- totalEarnings: z.ZodNumber;
858
- isAgencyDiversityCertified: z.ZodArray<z.ZodAny, "many">;
859
- }, "strip", z.ZodTypeAny, {
860
- hideEarnings: boolean;
861
- ciphertext: string;
862
- orgId: string;
863
- name: string;
864
- classifications: any[];
865
- logo: string | null;
866
- totalEarnings: number;
867
- isAgencyDiversityCertified: any[];
868
- }, {
869
- hideEarnings: boolean;
870
- ciphertext: string;
871
- orgId: string;
872
- name: string;
873
- classifications: any[];
874
- logo: string | null;
875
- totalEarnings: number;
876
- isAgencyDiversityCertified: any[];
877
- }>;
878
- options: z.ZodObject<{
879
- position: z.ZodNumber;
880
- }, "strip", z.ZodTypeAny, {
881
- position: number;
882
- }, {
883
- position: number;
884
- }>;
885
- }, "strip", z.ZodTypeAny, {
886
- options: {
887
- position: number;
888
- };
889
- identity: {
890
- uid: string;
891
- id: string;
892
- ciphertext: string;
893
- };
894
- isPIBAvailable: boolean;
895
- profile: {
896
- description: string;
897
- title: string;
898
- firstName: string;
899
- lastName: string;
900
- location: {
901
- country: string;
902
- state: string | null;
903
- city: string | null;
904
- region: string;
905
- subregion: string;
906
- timezone: string;
907
- zip: string | null;
908
- };
909
- chargeRate: {
910
- rawValue: string;
911
- currency: string;
912
- };
913
- portrait: {
914
- portrait: string;
915
- };
916
- profileUrl: string;
917
- offerConsultations: boolean;
918
- shortName: string;
919
- skills: {
920
- skill: {
921
- prettyName: string;
922
- uid: string;
923
- };
924
- uid: string;
925
- }[];
926
- stats: {
927
- hideJss: boolean;
928
- hideEarnings: boolean;
929
- topRatedStatus: string;
930
- topRatedStatusEx: string;
931
- rate: number;
932
- earned: number;
933
- jobSuccessScore: number;
934
- totalHours: number;
935
- totalHourlyJobs: number;
936
- totalFpJobs: number;
937
- totalCompletedJobs: number;
938
- rankInfo?: any;
939
- };
940
- portfolioItems: {
941
- uid: string;
942
- description: string | null;
943
- title: string;
944
- videoUrl: string | null;
945
- thumbnailUrl: string | null;
946
- publicPortfolioItem: boolean;
947
- category: {
948
- id: string | null;
949
- level1: string | null;
950
- level2: string | null;
951
- };
952
- }[];
953
- totalPortfolioItems: number;
954
- specializedProfiles: any[];
955
- isDiversityCertified: boolean;
956
- isBoosted: boolean;
957
- boosted: boolean;
958
- boostedWouldHaveBeen: boolean;
959
- jobSummariesAssignmentRids?: any;
960
- };
961
- agency: {
962
- hideEarnings: boolean;
963
- ciphertext: string;
964
- orgId: string;
965
- name: string;
966
- classifications: any[];
967
- logo: string | null;
968
- totalEarnings: number;
969
- isAgencyDiversityCertified: any[];
970
- };
971
- }, {
972
- options: {
973
- position: number;
974
- };
975
- identity: {
976
- uid: string;
977
- id: string;
978
- ciphertext: string;
979
- };
980
- isPIBAvailable: boolean;
981
- profile: {
982
- description: string;
983
- title: string;
984
- firstName: string;
985
- lastName: string;
986
- location: {
987
- country: string;
988
- state: string | null;
989
- city: string | null;
990
- region: string;
991
- subregion: string;
992
- timezone: string;
993
- zip: string | null;
994
- };
995
- chargeRate: {
996
- rawValue: string;
997
- currency: string;
998
- };
999
- portrait: {
1000
- portrait: string;
1001
- };
1002
- profileUrl: string;
1003
- offerConsultations: boolean;
1004
- shortName: string;
1005
- skills: {
1006
- skill: {
1007
- prettyName: string;
1008
- uid: string;
1009
- };
1010
- uid: string;
1011
- }[];
1012
- stats: {
1013
- hideJss: boolean;
1014
- hideEarnings: boolean;
1015
- topRatedStatus: string;
1016
- topRatedStatusEx: string;
1017
- rate: number;
1018
- earned: number;
1019
- jobSuccessScore: number;
1020
- totalHours: number;
1021
- totalHourlyJobs: number;
1022
- totalFpJobs: number;
1023
- totalCompletedJobs: number;
1024
- rankInfo?: any;
1025
- };
1026
- portfolioItems: {
1027
- uid: string;
1028
- description: string | null;
1029
- title: string;
1030
- videoUrl: string | null;
1031
- thumbnailUrl: string | null;
1032
- publicPortfolioItem: boolean;
1033
- category: {
1034
- id: string | null;
1035
- level1: string | null;
1036
- level2: string | null;
1037
- };
1038
- }[];
1039
- totalPortfolioItems: number;
1040
- specializedProfiles: any[];
1041
- isDiversityCertified: boolean;
1042
- isBoosted: boolean;
1043
- boosted: boolean;
1044
- boostedWouldHaveBeen: boolean;
1045
- jobSummariesAssignmentRids?: any;
1046
- };
1047
- agency: {
1048
- hideEarnings: boolean;
1049
- ciphertext: string;
1050
- orgId: string;
1051
- name: string;
1052
- classifications: any[];
1053
- logo: string | null;
1054
- totalEarnings: number;
1055
- isAgencyDiversityCertified: any[];
1056
- };
1057
- }>, "many">;
1058
- currentPage: z.ZodNumber;
1059
- paging: z.ZodObject<{
1060
- total: z.ZodNumber;
1061
- offset: z.ZodNumber;
1062
- count: z.ZodNumber;
1063
- originTotal: z.ZodNumber;
1064
- pagesTotal: z.ZodNumber;
1065
- page: z.ZodNumber;
1066
- perPage: z.ZodNumber;
1067
- }, "strip", z.ZodTypeAny, {
1068
- total: number;
1069
- offset: number;
1070
- count: number;
1071
- originTotal: number;
1072
- pagesTotal: number;
1073
- page: number;
1074
- perPage: number;
1075
- }, {
1076
- total: number;
1077
- offset: number;
1078
- count: number;
1079
- originTotal: number;
1080
- pagesTotal: number;
1081
- page: number;
1082
- perPage: number;
1083
- }>;
1084
- flags: z.ZodObject<{
1085
- portfolioSearch: z.ZodBoolean;
1086
- }, "strip", z.ZodTypeAny, {
1087
- portfolioSearch: boolean;
1088
- }, {
1089
- portfolioSearch: boolean;
1090
- }>;
1091
- searchQueryCache: z.ZodRecord<z.ZodString, z.ZodString>;
1092
- "handle-response-data": z.ZodRecord<z.ZodString, z.ZodAny>;
1093
- }, "strip", z.ZodTypeAny, {
1094
- status: {
1095
- loading: boolean;
1096
- loaded: boolean;
1097
- failed: boolean;
1098
- };
1099
- profiles: {
1100
- options: {
1101
- position: number;
1102
- };
1103
- identity: {
1104
- uid: string;
1105
- id: string;
1106
- ciphertext: string;
1107
- };
1108
- isPIBAvailable: boolean;
1109
- profile: {
1110
- description: string;
1111
- title: string;
1112
- firstName: string;
1113
- lastName: string;
1114
- location: {
1115
- country: string;
1116
- state: string | null;
1117
- city: string | null;
1118
- region: string;
1119
- subregion: string;
1120
- timezone: string;
1121
- zip: string | null;
1122
- };
1123
- chargeRate: {
1124
- rawValue: string;
1125
- currency: string;
1126
- };
1127
- portrait: {
1128
- portrait: string;
1129
- };
1130
- profileUrl: string;
1131
- offerConsultations: boolean;
1132
- shortName: string;
1133
- skills: {
1134
- skill: {
1135
- prettyName: string;
1136
- uid: string;
1137
- };
1138
- uid: string;
1139
- }[];
1140
- stats: {
1141
- hideJss: boolean;
1142
- hideEarnings: boolean;
1143
- topRatedStatus: string;
1144
- topRatedStatusEx: string;
1145
- rate: number;
1146
- earned: number;
1147
- jobSuccessScore: number;
1148
- totalHours: number;
1149
- totalHourlyJobs: number;
1150
- totalFpJobs: number;
1151
- totalCompletedJobs: number;
1152
- rankInfo?: any;
1153
- };
1154
- portfolioItems: {
1155
- uid: string;
1156
- description: string | null;
1157
- title: string;
1158
- videoUrl: string | null;
1159
- thumbnailUrl: string | null;
1160
- publicPortfolioItem: boolean;
1161
- category: {
1162
- id: string | null;
1163
- level1: string | null;
1164
- level2: string | null;
1165
- };
1166
- }[];
1167
- totalPortfolioItems: number;
1168
- specializedProfiles: any[];
1169
- isDiversityCertified: boolean;
1170
- isBoosted: boolean;
1171
- boosted: boolean;
1172
- boostedWouldHaveBeen: boolean;
1173
- jobSummariesAssignmentRids?: any;
1174
- };
1175
- agency: {
1176
- hideEarnings: boolean;
1177
- ciphertext: string;
1178
- orgId: string;
1179
- name: string;
1180
- classifications: any[];
1181
- logo: string | null;
1182
- totalEarnings: number;
1183
- isAgencyDiversityCertified: any[];
1184
- };
1185
- }[];
1186
- currentPage: number;
1187
- paging: {
1188
- total: number;
1189
- offset: number;
1190
- count: number;
1191
- originTotal: number;
1192
- pagesTotal: number;
1193
- page: number;
1194
- perPage: number;
1195
- };
1196
- flags: {
1197
- portfolioSearch: boolean;
1198
- };
1199
- searchQueryCache: Record<string, string>;
1200
- "handle-response-data": Record<string, any>;
1201
- }, {
1202
- status: {
1203
- loading: boolean;
1204
- loaded: boolean;
1205
- failed: boolean;
1206
- };
1207
- profiles: {
1208
- options: {
1209
- position: number;
1210
- };
1211
- identity: {
1212
- uid: string;
1213
- id: string;
1214
- ciphertext: string;
1215
- };
1216
- isPIBAvailable: boolean;
1217
- profile: {
1218
- description: string;
1219
- title: string;
1220
- firstName: string;
1221
- lastName: string;
1222
- location: {
1223
- country: string;
1224
- state: string | null;
1225
- city: string | null;
1226
- region: string;
1227
- subregion: string;
1228
- timezone: string;
1229
- zip: string | null;
1230
- };
1231
- chargeRate: {
1232
- rawValue: string;
1233
- currency: string;
1234
- };
1235
- portrait: {
1236
- portrait: string;
1237
- };
1238
- profileUrl: string;
1239
- offerConsultations: boolean;
1240
- shortName: string;
1241
- skills: {
1242
- skill: {
1243
- prettyName: string;
1244
- uid: string;
1245
- };
1246
- uid: string;
1247
- }[];
1248
- stats: {
1249
- hideJss: boolean;
1250
- hideEarnings: boolean;
1251
- topRatedStatus: string;
1252
- topRatedStatusEx: string;
1253
- rate: number;
1254
- earned: number;
1255
- jobSuccessScore: number;
1256
- totalHours: number;
1257
- totalHourlyJobs: number;
1258
- totalFpJobs: number;
1259
- totalCompletedJobs: number;
1260
- rankInfo?: any;
1261
- };
1262
- portfolioItems: {
1263
- uid: string;
1264
- description: string | null;
1265
- title: string;
1266
- videoUrl: string | null;
1267
- thumbnailUrl: string | null;
1268
- publicPortfolioItem: boolean;
1269
- category: {
1270
- id: string | null;
1271
- level1: string | null;
1272
- level2: string | null;
1273
- };
1274
- }[];
1275
- totalPortfolioItems: number;
1276
- specializedProfiles: any[];
1277
- isDiversityCertified: boolean;
1278
- isBoosted: boolean;
1279
- boosted: boolean;
1280
- boostedWouldHaveBeen: boolean;
1281
- jobSummariesAssignmentRids?: any;
1282
- };
1283
- agency: {
1284
- hideEarnings: boolean;
1285
- ciphertext: string;
1286
- orgId: string;
1287
- name: string;
1288
- classifications: any[];
1289
- logo: string | null;
1290
- totalEarnings: number;
1291
- isAgencyDiversityCertified: any[];
1292
- };
1293
- }[];
1294
- currentPage: number;
1295
- paging: {
1296
- total: number;
1297
- offset: number;
1298
- count: number;
1299
- originTotal: number;
1300
- pagesTotal: number;
1301
- page: number;
1302
- perPage: number;
1303
- };
1304
- flags: {
1305
- portfolioSearch: boolean;
1306
- };
1307
- searchQueryCache: Record<string, string>;
1308
- "handle-response-data": Record<string, any>;
1309
- }>;
1310
- export declare const profileSearchNuxtStateSchema: z.ZodObject<{
1311
- state: z.ZodObject<{
1312
- profilesSearch: z.ZodObject<{
1313
- status: z.ZodObject<{
1314
- loading: z.ZodBoolean;
1315
- loaded: z.ZodBoolean;
1316
- failed: z.ZodBoolean;
1317
- }, "strip", z.ZodTypeAny, {
1318
- loading: boolean;
1319
- loaded: boolean;
1320
- failed: boolean;
1321
- }, {
1322
- loading: boolean;
1323
- loaded: boolean;
1324
- failed: boolean;
1325
- }>;
1326
- profiles: z.ZodArray<z.ZodObject<{
1327
- identity: z.ZodObject<{
1328
- id: z.ZodString;
1329
- ciphertext: z.ZodString;
1330
- uid: z.ZodString;
1331
- }, "strip", z.ZodTypeAny, {
1332
- uid: string;
1333
- id: string;
1334
- ciphertext: string;
1335
- }, {
1336
- uid: string;
1337
- id: string;
1338
- ciphertext: string;
1339
- }>;
1340
- isPIBAvailable: z.ZodBoolean;
1341
- profile: z.ZodObject<{
1342
- title: z.ZodString;
1343
- firstName: z.ZodString;
1344
- lastName: z.ZodString;
1345
- description: z.ZodString;
1346
- location: z.ZodObject<{
1347
- country: z.ZodString;
1348
- state: z.ZodNullable<z.ZodString>;
1349
- city: z.ZodNullable<z.ZodString>;
1350
- region: z.ZodString;
1351
- subregion: z.ZodString;
1352
- timezone: z.ZodString;
1353
- zip: z.ZodNullable<z.ZodString>;
1354
- }, "strip", z.ZodTypeAny, {
1355
- country: string;
1356
- state: string | null;
1357
- city: string | null;
1358
- region: string;
1359
- subregion: string;
1360
- timezone: string;
1361
- zip: string | null;
1362
- }, {
1363
- country: string;
1364
- state: string | null;
1365
- city: string | null;
1366
- region: string;
1367
- subregion: string;
1368
- timezone: string;
1369
- zip: string | null;
1370
- }>;
1371
- chargeRate: z.ZodObject<{
1372
- rawValue: z.ZodString;
1373
- currency: z.ZodString;
1374
- }, "strip", z.ZodTypeAny, {
1375
- rawValue: string;
1376
- currency: string;
1377
- }, {
1378
- rawValue: string;
1379
- currency: string;
1380
- }>;
1381
- portrait: z.ZodObject<{
1382
- portrait: z.ZodString;
1383
- }, "strip", z.ZodTypeAny, {
1384
- portrait: string;
1385
- }, {
1386
- portrait: string;
1387
- }>;
1388
- profileUrl: z.ZodString;
1389
- offerConsultations: z.ZodBoolean;
1390
- jobSummariesAssignmentRids: z.ZodNullable<z.ZodAny>;
1391
- shortName: z.ZodString;
1392
- skills: z.ZodArray<z.ZodObject<{
1393
- skill: z.ZodObject<{
1394
- prettyName: z.ZodString;
1395
- uid: z.ZodString;
1396
- }, "strip", z.ZodTypeAny, {
1397
- prettyName: string;
1398
- uid: string;
1399
- }, {
1400
- prettyName: string;
1401
- uid: string;
1402
- }>;
1403
- uid: z.ZodString;
1404
- }, "strip", z.ZodTypeAny, {
1405
- skill: {
1406
- prettyName: string;
1407
- uid: string;
1408
- };
1409
- uid: string;
1410
- }, {
1411
- skill: {
1412
- prettyName: string;
1413
- uid: string;
1414
- };
1415
- uid: string;
1416
- }>, "many">;
1417
- stats: z.ZodObject<{
1418
- hideJss: z.ZodBoolean;
1419
- hideEarnings: z.ZodBoolean;
1420
- topRatedStatus: z.ZodString;
1421
- topRatedStatusEx: z.ZodString;
1422
- rate: z.ZodNumber;
1423
- earned: z.ZodNumber;
1424
- jobSuccessScore: z.ZodNumber;
1425
- rankInfo: z.ZodNullable<z.ZodAny>;
1426
- totalHours: z.ZodNumber;
1427
- totalHourlyJobs: z.ZodNumber;
1428
- totalFpJobs: z.ZodNumber;
1429
- totalCompletedJobs: z.ZodNumber;
1430
- }, "strip", z.ZodTypeAny, {
1431
- hideJss: boolean;
1432
- hideEarnings: boolean;
1433
- topRatedStatus: string;
1434
- topRatedStatusEx: string;
1435
- rate: number;
1436
- earned: number;
1437
- jobSuccessScore: number;
1438
- totalHours: number;
1439
- totalHourlyJobs: number;
1440
- totalFpJobs: number;
1441
- totalCompletedJobs: number;
1442
- rankInfo?: any;
1443
- }, {
1444
- hideJss: boolean;
1445
- hideEarnings: boolean;
1446
- topRatedStatus: string;
1447
- topRatedStatusEx: string;
1448
- rate: number;
1449
- earned: number;
1450
- jobSuccessScore: number;
1451
- totalHours: number;
1452
- totalHourlyJobs: number;
1453
- totalFpJobs: number;
1454
- totalCompletedJobs: number;
1455
- rankInfo?: any;
1456
- }>;
1457
- portfolioItems: z.ZodArray<z.ZodObject<{
1458
- description: z.ZodNullable<z.ZodString>;
1459
- title: z.ZodString;
1460
- videoUrl: z.ZodNullable<z.ZodString>;
1461
- uid: z.ZodString;
1462
- thumbnailUrl: z.ZodNullable<z.ZodString>;
1463
- publicPortfolioItem: z.ZodBoolean;
1464
- category: z.ZodObject<{
1465
- id: z.ZodNullable<z.ZodString>;
1466
- level1: z.ZodNullable<z.ZodString>;
1467
- level2: z.ZodNullable<z.ZodString>;
1468
- }, "strip", z.ZodTypeAny, {
1469
- id: string | null;
1470
- level1: string | null;
1471
- level2: string | null;
1472
- }, {
1473
- id: string | null;
1474
- level1: string | null;
1475
- level2: string | null;
1476
- }>;
1477
- }, "strip", z.ZodTypeAny, {
1478
- uid: string;
1479
- description: string | null;
1480
- title: string;
1481
- videoUrl: string | null;
1482
- thumbnailUrl: string | null;
1483
- publicPortfolioItem: boolean;
1484
- category: {
1485
- id: string | null;
1486
- level1: string | null;
1487
- level2: string | null;
1488
- };
1489
- }, {
1490
- uid: string;
1491
- description: string | null;
1492
- title: string;
1493
- videoUrl: string | null;
1494
- thumbnailUrl: string | null;
1495
- publicPortfolioItem: boolean;
1496
- category: {
1497
- id: string | null;
1498
- level1: string | null;
1499
- level2: string | null;
1500
- };
1501
- }>, "many">;
1502
- totalPortfolioItems: z.ZodNumber;
1503
- specializedProfiles: z.ZodArray<z.ZodAny, "many">;
1504
- isDiversityCertified: z.ZodBoolean;
1505
- isBoosted: z.ZodBoolean;
1506
- boosted: z.ZodBoolean;
1507
- boostedWouldHaveBeen: z.ZodBoolean;
1508
- }, "strip", z.ZodTypeAny, {
1509
- description: string;
1510
- title: string;
1511
- firstName: string;
1512
- lastName: string;
1513
- location: {
1514
- country: string;
1515
- state: string | null;
1516
- city: string | null;
1517
- region: string;
1518
- subregion: string;
1519
- timezone: string;
1520
- zip: string | null;
1521
- };
1522
- chargeRate: {
1523
- rawValue: string;
1524
- currency: string;
1525
- };
1526
- portrait: {
1527
- portrait: string;
1528
- };
1529
- profileUrl: string;
1530
- offerConsultations: boolean;
1531
- shortName: string;
1532
- skills: {
1533
- skill: {
1534
- prettyName: string;
1535
- uid: string;
1536
- };
1537
- uid: string;
1538
- }[];
1539
- stats: {
1540
- hideJss: boolean;
1541
- hideEarnings: boolean;
1542
- topRatedStatus: string;
1543
- topRatedStatusEx: string;
1544
- rate: number;
1545
- earned: number;
1546
- jobSuccessScore: number;
1547
- totalHours: number;
1548
- totalHourlyJobs: number;
1549
- totalFpJobs: number;
1550
- totalCompletedJobs: number;
1551
- rankInfo?: any;
1552
- };
1553
- portfolioItems: {
1554
- uid: string;
1555
- description: string | null;
1556
- title: string;
1557
- videoUrl: string | null;
1558
- thumbnailUrl: string | null;
1559
- publicPortfolioItem: boolean;
1560
- category: {
1561
- id: string | null;
1562
- level1: string | null;
1563
- level2: string | null;
1564
- };
1565
- }[];
1566
- totalPortfolioItems: number;
1567
- specializedProfiles: any[];
1568
- isDiversityCertified: boolean;
1569
- isBoosted: boolean;
1570
- boosted: boolean;
1571
- boostedWouldHaveBeen: boolean;
1572
- jobSummariesAssignmentRids?: any;
1573
- }, {
1574
- description: string;
1575
- title: string;
1576
- firstName: string;
1577
- lastName: string;
1578
- location: {
1579
- country: string;
1580
- state: string | null;
1581
- city: string | null;
1582
- region: string;
1583
- subregion: string;
1584
- timezone: string;
1585
- zip: string | null;
1586
- };
1587
- chargeRate: {
1588
- rawValue: string;
1589
- currency: string;
1590
- };
1591
- portrait: {
1592
- portrait: string;
1593
- };
1594
- profileUrl: string;
1595
- offerConsultations: boolean;
1596
- shortName: string;
1597
- skills: {
1598
- skill: {
1599
- prettyName: string;
1600
- uid: string;
1601
- };
1602
- uid: string;
1603
- }[];
1604
- stats: {
1605
- hideJss: boolean;
1606
- hideEarnings: boolean;
1607
- topRatedStatus: string;
1608
- topRatedStatusEx: string;
1609
- rate: number;
1610
- earned: number;
1611
- jobSuccessScore: number;
1612
- totalHours: number;
1613
- totalHourlyJobs: number;
1614
- totalFpJobs: number;
1615
- totalCompletedJobs: number;
1616
- rankInfo?: any;
1617
- };
1618
- portfolioItems: {
1619
- uid: string;
1620
- description: string | null;
1621
- title: string;
1622
- videoUrl: string | null;
1623
- thumbnailUrl: string | null;
1624
- publicPortfolioItem: boolean;
1625
- category: {
1626
- id: string | null;
1627
- level1: string | null;
1628
- level2: string | null;
1629
- };
1630
- }[];
1631
- totalPortfolioItems: number;
1632
- specializedProfiles: any[];
1633
- isDiversityCertified: boolean;
1634
- isBoosted: boolean;
1635
- boosted: boolean;
1636
- boostedWouldHaveBeen: boolean;
1637
- jobSummariesAssignmentRids?: any;
1638
- }>;
1639
- agency: z.ZodObject<{
1640
- orgId: z.ZodString;
1641
- ciphertext: z.ZodString;
1642
- name: z.ZodString;
1643
- classifications: z.ZodArray<z.ZodAny, "many">;
1644
- logo: z.ZodNullable<z.ZodString>;
1645
- hideEarnings: z.ZodBoolean;
1646
- totalEarnings: z.ZodNumber;
1647
- isAgencyDiversityCertified: z.ZodArray<z.ZodAny, "many">;
1648
- }, "strip", z.ZodTypeAny, {
1649
- hideEarnings: boolean;
1650
- ciphertext: string;
1651
- orgId: string;
1652
- name: string;
1653
- classifications: any[];
1654
- logo: string | null;
1655
- totalEarnings: number;
1656
- isAgencyDiversityCertified: any[];
1657
- }, {
1658
- hideEarnings: boolean;
1659
- ciphertext: string;
1660
- orgId: string;
1661
- name: string;
1662
- classifications: any[];
1663
- logo: string | null;
1664
- totalEarnings: number;
1665
- isAgencyDiversityCertified: any[];
1666
- }>;
1667
- options: z.ZodObject<{
1668
- position: z.ZodNumber;
1669
- }, "strip", z.ZodTypeAny, {
1670
- position: number;
1671
- }, {
1672
- position: number;
1673
- }>;
1674
- }, "strip", z.ZodTypeAny, {
1675
- options: {
1676
- position: number;
1677
- };
1678
- identity: {
1679
- uid: string;
1680
- id: string;
1681
- ciphertext: string;
1682
- };
1683
- isPIBAvailable: boolean;
1684
- profile: {
1685
- description: string;
1686
- title: string;
1687
- firstName: string;
1688
- lastName: string;
1689
- location: {
1690
- country: string;
1691
- state: string | null;
1692
- city: string | null;
1693
- region: string;
1694
- subregion: string;
1695
- timezone: string;
1696
- zip: string | null;
1697
- };
1698
- chargeRate: {
1699
- rawValue: string;
1700
- currency: string;
1701
- };
1702
- portrait: {
1703
- portrait: string;
1704
- };
1705
- profileUrl: string;
1706
- offerConsultations: boolean;
1707
- shortName: string;
1708
- skills: {
1709
- skill: {
1710
- prettyName: string;
1711
- uid: string;
1712
- };
1713
- uid: string;
1714
- }[];
1715
- stats: {
1716
- hideJss: boolean;
1717
- hideEarnings: boolean;
1718
- topRatedStatus: string;
1719
- topRatedStatusEx: string;
1720
- rate: number;
1721
- earned: number;
1722
- jobSuccessScore: number;
1723
- totalHours: number;
1724
- totalHourlyJobs: number;
1725
- totalFpJobs: number;
1726
- totalCompletedJobs: number;
1727
- rankInfo?: any;
1728
- };
1729
- portfolioItems: {
1730
- uid: string;
1731
- description: string | null;
1732
- title: string;
1733
- videoUrl: string | null;
1734
- thumbnailUrl: string | null;
1735
- publicPortfolioItem: boolean;
1736
- category: {
1737
- id: string | null;
1738
- level1: string | null;
1739
- level2: string | null;
1740
- };
1741
- }[];
1742
- totalPortfolioItems: number;
1743
- specializedProfiles: any[];
1744
- isDiversityCertified: boolean;
1745
- isBoosted: boolean;
1746
- boosted: boolean;
1747
- boostedWouldHaveBeen: boolean;
1748
- jobSummariesAssignmentRids?: any;
1749
- };
1750
- agency: {
1751
- hideEarnings: boolean;
1752
- ciphertext: string;
1753
- orgId: string;
1754
- name: string;
1755
- classifications: any[];
1756
- logo: string | null;
1757
- totalEarnings: number;
1758
- isAgencyDiversityCertified: any[];
1759
- };
1760
- }, {
1761
- options: {
1762
- position: number;
1763
- };
1764
- identity: {
1765
- uid: string;
1766
- id: string;
1767
- ciphertext: string;
1768
- };
1769
- isPIBAvailable: boolean;
1770
- profile: {
1771
- description: string;
1772
- title: string;
1773
- firstName: string;
1774
- lastName: string;
1775
- location: {
1776
- country: string;
1777
- state: string | null;
1778
- city: string | null;
1779
- region: string;
1780
- subregion: string;
1781
- timezone: string;
1782
- zip: string | null;
1783
- };
1784
- chargeRate: {
1785
- rawValue: string;
1786
- currency: string;
1787
- };
1788
- portrait: {
1789
- portrait: string;
1790
- };
1791
- profileUrl: string;
1792
- offerConsultations: boolean;
1793
- shortName: string;
1794
- skills: {
1795
- skill: {
1796
- prettyName: string;
1797
- uid: string;
1798
- };
1799
- uid: string;
1800
- }[];
1801
- stats: {
1802
- hideJss: boolean;
1803
- hideEarnings: boolean;
1804
- topRatedStatus: string;
1805
- topRatedStatusEx: string;
1806
- rate: number;
1807
- earned: number;
1808
- jobSuccessScore: number;
1809
- totalHours: number;
1810
- totalHourlyJobs: number;
1811
- totalFpJobs: number;
1812
- totalCompletedJobs: number;
1813
- rankInfo?: any;
1814
- };
1815
- portfolioItems: {
1816
- uid: string;
1817
- description: string | null;
1818
- title: string;
1819
- videoUrl: string | null;
1820
- thumbnailUrl: string | null;
1821
- publicPortfolioItem: boolean;
1822
- category: {
1823
- id: string | null;
1824
- level1: string | null;
1825
- level2: string | null;
1826
- };
1827
- }[];
1828
- totalPortfolioItems: number;
1829
- specializedProfiles: any[];
1830
- isDiversityCertified: boolean;
1831
- isBoosted: boolean;
1832
- boosted: boolean;
1833
- boostedWouldHaveBeen: boolean;
1834
- jobSummariesAssignmentRids?: any;
1835
- };
1836
- agency: {
1837
- hideEarnings: boolean;
1838
- ciphertext: string;
1839
- orgId: string;
1840
- name: string;
1841
- classifications: any[];
1842
- logo: string | null;
1843
- totalEarnings: number;
1844
- isAgencyDiversityCertified: any[];
1845
- };
1846
- }>, "many">;
1847
- currentPage: z.ZodNumber;
1848
- paging: z.ZodObject<{
1849
- total: z.ZodNumber;
1850
- offset: z.ZodNumber;
1851
- count: z.ZodNumber;
1852
- originTotal: z.ZodNumber;
1853
- pagesTotal: z.ZodNumber;
1854
- page: z.ZodNumber;
1855
- perPage: z.ZodNumber;
1856
- }, "strip", z.ZodTypeAny, {
1857
- total: number;
1858
- offset: number;
1859
- count: number;
1860
- originTotal: number;
1861
- pagesTotal: number;
1862
- page: number;
1863
- perPage: number;
1864
- }, {
1865
- total: number;
1866
- offset: number;
1867
- count: number;
1868
- originTotal: number;
1869
- pagesTotal: number;
1870
- page: number;
1871
- perPage: number;
1872
- }>;
1873
- flags: z.ZodObject<{
1874
- portfolioSearch: z.ZodBoolean;
1875
- }, "strip", z.ZodTypeAny, {
1876
- portfolioSearch: boolean;
1877
- }, {
1878
- portfolioSearch: boolean;
1879
- }>;
1880
- searchQueryCache: z.ZodRecord<z.ZodString, z.ZodString>;
1881
- "handle-response-data": z.ZodRecord<z.ZodString, z.ZodAny>;
1882
- }, "strip", z.ZodTypeAny, {
1883
- status: {
1884
- loading: boolean;
1885
- loaded: boolean;
1886
- failed: boolean;
1887
- };
1888
- profiles: {
1889
- options: {
1890
- position: number;
1891
- };
1892
- identity: {
1893
- uid: string;
1894
- id: string;
1895
- ciphertext: string;
1896
- };
1897
- isPIBAvailable: boolean;
1898
- profile: {
1899
- description: string;
1900
- title: string;
1901
- firstName: string;
1902
- lastName: string;
1903
- location: {
1904
- country: string;
1905
- state: string | null;
1906
- city: string | null;
1907
- region: string;
1908
- subregion: string;
1909
- timezone: string;
1910
- zip: string | null;
1911
- };
1912
- chargeRate: {
1913
- rawValue: string;
1914
- currency: string;
1915
- };
1916
- portrait: {
1917
- portrait: string;
1918
- };
1919
- profileUrl: string;
1920
- offerConsultations: boolean;
1921
- shortName: string;
1922
- skills: {
1923
- skill: {
1924
- prettyName: string;
1925
- uid: string;
1926
- };
1927
- uid: string;
1928
- }[];
1929
- stats: {
1930
- hideJss: boolean;
1931
- hideEarnings: boolean;
1932
- topRatedStatus: string;
1933
- topRatedStatusEx: string;
1934
- rate: number;
1935
- earned: number;
1936
- jobSuccessScore: number;
1937
- totalHours: number;
1938
- totalHourlyJobs: number;
1939
- totalFpJobs: number;
1940
- totalCompletedJobs: number;
1941
- rankInfo?: any;
1942
- };
1943
- portfolioItems: {
1944
- uid: string;
1945
- description: string | null;
1946
- title: string;
1947
- videoUrl: string | null;
1948
- thumbnailUrl: string | null;
1949
- publicPortfolioItem: boolean;
1950
- category: {
1951
- id: string | null;
1952
- level1: string | null;
1953
- level2: string | null;
1954
- };
1955
- }[];
1956
- totalPortfolioItems: number;
1957
- specializedProfiles: any[];
1958
- isDiversityCertified: boolean;
1959
- isBoosted: boolean;
1960
- boosted: boolean;
1961
- boostedWouldHaveBeen: boolean;
1962
- jobSummariesAssignmentRids?: any;
1963
- };
1964
- agency: {
1965
- hideEarnings: boolean;
1966
- ciphertext: string;
1967
- orgId: string;
1968
- name: string;
1969
- classifications: any[];
1970
- logo: string | null;
1971
- totalEarnings: number;
1972
- isAgencyDiversityCertified: any[];
1973
- };
1974
- }[];
1975
- currentPage: number;
1976
- paging: {
1977
- total: number;
1978
- offset: number;
1979
- count: number;
1980
- originTotal: number;
1981
- pagesTotal: number;
1982
- page: number;
1983
- perPage: number;
1984
- };
1985
- flags: {
1986
- portfolioSearch: boolean;
1987
- };
1988
- searchQueryCache: Record<string, string>;
1989
- "handle-response-data": Record<string, any>;
1990
- }, {
1991
- status: {
1992
- loading: boolean;
1993
- loaded: boolean;
1994
- failed: boolean;
1995
- };
1996
- profiles: {
1997
- options: {
1998
- position: number;
1999
- };
2000
- identity: {
2001
- uid: string;
2002
- id: string;
2003
- ciphertext: string;
2004
- };
2005
- isPIBAvailable: boolean;
2006
- profile: {
2007
- description: string;
2008
- title: string;
2009
- firstName: string;
2010
- lastName: string;
2011
- location: {
2012
- country: string;
2013
- state: string | null;
2014
- city: string | null;
2015
- region: string;
2016
- subregion: string;
2017
- timezone: string;
2018
- zip: string | null;
2019
- };
2020
- chargeRate: {
2021
- rawValue: string;
2022
- currency: string;
2023
- };
2024
- portrait: {
2025
- portrait: string;
2026
- };
2027
- profileUrl: string;
2028
- offerConsultations: boolean;
2029
- shortName: string;
2030
- skills: {
2031
- skill: {
2032
- prettyName: string;
2033
- uid: string;
2034
- };
2035
- uid: string;
2036
- }[];
2037
- stats: {
2038
- hideJss: boolean;
2039
- hideEarnings: boolean;
2040
- topRatedStatus: string;
2041
- topRatedStatusEx: string;
2042
- rate: number;
2043
- earned: number;
2044
- jobSuccessScore: number;
2045
- totalHours: number;
2046
- totalHourlyJobs: number;
2047
- totalFpJobs: number;
2048
- totalCompletedJobs: number;
2049
- rankInfo?: any;
2050
- };
2051
- portfolioItems: {
2052
- uid: string;
2053
- description: string | null;
2054
- title: string;
2055
- videoUrl: string | null;
2056
- thumbnailUrl: string | null;
2057
- publicPortfolioItem: boolean;
2058
- category: {
2059
- id: string | null;
2060
- level1: string | null;
2061
- level2: string | null;
2062
- };
2063
- }[];
2064
- totalPortfolioItems: number;
2065
- specializedProfiles: any[];
2066
- isDiversityCertified: boolean;
2067
- isBoosted: boolean;
2068
- boosted: boolean;
2069
- boostedWouldHaveBeen: boolean;
2070
- jobSummariesAssignmentRids?: any;
2071
- };
2072
- agency: {
2073
- hideEarnings: boolean;
2074
- ciphertext: string;
2075
- orgId: string;
2076
- name: string;
2077
- classifications: any[];
2078
- logo: string | null;
2079
- totalEarnings: number;
2080
- isAgencyDiversityCertified: any[];
2081
- };
2082
- }[];
2083
- currentPage: number;
2084
- paging: {
2085
- total: number;
2086
- offset: number;
2087
- count: number;
2088
- originTotal: number;
2089
- pagesTotal: number;
2090
- page: number;
2091
- perPage: number;
2092
- };
2093
- flags: {
2094
- portfolioSearch: boolean;
2095
- };
2096
- searchQueryCache: Record<string, string>;
2097
- "handle-response-data": Record<string, any>;
2098
- }>;
2099
- }, "strip", z.ZodTypeAny, {
2100
- profilesSearch: {
2101
- status: {
2102
- loading: boolean;
2103
- loaded: boolean;
2104
- failed: boolean;
2105
- };
2106
- profiles: {
2107
- options: {
2108
- position: number;
2109
- };
2110
- identity: {
2111
- uid: string;
2112
- id: string;
2113
- ciphertext: string;
2114
- };
2115
- isPIBAvailable: boolean;
2116
- profile: {
2117
- description: string;
2118
- title: string;
2119
- firstName: string;
2120
- lastName: string;
2121
- location: {
2122
- country: string;
2123
- state: string | null;
2124
- city: string | null;
2125
- region: string;
2126
- subregion: string;
2127
- timezone: string;
2128
- zip: string | null;
2129
- };
2130
- chargeRate: {
2131
- rawValue: string;
2132
- currency: string;
2133
- };
2134
- portrait: {
2135
- portrait: string;
2136
- };
2137
- profileUrl: string;
2138
- offerConsultations: boolean;
2139
- shortName: string;
2140
- skills: {
2141
- skill: {
2142
- prettyName: string;
2143
- uid: string;
2144
- };
2145
- uid: string;
2146
- }[];
2147
- stats: {
2148
- hideJss: boolean;
2149
- hideEarnings: boolean;
2150
- topRatedStatus: string;
2151
- topRatedStatusEx: string;
2152
- rate: number;
2153
- earned: number;
2154
- jobSuccessScore: number;
2155
- totalHours: number;
2156
- totalHourlyJobs: number;
2157
- totalFpJobs: number;
2158
- totalCompletedJobs: number;
2159
- rankInfo?: any;
2160
- };
2161
- portfolioItems: {
2162
- uid: string;
2163
- description: string | null;
2164
- title: string;
2165
- videoUrl: string | null;
2166
- thumbnailUrl: string | null;
2167
- publicPortfolioItem: boolean;
2168
- category: {
2169
- id: string | null;
2170
- level1: string | null;
2171
- level2: string | null;
2172
- };
2173
- }[];
2174
- totalPortfolioItems: number;
2175
- specializedProfiles: any[];
2176
- isDiversityCertified: boolean;
2177
- isBoosted: boolean;
2178
- boosted: boolean;
2179
- boostedWouldHaveBeen: boolean;
2180
- jobSummariesAssignmentRids?: any;
2181
- };
2182
- agency: {
2183
- hideEarnings: boolean;
2184
- ciphertext: string;
2185
- orgId: string;
2186
- name: string;
2187
- classifications: any[];
2188
- logo: string | null;
2189
- totalEarnings: number;
2190
- isAgencyDiversityCertified: any[];
2191
- };
2192
- }[];
2193
- currentPage: number;
2194
- paging: {
2195
- total: number;
2196
- offset: number;
2197
- count: number;
2198
- originTotal: number;
2199
- pagesTotal: number;
2200
- page: number;
2201
- perPage: number;
2202
- };
2203
- flags: {
2204
- portfolioSearch: boolean;
2205
- };
2206
- searchQueryCache: Record<string, string>;
2207
- "handle-response-data": Record<string, any>;
2208
- };
2209
- }, {
2210
- profilesSearch: {
2211
- status: {
2212
- loading: boolean;
2213
- loaded: boolean;
2214
- failed: boolean;
2215
- };
2216
- profiles: {
2217
- options: {
2218
- position: number;
2219
- };
2220
- identity: {
2221
- uid: string;
2222
- id: string;
2223
- ciphertext: string;
2224
- };
2225
- isPIBAvailable: boolean;
2226
- profile: {
2227
- description: string;
2228
- title: string;
2229
- firstName: string;
2230
- lastName: string;
2231
- location: {
2232
- country: string;
2233
- state: string | null;
2234
- city: string | null;
2235
- region: string;
2236
- subregion: string;
2237
- timezone: string;
2238
- zip: string | null;
2239
- };
2240
- chargeRate: {
2241
- rawValue: string;
2242
- currency: string;
2243
- };
2244
- portrait: {
2245
- portrait: string;
2246
- };
2247
- profileUrl: string;
2248
- offerConsultations: boolean;
2249
- shortName: string;
2250
- skills: {
2251
- skill: {
2252
- prettyName: string;
2253
- uid: string;
2254
- };
2255
- uid: string;
2256
- }[];
2257
- stats: {
2258
- hideJss: boolean;
2259
- hideEarnings: boolean;
2260
- topRatedStatus: string;
2261
- topRatedStatusEx: string;
2262
- rate: number;
2263
- earned: number;
2264
- jobSuccessScore: number;
2265
- totalHours: number;
2266
- totalHourlyJobs: number;
2267
- totalFpJobs: number;
2268
- totalCompletedJobs: number;
2269
- rankInfo?: any;
2270
- };
2271
- portfolioItems: {
2272
- uid: string;
2273
- description: string | null;
2274
- title: string;
2275
- videoUrl: string | null;
2276
- thumbnailUrl: string | null;
2277
- publicPortfolioItem: boolean;
2278
- category: {
2279
- id: string | null;
2280
- level1: string | null;
2281
- level2: string | null;
2282
- };
2283
- }[];
2284
- totalPortfolioItems: number;
2285
- specializedProfiles: any[];
2286
- isDiversityCertified: boolean;
2287
- isBoosted: boolean;
2288
- boosted: boolean;
2289
- boostedWouldHaveBeen: boolean;
2290
- jobSummariesAssignmentRids?: any;
2291
- };
2292
- agency: {
2293
- hideEarnings: boolean;
2294
- ciphertext: string;
2295
- orgId: string;
2296
- name: string;
2297
- classifications: any[];
2298
- logo: string | null;
2299
- totalEarnings: number;
2300
- isAgencyDiversityCertified: any[];
2301
- };
2302
- }[];
2303
- currentPage: number;
2304
- paging: {
2305
- total: number;
2306
- offset: number;
2307
- count: number;
2308
- originTotal: number;
2309
- pagesTotal: number;
2310
- page: number;
2311
- perPage: number;
2312
- };
2313
- flags: {
2314
- portfolioSearch: boolean;
2315
- };
2316
- searchQueryCache: Record<string, string>;
2317
- "handle-response-data": Record<string, any>;
2318
- };
2319
- }>;
2320
- }, "strip", z.ZodTypeAny, {
2321
- state: {
2322
- profilesSearch: {
2323
- status: {
2324
- loading: boolean;
2325
- loaded: boolean;
2326
- failed: boolean;
2327
- };
2328
- profiles: {
2329
- options: {
2330
- position: number;
2331
- };
2332
- identity: {
2333
- uid: string;
2334
- id: string;
2335
- ciphertext: string;
2336
- };
2337
- isPIBAvailable: boolean;
2338
- profile: {
2339
- description: string;
2340
- title: string;
2341
- firstName: string;
2342
- lastName: string;
2343
- location: {
2344
- country: string;
2345
- state: string | null;
2346
- city: string | null;
2347
- region: string;
2348
- subregion: string;
2349
- timezone: string;
2350
- zip: string | null;
2351
- };
2352
- chargeRate: {
2353
- rawValue: string;
2354
- currency: string;
2355
- };
2356
- portrait: {
2357
- portrait: string;
2358
- };
2359
- profileUrl: string;
2360
- offerConsultations: boolean;
2361
- shortName: string;
2362
- skills: {
2363
- skill: {
2364
- prettyName: string;
2365
- uid: string;
2366
- };
2367
- uid: string;
2368
- }[];
2369
- stats: {
2370
- hideJss: boolean;
2371
- hideEarnings: boolean;
2372
- topRatedStatus: string;
2373
- topRatedStatusEx: string;
2374
- rate: number;
2375
- earned: number;
2376
- jobSuccessScore: number;
2377
- totalHours: number;
2378
- totalHourlyJobs: number;
2379
- totalFpJobs: number;
2380
- totalCompletedJobs: number;
2381
- rankInfo?: any;
2382
- };
2383
- portfolioItems: {
2384
- uid: string;
2385
- description: string | null;
2386
- title: string;
2387
- videoUrl: string | null;
2388
- thumbnailUrl: string | null;
2389
- publicPortfolioItem: boolean;
2390
- category: {
2391
- id: string | null;
2392
- level1: string | null;
2393
- level2: string | null;
2394
- };
2395
- }[];
2396
- totalPortfolioItems: number;
2397
- specializedProfiles: any[];
2398
- isDiversityCertified: boolean;
2399
- isBoosted: boolean;
2400
- boosted: boolean;
2401
- boostedWouldHaveBeen: boolean;
2402
- jobSummariesAssignmentRids?: any;
2403
- };
2404
- agency: {
2405
- hideEarnings: boolean;
2406
- ciphertext: string;
2407
- orgId: string;
2408
- name: string;
2409
- classifications: any[];
2410
- logo: string | null;
2411
- totalEarnings: number;
2412
- isAgencyDiversityCertified: any[];
2413
- };
2414
- }[];
2415
- currentPage: number;
2416
- paging: {
2417
- total: number;
2418
- offset: number;
2419
- count: number;
2420
- originTotal: number;
2421
- pagesTotal: number;
2422
- page: number;
2423
- perPage: number;
2424
- };
2425
- flags: {
2426
- portfolioSearch: boolean;
2427
- };
2428
- searchQueryCache: Record<string, string>;
2429
- "handle-response-data": Record<string, any>;
2430
- };
2431
- };
2432
- }, {
2433
- state: {
2434
- profilesSearch: {
2435
- status: {
2436
- loading: boolean;
2437
- loaded: boolean;
2438
- failed: boolean;
2439
- };
2440
- profiles: {
2441
- options: {
2442
- position: number;
2443
- };
2444
- identity: {
2445
- uid: string;
2446
- id: string;
2447
- ciphertext: string;
2448
- };
2449
- isPIBAvailable: boolean;
2450
- profile: {
2451
- description: string;
2452
- title: string;
2453
- firstName: string;
2454
- lastName: string;
2455
- location: {
2456
- country: string;
2457
- state: string | null;
2458
- city: string | null;
2459
- region: string;
2460
- subregion: string;
2461
- timezone: string;
2462
- zip: string | null;
2463
- };
2464
- chargeRate: {
2465
- rawValue: string;
2466
- currency: string;
2467
- };
2468
- portrait: {
2469
- portrait: string;
2470
- };
2471
- profileUrl: string;
2472
- offerConsultations: boolean;
2473
- shortName: string;
2474
- skills: {
2475
- skill: {
2476
- prettyName: string;
2477
- uid: string;
2478
- };
2479
- uid: string;
2480
- }[];
2481
- stats: {
2482
- hideJss: boolean;
2483
- hideEarnings: boolean;
2484
- topRatedStatus: string;
2485
- topRatedStatusEx: string;
2486
- rate: number;
2487
- earned: number;
2488
- jobSuccessScore: number;
2489
- totalHours: number;
2490
- totalHourlyJobs: number;
2491
- totalFpJobs: number;
2492
- totalCompletedJobs: number;
2493
- rankInfo?: any;
2494
- };
2495
- portfolioItems: {
2496
- uid: string;
2497
- description: string | null;
2498
- title: string;
2499
- videoUrl: string | null;
2500
- thumbnailUrl: string | null;
2501
- publicPortfolioItem: boolean;
2502
- category: {
2503
- id: string | null;
2504
- level1: string | null;
2505
- level2: string | null;
2506
- };
2507
- }[];
2508
- totalPortfolioItems: number;
2509
- specializedProfiles: any[];
2510
- isDiversityCertified: boolean;
2511
- isBoosted: boolean;
2512
- boosted: boolean;
2513
- boostedWouldHaveBeen: boolean;
2514
- jobSummariesAssignmentRids?: any;
2515
- };
2516
- agency: {
2517
- hideEarnings: boolean;
2518
- ciphertext: string;
2519
- orgId: string;
2520
- name: string;
2521
- classifications: any[];
2522
- logo: string | null;
2523
- totalEarnings: number;
2524
- isAgencyDiversityCertified: any[];
2525
- };
2526
- }[];
2527
- currentPage: number;
2528
- paging: {
2529
- total: number;
2530
- offset: number;
2531
- count: number;
2532
- originTotal: number;
2533
- pagesTotal: number;
2534
- page: number;
2535
- perPage: number;
2536
- };
2537
- flags: {
2538
- portfolioSearch: boolean;
2539
- };
2540
- searchQueryCache: Record<string, string>;
2541
- "handle-response-data": Record<string, any>;
2542
- };
2543
- };
2544
- }>;
2545
- export interface NuxtStateProfile extends z.infer<typeof nuxtStateProfileSchema> {
2546
- }
2547
- export interface NuxtStateProfileSearch extends z.infer<typeof nuxtStateProfilesSearchSchema> {
2548
- }
2549
- export interface ProfileSearchNuxtState extends z.infer<typeof profileSearchNuxtStateSchema> {
2550
- }
2551
- export {};