lancer-shared 1.2.301 → 1.2.303

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/dist/bundle.cjs.js +1 -0
  2. package/dist/bundle.cjs.js.map +1 -1
  3. package/dist/bundle.esm.js +1 -0
  4. package/dist/bundle.esm.js.map +1 -1
  5. package/dist/schemas/account/bidder-account.d.ts +40 -40
  6. package/dist/schemas/account/scraper-account.d.ts +27 -27
  7. package/dist/schemas/agent/index.d.ts +273 -273
  8. package/dist/schemas/agent/proposal.d.ts +4 -4
  9. package/dist/schemas/bidder/bid.d.ts +2358 -2358
  10. package/dist/schemas/campaign/campaign-analytics.d.ts +1404 -1404
  11. package/dist/schemas/campaign/campaign-chat-bot.d.ts +24 -24
  12. package/dist/schemas/campaign/campaign-expenses.d.ts +2 -2
  13. package/dist/schemas/campaign/campaign-insights.d.ts +12 -12
  14. package/dist/schemas/campaign/campaign.d.ts +566 -566
  15. package/dist/schemas/campaign/sequence/boost-node.d.ts +2 -2
  16. package/dist/schemas/campaign/sequence/client-size-node.d.ts +8 -8
  17. package/dist/schemas/campaign/sequence/client-spent-node.d.ts +16 -16
  18. package/dist/schemas/campaign/sequence/hire-rate-node.d.ts +16 -16
  19. package/dist/schemas/campaign/sequence/hourly-rate-node.d.ts +16 -16
  20. package/dist/schemas/campaign/sequence/rating-node.d.ts +16 -16
  21. package/dist/schemas/campaign/sequence/suitability-node.d.ts +16 -16
  22. package/dist/schemas/dashboard/index.d.ts +46 -46
  23. package/dist/schemas/golden-dataset/sample.d.ts +12 -12
  24. package/dist/schemas/infrastructure/index.d.ts +8 -8
  25. package/dist/schemas/invoice/index.d.ts +55 -55
  26. package/dist/schemas/job/index.d.ts +189 -189
  27. package/dist/schemas/job/job-api.d.ts +4 -4
  28. package/dist/schemas/job/job-details.d.ts +726 -726
  29. package/dist/schemas/job/job-filters.d.ts +55 -55
  30. package/dist/schemas/job/job-listing.d.ts +96 -96
  31. package/dist/schemas/job/nuxt.d.ts +130 -130
  32. package/dist/schemas/lead/index.d.ts +1040 -1040
  33. package/dist/schemas/lead/lead-status.d.ts +4 -4
  34. package/dist/schemas/logger/feed/feed-chunk-enrich.d.ts +16 -16
  35. package/dist/schemas/logger/feed/feed-enrich.d.ts +12 -12
  36. package/dist/schemas/logger/feed/feed-job-enrich.d.ts +272 -272
  37. package/dist/schemas/logger/feed/feed-scrape.d.ts +6 -6
  38. package/dist/schemas/logger/log-event.d.ts +103 -103
  39. package/dist/schemas/logger/scraper-events.d.ts +73 -73
  40. package/dist/schemas/notifications/index.d.ts +4 -4
  41. package/dist/schemas/organization/billing.d.ts +2 -2
  42. package/dist/schemas/organization/cover-letter.d.ts +4 -4
  43. package/dist/schemas/organization/index.d.ts +112 -112
  44. package/dist/schemas/organization/onboarding.d.ts +6 -6
  45. package/dist/schemas/organization/organization-leads.d.ts +4 -4
  46. package/dist/schemas/organization/subscription.d.ts +12 -12
  47. package/dist/schemas/plan/index.d.ts +55 -55
  48. package/dist/schemas/proxy/proxy.d.ts +29 -29
  49. package/dist/schemas/saved-search/index.d.ts +4 -4
  50. package/dist/schemas/scraper/scrape-payload.d.ts +876 -876
  51. package/dist/schemas/scraper/scrape-result.d.ts +174 -174
  52. package/dist/schemas/scraper/upwork-profile.d.ts +16 -16
  53. package/dist/schemas/shared.d.ts +1 -1
  54. package/dist/schemas/talent/index.d.ts +750 -750
  55. package/dist/schemas/transaction/index.d.ts +20 -20
  56. package/dist/schemas/upwork-analytics/index.d.ts +22 -22
  57. package/dist/schemas/usage/index.d.ts +16 -16
  58. package/dist/schemas/usage-event/index.d.ts +11 -11
  59. package/dist/schemas/user/index.d.ts +4 -4
  60. package/package.json +2 -2
@@ -29,21 +29,21 @@ export declare const bidderAccountAgencySchema: z.ZodObject<{
29
29
  agencyId: z.ZodNullable<z.ZodString>;
30
30
  }, "strip", z.ZodTypeAny, {
31
31
  name: string;
32
- organizationId: string;
33
32
  logoUrl: string | null;
34
33
  contractors: {
35
34
  name: string;
36
35
  specializedProfiles: string[];
37
36
  }[];
37
+ organizationId: string;
38
38
  agencyId: string | null;
39
39
  }, {
40
40
  name: string;
41
- organizationId: string;
42
41
  logoUrl: string | null;
43
42
  contractors: {
44
43
  name: string;
45
44
  specializedProfiles: string[];
46
45
  }[];
46
+ organizationId: string;
47
47
  agencyId: string | null;
48
48
  }>;
49
49
  export declare const bidderAccountSchema: z.ZodObject<{
@@ -78,21 +78,21 @@ export declare const bidderAccountSchema: z.ZodObject<{
78
78
  agencyId: z.ZodNullable<z.ZodString>;
79
79
  }, "strip", z.ZodTypeAny, {
80
80
  name: string;
81
- organizationId: string;
82
81
  logoUrl: string | null;
83
82
  contractors: {
84
83
  name: string;
85
84
  specializedProfiles: string[];
86
85
  }[];
86
+ organizationId: string;
87
87
  agencyId: string | null;
88
88
  }, {
89
89
  name: string;
90
- organizationId: string;
91
90
  logoUrl: string | null;
92
91
  contractors: {
93
92
  name: string;
94
93
  specializedProfiles: string[];
95
94
  }[];
95
+ organizationId: string;
96
96
  agencyId: string | null;
97
97
  }>, "many">>;
98
98
  specialisedProfiles: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
@@ -104,13 +104,12 @@ export declare const bidderAccountSchema: z.ZodObject<{
104
104
  status: z.ZodEnum<["connected", "failed_to_connect", "connecting", "draft", "reconnecting"]>;
105
105
  errorMessage: z.ZodNullable<z.ZodString>;
106
106
  }, "strip", z.ZodTypeAny, {
107
- id: string;
108
107
  name: string | null;
108
+ status: "connected" | "failed_to_connect" | "connecting" | "draft" | "reconnecting";
109
+ id: string;
110
+ provider: "user-provided" | "lancer-provided";
109
111
  email: string;
110
- status: "connected" | "connecting" | "failed_to_connect" | "draft" | "reconnecting";
111
- region: "USOnly" | "UKOnly" | "Worldwide" | "All";
112
112
  password: string;
113
- provider: "user-provided" | "lancer-provided";
114
113
  isConnecting: boolean | null;
115
114
  securityQuestionAnswer: string | null;
116
115
  assignedOrganizations: string[];
@@ -121,29 +120,29 @@ export declare const bidderAccountSchema: z.ZodObject<{
121
120
  profilePhotoUrl: string | null;
122
121
  agencies: {
123
122
  name: string;
124
- organizationId: string;
125
123
  logoUrl: string | null;
126
124
  contractors: {
127
125
  name: string;
128
126
  specializedProfiles: string[];
129
127
  }[];
128
+ organizationId: string;
130
129
  agencyId: string | null;
131
130
  }[] | null;
132
131
  specialisedProfiles: string[] | null;
133
132
  instanceId: string | null;
134
133
  createdAt: number;
135
134
  updatedAt: number;
135
+ region: "Worldwide" | "USOnly" | "UKOnly" | "All";
136
136
  errorMessage: string | null;
137
137
  googleOauthTokens?: any;
138
138
  isProtected?: boolean | undefined;
139
139
  }, {
140
- id: string;
141
140
  name: string | null;
141
+ status: "connected" | "failed_to_connect" | "connecting" | "draft" | "reconnecting";
142
+ id: string;
143
+ provider: "user-provided" | "lancer-provided";
142
144
  email: string;
143
- status: "connected" | "connecting" | "failed_to_connect" | "draft" | "reconnecting";
144
- region: "USOnly" | "UKOnly" | "Worldwide" | "All";
145
145
  password: string;
146
- provider: "user-provided" | "lancer-provided";
147
146
  isConnecting: boolean | null;
148
147
  securityQuestionAnswer: string | null;
149
148
  assignedOrganizations: string[];
@@ -154,18 +153,19 @@ export declare const bidderAccountSchema: z.ZodObject<{
154
153
  profilePhotoUrl: string | null;
155
154
  agencies: {
156
155
  name: string;
157
- organizationId: string;
158
156
  logoUrl: string | null;
159
157
  contractors: {
160
158
  name: string;
161
159
  specializedProfiles: string[];
162
160
  }[];
161
+ organizationId: string;
163
162
  agencyId: string | null;
164
163
  }[] | null;
165
164
  specialisedProfiles: string[] | null;
166
165
  instanceId: string | null;
167
166
  createdAt: number;
168
167
  updatedAt: number;
168
+ region: "Worldwide" | "USOnly" | "UKOnly" | "All";
169
169
  errorMessage: string | null;
170
170
  googleOauthTokens?: any;
171
171
  isProtected?: boolean | undefined;
@@ -221,21 +221,21 @@ export declare const createBidderAccountSchema: z.ZodObject<z.objectUtil.extendS
221
221
  agencyId: z.ZodNullable<z.ZodString>;
222
222
  }, "strip", z.ZodTypeAny, {
223
223
  name: string;
224
- organizationId: string;
225
224
  logoUrl: string | null;
226
225
  contractors: {
227
226
  name: string;
228
227
  specializedProfiles: string[];
229
228
  }[];
229
+ organizationId: string;
230
230
  agencyId: string | null;
231
231
  }, {
232
232
  name: string;
233
- organizationId: string;
234
233
  logoUrl: string | null;
235
234
  contractors: {
236
235
  name: string;
237
236
  specializedProfiles: string[];
238
237
  }[];
238
+ organizationId: string;
239
239
  agencyId: string | null;
240
240
  }>, "many">>;
241
241
  specialisedProfiles: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
@@ -246,14 +246,13 @@ export declare const createBidderAccountSchema: z.ZodObject<z.objectUtil.extendS
246
246
  isProtected: z.ZodOptional<z.ZodBoolean>;
247
247
  status: z.ZodEnum<["connected", "failed_to_connect", "connecting", "draft", "reconnecting"]>;
248
248
  errorMessage: z.ZodNullable<z.ZodString>;
249
- }, "name" | "email" | "region" | "password" | "provider" | "securityQuestionAnswer" | "assignedOrganizations" | "multiLoginProfileId" | "proxyId" | "profilePhotoUrl" | "agencies">, {
249
+ }, "name" | "provider" | "email" | "password" | "securityQuestionAnswer" | "assignedOrganizations" | "multiLoginProfileId" | "proxyId" | "profilePhotoUrl" | "agencies" | "region">, {
250
250
  proxyCountry: z.ZodNullable<z.ZodEnum<["US", "CA", "GB", "AF", "AL", "DZ", "AD", "AO", "AR", "AM", "AU", "AT", "AZ", "BD", "BY", "BE", "BA", "BR", "BG", "CM", "CF", "CL", "CN", "CO", "CR", "HR", "CY", "CZ", "DK", "DM", "DO", "EC", "EG", "SV", "EE", "ET", "FI", "FR", "GE", "DE", "GH", "GR", "GL", "GD", "GT", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IL", "IT", "JM", "JP", "JO", "KZ", "KR", "LV", "LB", "LT", "LU", "MK", "MW", "MY", "MT", "MX", "FM", "MD", "MC", "MN", "ME", "MA", "NL", "NZ", "NI", "NG", "NO", "PK", "PW", "PY", "PE", "PH", "PL", "PT", "PR", "QA", "RO", "RU", "SM", "SA", "SN", "RS", "SG", "SK", "SI", "SO", "ZA", "ES", "LK", "SR", "SE", "CH", "TH", "TR", "UG", "UA", "AE", "UY", "UZ", "VE", "VN", "YE", "ZM", "ZW"]>>;
251
251
  }>, "strip", z.ZodTypeAny, {
252
252
  name: string | null;
253
+ provider: "user-provided" | "lancer-provided";
253
254
  email: string;
254
- region: "USOnly" | "UKOnly" | "Worldwide" | "All";
255
255
  password: string;
256
- provider: "user-provided" | "lancer-provided";
257
256
  securityQuestionAnswer: string | null;
258
257
  assignedOrganizations: string[];
259
258
  multiLoginProfileId: string | null;
@@ -261,21 +260,21 @@ export declare const createBidderAccountSchema: z.ZodObject<z.objectUtil.extendS
261
260
  profilePhotoUrl: string | null;
262
261
  agencies: {
263
262
  name: string;
264
- organizationId: string;
265
263
  logoUrl: string | null;
266
264
  contractors: {
267
265
  name: string;
268
266
  specializedProfiles: string[];
269
267
  }[];
268
+ organizationId: string;
270
269
  agencyId: string | null;
271
270
  }[] | null;
271
+ region: "Worldwide" | "USOnly" | "UKOnly" | "All";
272
272
  proxyCountry: "US" | "CA" | "GB" | "AF" | "AL" | "DZ" | "AD" | "AO" | "AR" | "AM" | "AU" | "AT" | "AZ" | "BD" | "BY" | "BE" | "BA" | "BR" | "BG" | "CM" | "CF" | "CL" | "CN" | "CO" | "CR" | "HR" | "CY" | "CZ" | "DK" | "DM" | "DO" | "EC" | "EG" | "SV" | "EE" | "ET" | "FI" | "FR" | "GE" | "DE" | "GH" | "GR" | "GL" | "GD" | "GT" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IL" | "IT" | "JM" | "JP" | "JO" | "KZ" | "KR" | "LV" | "LB" | "LT" | "LU" | "MK" | "MW" | "MY" | "MT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MA" | "NL" | "NZ" | "NI" | "NG" | "NO" | "PK" | "PW" | "PY" | "PE" | "PH" | "PL" | "PT" | "PR" | "QA" | "RO" | "RU" | "SM" | "SA" | "SN" | "RS" | "SG" | "SK" | "SI" | "SO" | "ZA" | "ES" | "LK" | "SR" | "SE" | "CH" | "TH" | "TR" | "UG" | "UA" | "AE" | "UY" | "UZ" | "VE" | "VN" | "YE" | "ZM" | "ZW" | null;
273
273
  }, {
274
274
  name: string | null;
275
+ provider: "user-provided" | "lancer-provided";
275
276
  email: string;
276
- region: "USOnly" | "UKOnly" | "Worldwide" | "All";
277
277
  password: string;
278
- provider: "user-provided" | "lancer-provided";
279
278
  securityQuestionAnswer: string | null;
280
279
  assignedOrganizations: string[];
281
280
  multiLoginProfileId: string | null;
@@ -283,23 +282,23 @@ export declare const createBidderAccountSchema: z.ZodObject<z.objectUtil.extendS
283
282
  profilePhotoUrl: string | null;
284
283
  agencies: {
285
284
  name: string;
286
- organizationId: string;
287
285
  logoUrl: string | null;
288
286
  contractors: {
289
287
  name: string;
290
288
  specializedProfiles: string[];
291
289
  }[];
290
+ organizationId: string;
292
291
  agencyId: string | null;
293
292
  }[] | null;
293
+ region: "Worldwide" | "USOnly" | "UKOnly" | "All";
294
294
  proxyCountry: "US" | "CA" | "GB" | "AF" | "AL" | "DZ" | "AD" | "AO" | "AR" | "AM" | "AU" | "AT" | "AZ" | "BD" | "BY" | "BE" | "BA" | "BR" | "BG" | "CM" | "CF" | "CL" | "CN" | "CO" | "CR" | "HR" | "CY" | "CZ" | "DK" | "DM" | "DO" | "EC" | "EG" | "SV" | "EE" | "ET" | "FI" | "FR" | "GE" | "DE" | "GH" | "GR" | "GL" | "GD" | "GT" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IL" | "IT" | "JM" | "JP" | "JO" | "KZ" | "KR" | "LV" | "LB" | "LT" | "LU" | "MK" | "MW" | "MY" | "MT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MA" | "NL" | "NZ" | "NI" | "NG" | "NO" | "PK" | "PW" | "PY" | "PE" | "PH" | "PL" | "PT" | "PR" | "QA" | "RO" | "RU" | "SM" | "SA" | "SN" | "RS" | "SG" | "SK" | "SI" | "SO" | "ZA" | "ES" | "LK" | "SR" | "SE" | "CH" | "TH" | "TR" | "UG" | "UA" | "AE" | "UY" | "UZ" | "VE" | "VN" | "YE" | "ZM" | "ZW" | null;
295
295
  }>;
296
296
  export declare const updateBidderAccountSchema: z.ZodObject<{
297
297
  name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
298
- email: z.ZodOptional<z.ZodString>;
299
298
  status: z.ZodOptional<z.ZodEnum<["connected", "failed_to_connect", "connecting", "draft", "reconnecting"]>>;
300
- region: z.ZodOptional<z.ZodEnum<["Worldwide", "USOnly", "UKOnly", "All"]>>;
301
- password: z.ZodOptional<z.ZodString>;
302
299
  provider: z.ZodOptional<z.ZodEnum<["user-provided", "lancer-provided"]>>;
300
+ email: z.ZodOptional<z.ZodString>;
301
+ password: z.ZodOptional<z.ZodString>;
303
302
  isConnecting: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
304
303
  securityQuestionAnswer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
305
304
  assignedOrganizations: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -326,36 +325,36 @@ export declare const updateBidderAccountSchema: z.ZodObject<{
326
325
  agencyId: z.ZodNullable<z.ZodString>;
327
326
  }, "strip", z.ZodTypeAny, {
328
327
  name: string;
329
- organizationId: string;
330
328
  logoUrl: string | null;
331
329
  contractors: {
332
330
  name: string;
333
331
  specializedProfiles: string[];
334
332
  }[];
333
+ organizationId: string;
335
334
  agencyId: string | null;
336
335
  }, {
337
336
  name: string;
338
- organizationId: string;
339
337
  logoUrl: string | null;
340
338
  contractors: {
341
339
  name: string;
342
340
  specializedProfiles: string[];
343
341
  }[];
342
+ organizationId: string;
344
343
  agencyId: string | null;
345
344
  }>, "many">>>;
346
345
  specialisedProfiles: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
347
346
  instanceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
348
347
  createdAt: z.ZodOptional<z.ZodNumber>;
349
348
  updatedAt: z.ZodOptional<z.ZodNumber>;
349
+ region: z.ZodOptional<z.ZodEnum<["Worldwide", "USOnly", "UKOnly", "All"]>>;
350
350
  isProtected: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
351
351
  errorMessage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
352
352
  }, "strip", z.ZodTypeAny, {
353
353
  name?: string | null | undefined;
354
+ status?: "connected" | "failed_to_connect" | "connecting" | "draft" | "reconnecting" | undefined;
355
+ provider?: "user-provided" | "lancer-provided" | undefined;
354
356
  email?: string | undefined;
355
- status?: "connected" | "connecting" | "failed_to_connect" | "draft" | "reconnecting" | undefined;
356
- region?: "USOnly" | "UKOnly" | "Worldwide" | "All" | undefined;
357
357
  password?: string | undefined;
358
- provider?: "user-provided" | "lancer-provided" | undefined;
359
358
  isConnecting?: boolean | null | undefined;
360
359
  securityQuestionAnswer?: string | null | undefined;
361
360
  assignedOrganizations?: string[] | undefined;
@@ -367,27 +366,27 @@ export declare const updateBidderAccountSchema: z.ZodObject<{
367
366
  profilePhotoUrl?: string | null | undefined;
368
367
  agencies?: {
369
368
  name: string;
370
- organizationId: string;
371
369
  logoUrl: string | null;
372
370
  contractors: {
373
371
  name: string;
374
372
  specializedProfiles: string[];
375
373
  }[];
374
+ organizationId: string;
376
375
  agencyId: string | null;
377
376
  }[] | null | undefined;
378
377
  specialisedProfiles?: string[] | null | undefined;
379
378
  instanceId?: string | null | undefined;
380
379
  createdAt?: number | undefined;
381
380
  updatedAt?: number | undefined;
381
+ region?: "Worldwide" | "USOnly" | "UKOnly" | "All" | undefined;
382
382
  isProtected?: boolean | undefined;
383
383
  errorMessage?: string | null | undefined;
384
384
  }, {
385
385
  name?: string | null | undefined;
386
+ status?: "connected" | "failed_to_connect" | "connecting" | "draft" | "reconnecting" | undefined;
387
+ provider?: "user-provided" | "lancer-provided" | undefined;
386
388
  email?: string | undefined;
387
- status?: "connected" | "connecting" | "failed_to_connect" | "draft" | "reconnecting" | undefined;
388
- region?: "USOnly" | "UKOnly" | "Worldwide" | "All" | undefined;
389
389
  password?: string | undefined;
390
- provider?: "user-provided" | "lancer-provided" | undefined;
391
390
  isConnecting?: boolean | null | undefined;
392
391
  securityQuestionAnswer?: string | null | undefined;
393
392
  assignedOrganizations?: string[] | undefined;
@@ -399,18 +398,19 @@ export declare const updateBidderAccountSchema: z.ZodObject<{
399
398
  profilePhotoUrl?: string | null | undefined;
400
399
  agencies?: {
401
400
  name: string;
402
- organizationId: string;
403
401
  logoUrl: string | null;
404
402
  contractors: {
405
403
  name: string;
406
404
  specializedProfiles: string[];
407
405
  }[];
406
+ organizationId: string;
408
407
  agencyId: string | null;
409
408
  }[] | null | undefined;
410
409
  specialisedProfiles?: string[] | null | undefined;
411
410
  instanceId?: string | null | undefined;
412
411
  createdAt?: number | undefined;
413
412
  updatedAt?: number | undefined;
413
+ region?: "Worldwide" | "USOnly" | "UKOnly" | "All" | undefined;
414
414
  isProtected?: boolean | undefined;
415
415
  errorMessage?: string | null | undefined;
416
416
  }>;
@@ -444,32 +444,32 @@ export declare const verifyBidderAccountCredentialsResponseSchema: z.ZodObject<{
444
444
  agencyId: z.ZodNullable<z.ZodString>;
445
445
  }, "strip", z.ZodTypeAny, {
446
446
  name: string;
447
- organizationId: string;
448
447
  logoUrl: string | null;
449
448
  contractors: {
450
449
  name: string;
451
450
  specializedProfiles: string[];
452
451
  }[];
452
+ organizationId: string;
453
453
  agencyId: string | null;
454
454
  }, {
455
455
  name: string;
456
- organizationId: string;
457
456
  logoUrl: string | null;
458
457
  contractors: {
459
458
  name: string;
460
459
  specializedProfiles: string[];
461
460
  }[];
461
+ organizationId: string;
462
462
  agencyId: string | null;
463
463
  }>, "many">>;
464
464
  }, "strip", z.ZodTypeAny, {
465
465
  agencies: {
466
466
  name: string;
467
- organizationId: string;
468
467
  logoUrl: string | null;
469
468
  contractors: {
470
469
  name: string;
471
470
  specializedProfiles: string[];
472
471
  }[];
472
+ organizationId: string;
473
473
  agencyId: string | null;
474
474
  }[] | null;
475
475
  accountName: string | null;
@@ -477,12 +477,12 @@ export declare const verifyBidderAccountCredentialsResponseSchema: z.ZodObject<{
477
477
  }, {
478
478
  agencies: {
479
479
  name: string;
480
- organizationId: string;
481
480
  logoUrl: string | null;
482
481
  contractors: {
483
482
  name: string;
484
483
  specializedProfiles: string[];
485
484
  }[];
485
+ organizationId: string;
486
486
  agencyId: string | null;
487
487
  }[] | null;
488
488
  accountName: string | null;
@@ -17,32 +17,32 @@ export declare const scraperAccountSchema: z.ZodObject<{
17
17
  updatedAt: z.ZodNumber;
18
18
  isProtected: z.ZodOptional<z.ZodBoolean>;
19
19
  }, "strip", z.ZodTypeAny, {
20
- type: "status" | "profile" | "job" | "feed" | "activity" | "unauthenticated";
21
20
  id: string;
21
+ isActive: boolean;
22
+ region: "Worldwide" | "UKOnly" | "USOnly";
22
23
  email: string;
23
- region: "USOnly" | "UKOnly" | "Worldwide";
24
24
  password: string;
25
25
  securityQuestionAnswer: string | null;
26
26
  lastUsed: number | null;
27
+ multiloginProfileId: string | null;
27
28
  proxyId: string | null;
29
+ type: "feed" | "job" | "status" | "activity" | "profile" | "unauthenticated";
28
30
  createdAt: number;
29
31
  updatedAt: number;
30
- isActive: boolean;
31
- multiloginProfileId: string | null;
32
32
  isProtected?: boolean | undefined;
33
33
  }, {
34
- type: "status" | "profile" | "job" | "feed" | "activity" | "unauthenticated";
35
34
  id: string;
35
+ isActive: boolean;
36
+ region: "Worldwide" | "UKOnly" | "USOnly";
36
37
  email: string;
37
- region: "USOnly" | "UKOnly" | "Worldwide";
38
38
  password: string;
39
39
  securityQuestionAnswer: string | null;
40
40
  lastUsed: number | null;
41
+ multiloginProfileId: string | null;
41
42
  proxyId: string | null;
43
+ type: "feed" | "job" | "status" | "activity" | "profile" | "unauthenticated";
42
44
  createdAt: number;
43
45
  updatedAt: number;
44
- isActive: boolean;
45
- multiloginProfileId: string | null;
46
46
  isProtected?: boolean | undefined;
47
47
  }>;
48
48
  export declare const createScraperAccountSchema: z.ZodObject<z.objectUtil.extendShape<Pick<{
@@ -59,67 +59,67 @@ export declare const createScraperAccountSchema: z.ZodObject<z.objectUtil.extend
59
59
  createdAt: z.ZodNumber;
60
60
  updatedAt: z.ZodNumber;
61
61
  isProtected: z.ZodOptional<z.ZodBoolean>;
62
- }, "type" | "email" | "region" | "password" | "securityQuestionAnswer" | "isActive">, {
62
+ }, "isActive" | "region" | "email" | "password" | "securityQuestionAnswer" | "type">, {
63
63
  proxyCountry: z.ZodOptional<z.ZodEnum<["US", "CA", "GB", "AF", "AL", "DZ", "AD", "AO", "AR", "AM", "AU", "AT", "AZ", "BD", "BY", "BE", "BA", "BR", "BG", "CM", "CF", "CL", "CN", "CO", "CR", "HR", "CY", "CZ", "DK", "DM", "DO", "EC", "EG", "SV", "EE", "ET", "FI", "FR", "GE", "DE", "GH", "GR", "GL", "GD", "GT", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IL", "IT", "JM", "JP", "JO", "KZ", "KR", "LV", "LB", "LT", "LU", "MK", "MW", "MY", "MT", "MX", "FM", "MD", "MC", "MN", "ME", "MA", "NL", "NZ", "NI", "NG", "NO", "PK", "PW", "PY", "PE", "PH", "PL", "PT", "PR", "QA", "RO", "RU", "SM", "SA", "SN", "RS", "SG", "SK", "SI", "SO", "ZA", "ES", "LK", "SR", "SE", "CH", "TH", "TR", "UG", "UA", "AE", "UY", "UZ", "VE", "VN", "YE", "ZM", "ZW"]>>;
64
64
  rotatingProxy: z.ZodOptional<z.ZodBoolean>;
65
65
  }>, "strip", z.ZodTypeAny, {
66
- type: "status" | "profile" | "job" | "feed" | "activity" | "unauthenticated";
66
+ isActive: boolean;
67
+ region: "Worldwide" | "UKOnly" | "USOnly";
67
68
  email: string;
68
- region: "USOnly" | "UKOnly" | "Worldwide";
69
69
  password: string;
70
70
  securityQuestionAnswer: string | null;
71
- isActive: boolean;
71
+ type: "feed" | "job" | "status" | "activity" | "profile" | "unauthenticated";
72
72
  proxyCountry?: "US" | "CA" | "GB" | "AF" | "AL" | "DZ" | "AD" | "AO" | "AR" | "AM" | "AU" | "AT" | "AZ" | "BD" | "BY" | "BE" | "BA" | "BR" | "BG" | "CM" | "CF" | "CL" | "CN" | "CO" | "CR" | "HR" | "CY" | "CZ" | "DK" | "DM" | "DO" | "EC" | "EG" | "SV" | "EE" | "ET" | "FI" | "FR" | "GE" | "DE" | "GH" | "GR" | "GL" | "GD" | "GT" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IL" | "IT" | "JM" | "JP" | "JO" | "KZ" | "KR" | "LV" | "LB" | "LT" | "LU" | "MK" | "MW" | "MY" | "MT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MA" | "NL" | "NZ" | "NI" | "NG" | "NO" | "PK" | "PW" | "PY" | "PE" | "PH" | "PL" | "PT" | "PR" | "QA" | "RO" | "RU" | "SM" | "SA" | "SN" | "RS" | "SG" | "SK" | "SI" | "SO" | "ZA" | "ES" | "LK" | "SR" | "SE" | "CH" | "TH" | "TR" | "UG" | "UA" | "AE" | "UY" | "UZ" | "VE" | "VN" | "YE" | "ZM" | "ZW" | undefined;
73
73
  rotatingProxy?: boolean | undefined;
74
74
  }, {
75
- type: "status" | "profile" | "job" | "feed" | "activity" | "unauthenticated";
75
+ isActive: boolean;
76
+ region: "Worldwide" | "UKOnly" | "USOnly";
76
77
  email: string;
77
- region: "USOnly" | "UKOnly" | "Worldwide";
78
78
  password: string;
79
79
  securityQuestionAnswer: string | null;
80
- isActive: boolean;
80
+ type: "feed" | "job" | "status" | "activity" | "profile" | "unauthenticated";
81
81
  proxyCountry?: "US" | "CA" | "GB" | "AF" | "AL" | "DZ" | "AD" | "AO" | "AR" | "AM" | "AU" | "AT" | "AZ" | "BD" | "BY" | "BE" | "BA" | "BR" | "BG" | "CM" | "CF" | "CL" | "CN" | "CO" | "CR" | "HR" | "CY" | "CZ" | "DK" | "DM" | "DO" | "EC" | "EG" | "SV" | "EE" | "ET" | "FI" | "FR" | "GE" | "DE" | "GH" | "GR" | "GL" | "GD" | "GT" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IL" | "IT" | "JM" | "JP" | "JO" | "KZ" | "KR" | "LV" | "LB" | "LT" | "LU" | "MK" | "MW" | "MY" | "MT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MA" | "NL" | "NZ" | "NI" | "NG" | "NO" | "PK" | "PW" | "PY" | "PE" | "PH" | "PL" | "PT" | "PR" | "QA" | "RO" | "RU" | "SM" | "SA" | "SN" | "RS" | "SG" | "SK" | "SI" | "SO" | "ZA" | "ES" | "LK" | "SR" | "SE" | "CH" | "TH" | "TR" | "UG" | "UA" | "AE" | "UY" | "UZ" | "VE" | "VN" | "YE" | "ZM" | "ZW" | undefined;
82
82
  rotatingProxy?: boolean | undefined;
83
83
  }>;
84
84
  export declare const updateScraperAccountSchema: z.ZodObject<{
85
- type: z.ZodOptional<z.ZodEnum<["feed", "job", "status", "activity", "profile", "unauthenticated"]>>;
86
- email: z.ZodOptional<z.ZodString>;
85
+ isActive: z.ZodOptional<z.ZodBoolean>;
87
86
  region: z.ZodOptional<z.ZodEnum<["Worldwide", "UKOnly", "USOnly"]>>;
87
+ email: z.ZodOptional<z.ZodString>;
88
88
  password: z.ZodOptional<z.ZodString>;
89
89
  securityQuestionAnswer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
90
90
  lastUsed: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
91
+ multiloginProfileId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
91
92
  proxyId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
93
+ type: z.ZodOptional<z.ZodEnum<["feed", "job", "status", "activity", "profile", "unauthenticated"]>>;
92
94
  createdAt: z.ZodOptional<z.ZodNumber>;
93
95
  updatedAt: z.ZodOptional<z.ZodNumber>;
94
96
  isProtected: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
95
- isActive: z.ZodOptional<z.ZodBoolean>;
96
- multiloginProfileId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
97
97
  }, "strip", z.ZodTypeAny, {
98
- type?: "status" | "profile" | "job" | "feed" | "activity" | "unauthenticated" | undefined;
98
+ isActive?: boolean | undefined;
99
+ region?: "Worldwide" | "UKOnly" | "USOnly" | undefined;
99
100
  email?: string | undefined;
100
- region?: "USOnly" | "UKOnly" | "Worldwide" | undefined;
101
101
  password?: string | undefined;
102
102
  securityQuestionAnswer?: string | null | undefined;
103
103
  lastUsed?: number | null | undefined;
104
+ multiloginProfileId?: string | null | undefined;
104
105
  proxyId?: string | null | undefined;
106
+ type?: "feed" | "job" | "status" | "activity" | "profile" | "unauthenticated" | undefined;
105
107
  createdAt?: number | undefined;
106
108
  updatedAt?: number | undefined;
107
109
  isProtected?: boolean | undefined;
108
- isActive?: boolean | undefined;
109
- multiloginProfileId?: string | null | undefined;
110
110
  }, {
111
- type?: "status" | "profile" | "job" | "feed" | "activity" | "unauthenticated" | undefined;
111
+ isActive?: boolean | undefined;
112
+ region?: "Worldwide" | "UKOnly" | "USOnly" | undefined;
112
113
  email?: string | undefined;
113
- region?: "USOnly" | "UKOnly" | "Worldwide" | undefined;
114
114
  password?: string | undefined;
115
115
  securityQuestionAnswer?: string | null | undefined;
116
116
  lastUsed?: number | null | undefined;
117
+ multiloginProfileId?: string | null | undefined;
117
118
  proxyId?: string | null | undefined;
119
+ type?: "feed" | "job" | "status" | "activity" | "profile" | "unauthenticated" | undefined;
118
120
  createdAt?: number | undefined;
119
121
  updatedAt?: number | undefined;
120
122
  isProtected?: boolean | undefined;
121
- isActive?: boolean | undefined;
122
- multiloginProfileId?: string | null | undefined;
123
123
  }>;
124
124
  export type ScraperAccountType = z.infer<typeof scraperAccountTypeEnum>;
125
125
  export interface ScraperAccount extends z.infer<typeof scraperAccountSchema> {