lancer-shared 1.2.302 → 1.2.304

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 +4 -0
  2. package/dist/bundle.cjs.js.map +1 -1
  3. package/dist/bundle.esm.js +4 -0
  4. package/dist/bundle.esm.js.map +1 -1
  5. package/dist/schemas/account/bidder-account.d.ts +47 -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 +2377 -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 +575 -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
@@ -93,20 +93,20 @@ declare const jobDetailsSchema: z.ZodObject<{
93
93
  value: z.ZodString;
94
94
  skill: z.ZodNullable<z.ZodAny>;
95
95
  }, "strip", z.ZodTypeAny, {
96
- type: string;
97
- name: string;
98
- value: string;
99
- label: string;
100
96
  customValue: string | null;
97
+ label: string;
98
+ name: string;
101
99
  sortOrder: number;
102
- skill?: any;
103
- }, {
104
100
  type: string;
105
- name: string;
106
101
  value: string;
107
- label: string;
102
+ skill?: any;
103
+ }, {
108
104
  customValue: string | null;
105
+ label: string;
106
+ name: string;
109
107
  sortOrder: number;
108
+ type: string;
109
+ value: string;
110
110
  skill?: any;
111
111
  }>, "many">;
112
112
  clientActivity: z.ZodObject<{
@@ -192,8 +192,6 @@ declare const jobDetailsSchema: z.ZodObject<{
192
192
  shouldHavePortfolio: boolean;
193
193
  locationCheckRequired: boolean;
194
194
  minHoursWeek: number | null;
195
- location?: any;
196
- group?: any;
197
195
  countries?: any;
198
196
  earnings?: any;
199
197
  groupRecno?: any;
@@ -205,6 +203,8 @@ declare const jobDetailsSchema: z.ZodObject<{
205
203
  states?: any;
206
204
  tests?: any;
207
205
  timezones?: any;
206
+ group?: any;
207
+ location?: any;
208
208
  locations?: any;
209
209
  }, {
210
210
  type: number;
@@ -216,8 +216,6 @@ declare const jobDetailsSchema: z.ZodObject<{
216
216
  shouldHavePortfolio: boolean;
217
217
  locationCheckRequired: boolean;
218
218
  minHoursWeek: number | null;
219
- location?: any;
220
- group?: any;
221
219
  countries?: any;
222
220
  earnings?: any;
223
221
  groupRecno?: any;
@@ -229,6 +227,8 @@ declare const jobDetailsSchema: z.ZodObject<{
229
227
  states?: any;
230
228
  tests?: any;
231
229
  timezones?: any;
230
+ group?: any;
231
+ location?: any;
232
232
  locations?: any;
233
233
  }>;
234
234
  durationIdV3: z.ZodNumber;
@@ -250,15 +250,15 @@ declare const jobDetailsSchema: z.ZodObject<{
250
250
  highlighted: z.ZodBoolean;
251
251
  }, "strip", z.ZodTypeAny, {
252
252
  uid: string;
253
- prefLabel: string;
254
253
  parentSkillUid: string | null;
254
+ prefLabel: string;
255
255
  prettyName: string;
256
256
  highlighted: boolean;
257
257
  freeText?: any;
258
258
  }, {
259
259
  uid: string;
260
- prefLabel: string;
261
260
  parentSkillUid: string | null;
261
+ prefLabel: string;
262
262
  prettyName: string;
263
263
  highlighted: boolean;
264
264
  freeText?: any;
@@ -267,11 +267,11 @@ declare const jobDetailsSchema: z.ZodObject<{
267
267
  min: z.ZodNumber;
268
268
  max: z.ZodNumber;
269
269
  }, "strip", z.ZodTypeAny, {
270
- max: number;
271
270
  min: number;
272
- }, {
273
271
  max: number;
272
+ }, {
274
273
  min: number;
274
+ max: number;
275
275
  }>>>;
276
276
  weeklyBudget: z.ZodOptional<z.ZodNullable<z.ZodObject<{
277
277
  amount: z.ZodNumber;
@@ -283,10 +283,9 @@ declare const jobDetailsSchema: z.ZodObject<{
283
283
  isSTSVectorSearchResult: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
284
284
  }, "strip", z.ZodTypeAny, {
285
285
  type: number;
286
- title: string;
287
- description: string;
288
286
  status: number;
289
287
  numberOfPositionsToHire: number;
288
+ uid: string;
290
289
  category: {
291
290
  name: string;
292
291
  urlSlug: string;
@@ -315,13 +314,14 @@ declare const jobDetailsSchema: z.ZodObject<{
315
314
  hourlyBudgetType: string | null;
316
315
  };
317
316
  contractorTier: number;
317
+ description: string;
318
318
  segmentationData: {
319
- type: string;
320
- name: string;
321
- value: string;
322
- label: string;
323
319
  customValue: string | null;
320
+ label: string;
321
+ name: string;
324
322
  sortOrder: number;
323
+ type: string;
324
+ value: string;
325
325
  skill?: any;
326
326
  }[];
327
327
  clientActivity: {
@@ -336,7 +336,7 @@ declare const jobDetailsSchema: z.ZodObject<{
336
336
  annotations: {
337
337
  tags: string[];
338
338
  };
339
- uid: string;
339
+ title: string;
340
340
  ciphertext: string;
341
341
  access: number;
342
342
  createdOn: string;
@@ -345,6 +345,9 @@ declare const jobDetailsSchema: z.ZodObject<{
345
345
  notSureFreelancersToHire: boolean;
346
346
  notSureExperienceLevel: boolean;
347
347
  isContractToHire: boolean;
348
+ deliverables: string | null;
349
+ deadline: string | null;
350
+ tools: any[];
348
351
  qualifications: {
349
352
  type: number;
350
353
  localMarket: boolean;
@@ -355,8 +358,6 @@ declare const jobDetailsSchema: z.ZodObject<{
355
358
  shouldHavePortfolio: boolean;
356
359
  locationCheckRequired: boolean;
357
360
  minHoursWeek: number | null;
358
- location?: any;
359
- group?: any;
360
361
  countries?: any;
361
362
  earnings?: any;
362
363
  groupRecno?: any;
@@ -368,19 +369,18 @@ declare const jobDetailsSchema: z.ZodObject<{
368
369
  states?: any;
369
370
  tests?: any;
370
371
  timezones?: any;
372
+ group?: any;
373
+ location?: any;
371
374
  locations?: any;
372
375
  };
373
376
  durationIdV3: number;
374
377
  durationLabel: string;
375
- deliverables: string | null;
376
- deadline: string | null;
377
- tools: any[];
378
378
  publishedOn?: string | null | undefined;
379
379
  renewedOn?: string | null | undefined;
380
380
  engagement?: string | null | undefined;
381
+ freelancersToHire?: number | null | undefined;
381
382
  connectPrice?: number | null | undefined;
382
383
  clientRelation?: any;
383
- freelancersToHire?: number | null | undefined;
384
384
  relevanceEncoded?: string | null | undefined;
385
385
  enterpriseJob?: boolean | null | undefined;
386
386
  tierText?: string | null | undefined;
@@ -389,15 +389,15 @@ declare const jobDetailsSchema: z.ZodObject<{
389
389
  premium?: boolean | null | undefined;
390
390
  attrs?: {
391
391
  uid: string;
392
- prefLabel: string;
393
392
  parentSkillUid: string | null;
393
+ prefLabel: string;
394
394
  prettyName: string;
395
395
  highlighted: boolean;
396
396
  freeText?: any;
397
397
  }[] | null | undefined;
398
398
  hourlyBudget?: {
399
- max: number;
400
399
  min: number;
400
+ max: number;
401
401
  } | null | undefined;
402
402
  weeklyBudget?: {
403
403
  amount: number;
@@ -406,10 +406,9 @@ declare const jobDetailsSchema: z.ZodObject<{
406
406
  weeklyRetainerBudget?: any;
407
407
  }, {
408
408
  type: number;
409
- title: string;
410
- description: string;
411
409
  status: number;
412
410
  numberOfPositionsToHire: number;
411
+ uid: string;
413
412
  category: {
414
413
  name: string;
415
414
  urlSlug: string;
@@ -438,13 +437,14 @@ declare const jobDetailsSchema: z.ZodObject<{
438
437
  hourlyBudgetType: string | null;
439
438
  };
440
439
  contractorTier: number;
440
+ description: string;
441
441
  segmentationData: {
442
- type: string;
443
- name: string;
444
- value: string;
445
- label: string;
446
442
  customValue: string | null;
443
+ label: string;
444
+ name: string;
447
445
  sortOrder: number;
446
+ type: string;
447
+ value: string;
448
448
  skill?: any;
449
449
  }[];
450
450
  clientActivity: {
@@ -459,7 +459,7 @@ declare const jobDetailsSchema: z.ZodObject<{
459
459
  annotations: {
460
460
  tags: string[];
461
461
  };
462
- uid: string;
462
+ title: string;
463
463
  ciphertext: string;
464
464
  access: number;
465
465
  createdOn: string;
@@ -468,6 +468,9 @@ declare const jobDetailsSchema: z.ZodObject<{
468
468
  notSureFreelancersToHire: boolean;
469
469
  notSureExperienceLevel: boolean;
470
470
  isContractToHire: boolean;
471
+ deliverables: string | null;
472
+ deadline: string | null;
473
+ tools: any[];
471
474
  qualifications: {
472
475
  type: number;
473
476
  localMarket: boolean;
@@ -478,8 +481,6 @@ declare const jobDetailsSchema: z.ZodObject<{
478
481
  shouldHavePortfolio: boolean;
479
482
  locationCheckRequired: boolean;
480
483
  minHoursWeek: number | null;
481
- location?: any;
482
- group?: any;
483
484
  countries?: any;
484
485
  earnings?: any;
485
486
  groupRecno?: any;
@@ -491,19 +492,18 @@ declare const jobDetailsSchema: z.ZodObject<{
491
492
  states?: any;
492
493
  tests?: any;
493
494
  timezones?: any;
495
+ group?: any;
496
+ location?: any;
494
497
  locations?: any;
495
498
  };
496
499
  durationIdV3: number;
497
500
  durationLabel: string;
498
- deliverables: string | null;
499
- deadline: string | null;
500
- tools: any[];
501
501
  publishedOn?: string | null | undefined;
502
502
  renewedOn?: string | null | undefined;
503
503
  engagement?: string | null | undefined;
504
+ freelancersToHire?: number | null | undefined;
504
505
  connectPrice?: number | null | undefined;
505
506
  clientRelation?: any;
506
- freelancersToHire?: number | null | undefined;
507
507
  relevanceEncoded?: string | null | undefined;
508
508
  enterpriseJob?: boolean | null | undefined;
509
509
  tierText?: string | null | undefined;
@@ -512,15 +512,15 @@ declare const jobDetailsSchema: z.ZodObject<{
512
512
  premium?: boolean | null | undefined;
513
513
  attrs?: {
514
514
  uid: string;
515
- prefLabel: string;
516
515
  parentSkillUid: string | null;
516
+ prefLabel: string;
517
517
  prettyName: string;
518
518
  highlighted: boolean;
519
519
  freeText?: any;
520
520
  }[] | null | undefined;
521
521
  hourlyBudget?: {
522
- max: number;
523
522
  min: number;
523
+ max: number;
524
524
  } | null | undefined;
525
525
  weeklyBudget?: {
526
526
  amount: number;
@@ -572,15 +572,15 @@ declare const buyerSchema: z.ZodObject<{
572
572
  city: z.ZodNullable<z.ZodString>;
573
573
  country: z.ZodString;
574
574
  }, "strip", z.ZodTypeAny, {
575
- country: string;
576
575
  offsetFromUtcMillis: number;
577
576
  countryTimezone: string;
578
577
  city: string | null;
579
- }, {
580
578
  country: string;
579
+ }, {
581
580
  offsetFromUtcMillis: number;
582
581
  countryTimezone: string;
583
582
  city: string | null;
583
+ country: string;
584
584
  }>;
585
585
  company: z.ZodObject<{
586
586
  isEDCReplicated: z.ZodNullable<z.ZodAny>;
@@ -623,10 +623,10 @@ declare const buyerSchema: z.ZodObject<{
623
623
  avgHourlyJobsRate: z.ZodNullable<z.ZodAny>;
624
624
  }, "strip", z.ZodTypeAny, {
625
625
  location: {
626
- country: string;
627
626
  offsetFromUtcMillis: number;
628
627
  countryTimezone: string;
629
628
  city: string | null;
629
+ country: string;
630
630
  };
631
631
  isEnterprise: boolean;
632
632
  isPaymentMethodVerified: boolean;
@@ -656,10 +656,10 @@ declare const buyerSchema: z.ZodObject<{
656
656
  avgHourlyJobsRate?: any;
657
657
  }, {
658
658
  location: {
659
- country: string;
660
659
  offsetFromUtcMillis: number;
661
660
  countryTimezone: string;
662
661
  city: string | null;
662
+ country: string;
663
663
  };
664
664
  isEnterprise: boolean;
665
665
  isPaymentMethodVerified: boolean;
@@ -711,55 +711,55 @@ declare const similarJobSchema: z.ZodObject<{
711
711
  id: z.ZodNullable<z.ZodString>;
712
712
  prefLabel: z.ZodString;
713
713
  }, "strip", z.ZodTypeAny, {
714
- id: string | null;
715
714
  prefLabel: string;
716
- }, {
717
715
  id: string | null;
716
+ }, {
718
717
  prefLabel: string;
718
+ id: string | null;
719
719
  }>, "many">;
720
720
  hourlyBudgetMin: z.ZodNumber;
721
721
  hourlyBudgetMax: z.ZodNumber;
722
722
  }, "strip", z.ZodTypeAny, {
723
+ renewedOn: string | null;
724
+ engagement: string | null;
723
725
  type: number;
724
- id: string | null;
725
- title: string;
726
- description: string;
727
726
  amount: {
728
727
  amount: number;
729
728
  };
730
729
  hourlyBudgetMin: number;
731
730
  hourlyBudgetMax: number;
732
731
  contractorTier: number;
732
+ description: string;
733
+ title: string;
733
734
  ciphertext: string;
734
735
  createdOn: string;
735
736
  durationLabel: string;
737
+ id: string | null;
736
738
  ontologySkills: {
737
- id: string | null;
738
739
  prefLabel: string;
740
+ id: string | null;
739
741
  }[];
740
- renewedOn: string | null;
741
- engagement: string | null;
742
742
  maxAmount?: any;
743
743
  }, {
744
+ renewedOn: string | null;
745
+ engagement: string | null;
744
746
  type: number;
745
- id: string | null;
746
- title: string;
747
- description: string;
748
747
  amount: {
749
748
  amount: number;
750
749
  };
751
750
  hourlyBudgetMin: number;
752
751
  hourlyBudgetMax: number;
753
752
  contractorTier: number;
753
+ description: string;
754
+ title: string;
754
755
  ciphertext: string;
755
756
  createdOn: string;
756
757
  durationLabel: string;
758
+ id: string | null;
757
759
  ontologySkills: {
758
- id: string | null;
759
760
  prefLabel: string;
761
+ id: string | null;
760
762
  }[];
761
- renewedOn: string | null;
762
- engagement: string | null;
763
763
  maxAmount?: any;
764
764
  }>;
765
765
  export declare const jobDetailsStateSchema: z.ZodObject<{
@@ -839,20 +839,20 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
839
839
  value: z.ZodString;
840
840
  skill: z.ZodNullable<z.ZodAny>;
841
841
  }, "strip", z.ZodTypeAny, {
842
- type: string;
843
- name: string;
844
- value: string;
845
- label: string;
846
842
  customValue: string | null;
843
+ label: string;
844
+ name: string;
847
845
  sortOrder: number;
848
- skill?: any;
849
- }, {
850
846
  type: string;
851
- name: string;
852
847
  value: string;
853
- label: string;
848
+ skill?: any;
849
+ }, {
854
850
  customValue: string | null;
851
+ label: string;
852
+ name: string;
855
853
  sortOrder: number;
854
+ type: string;
855
+ value: string;
856
856
  skill?: any;
857
857
  }>, "many">;
858
858
  clientActivity: z.ZodObject<{
@@ -938,8 +938,6 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
938
938
  shouldHavePortfolio: boolean;
939
939
  locationCheckRequired: boolean;
940
940
  minHoursWeek: number | null;
941
- location?: any;
942
- group?: any;
943
941
  countries?: any;
944
942
  earnings?: any;
945
943
  groupRecno?: any;
@@ -951,6 +949,8 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
951
949
  states?: any;
952
950
  tests?: any;
953
951
  timezones?: any;
952
+ group?: any;
953
+ location?: any;
954
954
  locations?: any;
955
955
  }, {
956
956
  type: number;
@@ -962,8 +962,6 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
962
962
  shouldHavePortfolio: boolean;
963
963
  locationCheckRequired: boolean;
964
964
  minHoursWeek: number | null;
965
- location?: any;
966
- group?: any;
967
965
  countries?: any;
968
966
  earnings?: any;
969
967
  groupRecno?: any;
@@ -975,6 +973,8 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
975
973
  states?: any;
976
974
  tests?: any;
977
975
  timezones?: any;
976
+ group?: any;
977
+ location?: any;
978
978
  locations?: any;
979
979
  }>;
980
980
  durationIdV3: z.ZodNumber;
@@ -996,15 +996,15 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
996
996
  highlighted: z.ZodBoolean;
997
997
  }, "strip", z.ZodTypeAny, {
998
998
  uid: string;
999
- prefLabel: string;
1000
999
  parentSkillUid: string | null;
1000
+ prefLabel: string;
1001
1001
  prettyName: string;
1002
1002
  highlighted: boolean;
1003
1003
  freeText?: any;
1004
1004
  }, {
1005
1005
  uid: string;
1006
- prefLabel: string;
1007
1006
  parentSkillUid: string | null;
1007
+ prefLabel: string;
1008
1008
  prettyName: string;
1009
1009
  highlighted: boolean;
1010
1010
  freeText?: any;
@@ -1013,11 +1013,11 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1013
1013
  min: z.ZodNumber;
1014
1014
  max: z.ZodNumber;
1015
1015
  }, "strip", z.ZodTypeAny, {
1016
- max: number;
1017
1016
  min: number;
1018
- }, {
1019
1017
  max: number;
1018
+ }, {
1020
1019
  min: number;
1020
+ max: number;
1021
1021
  }>>>;
1022
1022
  weeklyBudget: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1023
1023
  amount: z.ZodNumber;
@@ -1029,10 +1029,9 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1029
1029
  isSTSVectorSearchResult: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1030
1030
  }, "strip", z.ZodTypeAny, {
1031
1031
  type: number;
1032
- title: string;
1033
- description: string;
1034
1032
  status: number;
1035
1033
  numberOfPositionsToHire: number;
1034
+ uid: string;
1036
1035
  category: {
1037
1036
  name: string;
1038
1037
  urlSlug: string;
@@ -1061,13 +1060,14 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1061
1060
  hourlyBudgetType: string | null;
1062
1061
  };
1063
1062
  contractorTier: number;
1063
+ description: string;
1064
1064
  segmentationData: {
1065
- type: string;
1066
- name: string;
1067
- value: string;
1068
- label: string;
1069
1065
  customValue: string | null;
1066
+ label: string;
1067
+ name: string;
1070
1068
  sortOrder: number;
1069
+ type: string;
1070
+ value: string;
1071
1071
  skill?: any;
1072
1072
  }[];
1073
1073
  clientActivity: {
@@ -1082,7 +1082,7 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1082
1082
  annotations: {
1083
1083
  tags: string[];
1084
1084
  };
1085
- uid: string;
1085
+ title: string;
1086
1086
  ciphertext: string;
1087
1087
  access: number;
1088
1088
  createdOn: string;
@@ -1091,6 +1091,9 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1091
1091
  notSureFreelancersToHire: boolean;
1092
1092
  notSureExperienceLevel: boolean;
1093
1093
  isContractToHire: boolean;
1094
+ deliverables: string | null;
1095
+ deadline: string | null;
1096
+ tools: any[];
1094
1097
  qualifications: {
1095
1098
  type: number;
1096
1099
  localMarket: boolean;
@@ -1101,8 +1104,6 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1101
1104
  shouldHavePortfolio: boolean;
1102
1105
  locationCheckRequired: boolean;
1103
1106
  minHoursWeek: number | null;
1104
- location?: any;
1105
- group?: any;
1106
1107
  countries?: any;
1107
1108
  earnings?: any;
1108
1109
  groupRecno?: any;
@@ -1114,19 +1115,18 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1114
1115
  states?: any;
1115
1116
  tests?: any;
1116
1117
  timezones?: any;
1118
+ group?: any;
1119
+ location?: any;
1117
1120
  locations?: any;
1118
1121
  };
1119
1122
  durationIdV3: number;
1120
1123
  durationLabel: string;
1121
- deliverables: string | null;
1122
- deadline: string | null;
1123
- tools: any[];
1124
1124
  publishedOn?: string | null | undefined;
1125
1125
  renewedOn?: string | null | undefined;
1126
1126
  engagement?: string | null | undefined;
1127
+ freelancersToHire?: number | null | undefined;
1127
1128
  connectPrice?: number | null | undefined;
1128
1129
  clientRelation?: any;
1129
- freelancersToHire?: number | null | undefined;
1130
1130
  relevanceEncoded?: string | null | undefined;
1131
1131
  enterpriseJob?: boolean | null | undefined;
1132
1132
  tierText?: string | null | undefined;
@@ -1135,15 +1135,15 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1135
1135
  premium?: boolean | null | undefined;
1136
1136
  attrs?: {
1137
1137
  uid: string;
1138
- prefLabel: string;
1139
1138
  parentSkillUid: string | null;
1139
+ prefLabel: string;
1140
1140
  prettyName: string;
1141
1141
  highlighted: boolean;
1142
1142
  freeText?: any;
1143
1143
  }[] | null | undefined;
1144
1144
  hourlyBudget?: {
1145
- max: number;
1146
1145
  min: number;
1146
+ max: number;
1147
1147
  } | null | undefined;
1148
1148
  weeklyBudget?: {
1149
1149
  amount: number;
@@ -1152,10 +1152,9 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1152
1152
  weeklyRetainerBudget?: any;
1153
1153
  }, {
1154
1154
  type: number;
1155
- title: string;
1156
- description: string;
1157
1155
  status: number;
1158
1156
  numberOfPositionsToHire: number;
1157
+ uid: string;
1159
1158
  category: {
1160
1159
  name: string;
1161
1160
  urlSlug: string;
@@ -1184,13 +1183,14 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1184
1183
  hourlyBudgetType: string | null;
1185
1184
  };
1186
1185
  contractorTier: number;
1186
+ description: string;
1187
1187
  segmentationData: {
1188
- type: string;
1189
- name: string;
1190
- value: string;
1191
- label: string;
1192
1188
  customValue: string | null;
1189
+ label: string;
1190
+ name: string;
1193
1191
  sortOrder: number;
1192
+ type: string;
1193
+ value: string;
1194
1194
  skill?: any;
1195
1195
  }[];
1196
1196
  clientActivity: {
@@ -1205,7 +1205,7 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1205
1205
  annotations: {
1206
1206
  tags: string[];
1207
1207
  };
1208
- uid: string;
1208
+ title: string;
1209
1209
  ciphertext: string;
1210
1210
  access: number;
1211
1211
  createdOn: string;
@@ -1214,6 +1214,9 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1214
1214
  notSureFreelancersToHire: boolean;
1215
1215
  notSureExperienceLevel: boolean;
1216
1216
  isContractToHire: boolean;
1217
+ deliverables: string | null;
1218
+ deadline: string | null;
1219
+ tools: any[];
1217
1220
  qualifications: {
1218
1221
  type: number;
1219
1222
  localMarket: boolean;
@@ -1224,8 +1227,6 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1224
1227
  shouldHavePortfolio: boolean;
1225
1228
  locationCheckRequired: boolean;
1226
1229
  minHoursWeek: number | null;
1227
- location?: any;
1228
- group?: any;
1229
1230
  countries?: any;
1230
1231
  earnings?: any;
1231
1232
  groupRecno?: any;
@@ -1237,19 +1238,18 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1237
1238
  states?: any;
1238
1239
  tests?: any;
1239
1240
  timezones?: any;
1241
+ group?: any;
1242
+ location?: any;
1240
1243
  locations?: any;
1241
1244
  };
1242
1245
  durationIdV3: number;
1243
1246
  durationLabel: string;
1244
- deliverables: string | null;
1245
- deadline: string | null;
1246
- tools: any[];
1247
1247
  publishedOn?: string | null | undefined;
1248
1248
  renewedOn?: string | null | undefined;
1249
1249
  engagement?: string | null | undefined;
1250
+ freelancersToHire?: number | null | undefined;
1250
1251
  connectPrice?: number | null | undefined;
1251
1252
  clientRelation?: any;
1252
- freelancersToHire?: number | null | undefined;
1253
1253
  relevanceEncoded?: string | null | undefined;
1254
1254
  enterpriseJob?: boolean | null | undefined;
1255
1255
  tierText?: string | null | undefined;
@@ -1258,15 +1258,15 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1258
1258
  premium?: boolean | null | undefined;
1259
1259
  attrs?: {
1260
1260
  uid: string;
1261
- prefLabel: string;
1262
1261
  parentSkillUid: string | null;
1262
+ prefLabel: string;
1263
1263
  prettyName: string;
1264
1264
  highlighted: boolean;
1265
1265
  freeText?: any;
1266
1266
  }[] | null | undefined;
1267
1267
  hourlyBudget?: {
1268
- max: number;
1269
1268
  min: number;
1269
+ max: number;
1270
1270
  } | null | undefined;
1271
1271
  weeklyBudget?: {
1272
1272
  amount: number;
@@ -1318,15 +1318,15 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1318
1318
  city: z.ZodNullable<z.ZodString>;
1319
1319
  country: z.ZodString;
1320
1320
  }, "strip", z.ZodTypeAny, {
1321
- country: string;
1322
1321
  offsetFromUtcMillis: number;
1323
1322
  countryTimezone: string;
1324
1323
  city: string | null;
1325
- }, {
1326
1324
  country: string;
1325
+ }, {
1327
1326
  offsetFromUtcMillis: number;
1328
1327
  countryTimezone: string;
1329
1328
  city: string | null;
1329
+ country: string;
1330
1330
  }>;
1331
1331
  company: z.ZodObject<{
1332
1332
  isEDCReplicated: z.ZodNullable<z.ZodAny>;
@@ -1369,10 +1369,10 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1369
1369
  avgHourlyJobsRate: z.ZodNullable<z.ZodAny>;
1370
1370
  }, "strip", z.ZodTypeAny, {
1371
1371
  location: {
1372
- country: string;
1373
1372
  offsetFromUtcMillis: number;
1374
1373
  countryTimezone: string;
1375
1374
  city: string | null;
1375
+ country: string;
1376
1376
  };
1377
1377
  isEnterprise: boolean;
1378
1378
  isPaymentMethodVerified: boolean;
@@ -1402,10 +1402,10 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1402
1402
  avgHourlyJobsRate?: any;
1403
1403
  }, {
1404
1404
  location: {
1405
- country: string;
1406
1405
  offsetFromUtcMillis: number;
1407
1406
  countryTimezone: string;
1408
1407
  city: string | null;
1408
+ country: string;
1409
1409
  };
1410
1410
  isEnterprise: boolean;
1411
1411
  isPaymentMethodVerified: boolean;
@@ -1461,19 +1461,19 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1461
1461
  access: z.ZodNullable<z.ZodNumber>;
1462
1462
  }, "strip", z.ZodTypeAny, {
1463
1463
  type: number;
1464
- id: string;
1465
- title: string;
1466
1464
  uid: string;
1465
+ title: string;
1467
1466
  ciphertext: string;
1468
1467
  access: number | null;
1468
+ id: string;
1469
1469
  isPtcPrivate: boolean;
1470
1470
  }, {
1471
1471
  type: number;
1472
- id: string;
1473
- title: string;
1474
1472
  uid: string;
1473
+ title: string;
1475
1474
  ciphertext: string;
1476
1475
  access: number | null;
1476
+ id: string;
1477
1477
  isPtcPrivate: boolean;
1478
1478
  }>, "many">;
1479
1479
  workHistory: z.ZodArray<z.ZodAny, "many">;
@@ -1500,55 +1500,55 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1500
1500
  id: z.ZodNullable<z.ZodString>;
1501
1501
  prefLabel: z.ZodString;
1502
1502
  }, "strip", z.ZodTypeAny, {
1503
- id: string | null;
1504
1503
  prefLabel: string;
1505
- }, {
1506
1504
  id: string | null;
1505
+ }, {
1507
1506
  prefLabel: string;
1507
+ id: string | null;
1508
1508
  }>, "many">;
1509
1509
  hourlyBudgetMin: z.ZodNumber;
1510
1510
  hourlyBudgetMax: z.ZodNumber;
1511
1511
  }, "strip", z.ZodTypeAny, {
1512
+ renewedOn: string | null;
1513
+ engagement: string | null;
1512
1514
  type: number;
1513
- id: string | null;
1514
- title: string;
1515
- description: string;
1516
1515
  amount: {
1517
1516
  amount: number;
1518
1517
  };
1519
1518
  hourlyBudgetMin: number;
1520
1519
  hourlyBudgetMax: number;
1521
1520
  contractorTier: number;
1521
+ description: string;
1522
+ title: string;
1522
1523
  ciphertext: string;
1523
1524
  createdOn: string;
1524
1525
  durationLabel: string;
1526
+ id: string | null;
1525
1527
  ontologySkills: {
1526
- id: string | null;
1527
1528
  prefLabel: string;
1529
+ id: string | null;
1528
1530
  }[];
1529
- renewedOn: string | null;
1530
- engagement: string | null;
1531
1531
  maxAmount?: any;
1532
1532
  }, {
1533
+ renewedOn: string | null;
1534
+ engagement: string | null;
1533
1535
  type: number;
1534
- id: string | null;
1535
- title: string;
1536
- description: string;
1537
1536
  amount: {
1538
1537
  amount: number;
1539
1538
  };
1540
1539
  hourlyBudgetMin: number;
1541
1540
  hourlyBudgetMax: number;
1542
1541
  contractorTier: number;
1542
+ description: string;
1543
+ title: string;
1543
1544
  ciphertext: string;
1544
1545
  createdOn: string;
1545
1546
  durationLabel: string;
1547
+ id: string | null;
1546
1548
  ontologySkills: {
1547
- id: string | null;
1548
1549
  prefLabel: string;
1550
+ id: string | null;
1549
1551
  }[];
1550
- renewedOn: string | null;
1551
- engagement: string | null;
1552
1552
  maxAmount?: any;
1553
1553
  }>, "many">;
1554
1554
  sands: z.ZodObject<{
@@ -1559,17 +1559,17 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1559
1559
  id: z.ZodString;
1560
1560
  uid: z.ZodString;
1561
1561
  }, "strip", z.ZodTypeAny, {
1562
- id: string;
1563
1562
  uid: string;
1563
+ prefLabel: string;
1564
1564
  freeText: string | null;
1565
+ id: string;
1565
1566
  ontologyId: string;
1566
- prefLabel: string;
1567
1567
  }, {
1568
- id: string;
1569
1568
  uid: string;
1569
+ prefLabel: string;
1570
1570
  freeText: string | null;
1571
+ id: string;
1571
1572
  ontologyId: string;
1572
- prefLabel: string;
1573
1573
  }>;
1574
1574
  ontologySkills: z.ZodArray<z.ZodAny, "many">;
1575
1575
  additionalSkills: z.ZodArray<z.ZodObject<{
@@ -1589,14 +1589,14 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1589
1589
  relevance: string;
1590
1590
  }>, "many">;
1591
1591
  }, "strip", z.ZodTypeAny, {
1592
+ ontologySkills: any[];
1592
1593
  occupation: {
1593
- id: string;
1594
1594
  uid: string;
1595
+ prefLabel: string;
1595
1596
  freeText: string | null;
1597
+ id: string;
1596
1598
  ontologyId: string;
1597
- prefLabel: string;
1598
1599
  };
1599
- ontologySkills: any[];
1600
1600
  additionalSkills: {
1601
1601
  name: string;
1602
1602
  uid: string | null;
@@ -1604,14 +1604,14 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1604
1604
  relevance: string;
1605
1605
  }[];
1606
1606
  }, {
1607
+ ontologySkills: any[];
1607
1608
  occupation: {
1608
- id: string;
1609
1609
  uid: string;
1610
+ prefLabel: string;
1610
1611
  freeText: string | null;
1612
+ id: string;
1611
1613
  ontologyId: string;
1612
- prefLabel: string;
1613
1614
  };
1614
- ontologySkills: any[];
1615
1615
  additionalSkills: {
1616
1616
  name: string;
1617
1617
  uid: string | null;
@@ -1636,25 +1636,25 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1636
1636
  country?: any;
1637
1637
  }>;
1638
1638
  }, "strip", z.ZodTypeAny, {
1639
- domestic: {
1640
- isInfographicTooltipAvailable: boolean;
1641
- country?: any;
1642
- };
1643
1639
  isVisitor: boolean;
1644
1640
  isAgency: boolean;
1645
1641
  isFreelancer: boolean;
1646
1642
  isClient: boolean;
1647
1643
  isUpworkPlusBuyer: boolean;
1648
- }, {
1649
1644
  domestic: {
1650
1645
  isInfographicTooltipAvailable: boolean;
1651
1646
  country?: any;
1652
1647
  };
1648
+ }, {
1653
1649
  isVisitor: boolean;
1654
1650
  isAgency: boolean;
1655
1651
  isFreelancer: boolean;
1656
1652
  isClient: boolean;
1657
1653
  isUpworkPlusBuyer: boolean;
1654
+ domestic: {
1655
+ isInfographicTooltipAvailable: boolean;
1656
+ country?: any;
1657
+ };
1658
1658
  }>;
1659
1659
  applicants: z.ZodNullable<z.ZodAny>;
1660
1660
  connects: z.ZodNullable<z.ZodAny>;
@@ -1666,13 +1666,13 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1666
1666
  description: z.ZodString;
1667
1667
  url: z.ZodString;
1668
1668
  }, "strip", z.ZodTypeAny, {
1669
- url: string;
1670
- title: string;
1671
1669
  description: string;
1672
- }, {
1673
- url: string;
1674
1670
  title: string;
1671
+ url: string;
1672
+ }, {
1675
1673
  description: string;
1674
+ title: string;
1675
+ url: string;
1676
1676
  }>;
1677
1677
  teamUid: z.ZodNullable<z.ZodAny>;
1678
1678
  proposalPermissions: z.ZodNullable<z.ZodAny>;
@@ -1689,24 +1689,12 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1689
1689
  aiInterviewStatus: z.ZodNullable<z.ZodAny>;
1690
1690
  aiInterviewJoinLimitReached: z.ZodBoolean;
1691
1691
  }, "strip", z.ZodTypeAny, {
1692
- auth: {
1693
- domestic: {
1694
- isInfographicTooltipAvailable: boolean;
1695
- country?: any;
1696
- };
1697
- isVisitor: boolean;
1698
- isAgency: boolean;
1699
- isFreelancer: boolean;
1700
- isClient: boolean;
1701
- isUpworkPlusBuyer: boolean;
1702
- };
1703
1692
  cache: boolean;
1704
1693
  job: {
1705
1694
  type: number;
1706
- title: string;
1707
- description: string;
1708
1695
  status: number;
1709
1696
  numberOfPositionsToHire: number;
1697
+ uid: string;
1710
1698
  category: {
1711
1699
  name: string;
1712
1700
  urlSlug: string;
@@ -1735,13 +1723,14 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1735
1723
  hourlyBudgetType: string | null;
1736
1724
  };
1737
1725
  contractorTier: number;
1726
+ description: string;
1738
1727
  segmentationData: {
1739
- type: string;
1740
- name: string;
1741
- value: string;
1742
- label: string;
1743
1728
  customValue: string | null;
1729
+ label: string;
1730
+ name: string;
1744
1731
  sortOrder: number;
1732
+ type: string;
1733
+ value: string;
1745
1734
  skill?: any;
1746
1735
  }[];
1747
1736
  clientActivity: {
@@ -1756,7 +1745,7 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1756
1745
  annotations: {
1757
1746
  tags: string[];
1758
1747
  };
1759
- uid: string;
1748
+ title: string;
1760
1749
  ciphertext: string;
1761
1750
  access: number;
1762
1751
  createdOn: string;
@@ -1765,6 +1754,9 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1765
1754
  notSureFreelancersToHire: boolean;
1766
1755
  notSureExperienceLevel: boolean;
1767
1756
  isContractToHire: boolean;
1757
+ deliverables: string | null;
1758
+ deadline: string | null;
1759
+ tools: any[];
1768
1760
  qualifications: {
1769
1761
  type: number;
1770
1762
  localMarket: boolean;
@@ -1775,8 +1767,6 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1775
1767
  shouldHavePortfolio: boolean;
1776
1768
  locationCheckRequired: boolean;
1777
1769
  minHoursWeek: number | null;
1778
- location?: any;
1779
- group?: any;
1780
1770
  countries?: any;
1781
1771
  earnings?: any;
1782
1772
  groupRecno?: any;
@@ -1788,19 +1778,18 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1788
1778
  states?: any;
1789
1779
  tests?: any;
1790
1780
  timezones?: any;
1781
+ group?: any;
1782
+ location?: any;
1791
1783
  locations?: any;
1792
1784
  };
1793
1785
  durationIdV3: number;
1794
1786
  durationLabel: string;
1795
- deliverables: string | null;
1796
- deadline: string | null;
1797
- tools: any[];
1798
1787
  publishedOn?: string | null | undefined;
1799
1788
  renewedOn?: string | null | undefined;
1800
1789
  engagement?: string | null | undefined;
1790
+ freelancersToHire?: number | null | undefined;
1801
1791
  connectPrice?: number | null | undefined;
1802
1792
  clientRelation?: any;
1803
- freelancersToHire?: number | null | undefined;
1804
1793
  relevanceEncoded?: string | null | undefined;
1805
1794
  enterpriseJob?: boolean | null | undefined;
1806
1795
  tierText?: string | null | undefined;
@@ -1809,15 +1798,15 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1809
1798
  premium?: boolean | null | undefined;
1810
1799
  attrs?: {
1811
1800
  uid: string;
1812
- prefLabel: string;
1813
1801
  parentSkillUid: string | null;
1802
+ prefLabel: string;
1814
1803
  prettyName: string;
1815
1804
  highlighted: boolean;
1816
1805
  freeText?: any;
1817
1806
  }[] | null | undefined;
1818
1807
  hourlyBudget?: {
1819
- max: number;
1820
1808
  min: number;
1809
+ max: number;
1821
1810
  } | null | undefined;
1822
1811
  weeklyBudget?: {
1823
1812
  amount: number;
@@ -1827,10 +1816,10 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1827
1816
  };
1828
1817
  buyer: {
1829
1818
  location: {
1830
- country: string;
1831
1819
  offsetFromUtcMillis: number;
1832
1820
  countryTimezone: string;
1833
1821
  city: string | null;
1822
+ country: string;
1834
1823
  };
1835
1824
  isEnterprise: boolean;
1836
1825
  isPaymentMethodVerified: boolean;
@@ -1866,45 +1855,45 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1866
1855
  };
1867
1856
  openJobs: {
1868
1857
  type: number;
1869
- id: string;
1870
- title: string;
1871
1858
  uid: string;
1859
+ title: string;
1872
1860
  ciphertext: string;
1873
1861
  access: number | null;
1862
+ id: string;
1874
1863
  isPtcPrivate: boolean;
1875
1864
  }[];
1876
1865
  workHistory: any[];
1877
1866
  similarJobs: {
1867
+ renewedOn: string | null;
1868
+ engagement: string | null;
1878
1869
  type: number;
1879
- id: string | null;
1880
- title: string;
1881
- description: string;
1882
1870
  amount: {
1883
1871
  amount: number;
1884
1872
  };
1885
1873
  hourlyBudgetMin: number;
1886
1874
  hourlyBudgetMax: number;
1887
1875
  contractorTier: number;
1876
+ description: string;
1877
+ title: string;
1888
1878
  ciphertext: string;
1889
1879
  createdOn: string;
1890
1880
  durationLabel: string;
1881
+ id: string | null;
1891
1882
  ontologySkills: {
1892
- id: string | null;
1893
1883
  prefLabel: string;
1884
+ id: string | null;
1894
1885
  }[];
1895
- renewedOn: string | null;
1896
- engagement: string | null;
1897
1886
  maxAmount?: any;
1898
1887
  }[];
1899
1888
  sands: {
1889
+ ontologySkills: any[];
1900
1890
  occupation: {
1901
- id: string;
1902
1891
  uid: string;
1892
+ prefLabel: string;
1903
1893
  freeText: string | null;
1894
+ id: string;
1904
1895
  ontologyId: string;
1905
- prefLabel: string;
1906
1896
  };
1907
- ontologySkills: any[];
1908
1897
  additionalSkills: {
1909
1898
  name: string;
1910
1899
  uid: string | null;
@@ -1912,12 +1901,23 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1912
1901
  relevance: string;
1913
1902
  }[];
1914
1903
  };
1904
+ auth: {
1905
+ isVisitor: boolean;
1906
+ isAgency: boolean;
1907
+ isFreelancer: boolean;
1908
+ isClient: boolean;
1909
+ isUpworkPlusBuyer: boolean;
1910
+ domestic: {
1911
+ isInfographicTooltipAvailable: boolean;
1912
+ country?: any;
1913
+ };
1914
+ };
1915
1915
  enterpriseJobAdditionalInfo: Record<string, any>;
1916
1916
  profileMatchServiceUid: string | null;
1917
1917
  seo: {
1918
- url: string;
1919
- title: string;
1920
1918
  description: string;
1919
+ title: string;
1920
+ url: string;
1921
1921
  };
1922
1922
  isGroupOpportunity: boolean;
1923
1923
  isPhoneVerified: boolean;
@@ -1937,24 +1937,12 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1937
1937
  aiInterviewRoomId?: any;
1938
1938
  aiInterviewStatus?: any;
1939
1939
  }, {
1940
- auth: {
1941
- domestic: {
1942
- isInfographicTooltipAvailable: boolean;
1943
- country?: any;
1944
- };
1945
- isVisitor: boolean;
1946
- isAgency: boolean;
1947
- isFreelancer: boolean;
1948
- isClient: boolean;
1949
- isUpworkPlusBuyer: boolean;
1950
- };
1951
1940
  cache: boolean;
1952
1941
  job: {
1953
1942
  type: number;
1954
- title: string;
1955
- description: string;
1956
1943
  status: number;
1957
1944
  numberOfPositionsToHire: number;
1945
+ uid: string;
1958
1946
  category: {
1959
1947
  name: string;
1960
1948
  urlSlug: string;
@@ -1983,13 +1971,14 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1983
1971
  hourlyBudgetType: string | null;
1984
1972
  };
1985
1973
  contractorTier: number;
1974
+ description: string;
1986
1975
  segmentationData: {
1987
- type: string;
1988
- name: string;
1989
- value: string;
1990
- label: string;
1991
1976
  customValue: string | null;
1977
+ label: string;
1978
+ name: string;
1992
1979
  sortOrder: number;
1980
+ type: string;
1981
+ value: string;
1993
1982
  skill?: any;
1994
1983
  }[];
1995
1984
  clientActivity: {
@@ -2004,7 +1993,7 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
2004
1993
  annotations: {
2005
1994
  tags: string[];
2006
1995
  };
2007
- uid: string;
1996
+ title: string;
2008
1997
  ciphertext: string;
2009
1998
  access: number;
2010
1999
  createdOn: string;
@@ -2013,6 +2002,9 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
2013
2002
  notSureFreelancersToHire: boolean;
2014
2003
  notSureExperienceLevel: boolean;
2015
2004
  isContractToHire: boolean;
2005
+ deliverables: string | null;
2006
+ deadline: string | null;
2007
+ tools: any[];
2016
2008
  qualifications: {
2017
2009
  type: number;
2018
2010
  localMarket: boolean;
@@ -2023,8 +2015,6 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
2023
2015
  shouldHavePortfolio: boolean;
2024
2016
  locationCheckRequired: boolean;
2025
2017
  minHoursWeek: number | null;
2026
- location?: any;
2027
- group?: any;
2028
2018
  countries?: any;
2029
2019
  earnings?: any;
2030
2020
  groupRecno?: any;
@@ -2036,19 +2026,18 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
2036
2026
  states?: any;
2037
2027
  tests?: any;
2038
2028
  timezones?: any;
2029
+ group?: any;
2030
+ location?: any;
2039
2031
  locations?: any;
2040
2032
  };
2041
2033
  durationIdV3: number;
2042
2034
  durationLabel: string;
2043
- deliverables: string | null;
2044
- deadline: string | null;
2045
- tools: any[];
2046
2035
  publishedOn?: string | null | undefined;
2047
2036
  renewedOn?: string | null | undefined;
2048
2037
  engagement?: string | null | undefined;
2038
+ freelancersToHire?: number | null | undefined;
2049
2039
  connectPrice?: number | null | undefined;
2050
2040
  clientRelation?: any;
2051
- freelancersToHire?: number | null | undefined;
2052
2041
  relevanceEncoded?: string | null | undefined;
2053
2042
  enterpriseJob?: boolean | null | undefined;
2054
2043
  tierText?: string | null | undefined;
@@ -2057,15 +2046,15 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
2057
2046
  premium?: boolean | null | undefined;
2058
2047
  attrs?: {
2059
2048
  uid: string;
2060
- prefLabel: string;
2061
2049
  parentSkillUid: string | null;
2050
+ prefLabel: string;
2062
2051
  prettyName: string;
2063
2052
  highlighted: boolean;
2064
2053
  freeText?: any;
2065
2054
  }[] | null | undefined;
2066
2055
  hourlyBudget?: {
2067
- max: number;
2068
2056
  min: number;
2057
+ max: number;
2069
2058
  } | null | undefined;
2070
2059
  weeklyBudget?: {
2071
2060
  amount: number;
@@ -2075,10 +2064,10 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
2075
2064
  };
2076
2065
  buyer: {
2077
2066
  location: {
2078
- country: string;
2079
2067
  offsetFromUtcMillis: number;
2080
2068
  countryTimezone: string;
2081
2069
  city: string | null;
2070
+ country: string;
2082
2071
  };
2083
2072
  isEnterprise: boolean;
2084
2073
  isPaymentMethodVerified: boolean;
@@ -2114,45 +2103,45 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
2114
2103
  };
2115
2104
  openJobs: {
2116
2105
  type: number;
2117
- id: string;
2118
- title: string;
2119
2106
  uid: string;
2107
+ title: string;
2120
2108
  ciphertext: string;
2121
2109
  access: number | null;
2110
+ id: string;
2122
2111
  isPtcPrivate: boolean;
2123
2112
  }[];
2124
2113
  workHistory: any[];
2125
2114
  similarJobs: {
2115
+ renewedOn: string | null;
2116
+ engagement: string | null;
2126
2117
  type: number;
2127
- id: string | null;
2128
- title: string;
2129
- description: string;
2130
2118
  amount: {
2131
2119
  amount: number;
2132
2120
  };
2133
2121
  hourlyBudgetMin: number;
2134
2122
  hourlyBudgetMax: number;
2135
2123
  contractorTier: number;
2124
+ description: string;
2125
+ title: string;
2136
2126
  ciphertext: string;
2137
2127
  createdOn: string;
2138
2128
  durationLabel: string;
2129
+ id: string | null;
2139
2130
  ontologySkills: {
2140
- id: string | null;
2141
2131
  prefLabel: string;
2132
+ id: string | null;
2142
2133
  }[];
2143
- renewedOn: string | null;
2144
- engagement: string | null;
2145
2134
  maxAmount?: any;
2146
2135
  }[];
2147
2136
  sands: {
2137
+ ontologySkills: any[];
2148
2138
  occupation: {
2149
- id: string;
2150
2139
  uid: string;
2140
+ prefLabel: string;
2151
2141
  freeText: string | null;
2142
+ id: string;
2152
2143
  ontologyId: string;
2153
- prefLabel: string;
2154
2144
  };
2155
- ontologySkills: any[];
2156
2145
  additionalSkills: {
2157
2146
  name: string;
2158
2147
  uid: string | null;
@@ -2160,12 +2149,23 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
2160
2149
  relevance: string;
2161
2150
  }[];
2162
2151
  };
2152
+ auth: {
2153
+ isVisitor: boolean;
2154
+ isAgency: boolean;
2155
+ isFreelancer: boolean;
2156
+ isClient: boolean;
2157
+ isUpworkPlusBuyer: boolean;
2158
+ domestic: {
2159
+ isInfographicTooltipAvailable: boolean;
2160
+ country?: any;
2161
+ };
2162
+ };
2163
2163
  enterpriseJobAdditionalInfo: Record<string, any>;
2164
2164
  profileMatchServiceUid: string | null;
2165
2165
  seo: {
2166
- url: string;
2167
- title: string;
2168
2166
  description: string;
2167
+ title: string;
2168
+ url: string;
2169
2169
  };
2170
2170
  isGroupOpportunity: boolean;
2171
2171
  isPhoneVerified: boolean;
@@ -2197,12 +2197,12 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2197
2197
  visitedJobs: z.ZodArray<z.ZodAny, "many">;
2198
2198
  }, "strip", z.ZodTypeAny, {
2199
2199
  visitedJobs: any[];
2200
- channel?: any;
2201
2200
  errorResponse?: any;
2201
+ channel?: any;
2202
2202
  }, {
2203
2203
  visitedJobs: any[];
2204
- channel?: any;
2205
2204
  errorResponse?: any;
2205
+ channel?: any;
2206
2206
  }>;
2207
2207
  qt: z.ZodObject<{
2208
2208
  isNewVisitorNavV1Enabled: z.ZodBoolean;
@@ -2284,15 +2284,15 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2284
2284
  isLoggedIn: z.ZodNullable<z.ZodBoolean>;
2285
2285
  auth: z.ZodBoolean;
2286
2286
  }, "strip", z.ZodTypeAny, {
2287
+ auth: boolean;
2287
2288
  loaded: boolean;
2288
2289
  loading: boolean;
2289
- auth: boolean;
2290
2290
  isLoggedIn: boolean | null;
2291
2291
  error?: any;
2292
2292
  }, {
2293
+ auth: boolean;
2293
2294
  loaded: boolean;
2294
2295
  loading: boolean;
2295
- auth: boolean;
2296
2296
  isLoggedIn: boolean | null;
2297
2297
  error?: any;
2298
2298
  }>;
@@ -2312,46 +2312,46 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2312
2312
  agency: z.ZodNullable<z.ZodBoolean>;
2313
2313
  individual: z.ZodNullable<z.ZodBoolean>;
2314
2314
  }, "strip", z.ZodTypeAny, {
2315
+ client: boolean | null;
2315
2316
  vendor: boolean | null;
2316
2317
  agency: boolean | null;
2317
- client: boolean | null;
2318
2318
  individual: boolean | null;
2319
2319
  }, {
2320
+ client: boolean | null;
2320
2321
  vendor: boolean | null;
2321
2322
  agency: boolean | null;
2322
- client: boolean | null;
2323
2323
  individual: boolean | null;
2324
2324
  }>;
2325
2325
  portrait100: z.ZodNullable<z.ZodString>;
2326
2326
  }, "strip", z.ZodTypeAny, {
2327
2327
  type: string | null;
2328
- id: string | null;
2329
2328
  title: string | null;
2330
- photoUrl: string | null;
2329
+ id: string | null;
2331
2330
  rid: string | null;
2332
2331
  legacyType: string | null;
2333
2332
  enterpriseType: string | null;
2334
2333
  typeTitle: string | null;
2334
+ photoUrl: string | null;
2335
2335
  flag: {
2336
+ client: boolean | null;
2336
2337
  vendor: boolean | null;
2337
2338
  agency: boolean | null;
2338
- client: boolean | null;
2339
2339
  individual: boolean | null;
2340
2340
  };
2341
2341
  portrait100: string | null;
2342
2342
  }, {
2343
2343
  type: string | null;
2344
- id: string | null;
2345
2344
  title: string | null;
2346
- photoUrl: string | null;
2345
+ id: string | null;
2347
2346
  rid: string | null;
2348
2347
  legacyType: string | null;
2349
2348
  enterpriseType: string | null;
2350
2349
  typeTitle: string | null;
2350
+ photoUrl: string | null;
2351
2351
  flag: {
2352
+ client: boolean | null;
2352
2353
  vendor: boolean | null;
2353
2354
  agency: boolean | null;
2354
- client: boolean | null;
2355
2355
  individual: boolean | null;
2356
2356
  };
2357
2357
  portrait100: string | null;
@@ -2365,17 +2365,17 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2365
2365
  orgs: any[];
2366
2366
  current: {
2367
2367
  type: string | null;
2368
- id: string | null;
2369
2368
  title: string | null;
2370
- photoUrl: string | null;
2369
+ id: string | null;
2371
2370
  rid: string | null;
2372
2371
  legacyType: string | null;
2373
2372
  enterpriseType: string | null;
2374
2373
  typeTitle: string | null;
2374
+ photoUrl: string | null;
2375
2375
  flag: {
2376
+ client: boolean | null;
2376
2377
  vendor: boolean | null;
2377
2378
  agency: boolean | null;
2378
- client: boolean | null;
2379
2379
  individual: boolean | null;
2380
2380
  };
2381
2381
  portrait100: string | null;
@@ -2386,17 +2386,17 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2386
2386
  orgs: any[];
2387
2387
  current: {
2388
2388
  type: string | null;
2389
- id: string | null;
2390
2389
  title: string | null;
2391
- photoUrl: string | null;
2390
+ id: string | null;
2392
2391
  rid: string | null;
2393
2392
  legacyType: string | null;
2394
2393
  enterpriseType: string | null;
2395
2394
  typeTitle: string | null;
2395
+ photoUrl: string | null;
2396
2396
  flag: {
2397
+ client: boolean | null;
2397
2398
  vendor: boolean | null;
2398
2399
  agency: boolean | null;
2399
- client: boolean | null;
2400
2400
  individual: boolean | null;
2401
2401
  };
2402
2402
  portrait100: string | null;
@@ -2570,8 +2570,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2570
2570
  }>;
2571
2571
  }, "strip", z.ZodTypeAny, {
2572
2572
  location: string;
2573
- loaded: boolean | null;
2574
- loading: boolean | null;
2575
2573
  context: {
2576
2574
  visitor_id: string | null;
2577
2575
  user_uid: string | null;
@@ -2581,14 +2579,14 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2581
2579
  user_is_sudo: boolean | null;
2582
2580
  is_logged_in: boolean | null;
2583
2581
  };
2582
+ loaded: boolean | null;
2583
+ loading: boolean | null;
2584
2584
  visitorApiKey: string | null;
2585
2585
  suit2Enabled: boolean;
2586
- error?: any;
2587
2586
  promise?: any;
2587
+ error?: any;
2588
2588
  }, {
2589
2589
  location: string;
2590
- loaded: boolean | null;
2591
- loading: boolean | null;
2592
2590
  context: {
2593
2591
  visitor_id: string | null;
2594
2592
  user_uid: string | null;
@@ -2598,10 +2596,12 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2598
2596
  user_is_sudo: boolean | null;
2599
2597
  is_logged_in: boolean | null;
2600
2598
  };
2599
+ loaded: boolean | null;
2600
+ loading: boolean | null;
2601
2601
  visitorApiKey: string | null;
2602
2602
  suit2Enabled: boolean;
2603
- error?: any;
2604
2603
  promise?: any;
2604
+ error?: any;
2605
2605
  }>;
2606
2606
  theme: z.ZodObject<{
2607
2607
  isSystemThemeMode: z.ZodNullable<z.ZodBoolean>;
@@ -2719,20 +2719,20 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2719
2719
  value: z.ZodString;
2720
2720
  skill: z.ZodNullable<z.ZodAny>;
2721
2721
  }, "strip", z.ZodTypeAny, {
2722
- type: string;
2723
- name: string;
2724
- value: string;
2725
- label: string;
2726
2722
  customValue: string | null;
2723
+ label: string;
2724
+ name: string;
2727
2725
  sortOrder: number;
2728
- skill?: any;
2729
- }, {
2730
2726
  type: string;
2731
- name: string;
2732
2727
  value: string;
2733
- label: string;
2728
+ skill?: any;
2729
+ }, {
2734
2730
  customValue: string | null;
2731
+ label: string;
2732
+ name: string;
2735
2733
  sortOrder: number;
2734
+ type: string;
2735
+ value: string;
2736
2736
  skill?: any;
2737
2737
  }>, "many">;
2738
2738
  clientActivity: z.ZodObject<{
@@ -2818,8 +2818,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2818
2818
  shouldHavePortfolio: boolean;
2819
2819
  locationCheckRequired: boolean;
2820
2820
  minHoursWeek: number | null;
2821
- location?: any;
2822
- group?: any;
2823
2821
  countries?: any;
2824
2822
  earnings?: any;
2825
2823
  groupRecno?: any;
@@ -2831,6 +2829,8 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2831
2829
  states?: any;
2832
2830
  tests?: any;
2833
2831
  timezones?: any;
2832
+ group?: any;
2833
+ location?: any;
2834
2834
  locations?: any;
2835
2835
  }, {
2836
2836
  type: number;
@@ -2842,8 +2842,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2842
2842
  shouldHavePortfolio: boolean;
2843
2843
  locationCheckRequired: boolean;
2844
2844
  minHoursWeek: number | null;
2845
- location?: any;
2846
- group?: any;
2847
2845
  countries?: any;
2848
2846
  earnings?: any;
2849
2847
  groupRecno?: any;
@@ -2855,6 +2853,8 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2855
2853
  states?: any;
2856
2854
  tests?: any;
2857
2855
  timezones?: any;
2856
+ group?: any;
2857
+ location?: any;
2858
2858
  locations?: any;
2859
2859
  }>;
2860
2860
  durationIdV3: z.ZodNumber;
@@ -2876,15 +2876,15 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2876
2876
  highlighted: z.ZodBoolean;
2877
2877
  }, "strip", z.ZodTypeAny, {
2878
2878
  uid: string;
2879
- prefLabel: string;
2880
2879
  parentSkillUid: string | null;
2880
+ prefLabel: string;
2881
2881
  prettyName: string;
2882
2882
  highlighted: boolean;
2883
2883
  freeText?: any;
2884
2884
  }, {
2885
2885
  uid: string;
2886
- prefLabel: string;
2887
2886
  parentSkillUid: string | null;
2887
+ prefLabel: string;
2888
2888
  prettyName: string;
2889
2889
  highlighted: boolean;
2890
2890
  freeText?: any;
@@ -2893,11 +2893,11 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2893
2893
  min: z.ZodNumber;
2894
2894
  max: z.ZodNumber;
2895
2895
  }, "strip", z.ZodTypeAny, {
2896
- max: number;
2897
2896
  min: number;
2898
- }, {
2899
2897
  max: number;
2898
+ }, {
2900
2899
  min: number;
2900
+ max: number;
2901
2901
  }>>>;
2902
2902
  weeklyBudget: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2903
2903
  amount: z.ZodNumber;
@@ -2909,10 +2909,9 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2909
2909
  isSTSVectorSearchResult: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2910
2910
  }, "strip", z.ZodTypeAny, {
2911
2911
  type: number;
2912
- title: string;
2913
- description: string;
2914
2912
  status: number;
2915
2913
  numberOfPositionsToHire: number;
2914
+ uid: string;
2916
2915
  category: {
2917
2916
  name: string;
2918
2917
  urlSlug: string;
@@ -2941,13 +2940,14 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2941
2940
  hourlyBudgetType: string | null;
2942
2941
  };
2943
2942
  contractorTier: number;
2943
+ description: string;
2944
2944
  segmentationData: {
2945
- type: string;
2946
- name: string;
2947
- value: string;
2948
- label: string;
2949
2945
  customValue: string | null;
2946
+ label: string;
2947
+ name: string;
2950
2948
  sortOrder: number;
2949
+ type: string;
2950
+ value: string;
2951
2951
  skill?: any;
2952
2952
  }[];
2953
2953
  clientActivity: {
@@ -2962,7 +2962,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2962
2962
  annotations: {
2963
2963
  tags: string[];
2964
2964
  };
2965
- uid: string;
2965
+ title: string;
2966
2966
  ciphertext: string;
2967
2967
  access: number;
2968
2968
  createdOn: string;
@@ -2971,6 +2971,9 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2971
2971
  notSureFreelancersToHire: boolean;
2972
2972
  notSureExperienceLevel: boolean;
2973
2973
  isContractToHire: boolean;
2974
+ deliverables: string | null;
2975
+ deadline: string | null;
2976
+ tools: any[];
2974
2977
  qualifications: {
2975
2978
  type: number;
2976
2979
  localMarket: boolean;
@@ -2981,8 +2984,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2981
2984
  shouldHavePortfolio: boolean;
2982
2985
  locationCheckRequired: boolean;
2983
2986
  minHoursWeek: number | null;
2984
- location?: any;
2985
- group?: any;
2986
2987
  countries?: any;
2987
2988
  earnings?: any;
2988
2989
  groupRecno?: any;
@@ -2994,19 +2995,18 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2994
2995
  states?: any;
2995
2996
  tests?: any;
2996
2997
  timezones?: any;
2998
+ group?: any;
2999
+ location?: any;
2997
3000
  locations?: any;
2998
3001
  };
2999
3002
  durationIdV3: number;
3000
3003
  durationLabel: string;
3001
- deliverables: string | null;
3002
- deadline: string | null;
3003
- tools: any[];
3004
3004
  publishedOn?: string | null | undefined;
3005
3005
  renewedOn?: string | null | undefined;
3006
3006
  engagement?: string | null | undefined;
3007
+ freelancersToHire?: number | null | undefined;
3007
3008
  connectPrice?: number | null | undefined;
3008
3009
  clientRelation?: any;
3009
- freelancersToHire?: number | null | undefined;
3010
3010
  relevanceEncoded?: string | null | undefined;
3011
3011
  enterpriseJob?: boolean | null | undefined;
3012
3012
  tierText?: string | null | undefined;
@@ -3015,15 +3015,15 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3015
3015
  premium?: boolean | null | undefined;
3016
3016
  attrs?: {
3017
3017
  uid: string;
3018
- prefLabel: string;
3019
3018
  parentSkillUid: string | null;
3019
+ prefLabel: string;
3020
3020
  prettyName: string;
3021
3021
  highlighted: boolean;
3022
3022
  freeText?: any;
3023
3023
  }[] | null | undefined;
3024
3024
  hourlyBudget?: {
3025
- max: number;
3026
3025
  min: number;
3026
+ max: number;
3027
3027
  } | null | undefined;
3028
3028
  weeklyBudget?: {
3029
3029
  amount: number;
@@ -3032,10 +3032,9 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3032
3032
  weeklyRetainerBudget?: any;
3033
3033
  }, {
3034
3034
  type: number;
3035
- title: string;
3036
- description: string;
3037
3035
  status: number;
3038
3036
  numberOfPositionsToHire: number;
3037
+ uid: string;
3039
3038
  category: {
3040
3039
  name: string;
3041
3040
  urlSlug: string;
@@ -3064,13 +3063,14 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3064
3063
  hourlyBudgetType: string | null;
3065
3064
  };
3066
3065
  contractorTier: number;
3066
+ description: string;
3067
3067
  segmentationData: {
3068
- type: string;
3069
- name: string;
3070
- value: string;
3071
- label: string;
3072
3068
  customValue: string | null;
3069
+ label: string;
3070
+ name: string;
3073
3071
  sortOrder: number;
3072
+ type: string;
3073
+ value: string;
3074
3074
  skill?: any;
3075
3075
  }[];
3076
3076
  clientActivity: {
@@ -3085,7 +3085,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3085
3085
  annotations: {
3086
3086
  tags: string[];
3087
3087
  };
3088
- uid: string;
3088
+ title: string;
3089
3089
  ciphertext: string;
3090
3090
  access: number;
3091
3091
  createdOn: string;
@@ -3094,6 +3094,9 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3094
3094
  notSureFreelancersToHire: boolean;
3095
3095
  notSureExperienceLevel: boolean;
3096
3096
  isContractToHire: boolean;
3097
+ deliverables: string | null;
3098
+ deadline: string | null;
3099
+ tools: any[];
3097
3100
  qualifications: {
3098
3101
  type: number;
3099
3102
  localMarket: boolean;
@@ -3104,8 +3107,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3104
3107
  shouldHavePortfolio: boolean;
3105
3108
  locationCheckRequired: boolean;
3106
3109
  minHoursWeek: number | null;
3107
- location?: any;
3108
- group?: any;
3109
3110
  countries?: any;
3110
3111
  earnings?: any;
3111
3112
  groupRecno?: any;
@@ -3117,19 +3118,18 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3117
3118
  states?: any;
3118
3119
  tests?: any;
3119
3120
  timezones?: any;
3121
+ group?: any;
3122
+ location?: any;
3120
3123
  locations?: any;
3121
3124
  };
3122
3125
  durationIdV3: number;
3123
3126
  durationLabel: string;
3124
- deliverables: string | null;
3125
- deadline: string | null;
3126
- tools: any[];
3127
3127
  publishedOn?: string | null | undefined;
3128
3128
  renewedOn?: string | null | undefined;
3129
3129
  engagement?: string | null | undefined;
3130
+ freelancersToHire?: number | null | undefined;
3130
3131
  connectPrice?: number | null | undefined;
3131
3132
  clientRelation?: any;
3132
- freelancersToHire?: number | null | undefined;
3133
3133
  relevanceEncoded?: string | null | undefined;
3134
3134
  enterpriseJob?: boolean | null | undefined;
3135
3135
  tierText?: string | null | undefined;
@@ -3138,15 +3138,15 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3138
3138
  premium?: boolean | null | undefined;
3139
3139
  attrs?: {
3140
3140
  uid: string;
3141
- prefLabel: string;
3142
3141
  parentSkillUid: string | null;
3142
+ prefLabel: string;
3143
3143
  prettyName: string;
3144
3144
  highlighted: boolean;
3145
3145
  freeText?: any;
3146
3146
  }[] | null | undefined;
3147
3147
  hourlyBudget?: {
3148
- max: number;
3149
3148
  min: number;
3149
+ max: number;
3150
3150
  } | null | undefined;
3151
3151
  weeklyBudget?: {
3152
3152
  amount: number;
@@ -3198,15 +3198,15 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3198
3198
  city: z.ZodNullable<z.ZodString>;
3199
3199
  country: z.ZodString;
3200
3200
  }, "strip", z.ZodTypeAny, {
3201
- country: string;
3202
3201
  offsetFromUtcMillis: number;
3203
3202
  countryTimezone: string;
3204
3203
  city: string | null;
3205
- }, {
3206
3204
  country: string;
3205
+ }, {
3207
3206
  offsetFromUtcMillis: number;
3208
3207
  countryTimezone: string;
3209
3208
  city: string | null;
3209
+ country: string;
3210
3210
  }>;
3211
3211
  company: z.ZodObject<{
3212
3212
  isEDCReplicated: z.ZodNullable<z.ZodAny>;
@@ -3249,10 +3249,10 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3249
3249
  avgHourlyJobsRate: z.ZodNullable<z.ZodAny>;
3250
3250
  }, "strip", z.ZodTypeAny, {
3251
3251
  location: {
3252
- country: string;
3253
3252
  offsetFromUtcMillis: number;
3254
3253
  countryTimezone: string;
3255
3254
  city: string | null;
3255
+ country: string;
3256
3256
  };
3257
3257
  isEnterprise: boolean;
3258
3258
  isPaymentMethodVerified: boolean;
@@ -3282,10 +3282,10 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3282
3282
  avgHourlyJobsRate?: any;
3283
3283
  }, {
3284
3284
  location: {
3285
- country: string;
3286
3285
  offsetFromUtcMillis: number;
3287
3286
  countryTimezone: string;
3288
3287
  city: string | null;
3288
+ country: string;
3289
3289
  };
3290
3290
  isEnterprise: boolean;
3291
3291
  isPaymentMethodVerified: boolean;
@@ -3341,19 +3341,19 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3341
3341
  access: z.ZodNullable<z.ZodNumber>;
3342
3342
  }, "strip", z.ZodTypeAny, {
3343
3343
  type: number;
3344
- id: string;
3345
- title: string;
3346
3344
  uid: string;
3345
+ title: string;
3347
3346
  ciphertext: string;
3348
3347
  access: number | null;
3348
+ id: string;
3349
3349
  isPtcPrivate: boolean;
3350
3350
  }, {
3351
3351
  type: number;
3352
- id: string;
3353
- title: string;
3354
3352
  uid: string;
3353
+ title: string;
3355
3354
  ciphertext: string;
3356
3355
  access: number | null;
3356
+ id: string;
3357
3357
  isPtcPrivate: boolean;
3358
3358
  }>, "many">;
3359
3359
  workHistory: z.ZodArray<z.ZodAny, "many">;
@@ -3380,55 +3380,55 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3380
3380
  id: z.ZodNullable<z.ZodString>;
3381
3381
  prefLabel: z.ZodString;
3382
3382
  }, "strip", z.ZodTypeAny, {
3383
- id: string | null;
3384
3383
  prefLabel: string;
3385
- }, {
3386
3384
  id: string | null;
3385
+ }, {
3387
3386
  prefLabel: string;
3387
+ id: string | null;
3388
3388
  }>, "many">;
3389
3389
  hourlyBudgetMin: z.ZodNumber;
3390
3390
  hourlyBudgetMax: z.ZodNumber;
3391
3391
  }, "strip", z.ZodTypeAny, {
3392
+ renewedOn: string | null;
3393
+ engagement: string | null;
3392
3394
  type: number;
3393
- id: string | null;
3394
- title: string;
3395
- description: string;
3396
3395
  amount: {
3397
3396
  amount: number;
3398
3397
  };
3399
3398
  hourlyBudgetMin: number;
3400
3399
  hourlyBudgetMax: number;
3401
3400
  contractorTier: number;
3401
+ description: string;
3402
+ title: string;
3402
3403
  ciphertext: string;
3403
3404
  createdOn: string;
3404
3405
  durationLabel: string;
3406
+ id: string | null;
3405
3407
  ontologySkills: {
3406
- id: string | null;
3407
3408
  prefLabel: string;
3409
+ id: string | null;
3408
3410
  }[];
3409
- renewedOn: string | null;
3410
- engagement: string | null;
3411
3411
  maxAmount?: any;
3412
3412
  }, {
3413
+ renewedOn: string | null;
3414
+ engagement: string | null;
3413
3415
  type: number;
3414
- id: string | null;
3415
- title: string;
3416
- description: string;
3417
3416
  amount: {
3418
3417
  amount: number;
3419
3418
  };
3420
3419
  hourlyBudgetMin: number;
3421
3420
  hourlyBudgetMax: number;
3422
3421
  contractorTier: number;
3422
+ description: string;
3423
+ title: string;
3423
3424
  ciphertext: string;
3424
3425
  createdOn: string;
3425
3426
  durationLabel: string;
3427
+ id: string | null;
3426
3428
  ontologySkills: {
3427
- id: string | null;
3428
3429
  prefLabel: string;
3430
+ id: string | null;
3429
3431
  }[];
3430
- renewedOn: string | null;
3431
- engagement: string | null;
3432
3432
  maxAmount?: any;
3433
3433
  }>, "many">;
3434
3434
  sands: z.ZodObject<{
@@ -3439,17 +3439,17 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3439
3439
  id: z.ZodString;
3440
3440
  uid: z.ZodString;
3441
3441
  }, "strip", z.ZodTypeAny, {
3442
- id: string;
3443
3442
  uid: string;
3443
+ prefLabel: string;
3444
3444
  freeText: string | null;
3445
+ id: string;
3445
3446
  ontologyId: string;
3446
- prefLabel: string;
3447
3447
  }, {
3448
- id: string;
3449
3448
  uid: string;
3449
+ prefLabel: string;
3450
3450
  freeText: string | null;
3451
+ id: string;
3451
3452
  ontologyId: string;
3452
- prefLabel: string;
3453
3453
  }>;
3454
3454
  ontologySkills: z.ZodArray<z.ZodAny, "many">;
3455
3455
  additionalSkills: z.ZodArray<z.ZodObject<{
@@ -3469,14 +3469,14 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3469
3469
  relevance: string;
3470
3470
  }>, "many">;
3471
3471
  }, "strip", z.ZodTypeAny, {
3472
+ ontologySkills: any[];
3472
3473
  occupation: {
3473
- id: string;
3474
3474
  uid: string;
3475
+ prefLabel: string;
3475
3476
  freeText: string | null;
3477
+ id: string;
3476
3478
  ontologyId: string;
3477
- prefLabel: string;
3478
3479
  };
3479
- ontologySkills: any[];
3480
3480
  additionalSkills: {
3481
3481
  name: string;
3482
3482
  uid: string | null;
@@ -3484,14 +3484,14 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3484
3484
  relevance: string;
3485
3485
  }[];
3486
3486
  }, {
3487
+ ontologySkills: any[];
3487
3488
  occupation: {
3488
- id: string;
3489
3489
  uid: string;
3490
+ prefLabel: string;
3490
3491
  freeText: string | null;
3492
+ id: string;
3491
3493
  ontologyId: string;
3492
- prefLabel: string;
3493
3494
  };
3494
- ontologySkills: any[];
3495
3495
  additionalSkills: {
3496
3496
  name: string;
3497
3497
  uid: string | null;
@@ -3516,25 +3516,25 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3516
3516
  country?: any;
3517
3517
  }>;
3518
3518
  }, "strip", z.ZodTypeAny, {
3519
- domestic: {
3520
- isInfographicTooltipAvailable: boolean;
3521
- country?: any;
3522
- };
3523
3519
  isVisitor: boolean;
3524
3520
  isAgency: boolean;
3525
3521
  isFreelancer: boolean;
3526
3522
  isClient: boolean;
3527
3523
  isUpworkPlusBuyer: boolean;
3528
- }, {
3529
3524
  domestic: {
3530
3525
  isInfographicTooltipAvailable: boolean;
3531
3526
  country?: any;
3532
3527
  };
3528
+ }, {
3533
3529
  isVisitor: boolean;
3534
3530
  isAgency: boolean;
3535
3531
  isFreelancer: boolean;
3536
3532
  isClient: boolean;
3537
3533
  isUpworkPlusBuyer: boolean;
3534
+ domestic: {
3535
+ isInfographicTooltipAvailable: boolean;
3536
+ country?: any;
3537
+ };
3538
3538
  }>;
3539
3539
  applicants: z.ZodNullable<z.ZodAny>;
3540
3540
  connects: z.ZodNullable<z.ZodAny>;
@@ -3546,13 +3546,13 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3546
3546
  description: z.ZodString;
3547
3547
  url: z.ZodString;
3548
3548
  }, "strip", z.ZodTypeAny, {
3549
- url: string;
3550
- title: string;
3551
3549
  description: string;
3552
- }, {
3553
- url: string;
3554
3550
  title: string;
3551
+ url: string;
3552
+ }, {
3555
3553
  description: string;
3554
+ title: string;
3555
+ url: string;
3556
3556
  }>;
3557
3557
  teamUid: z.ZodNullable<z.ZodAny>;
3558
3558
  proposalPermissions: z.ZodNullable<z.ZodAny>;
@@ -3569,24 +3569,12 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3569
3569
  aiInterviewStatus: z.ZodNullable<z.ZodAny>;
3570
3570
  aiInterviewJoinLimitReached: z.ZodBoolean;
3571
3571
  }, "strip", z.ZodTypeAny, {
3572
- auth: {
3573
- domestic: {
3574
- isInfographicTooltipAvailable: boolean;
3575
- country?: any;
3576
- };
3577
- isVisitor: boolean;
3578
- isAgency: boolean;
3579
- isFreelancer: boolean;
3580
- isClient: boolean;
3581
- isUpworkPlusBuyer: boolean;
3582
- };
3583
3572
  cache: boolean;
3584
3573
  job: {
3585
3574
  type: number;
3586
- title: string;
3587
- description: string;
3588
3575
  status: number;
3589
3576
  numberOfPositionsToHire: number;
3577
+ uid: string;
3590
3578
  category: {
3591
3579
  name: string;
3592
3580
  urlSlug: string;
@@ -3615,13 +3603,14 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3615
3603
  hourlyBudgetType: string | null;
3616
3604
  };
3617
3605
  contractorTier: number;
3606
+ description: string;
3618
3607
  segmentationData: {
3619
- type: string;
3620
- name: string;
3621
- value: string;
3622
- label: string;
3623
3608
  customValue: string | null;
3609
+ label: string;
3610
+ name: string;
3624
3611
  sortOrder: number;
3612
+ type: string;
3613
+ value: string;
3625
3614
  skill?: any;
3626
3615
  }[];
3627
3616
  clientActivity: {
@@ -3636,7 +3625,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3636
3625
  annotations: {
3637
3626
  tags: string[];
3638
3627
  };
3639
- uid: string;
3628
+ title: string;
3640
3629
  ciphertext: string;
3641
3630
  access: number;
3642
3631
  createdOn: string;
@@ -3645,6 +3634,9 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3645
3634
  notSureFreelancersToHire: boolean;
3646
3635
  notSureExperienceLevel: boolean;
3647
3636
  isContractToHire: boolean;
3637
+ deliverables: string | null;
3638
+ deadline: string | null;
3639
+ tools: any[];
3648
3640
  qualifications: {
3649
3641
  type: number;
3650
3642
  localMarket: boolean;
@@ -3655,8 +3647,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3655
3647
  shouldHavePortfolio: boolean;
3656
3648
  locationCheckRequired: boolean;
3657
3649
  minHoursWeek: number | null;
3658
- location?: any;
3659
- group?: any;
3660
3650
  countries?: any;
3661
3651
  earnings?: any;
3662
3652
  groupRecno?: any;
@@ -3668,19 +3658,18 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3668
3658
  states?: any;
3669
3659
  tests?: any;
3670
3660
  timezones?: any;
3661
+ group?: any;
3662
+ location?: any;
3671
3663
  locations?: any;
3672
3664
  };
3673
3665
  durationIdV3: number;
3674
3666
  durationLabel: string;
3675
- deliverables: string | null;
3676
- deadline: string | null;
3677
- tools: any[];
3678
3667
  publishedOn?: string | null | undefined;
3679
3668
  renewedOn?: string | null | undefined;
3680
3669
  engagement?: string | null | undefined;
3670
+ freelancersToHire?: number | null | undefined;
3681
3671
  connectPrice?: number | null | undefined;
3682
3672
  clientRelation?: any;
3683
- freelancersToHire?: number | null | undefined;
3684
3673
  relevanceEncoded?: string | null | undefined;
3685
3674
  enterpriseJob?: boolean | null | undefined;
3686
3675
  tierText?: string | null | undefined;
@@ -3689,15 +3678,15 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3689
3678
  premium?: boolean | null | undefined;
3690
3679
  attrs?: {
3691
3680
  uid: string;
3692
- prefLabel: string;
3693
3681
  parentSkillUid: string | null;
3682
+ prefLabel: string;
3694
3683
  prettyName: string;
3695
3684
  highlighted: boolean;
3696
3685
  freeText?: any;
3697
3686
  }[] | null | undefined;
3698
3687
  hourlyBudget?: {
3699
- max: number;
3700
3688
  min: number;
3689
+ max: number;
3701
3690
  } | null | undefined;
3702
3691
  weeklyBudget?: {
3703
3692
  amount: number;
@@ -3707,10 +3696,10 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3707
3696
  };
3708
3697
  buyer: {
3709
3698
  location: {
3710
- country: string;
3711
3699
  offsetFromUtcMillis: number;
3712
3700
  countryTimezone: string;
3713
3701
  city: string | null;
3702
+ country: string;
3714
3703
  };
3715
3704
  isEnterprise: boolean;
3716
3705
  isPaymentMethodVerified: boolean;
@@ -3746,45 +3735,45 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3746
3735
  };
3747
3736
  openJobs: {
3748
3737
  type: number;
3749
- id: string;
3750
- title: string;
3751
3738
  uid: string;
3739
+ title: string;
3752
3740
  ciphertext: string;
3753
3741
  access: number | null;
3742
+ id: string;
3754
3743
  isPtcPrivate: boolean;
3755
3744
  }[];
3756
3745
  workHistory: any[];
3757
3746
  similarJobs: {
3747
+ renewedOn: string | null;
3748
+ engagement: string | null;
3758
3749
  type: number;
3759
- id: string | null;
3760
- title: string;
3761
- description: string;
3762
3750
  amount: {
3763
3751
  amount: number;
3764
3752
  };
3765
3753
  hourlyBudgetMin: number;
3766
3754
  hourlyBudgetMax: number;
3767
3755
  contractorTier: number;
3756
+ description: string;
3757
+ title: string;
3768
3758
  ciphertext: string;
3769
3759
  createdOn: string;
3770
3760
  durationLabel: string;
3761
+ id: string | null;
3771
3762
  ontologySkills: {
3772
- id: string | null;
3773
3763
  prefLabel: string;
3764
+ id: string | null;
3774
3765
  }[];
3775
- renewedOn: string | null;
3776
- engagement: string | null;
3777
3766
  maxAmount?: any;
3778
3767
  }[];
3779
3768
  sands: {
3769
+ ontologySkills: any[];
3780
3770
  occupation: {
3781
- id: string;
3782
3771
  uid: string;
3772
+ prefLabel: string;
3783
3773
  freeText: string | null;
3774
+ id: string;
3784
3775
  ontologyId: string;
3785
- prefLabel: string;
3786
3776
  };
3787
- ontologySkills: any[];
3788
3777
  additionalSkills: {
3789
3778
  name: string;
3790
3779
  uid: string | null;
@@ -3792,12 +3781,23 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3792
3781
  relevance: string;
3793
3782
  }[];
3794
3783
  };
3784
+ auth: {
3785
+ isVisitor: boolean;
3786
+ isAgency: boolean;
3787
+ isFreelancer: boolean;
3788
+ isClient: boolean;
3789
+ isUpworkPlusBuyer: boolean;
3790
+ domestic: {
3791
+ isInfographicTooltipAvailable: boolean;
3792
+ country?: any;
3793
+ };
3794
+ };
3795
3795
  enterpriseJobAdditionalInfo: Record<string, any>;
3796
3796
  profileMatchServiceUid: string | null;
3797
3797
  seo: {
3798
- url: string;
3799
- title: string;
3800
3798
  description: string;
3799
+ title: string;
3800
+ url: string;
3801
3801
  };
3802
3802
  isGroupOpportunity: boolean;
3803
3803
  isPhoneVerified: boolean;
@@ -3817,24 +3817,12 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3817
3817
  aiInterviewRoomId?: any;
3818
3818
  aiInterviewStatus?: any;
3819
3819
  }, {
3820
- auth: {
3821
- domestic: {
3822
- isInfographicTooltipAvailable: boolean;
3823
- country?: any;
3824
- };
3825
- isVisitor: boolean;
3826
- isAgency: boolean;
3827
- isFreelancer: boolean;
3828
- isClient: boolean;
3829
- isUpworkPlusBuyer: boolean;
3830
- };
3831
3820
  cache: boolean;
3832
3821
  job: {
3833
3822
  type: number;
3834
- title: string;
3835
- description: string;
3836
3823
  status: number;
3837
3824
  numberOfPositionsToHire: number;
3825
+ uid: string;
3838
3826
  category: {
3839
3827
  name: string;
3840
3828
  urlSlug: string;
@@ -3863,13 +3851,14 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3863
3851
  hourlyBudgetType: string | null;
3864
3852
  };
3865
3853
  contractorTier: number;
3854
+ description: string;
3866
3855
  segmentationData: {
3867
- type: string;
3868
- name: string;
3869
- value: string;
3870
- label: string;
3871
3856
  customValue: string | null;
3857
+ label: string;
3858
+ name: string;
3872
3859
  sortOrder: number;
3860
+ type: string;
3861
+ value: string;
3873
3862
  skill?: any;
3874
3863
  }[];
3875
3864
  clientActivity: {
@@ -3884,7 +3873,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3884
3873
  annotations: {
3885
3874
  tags: string[];
3886
3875
  };
3887
- uid: string;
3876
+ title: string;
3888
3877
  ciphertext: string;
3889
3878
  access: number;
3890
3879
  createdOn: string;
@@ -3893,6 +3882,9 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3893
3882
  notSureFreelancersToHire: boolean;
3894
3883
  notSureExperienceLevel: boolean;
3895
3884
  isContractToHire: boolean;
3885
+ deliverables: string | null;
3886
+ deadline: string | null;
3887
+ tools: any[];
3896
3888
  qualifications: {
3897
3889
  type: number;
3898
3890
  localMarket: boolean;
@@ -3903,8 +3895,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3903
3895
  shouldHavePortfolio: boolean;
3904
3896
  locationCheckRequired: boolean;
3905
3897
  minHoursWeek: number | null;
3906
- location?: any;
3907
- group?: any;
3908
3898
  countries?: any;
3909
3899
  earnings?: any;
3910
3900
  groupRecno?: any;
@@ -3916,19 +3906,18 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3916
3906
  states?: any;
3917
3907
  tests?: any;
3918
3908
  timezones?: any;
3909
+ group?: any;
3910
+ location?: any;
3919
3911
  locations?: any;
3920
3912
  };
3921
3913
  durationIdV3: number;
3922
3914
  durationLabel: string;
3923
- deliverables: string | null;
3924
- deadline: string | null;
3925
- tools: any[];
3926
3915
  publishedOn?: string | null | undefined;
3927
3916
  renewedOn?: string | null | undefined;
3928
3917
  engagement?: string | null | undefined;
3918
+ freelancersToHire?: number | null | undefined;
3929
3919
  connectPrice?: number | null | undefined;
3930
3920
  clientRelation?: any;
3931
- freelancersToHire?: number | null | undefined;
3932
3921
  relevanceEncoded?: string | null | undefined;
3933
3922
  enterpriseJob?: boolean | null | undefined;
3934
3923
  tierText?: string | null | undefined;
@@ -3937,15 +3926,15 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3937
3926
  premium?: boolean | null | undefined;
3938
3927
  attrs?: {
3939
3928
  uid: string;
3940
- prefLabel: string;
3941
3929
  parentSkillUid: string | null;
3930
+ prefLabel: string;
3942
3931
  prettyName: string;
3943
3932
  highlighted: boolean;
3944
3933
  freeText?: any;
3945
3934
  }[] | null | undefined;
3946
3935
  hourlyBudget?: {
3947
- max: number;
3948
3936
  min: number;
3937
+ max: number;
3949
3938
  } | null | undefined;
3950
3939
  weeklyBudget?: {
3951
3940
  amount: number;
@@ -3955,10 +3944,10 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3955
3944
  };
3956
3945
  buyer: {
3957
3946
  location: {
3958
- country: string;
3959
3947
  offsetFromUtcMillis: number;
3960
3948
  countryTimezone: string;
3961
3949
  city: string | null;
3950
+ country: string;
3962
3951
  };
3963
3952
  isEnterprise: boolean;
3964
3953
  isPaymentMethodVerified: boolean;
@@ -3994,45 +3983,45 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3994
3983
  };
3995
3984
  openJobs: {
3996
3985
  type: number;
3997
- id: string;
3998
- title: string;
3999
3986
  uid: string;
3987
+ title: string;
4000
3988
  ciphertext: string;
4001
3989
  access: number | null;
3990
+ id: string;
4002
3991
  isPtcPrivate: boolean;
4003
3992
  }[];
4004
3993
  workHistory: any[];
4005
3994
  similarJobs: {
3995
+ renewedOn: string | null;
3996
+ engagement: string | null;
4006
3997
  type: number;
4007
- id: string | null;
4008
- title: string;
4009
- description: string;
4010
3998
  amount: {
4011
3999
  amount: number;
4012
4000
  };
4013
4001
  hourlyBudgetMin: number;
4014
4002
  hourlyBudgetMax: number;
4015
4003
  contractorTier: number;
4004
+ description: string;
4005
+ title: string;
4016
4006
  ciphertext: string;
4017
4007
  createdOn: string;
4018
4008
  durationLabel: string;
4009
+ id: string | null;
4019
4010
  ontologySkills: {
4020
- id: string | null;
4021
4011
  prefLabel: string;
4012
+ id: string | null;
4022
4013
  }[];
4023
- renewedOn: string | null;
4024
- engagement: string | null;
4025
4014
  maxAmount?: any;
4026
4015
  }[];
4027
4016
  sands: {
4017
+ ontologySkills: any[];
4028
4018
  occupation: {
4029
- id: string;
4030
4019
  uid: string;
4020
+ prefLabel: string;
4031
4021
  freeText: string | null;
4022
+ id: string;
4032
4023
  ontologyId: string;
4033
- prefLabel: string;
4034
4024
  };
4035
- ontologySkills: any[];
4036
4025
  additionalSkills: {
4037
4026
  name: string;
4038
4027
  uid: string | null;
@@ -4040,12 +4029,23 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4040
4029
  relevance: string;
4041
4030
  }[];
4042
4031
  };
4032
+ auth: {
4033
+ isVisitor: boolean;
4034
+ isAgency: boolean;
4035
+ isFreelancer: boolean;
4036
+ isClient: boolean;
4037
+ isUpworkPlusBuyer: boolean;
4038
+ domestic: {
4039
+ isInfographicTooltipAvailable: boolean;
4040
+ country?: any;
4041
+ };
4042
+ };
4043
4043
  enterpriseJobAdditionalInfo: Record<string, any>;
4044
4044
  profileMatchServiceUid: string | null;
4045
4045
  seo: {
4046
- url: string;
4047
- title: string;
4048
4046
  description: string;
4047
+ title: string;
4048
+ url: string;
4049
4049
  };
4050
4050
  isGroupOpportunity: boolean;
4051
4051
  isPhoneVerified: boolean;
@@ -4076,38 +4076,10 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4076
4076
  token: string;
4077
4077
  }>>;
4078
4078
  }, "strip", z.ZodTypeAny, {
4079
- user: {
4080
- id: string | null;
4081
- loaded: boolean | null;
4082
- loading: boolean | null;
4083
- rid: string | null;
4084
- nid: string | null;
4085
- isSudo: boolean | null;
4086
- };
4087
- currency: {
4088
- currencyCode: string | null;
4089
- currencyPopupShow: boolean | null;
4090
- currencyName: string | null;
4091
- currencySymbol: string | null;
4092
- currencyRate?: any;
4093
- };
4094
- context: {
4095
- loaded: boolean;
4096
- loading: boolean;
4097
- auth: boolean;
4098
- isLoggedIn: boolean | null;
4099
- error?: any;
4100
- };
4101
4079
  job: {
4102
4080
  visitedJobs: any[];
4103
- channel?: any;
4104
4081
  errorResponse?: any;
4105
- };
4106
- flags: {
4107
- qt: Record<string, any>;
4108
- qtAllocationType: Record<string, any>;
4109
- ff: Record<string, boolean>;
4110
- computedName: Record<string, any>;
4082
+ channel?: any;
4111
4083
  };
4112
4084
  qt: {
4113
4085
  isNewVisitorNavV1Enabled: boolean;
@@ -4126,28 +4098,43 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4126
4098
  };
4127
4099
  };
4128
4100
  };
4101
+ context: {
4102
+ auth: boolean;
4103
+ loaded: boolean;
4104
+ loading: boolean;
4105
+ isLoggedIn: boolean | null;
4106
+ error?: any;
4107
+ };
4129
4108
  orgs: {
4130
4109
  loaded: boolean | null;
4131
4110
  loading: boolean | null;
4132
4111
  orgs: any[];
4133
4112
  current: {
4134
4113
  type: string | null;
4135
- id: string | null;
4136
4114
  title: string | null;
4137
- photoUrl: string | null;
4115
+ id: string | null;
4138
4116
  rid: string | null;
4139
4117
  legacyType: string | null;
4140
4118
  enterpriseType: string | null;
4141
4119
  typeTitle: string | null;
4120
+ photoUrl: string | null;
4142
4121
  flag: {
4122
+ client: boolean | null;
4143
4123
  vendor: boolean | null;
4144
4124
  agency: boolean | null;
4145
- client: boolean | null;
4146
4125
  individual: boolean | null;
4147
4126
  };
4148
4127
  portrait100: string | null;
4149
4128
  };
4150
4129
  };
4130
+ user: {
4131
+ id: string | null;
4132
+ loaded: boolean | null;
4133
+ loading: boolean | null;
4134
+ rid: string | null;
4135
+ nid: string | null;
4136
+ isSudo: boolean | null;
4137
+ };
4151
4138
  visitor: {
4152
4139
  id: string;
4153
4140
  ip: string;
@@ -4161,10 +4148,23 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4161
4148
  organizations: {
4162
4149
  items: any[];
4163
4150
  };
4151
+ currency: {
4152
+ currencyCode: string | null;
4153
+ currencyPopupShow: boolean | null;
4154
+ currencyName: string | null;
4155
+ currencySymbol: string | null;
4156
+ currencyRate?: any;
4157
+ };
4164
4158
  bot: {
4165
4159
  loaded: boolean;
4166
4160
  isBot: boolean;
4167
4161
  };
4162
+ flags: {
4163
+ qt: Record<string, any>;
4164
+ qtAllocationType: Record<string, any>;
4165
+ ff: Record<string, boolean>;
4166
+ computedName: Record<string, any>;
4167
+ };
4168
4168
  geo: {
4169
4169
  countryCode: string;
4170
4170
  promise?: any;
@@ -4180,8 +4180,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4180
4180
  };
4181
4181
  tracking: {
4182
4182
  location: string;
4183
- loaded: boolean | null;
4184
- loading: boolean | null;
4185
4183
  context: {
4186
4184
  visitor_id: string | null;
4187
4185
  user_uid: string | null;
@@ -4191,10 +4189,12 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4191
4189
  user_is_sudo: boolean | null;
4192
4190
  is_logged_in: boolean | null;
4193
4191
  };
4192
+ loaded: boolean | null;
4193
+ loading: boolean | null;
4194
4194
  visitorApiKey: string | null;
4195
4195
  suit2Enabled: boolean;
4196
- error?: any;
4197
4196
  promise?: any;
4197
+ error?: any;
4198
4198
  };
4199
4199
  theme: {
4200
4200
  isSystemThemeMode: boolean | null;
@@ -4210,24 +4210,12 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4210
4210
  }>;
4211
4211
  };
4212
4212
  jobDetails: {
4213
- auth: {
4214
- domestic: {
4215
- isInfographicTooltipAvailable: boolean;
4216
- country?: any;
4217
- };
4218
- isVisitor: boolean;
4219
- isAgency: boolean;
4220
- isFreelancer: boolean;
4221
- isClient: boolean;
4222
- isUpworkPlusBuyer: boolean;
4223
- };
4224
4213
  cache: boolean;
4225
4214
  job: {
4226
4215
  type: number;
4227
- title: string;
4228
- description: string;
4229
4216
  status: number;
4230
4217
  numberOfPositionsToHire: number;
4218
+ uid: string;
4231
4219
  category: {
4232
4220
  name: string;
4233
4221
  urlSlug: string;
@@ -4256,13 +4244,14 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4256
4244
  hourlyBudgetType: string | null;
4257
4245
  };
4258
4246
  contractorTier: number;
4247
+ description: string;
4259
4248
  segmentationData: {
4260
- type: string;
4261
- name: string;
4262
- value: string;
4263
- label: string;
4264
4249
  customValue: string | null;
4250
+ label: string;
4251
+ name: string;
4265
4252
  sortOrder: number;
4253
+ type: string;
4254
+ value: string;
4266
4255
  skill?: any;
4267
4256
  }[];
4268
4257
  clientActivity: {
@@ -4277,7 +4266,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4277
4266
  annotations: {
4278
4267
  tags: string[];
4279
4268
  };
4280
- uid: string;
4269
+ title: string;
4281
4270
  ciphertext: string;
4282
4271
  access: number;
4283
4272
  createdOn: string;
@@ -4286,6 +4275,9 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4286
4275
  notSureFreelancersToHire: boolean;
4287
4276
  notSureExperienceLevel: boolean;
4288
4277
  isContractToHire: boolean;
4278
+ deliverables: string | null;
4279
+ deadline: string | null;
4280
+ tools: any[];
4289
4281
  qualifications: {
4290
4282
  type: number;
4291
4283
  localMarket: boolean;
@@ -4296,8 +4288,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4296
4288
  shouldHavePortfolio: boolean;
4297
4289
  locationCheckRequired: boolean;
4298
4290
  minHoursWeek: number | null;
4299
- location?: any;
4300
- group?: any;
4301
4291
  countries?: any;
4302
4292
  earnings?: any;
4303
4293
  groupRecno?: any;
@@ -4309,19 +4299,18 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4309
4299
  states?: any;
4310
4300
  tests?: any;
4311
4301
  timezones?: any;
4302
+ group?: any;
4303
+ location?: any;
4312
4304
  locations?: any;
4313
4305
  };
4314
4306
  durationIdV3: number;
4315
4307
  durationLabel: string;
4316
- deliverables: string | null;
4317
- deadline: string | null;
4318
- tools: any[];
4319
4308
  publishedOn?: string | null | undefined;
4320
4309
  renewedOn?: string | null | undefined;
4321
4310
  engagement?: string | null | undefined;
4311
+ freelancersToHire?: number | null | undefined;
4322
4312
  connectPrice?: number | null | undefined;
4323
4313
  clientRelation?: any;
4324
- freelancersToHire?: number | null | undefined;
4325
4314
  relevanceEncoded?: string | null | undefined;
4326
4315
  enterpriseJob?: boolean | null | undefined;
4327
4316
  tierText?: string | null | undefined;
@@ -4330,15 +4319,15 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4330
4319
  premium?: boolean | null | undefined;
4331
4320
  attrs?: {
4332
4321
  uid: string;
4333
- prefLabel: string;
4334
4322
  parentSkillUid: string | null;
4323
+ prefLabel: string;
4335
4324
  prettyName: string;
4336
4325
  highlighted: boolean;
4337
4326
  freeText?: any;
4338
4327
  }[] | null | undefined;
4339
4328
  hourlyBudget?: {
4340
- max: number;
4341
4329
  min: number;
4330
+ max: number;
4342
4331
  } | null | undefined;
4343
4332
  weeklyBudget?: {
4344
4333
  amount: number;
@@ -4348,10 +4337,10 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4348
4337
  };
4349
4338
  buyer: {
4350
4339
  location: {
4351
- country: string;
4352
4340
  offsetFromUtcMillis: number;
4353
4341
  countryTimezone: string;
4354
4342
  city: string | null;
4343
+ country: string;
4355
4344
  };
4356
4345
  isEnterprise: boolean;
4357
4346
  isPaymentMethodVerified: boolean;
@@ -4387,45 +4376,45 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4387
4376
  };
4388
4377
  openJobs: {
4389
4378
  type: number;
4390
- id: string;
4391
- title: string;
4392
4379
  uid: string;
4380
+ title: string;
4393
4381
  ciphertext: string;
4394
4382
  access: number | null;
4383
+ id: string;
4395
4384
  isPtcPrivate: boolean;
4396
4385
  }[];
4397
4386
  workHistory: any[];
4398
4387
  similarJobs: {
4388
+ renewedOn: string | null;
4389
+ engagement: string | null;
4399
4390
  type: number;
4400
- id: string | null;
4401
- title: string;
4402
- description: string;
4403
4391
  amount: {
4404
4392
  amount: number;
4405
4393
  };
4406
4394
  hourlyBudgetMin: number;
4407
4395
  hourlyBudgetMax: number;
4408
4396
  contractorTier: number;
4397
+ description: string;
4398
+ title: string;
4409
4399
  ciphertext: string;
4410
4400
  createdOn: string;
4411
4401
  durationLabel: string;
4402
+ id: string | null;
4412
4403
  ontologySkills: {
4413
- id: string | null;
4414
4404
  prefLabel: string;
4405
+ id: string | null;
4415
4406
  }[];
4416
- renewedOn: string | null;
4417
- engagement: string | null;
4418
4407
  maxAmount?: any;
4419
4408
  }[];
4420
4409
  sands: {
4410
+ ontologySkills: any[];
4421
4411
  occupation: {
4422
- id: string;
4423
4412
  uid: string;
4413
+ prefLabel: string;
4424
4414
  freeText: string | null;
4415
+ id: string;
4425
4416
  ontologyId: string;
4426
- prefLabel: string;
4427
4417
  };
4428
- ontologySkills: any[];
4429
4418
  additionalSkills: {
4430
4419
  name: string;
4431
4420
  uid: string | null;
@@ -4433,12 +4422,23 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4433
4422
  relevance: string;
4434
4423
  }[];
4435
4424
  };
4425
+ auth: {
4426
+ isVisitor: boolean;
4427
+ isAgency: boolean;
4428
+ isFreelancer: boolean;
4429
+ isClient: boolean;
4430
+ isUpworkPlusBuyer: boolean;
4431
+ domestic: {
4432
+ isInfographicTooltipAvailable: boolean;
4433
+ country?: any;
4434
+ };
4435
+ };
4436
4436
  enterpriseJobAdditionalInfo: Record<string, any>;
4437
4437
  profileMatchServiceUid: string | null;
4438
4438
  seo: {
4439
- url: string;
4440
- title: string;
4441
4439
  description: string;
4440
+ title: string;
4441
+ url: string;
4442
4442
  };
4443
4443
  isGroupOpportunity: boolean;
4444
4444
  isPhoneVerified: boolean;
@@ -4463,38 +4463,10 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4463
4463
  token: string;
4464
4464
  } | undefined;
4465
4465
  }, {
4466
- user: {
4467
- id: string | null;
4468
- loaded: boolean | null;
4469
- loading: boolean | null;
4470
- rid: string | null;
4471
- nid: string | null;
4472
- isSudo: boolean | null;
4473
- };
4474
- currency: {
4475
- currencyCode: string | null;
4476
- currencyPopupShow: boolean | null;
4477
- currencyName: string | null;
4478
- currencySymbol: string | null;
4479
- currencyRate?: any;
4480
- };
4481
- context: {
4482
- loaded: boolean;
4483
- loading: boolean;
4484
- auth: boolean;
4485
- isLoggedIn: boolean | null;
4486
- error?: any;
4487
- };
4488
4466
  job: {
4489
4467
  visitedJobs: any[];
4490
- channel?: any;
4491
4468
  errorResponse?: any;
4492
- };
4493
- flags: {
4494
- qt: Record<string, any>;
4495
- qtAllocationType: Record<string, any>;
4496
- ff: Record<string, boolean>;
4497
- computedName: Record<string, any>;
4469
+ channel?: any;
4498
4470
  };
4499
4471
  qt: {
4500
4472
  isNewVisitorNavV1Enabled: boolean;
@@ -4513,28 +4485,43 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4513
4485
  };
4514
4486
  };
4515
4487
  };
4488
+ context: {
4489
+ auth: boolean;
4490
+ loaded: boolean;
4491
+ loading: boolean;
4492
+ isLoggedIn: boolean | null;
4493
+ error?: any;
4494
+ };
4516
4495
  orgs: {
4517
4496
  loaded: boolean | null;
4518
4497
  loading: boolean | null;
4519
4498
  orgs: any[];
4520
4499
  current: {
4521
4500
  type: string | null;
4522
- id: string | null;
4523
4501
  title: string | null;
4524
- photoUrl: string | null;
4502
+ id: string | null;
4525
4503
  rid: string | null;
4526
4504
  legacyType: string | null;
4527
4505
  enterpriseType: string | null;
4528
4506
  typeTitle: string | null;
4507
+ photoUrl: string | null;
4529
4508
  flag: {
4509
+ client: boolean | null;
4530
4510
  vendor: boolean | null;
4531
4511
  agency: boolean | null;
4532
- client: boolean | null;
4533
4512
  individual: boolean | null;
4534
4513
  };
4535
4514
  portrait100: string | null;
4536
4515
  };
4537
4516
  };
4517
+ user: {
4518
+ id: string | null;
4519
+ loaded: boolean | null;
4520
+ loading: boolean | null;
4521
+ rid: string | null;
4522
+ nid: string | null;
4523
+ isSudo: boolean | null;
4524
+ };
4538
4525
  visitor: {
4539
4526
  id: string;
4540
4527
  ip: string;
@@ -4548,10 +4535,23 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4548
4535
  organizations: {
4549
4536
  items: any[];
4550
4537
  };
4538
+ currency: {
4539
+ currencyCode: string | null;
4540
+ currencyPopupShow: boolean | null;
4541
+ currencyName: string | null;
4542
+ currencySymbol: string | null;
4543
+ currencyRate?: any;
4544
+ };
4551
4545
  bot: {
4552
4546
  loaded: boolean;
4553
4547
  isBot: boolean;
4554
4548
  };
4549
+ flags: {
4550
+ qt: Record<string, any>;
4551
+ qtAllocationType: Record<string, any>;
4552
+ ff: Record<string, boolean>;
4553
+ computedName: Record<string, any>;
4554
+ };
4555
4555
  geo: {
4556
4556
  countryCode: string;
4557
4557
  promise?: any;
@@ -4567,8 +4567,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4567
4567
  };
4568
4568
  tracking: {
4569
4569
  location: string;
4570
- loaded: boolean | null;
4571
- loading: boolean | null;
4572
4570
  context: {
4573
4571
  visitor_id: string | null;
4574
4572
  user_uid: string | null;
@@ -4578,10 +4576,12 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4578
4576
  user_is_sudo: boolean | null;
4579
4577
  is_logged_in: boolean | null;
4580
4578
  };
4579
+ loaded: boolean | null;
4580
+ loading: boolean | null;
4581
4581
  visitorApiKey: string | null;
4582
4582
  suit2Enabled: boolean;
4583
- error?: any;
4584
4583
  promise?: any;
4584
+ error?: any;
4585
4585
  };
4586
4586
  theme: {
4587
4587
  isSystemThemeMode: boolean | null;
@@ -4597,24 +4597,12 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4597
4597
  }>;
4598
4598
  };
4599
4599
  jobDetails: {
4600
- auth: {
4601
- domestic: {
4602
- isInfographicTooltipAvailable: boolean;
4603
- country?: any;
4604
- };
4605
- isVisitor: boolean;
4606
- isAgency: boolean;
4607
- isFreelancer: boolean;
4608
- isClient: boolean;
4609
- isUpworkPlusBuyer: boolean;
4610
- };
4611
4600
  cache: boolean;
4612
4601
  job: {
4613
4602
  type: number;
4614
- title: string;
4615
- description: string;
4616
4603
  status: number;
4617
4604
  numberOfPositionsToHire: number;
4605
+ uid: string;
4618
4606
  category: {
4619
4607
  name: string;
4620
4608
  urlSlug: string;
@@ -4643,13 +4631,14 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4643
4631
  hourlyBudgetType: string | null;
4644
4632
  };
4645
4633
  contractorTier: number;
4634
+ description: string;
4646
4635
  segmentationData: {
4647
- type: string;
4648
- name: string;
4649
- value: string;
4650
- label: string;
4651
4636
  customValue: string | null;
4637
+ label: string;
4638
+ name: string;
4652
4639
  sortOrder: number;
4640
+ type: string;
4641
+ value: string;
4653
4642
  skill?: any;
4654
4643
  }[];
4655
4644
  clientActivity: {
@@ -4664,7 +4653,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4664
4653
  annotations: {
4665
4654
  tags: string[];
4666
4655
  };
4667
- uid: string;
4656
+ title: string;
4668
4657
  ciphertext: string;
4669
4658
  access: number;
4670
4659
  createdOn: string;
@@ -4673,6 +4662,9 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4673
4662
  notSureFreelancersToHire: boolean;
4674
4663
  notSureExperienceLevel: boolean;
4675
4664
  isContractToHire: boolean;
4665
+ deliverables: string | null;
4666
+ deadline: string | null;
4667
+ tools: any[];
4676
4668
  qualifications: {
4677
4669
  type: number;
4678
4670
  localMarket: boolean;
@@ -4683,8 +4675,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4683
4675
  shouldHavePortfolio: boolean;
4684
4676
  locationCheckRequired: boolean;
4685
4677
  minHoursWeek: number | null;
4686
- location?: any;
4687
- group?: any;
4688
4678
  countries?: any;
4689
4679
  earnings?: any;
4690
4680
  groupRecno?: any;
@@ -4696,19 +4686,18 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4696
4686
  states?: any;
4697
4687
  tests?: any;
4698
4688
  timezones?: any;
4689
+ group?: any;
4690
+ location?: any;
4699
4691
  locations?: any;
4700
4692
  };
4701
4693
  durationIdV3: number;
4702
4694
  durationLabel: string;
4703
- deliverables: string | null;
4704
- deadline: string | null;
4705
- tools: any[];
4706
4695
  publishedOn?: string | null | undefined;
4707
4696
  renewedOn?: string | null | undefined;
4708
4697
  engagement?: string | null | undefined;
4698
+ freelancersToHire?: number | null | undefined;
4709
4699
  connectPrice?: number | null | undefined;
4710
4700
  clientRelation?: any;
4711
- freelancersToHire?: number | null | undefined;
4712
4701
  relevanceEncoded?: string | null | undefined;
4713
4702
  enterpriseJob?: boolean | null | undefined;
4714
4703
  tierText?: string | null | undefined;
@@ -4717,15 +4706,15 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4717
4706
  premium?: boolean | null | undefined;
4718
4707
  attrs?: {
4719
4708
  uid: string;
4720
- prefLabel: string;
4721
4709
  parentSkillUid: string | null;
4710
+ prefLabel: string;
4722
4711
  prettyName: string;
4723
4712
  highlighted: boolean;
4724
4713
  freeText?: any;
4725
4714
  }[] | null | undefined;
4726
4715
  hourlyBudget?: {
4727
- max: number;
4728
4716
  min: number;
4717
+ max: number;
4729
4718
  } | null | undefined;
4730
4719
  weeklyBudget?: {
4731
4720
  amount: number;
@@ -4735,10 +4724,10 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4735
4724
  };
4736
4725
  buyer: {
4737
4726
  location: {
4738
- country: string;
4739
4727
  offsetFromUtcMillis: number;
4740
4728
  countryTimezone: string;
4741
4729
  city: string | null;
4730
+ country: string;
4742
4731
  };
4743
4732
  isEnterprise: boolean;
4744
4733
  isPaymentMethodVerified: boolean;
@@ -4774,45 +4763,45 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4774
4763
  };
4775
4764
  openJobs: {
4776
4765
  type: number;
4777
- id: string;
4778
- title: string;
4779
4766
  uid: string;
4767
+ title: string;
4780
4768
  ciphertext: string;
4781
4769
  access: number | null;
4770
+ id: string;
4782
4771
  isPtcPrivate: boolean;
4783
4772
  }[];
4784
4773
  workHistory: any[];
4785
4774
  similarJobs: {
4775
+ renewedOn: string | null;
4776
+ engagement: string | null;
4786
4777
  type: number;
4787
- id: string | null;
4788
- title: string;
4789
- description: string;
4790
4778
  amount: {
4791
4779
  amount: number;
4792
4780
  };
4793
4781
  hourlyBudgetMin: number;
4794
4782
  hourlyBudgetMax: number;
4795
4783
  contractorTier: number;
4784
+ description: string;
4785
+ title: string;
4796
4786
  ciphertext: string;
4797
4787
  createdOn: string;
4798
4788
  durationLabel: string;
4789
+ id: string | null;
4799
4790
  ontologySkills: {
4800
- id: string | null;
4801
4791
  prefLabel: string;
4792
+ id: string | null;
4802
4793
  }[];
4803
- renewedOn: string | null;
4804
- engagement: string | null;
4805
4794
  maxAmount?: any;
4806
4795
  }[];
4807
4796
  sands: {
4797
+ ontologySkills: any[];
4808
4798
  occupation: {
4809
- id: string;
4810
4799
  uid: string;
4800
+ prefLabel: string;
4811
4801
  freeText: string | null;
4802
+ id: string;
4812
4803
  ontologyId: string;
4813
- prefLabel: string;
4814
4804
  };
4815
- ontologySkills: any[];
4816
4805
  additionalSkills: {
4817
4806
  name: string;
4818
4807
  uid: string | null;
@@ -4820,12 +4809,23 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4820
4809
  relevance: string;
4821
4810
  }[];
4822
4811
  };
4812
+ auth: {
4813
+ isVisitor: boolean;
4814
+ isAgency: boolean;
4815
+ isFreelancer: boolean;
4816
+ isClient: boolean;
4817
+ isUpworkPlusBuyer: boolean;
4818
+ domestic: {
4819
+ isInfographicTooltipAvailable: boolean;
4820
+ country?: any;
4821
+ };
4822
+ };
4823
4823
  enterpriseJobAdditionalInfo: Record<string, any>;
4824
4824
  profileMatchServiceUid: string | null;
4825
4825
  seo: {
4826
- url: string;
4827
- title: string;
4828
4826
  description: string;
4827
+ title: string;
4828
+ url: string;
4829
4829
  };
4830
4830
  isGroupOpportunity: boolean;
4831
4831
  isPhoneVerified: boolean;
@@ -4904,40 +4904,14 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4904
4904
  visitorNavSkinnyOverrides?: Record<string, any> | undefined;
4905
4905
  }>;
4906
4906
  }, "strip", z.ZodTypeAny, {
4907
+ layout: string;
4907
4908
  data: Record<string, any>[];
4909
+ fetch: Record<string, any>;
4908
4910
  state: {
4909
- user: {
4910
- id: string | null;
4911
- loaded: boolean | null;
4912
- loading: boolean | null;
4913
- rid: string | null;
4914
- nid: string | null;
4915
- isSudo: boolean | null;
4916
- };
4917
- currency: {
4918
- currencyCode: string | null;
4919
- currencyPopupShow: boolean | null;
4920
- currencyName: string | null;
4921
- currencySymbol: string | null;
4922
- currencyRate?: any;
4923
- };
4924
- context: {
4925
- loaded: boolean;
4926
- loading: boolean;
4927
- auth: boolean;
4928
- isLoggedIn: boolean | null;
4929
- error?: any;
4930
- };
4931
4911
  job: {
4932
4912
  visitedJobs: any[];
4933
- channel?: any;
4934
4913
  errorResponse?: any;
4935
- };
4936
- flags: {
4937
- qt: Record<string, any>;
4938
- qtAllocationType: Record<string, any>;
4939
- ff: Record<string, boolean>;
4940
- computedName: Record<string, any>;
4914
+ channel?: any;
4941
4915
  };
4942
4916
  qt: {
4943
4917
  isNewVisitorNavV1Enabled: boolean;
@@ -4956,28 +4930,43 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4956
4930
  };
4957
4931
  };
4958
4932
  };
4933
+ context: {
4934
+ auth: boolean;
4935
+ loaded: boolean;
4936
+ loading: boolean;
4937
+ isLoggedIn: boolean | null;
4938
+ error?: any;
4939
+ };
4959
4940
  orgs: {
4960
4941
  loaded: boolean | null;
4961
4942
  loading: boolean | null;
4962
4943
  orgs: any[];
4963
4944
  current: {
4964
4945
  type: string | null;
4965
- id: string | null;
4966
4946
  title: string | null;
4967
- photoUrl: string | null;
4947
+ id: string | null;
4968
4948
  rid: string | null;
4969
4949
  legacyType: string | null;
4970
4950
  enterpriseType: string | null;
4971
4951
  typeTitle: string | null;
4952
+ photoUrl: string | null;
4972
4953
  flag: {
4954
+ client: boolean | null;
4973
4955
  vendor: boolean | null;
4974
4956
  agency: boolean | null;
4975
- client: boolean | null;
4976
4957
  individual: boolean | null;
4977
4958
  };
4978
4959
  portrait100: string | null;
4979
4960
  };
4980
4961
  };
4962
+ user: {
4963
+ id: string | null;
4964
+ loaded: boolean | null;
4965
+ loading: boolean | null;
4966
+ rid: string | null;
4967
+ nid: string | null;
4968
+ isSudo: boolean | null;
4969
+ };
4981
4970
  visitor: {
4982
4971
  id: string;
4983
4972
  ip: string;
@@ -4991,10 +4980,23 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4991
4980
  organizations: {
4992
4981
  items: any[];
4993
4982
  };
4983
+ currency: {
4984
+ currencyCode: string | null;
4985
+ currencyPopupShow: boolean | null;
4986
+ currencyName: string | null;
4987
+ currencySymbol: string | null;
4988
+ currencyRate?: any;
4989
+ };
4994
4990
  bot: {
4995
4991
  loaded: boolean;
4996
4992
  isBot: boolean;
4997
4993
  };
4994
+ flags: {
4995
+ qt: Record<string, any>;
4996
+ qtAllocationType: Record<string, any>;
4997
+ ff: Record<string, boolean>;
4998
+ computedName: Record<string, any>;
4999
+ };
4998
5000
  geo: {
4999
5001
  countryCode: string;
5000
5002
  promise?: any;
@@ -5010,8 +5012,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5010
5012
  };
5011
5013
  tracking: {
5012
5014
  location: string;
5013
- loaded: boolean | null;
5014
- loading: boolean | null;
5015
5015
  context: {
5016
5016
  visitor_id: string | null;
5017
5017
  user_uid: string | null;
@@ -5021,10 +5021,12 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5021
5021
  user_is_sudo: boolean | null;
5022
5022
  is_logged_in: boolean | null;
5023
5023
  };
5024
+ loaded: boolean | null;
5025
+ loading: boolean | null;
5024
5026
  visitorApiKey: string | null;
5025
5027
  suit2Enabled: boolean;
5026
- error?: any;
5027
5028
  promise?: any;
5029
+ error?: any;
5028
5030
  };
5029
5031
  theme: {
5030
5032
  isSystemThemeMode: boolean | null;
@@ -5040,24 +5042,12 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5040
5042
  }>;
5041
5043
  };
5042
5044
  jobDetails: {
5043
- auth: {
5044
- domestic: {
5045
- isInfographicTooltipAvailable: boolean;
5046
- country?: any;
5047
- };
5048
- isVisitor: boolean;
5049
- isAgency: boolean;
5050
- isFreelancer: boolean;
5051
- isClient: boolean;
5052
- isUpworkPlusBuyer: boolean;
5053
- };
5054
5045
  cache: boolean;
5055
5046
  job: {
5056
5047
  type: number;
5057
- title: string;
5058
- description: string;
5059
5048
  status: number;
5060
5049
  numberOfPositionsToHire: number;
5050
+ uid: string;
5061
5051
  category: {
5062
5052
  name: string;
5063
5053
  urlSlug: string;
@@ -5086,13 +5076,14 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5086
5076
  hourlyBudgetType: string | null;
5087
5077
  };
5088
5078
  contractorTier: number;
5079
+ description: string;
5089
5080
  segmentationData: {
5090
- type: string;
5091
- name: string;
5092
- value: string;
5093
- label: string;
5094
5081
  customValue: string | null;
5082
+ label: string;
5083
+ name: string;
5095
5084
  sortOrder: number;
5085
+ type: string;
5086
+ value: string;
5096
5087
  skill?: any;
5097
5088
  }[];
5098
5089
  clientActivity: {
@@ -5107,7 +5098,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5107
5098
  annotations: {
5108
5099
  tags: string[];
5109
5100
  };
5110
- uid: string;
5101
+ title: string;
5111
5102
  ciphertext: string;
5112
5103
  access: number;
5113
5104
  createdOn: string;
@@ -5116,6 +5107,9 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5116
5107
  notSureFreelancersToHire: boolean;
5117
5108
  notSureExperienceLevel: boolean;
5118
5109
  isContractToHire: boolean;
5110
+ deliverables: string | null;
5111
+ deadline: string | null;
5112
+ tools: any[];
5119
5113
  qualifications: {
5120
5114
  type: number;
5121
5115
  localMarket: boolean;
@@ -5126,8 +5120,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5126
5120
  shouldHavePortfolio: boolean;
5127
5121
  locationCheckRequired: boolean;
5128
5122
  minHoursWeek: number | null;
5129
- location?: any;
5130
- group?: any;
5131
5123
  countries?: any;
5132
5124
  earnings?: any;
5133
5125
  groupRecno?: any;
@@ -5139,19 +5131,18 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5139
5131
  states?: any;
5140
5132
  tests?: any;
5141
5133
  timezones?: any;
5134
+ group?: any;
5135
+ location?: any;
5142
5136
  locations?: any;
5143
5137
  };
5144
5138
  durationIdV3: number;
5145
5139
  durationLabel: string;
5146
- deliverables: string | null;
5147
- deadline: string | null;
5148
- tools: any[];
5149
5140
  publishedOn?: string | null | undefined;
5150
5141
  renewedOn?: string | null | undefined;
5151
5142
  engagement?: string | null | undefined;
5143
+ freelancersToHire?: number | null | undefined;
5152
5144
  connectPrice?: number | null | undefined;
5153
5145
  clientRelation?: any;
5154
- freelancersToHire?: number | null | undefined;
5155
5146
  relevanceEncoded?: string | null | undefined;
5156
5147
  enterpriseJob?: boolean | null | undefined;
5157
5148
  tierText?: string | null | undefined;
@@ -5160,15 +5151,15 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5160
5151
  premium?: boolean | null | undefined;
5161
5152
  attrs?: {
5162
5153
  uid: string;
5163
- prefLabel: string;
5164
5154
  parentSkillUid: string | null;
5155
+ prefLabel: string;
5165
5156
  prettyName: string;
5166
5157
  highlighted: boolean;
5167
5158
  freeText?: any;
5168
5159
  }[] | null | undefined;
5169
5160
  hourlyBudget?: {
5170
- max: number;
5171
5161
  min: number;
5162
+ max: number;
5172
5163
  } | null | undefined;
5173
5164
  weeklyBudget?: {
5174
5165
  amount: number;
@@ -5178,10 +5169,10 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5178
5169
  };
5179
5170
  buyer: {
5180
5171
  location: {
5181
- country: string;
5182
5172
  offsetFromUtcMillis: number;
5183
5173
  countryTimezone: string;
5184
5174
  city: string | null;
5175
+ country: string;
5185
5176
  };
5186
5177
  isEnterprise: boolean;
5187
5178
  isPaymentMethodVerified: boolean;
@@ -5217,45 +5208,45 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5217
5208
  };
5218
5209
  openJobs: {
5219
5210
  type: number;
5220
- id: string;
5221
- title: string;
5222
5211
  uid: string;
5212
+ title: string;
5223
5213
  ciphertext: string;
5224
5214
  access: number | null;
5215
+ id: string;
5225
5216
  isPtcPrivate: boolean;
5226
5217
  }[];
5227
5218
  workHistory: any[];
5228
5219
  similarJobs: {
5220
+ renewedOn: string | null;
5221
+ engagement: string | null;
5229
5222
  type: number;
5230
- id: string | null;
5231
- title: string;
5232
- description: string;
5233
5223
  amount: {
5234
5224
  amount: number;
5235
5225
  };
5236
5226
  hourlyBudgetMin: number;
5237
5227
  hourlyBudgetMax: number;
5238
5228
  contractorTier: number;
5229
+ description: string;
5230
+ title: string;
5239
5231
  ciphertext: string;
5240
5232
  createdOn: string;
5241
5233
  durationLabel: string;
5234
+ id: string | null;
5242
5235
  ontologySkills: {
5243
- id: string | null;
5244
5236
  prefLabel: string;
5237
+ id: string | null;
5245
5238
  }[];
5246
- renewedOn: string | null;
5247
- engagement: string | null;
5248
5239
  maxAmount?: any;
5249
5240
  }[];
5250
5241
  sands: {
5242
+ ontologySkills: any[];
5251
5243
  occupation: {
5252
- id: string;
5253
5244
  uid: string;
5245
+ prefLabel: string;
5254
5246
  freeText: string | null;
5247
+ id: string;
5255
5248
  ontologyId: string;
5256
- prefLabel: string;
5257
5249
  };
5258
- ontologySkills: any[];
5259
5250
  additionalSkills: {
5260
5251
  name: string;
5261
5252
  uid: string | null;
@@ -5263,12 +5254,23 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5263
5254
  relevance: string;
5264
5255
  }[];
5265
5256
  };
5257
+ auth: {
5258
+ isVisitor: boolean;
5259
+ isAgency: boolean;
5260
+ isFreelancer: boolean;
5261
+ isClient: boolean;
5262
+ isUpworkPlusBuyer: boolean;
5263
+ domestic: {
5264
+ isInfographicTooltipAvailable: boolean;
5265
+ country?: any;
5266
+ };
5267
+ };
5266
5268
  enterpriseJobAdditionalInfo: Record<string, any>;
5267
5269
  profileMatchServiceUid: string | null;
5268
5270
  seo: {
5269
- url: string;
5270
- title: string;
5271
5271
  description: string;
5272
+ title: string;
5273
+ url: string;
5272
5274
  };
5273
5275
  isGroupOpportunity: boolean;
5274
5276
  isPhoneVerified: boolean;
@@ -5293,8 +5295,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5293
5295
  token: string;
5294
5296
  } | undefined;
5295
5297
  };
5296
- fetch: Record<string, any>;
5297
- layout: string;
5298
5298
  serverRendered: boolean;
5299
5299
  routePath: string;
5300
5300
  config: {
@@ -5316,40 +5316,14 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5316
5316
  };
5317
5317
  error?: any;
5318
5318
  }, {
5319
+ layout: string;
5319
5320
  data: Record<string, any>[];
5321
+ fetch: Record<string, any>;
5320
5322
  state: {
5321
- user: {
5322
- id: string | null;
5323
- loaded: boolean | null;
5324
- loading: boolean | null;
5325
- rid: string | null;
5326
- nid: string | null;
5327
- isSudo: boolean | null;
5328
- };
5329
- currency: {
5330
- currencyCode: string | null;
5331
- currencyPopupShow: boolean | null;
5332
- currencyName: string | null;
5333
- currencySymbol: string | null;
5334
- currencyRate?: any;
5335
- };
5336
- context: {
5337
- loaded: boolean;
5338
- loading: boolean;
5339
- auth: boolean;
5340
- isLoggedIn: boolean | null;
5341
- error?: any;
5342
- };
5343
5323
  job: {
5344
5324
  visitedJobs: any[];
5345
- channel?: any;
5346
5325
  errorResponse?: any;
5347
- };
5348
- flags: {
5349
- qt: Record<string, any>;
5350
- qtAllocationType: Record<string, any>;
5351
- ff: Record<string, boolean>;
5352
- computedName: Record<string, any>;
5326
+ channel?: any;
5353
5327
  };
5354
5328
  qt: {
5355
5329
  isNewVisitorNavV1Enabled: boolean;
@@ -5368,28 +5342,43 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5368
5342
  };
5369
5343
  };
5370
5344
  };
5345
+ context: {
5346
+ auth: boolean;
5347
+ loaded: boolean;
5348
+ loading: boolean;
5349
+ isLoggedIn: boolean | null;
5350
+ error?: any;
5351
+ };
5371
5352
  orgs: {
5372
5353
  loaded: boolean | null;
5373
5354
  loading: boolean | null;
5374
5355
  orgs: any[];
5375
5356
  current: {
5376
5357
  type: string | null;
5377
- id: string | null;
5378
5358
  title: string | null;
5379
- photoUrl: string | null;
5359
+ id: string | null;
5380
5360
  rid: string | null;
5381
5361
  legacyType: string | null;
5382
5362
  enterpriseType: string | null;
5383
5363
  typeTitle: string | null;
5364
+ photoUrl: string | null;
5384
5365
  flag: {
5366
+ client: boolean | null;
5385
5367
  vendor: boolean | null;
5386
5368
  agency: boolean | null;
5387
- client: boolean | null;
5388
5369
  individual: boolean | null;
5389
5370
  };
5390
5371
  portrait100: string | null;
5391
5372
  };
5392
5373
  };
5374
+ user: {
5375
+ id: string | null;
5376
+ loaded: boolean | null;
5377
+ loading: boolean | null;
5378
+ rid: string | null;
5379
+ nid: string | null;
5380
+ isSudo: boolean | null;
5381
+ };
5393
5382
  visitor: {
5394
5383
  id: string;
5395
5384
  ip: string;
@@ -5403,10 +5392,23 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5403
5392
  organizations: {
5404
5393
  items: any[];
5405
5394
  };
5395
+ currency: {
5396
+ currencyCode: string | null;
5397
+ currencyPopupShow: boolean | null;
5398
+ currencyName: string | null;
5399
+ currencySymbol: string | null;
5400
+ currencyRate?: any;
5401
+ };
5406
5402
  bot: {
5407
5403
  loaded: boolean;
5408
5404
  isBot: boolean;
5409
5405
  };
5406
+ flags: {
5407
+ qt: Record<string, any>;
5408
+ qtAllocationType: Record<string, any>;
5409
+ ff: Record<string, boolean>;
5410
+ computedName: Record<string, any>;
5411
+ };
5410
5412
  geo: {
5411
5413
  countryCode: string;
5412
5414
  promise?: any;
@@ -5422,8 +5424,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5422
5424
  };
5423
5425
  tracking: {
5424
5426
  location: string;
5425
- loaded: boolean | null;
5426
- loading: boolean | null;
5427
5427
  context: {
5428
5428
  visitor_id: string | null;
5429
5429
  user_uid: string | null;
@@ -5433,10 +5433,12 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5433
5433
  user_is_sudo: boolean | null;
5434
5434
  is_logged_in: boolean | null;
5435
5435
  };
5436
+ loaded: boolean | null;
5437
+ loading: boolean | null;
5436
5438
  visitorApiKey: string | null;
5437
5439
  suit2Enabled: boolean;
5438
- error?: any;
5439
5440
  promise?: any;
5441
+ error?: any;
5440
5442
  };
5441
5443
  theme: {
5442
5444
  isSystemThemeMode: boolean | null;
@@ -5452,24 +5454,12 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5452
5454
  }>;
5453
5455
  };
5454
5456
  jobDetails: {
5455
- auth: {
5456
- domestic: {
5457
- isInfographicTooltipAvailable: boolean;
5458
- country?: any;
5459
- };
5460
- isVisitor: boolean;
5461
- isAgency: boolean;
5462
- isFreelancer: boolean;
5463
- isClient: boolean;
5464
- isUpworkPlusBuyer: boolean;
5465
- };
5466
5457
  cache: boolean;
5467
5458
  job: {
5468
5459
  type: number;
5469
- title: string;
5470
- description: string;
5471
5460
  status: number;
5472
5461
  numberOfPositionsToHire: number;
5462
+ uid: string;
5473
5463
  category: {
5474
5464
  name: string;
5475
5465
  urlSlug: string;
@@ -5498,13 +5488,14 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5498
5488
  hourlyBudgetType: string | null;
5499
5489
  };
5500
5490
  contractorTier: number;
5491
+ description: string;
5501
5492
  segmentationData: {
5502
- type: string;
5503
- name: string;
5504
- value: string;
5505
- label: string;
5506
5493
  customValue: string | null;
5494
+ label: string;
5495
+ name: string;
5507
5496
  sortOrder: number;
5497
+ type: string;
5498
+ value: string;
5508
5499
  skill?: any;
5509
5500
  }[];
5510
5501
  clientActivity: {
@@ -5519,7 +5510,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5519
5510
  annotations: {
5520
5511
  tags: string[];
5521
5512
  };
5522
- uid: string;
5513
+ title: string;
5523
5514
  ciphertext: string;
5524
5515
  access: number;
5525
5516
  createdOn: string;
@@ -5528,6 +5519,9 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5528
5519
  notSureFreelancersToHire: boolean;
5529
5520
  notSureExperienceLevel: boolean;
5530
5521
  isContractToHire: boolean;
5522
+ deliverables: string | null;
5523
+ deadline: string | null;
5524
+ tools: any[];
5531
5525
  qualifications: {
5532
5526
  type: number;
5533
5527
  localMarket: boolean;
@@ -5538,8 +5532,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5538
5532
  shouldHavePortfolio: boolean;
5539
5533
  locationCheckRequired: boolean;
5540
5534
  minHoursWeek: number | null;
5541
- location?: any;
5542
- group?: any;
5543
5535
  countries?: any;
5544
5536
  earnings?: any;
5545
5537
  groupRecno?: any;
@@ -5551,19 +5543,18 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5551
5543
  states?: any;
5552
5544
  tests?: any;
5553
5545
  timezones?: any;
5546
+ group?: any;
5547
+ location?: any;
5554
5548
  locations?: any;
5555
5549
  };
5556
5550
  durationIdV3: number;
5557
5551
  durationLabel: string;
5558
- deliverables: string | null;
5559
- deadline: string | null;
5560
- tools: any[];
5561
5552
  publishedOn?: string | null | undefined;
5562
5553
  renewedOn?: string | null | undefined;
5563
5554
  engagement?: string | null | undefined;
5555
+ freelancersToHire?: number | null | undefined;
5564
5556
  connectPrice?: number | null | undefined;
5565
5557
  clientRelation?: any;
5566
- freelancersToHire?: number | null | undefined;
5567
5558
  relevanceEncoded?: string | null | undefined;
5568
5559
  enterpriseJob?: boolean | null | undefined;
5569
5560
  tierText?: string | null | undefined;
@@ -5572,15 +5563,15 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5572
5563
  premium?: boolean | null | undefined;
5573
5564
  attrs?: {
5574
5565
  uid: string;
5575
- prefLabel: string;
5576
5566
  parentSkillUid: string | null;
5567
+ prefLabel: string;
5577
5568
  prettyName: string;
5578
5569
  highlighted: boolean;
5579
5570
  freeText?: any;
5580
5571
  }[] | null | undefined;
5581
5572
  hourlyBudget?: {
5582
- max: number;
5583
5573
  min: number;
5574
+ max: number;
5584
5575
  } | null | undefined;
5585
5576
  weeklyBudget?: {
5586
5577
  amount: number;
@@ -5590,10 +5581,10 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5590
5581
  };
5591
5582
  buyer: {
5592
5583
  location: {
5593
- country: string;
5594
5584
  offsetFromUtcMillis: number;
5595
5585
  countryTimezone: string;
5596
5586
  city: string | null;
5587
+ country: string;
5597
5588
  };
5598
5589
  isEnterprise: boolean;
5599
5590
  isPaymentMethodVerified: boolean;
@@ -5629,45 +5620,45 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5629
5620
  };
5630
5621
  openJobs: {
5631
5622
  type: number;
5632
- id: string;
5633
- title: string;
5634
5623
  uid: string;
5624
+ title: string;
5635
5625
  ciphertext: string;
5636
5626
  access: number | null;
5627
+ id: string;
5637
5628
  isPtcPrivate: boolean;
5638
5629
  }[];
5639
5630
  workHistory: any[];
5640
5631
  similarJobs: {
5632
+ renewedOn: string | null;
5633
+ engagement: string | null;
5641
5634
  type: number;
5642
- id: string | null;
5643
- title: string;
5644
- description: string;
5645
5635
  amount: {
5646
5636
  amount: number;
5647
5637
  };
5648
5638
  hourlyBudgetMin: number;
5649
5639
  hourlyBudgetMax: number;
5650
5640
  contractorTier: number;
5641
+ description: string;
5642
+ title: string;
5651
5643
  ciphertext: string;
5652
5644
  createdOn: string;
5653
5645
  durationLabel: string;
5646
+ id: string | null;
5654
5647
  ontologySkills: {
5655
- id: string | null;
5656
5648
  prefLabel: string;
5649
+ id: string | null;
5657
5650
  }[];
5658
- renewedOn: string | null;
5659
- engagement: string | null;
5660
5651
  maxAmount?: any;
5661
5652
  }[];
5662
5653
  sands: {
5654
+ ontologySkills: any[];
5663
5655
  occupation: {
5664
- id: string;
5665
5656
  uid: string;
5657
+ prefLabel: string;
5666
5658
  freeText: string | null;
5659
+ id: string;
5667
5660
  ontologyId: string;
5668
- prefLabel: string;
5669
5661
  };
5670
- ontologySkills: any[];
5671
5662
  additionalSkills: {
5672
5663
  name: string;
5673
5664
  uid: string | null;
@@ -5675,12 +5666,23 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5675
5666
  relevance: string;
5676
5667
  }[];
5677
5668
  };
5669
+ auth: {
5670
+ isVisitor: boolean;
5671
+ isAgency: boolean;
5672
+ isFreelancer: boolean;
5673
+ isClient: boolean;
5674
+ isUpworkPlusBuyer: boolean;
5675
+ domestic: {
5676
+ isInfographicTooltipAvailable: boolean;
5677
+ country?: any;
5678
+ };
5679
+ };
5678
5680
  enterpriseJobAdditionalInfo: Record<string, any>;
5679
5681
  profileMatchServiceUid: string | null;
5680
5682
  seo: {
5681
- url: string;
5682
- title: string;
5683
5683
  description: string;
5684
+ title: string;
5685
+ url: string;
5684
5686
  };
5685
5687
  isGroupOpportunity: boolean;
5686
5688
  isPhoneVerified: boolean;
@@ -5705,8 +5707,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5705
5707
  token: string;
5706
5708
  } | undefined;
5707
5709
  };
5708
- fetch: Record<string, any>;
5709
- layout: string;
5710
5710
  serverRendered: boolean;
5711
5711
  routePath: string;
5712
5712
  config: {