lancer-shared 1.2.270 → 1.2.272

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 (45) hide show
  1. package/dist/bundle.cjs.js +13 -6
  2. package/dist/bundle.cjs.js.map +1 -1
  3. package/dist/bundle.esm.js +13 -7
  4. package/dist/bundle.esm.js.map +1 -1
  5. package/dist/constants/routes.d.ts +1 -1
  6. package/dist/schemas/account/bidder-account.d.ts +20 -20
  7. package/dist/schemas/account/scraper-account.d.ts +22 -22
  8. package/dist/schemas/agent/index.d.ts +216 -216
  9. package/dist/schemas/agent/proposal.d.ts +2 -2
  10. package/dist/schemas/bidder/bid.d.ts +2062 -2043
  11. package/dist/schemas/campaign/campaign-analytics.d.ts +840 -784
  12. package/dist/schemas/campaign/campaign-chat-bot.d.ts +9 -9
  13. package/dist/schemas/campaign/campaign.d.ts +378 -378
  14. package/dist/schemas/dashboard/index.d.ts +12 -12
  15. package/dist/schemas/golden-dataset/sample.d.ts +8 -8
  16. package/dist/schemas/invoice/index.d.ts +4 -4
  17. package/dist/schemas/job/index.d.ts +112 -112
  18. package/dist/schemas/job/job-api.d.ts +6 -6
  19. package/dist/schemas/job/job-details.d.ts +74 -74
  20. package/dist/schemas/job/job-filters.d.ts +47 -47
  21. package/dist/schemas/job/job-listing.d.ts +22 -22
  22. package/dist/schemas/job/nuxt.d.ts +24 -24
  23. package/dist/schemas/lead/index.d.ts +845 -844
  24. package/dist/schemas/lead/insufficient-connects-action.d.ts +3 -0
  25. package/dist/schemas/lead/lead-status.d.ts +10 -10
  26. package/dist/schemas/logger/feed/feed-chunk-enrich.d.ts +6 -6
  27. package/dist/schemas/logger/feed/feed-enrich.d.ts +6 -6
  28. package/dist/schemas/logger/feed/feed-job-enrich.d.ts +140 -140
  29. package/dist/schemas/logger/feed/feed-scrape.d.ts +6 -6
  30. package/dist/schemas/logger/log-event.d.ts +72 -72
  31. package/dist/schemas/logger/scraper-events.d.ts +28 -28
  32. package/dist/schemas/notifications/index.d.ts +4 -4
  33. package/dist/schemas/organization/billing.d.ts +2 -2
  34. package/dist/schemas/organization/index.d.ts +86 -66
  35. package/dist/schemas/organization/organization-leads.d.ts +4 -4
  36. package/dist/schemas/organization/subscription.d.ts +15 -9
  37. package/dist/schemas/plan/index.d.ts +22 -22
  38. package/dist/schemas/proxy/proxy.d.ts +2 -2
  39. package/dist/schemas/scraper/scrape-payload.d.ts +514 -495
  40. package/dist/schemas/scraper/scrape-result.d.ts +136 -136
  41. package/dist/schemas/talent/index.d.ts +148 -148
  42. package/dist/schemas/transaction/index.d.ts +2 -2
  43. package/dist/schemas/usage/index.d.ts +2 -2
  44. package/dist/schemas/usage-event/index.d.ts +8 -8
  45. package/package.json +1 -1
@@ -194,7 +194,6 @@ declare const jobDetailsSchema: z.ZodObject<{
194
194
  minHoursWeek: number | null;
195
195
  location?: any;
196
196
  group?: any;
197
- regions?: any;
198
197
  countries?: any;
199
198
  earnings?: any;
200
199
  groupRecno?: any;
@@ -202,6 +201,7 @@ declare const jobDetailsSchema: z.ZodObject<{
202
201
  localDescription?: any;
203
202
  localFlexibilityDescription?: any;
204
203
  onSiteType?: any;
204
+ regions?: any;
205
205
  states?: any;
206
206
  tests?: any;
207
207
  timezones?: any;
@@ -218,7 +218,6 @@ declare const jobDetailsSchema: z.ZodObject<{
218
218
  minHoursWeek: number | null;
219
219
  location?: any;
220
220
  group?: any;
221
- regions?: any;
222
221
  countries?: any;
223
222
  earnings?: any;
224
223
  groupRecno?: any;
@@ -226,6 +225,7 @@ declare const jobDetailsSchema: z.ZodObject<{
226
225
  localDescription?: any;
227
226
  localFlexibilityDescription?: any;
228
227
  onSiteType?: any;
228
+ regions?: any;
229
229
  states?: any;
230
230
  tests?: any;
231
231
  timezones?: any;
@@ -357,7 +357,6 @@ declare const jobDetailsSchema: z.ZodObject<{
357
357
  minHoursWeek: number | null;
358
358
  location?: any;
359
359
  group?: any;
360
- regions?: any;
361
360
  countries?: any;
362
361
  earnings?: any;
363
362
  groupRecno?: any;
@@ -365,6 +364,7 @@ declare const jobDetailsSchema: z.ZodObject<{
365
364
  localDescription?: any;
366
365
  localFlexibilityDescription?: any;
367
366
  onSiteType?: any;
367
+ regions?: any;
368
368
  states?: any;
369
369
  tests?: any;
370
370
  timezones?: any;
@@ -375,7 +375,6 @@ declare const jobDetailsSchema: z.ZodObject<{
375
375
  deliverables: string | null;
376
376
  deadline: string | null;
377
377
  tools: any[];
378
- premium?: boolean | null | undefined;
379
378
  publishedOn?: string | null | undefined;
380
379
  renewedOn?: string | null | undefined;
381
380
  engagement?: string | null | undefined;
@@ -387,6 +386,7 @@ declare const jobDetailsSchema: z.ZodObject<{
387
386
  tierText?: string | null | undefined;
388
387
  isApplied?: boolean | null | undefined;
389
388
  proposalsTier?: string | null | undefined;
389
+ premium?: boolean | null | undefined;
390
390
  attrs?: {
391
391
  uid: string;
392
392
  prefLabel: string;
@@ -480,7 +480,6 @@ declare const jobDetailsSchema: z.ZodObject<{
480
480
  minHoursWeek: number | null;
481
481
  location?: any;
482
482
  group?: any;
483
- regions?: any;
484
483
  countries?: any;
485
484
  earnings?: any;
486
485
  groupRecno?: any;
@@ -488,6 +487,7 @@ declare const jobDetailsSchema: z.ZodObject<{
488
487
  localDescription?: any;
489
488
  localFlexibilityDescription?: any;
490
489
  onSiteType?: any;
490
+ regions?: any;
491
491
  states?: any;
492
492
  tests?: any;
493
493
  timezones?: any;
@@ -498,7 +498,6 @@ declare const jobDetailsSchema: z.ZodObject<{
498
498
  deliverables: string | null;
499
499
  deadline: string | null;
500
500
  tools: any[];
501
- premium?: boolean | null | undefined;
502
501
  publishedOn?: string | null | undefined;
503
502
  renewedOn?: string | null | undefined;
504
503
  engagement?: string | null | undefined;
@@ -510,6 +509,7 @@ declare const jobDetailsSchema: z.ZodObject<{
510
509
  tierText?: string | null | undefined;
511
510
  isApplied?: boolean | null | undefined;
512
511
  proposalsTier?: string | null | undefined;
512
+ premium?: boolean | null | undefined;
513
513
  attrs?: {
514
514
  uid: string;
515
515
  prefLabel: string;
@@ -940,7 +940,6 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
940
940
  minHoursWeek: number | null;
941
941
  location?: any;
942
942
  group?: any;
943
- regions?: any;
944
943
  countries?: any;
945
944
  earnings?: any;
946
945
  groupRecno?: any;
@@ -948,6 +947,7 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
948
947
  localDescription?: any;
949
948
  localFlexibilityDescription?: any;
950
949
  onSiteType?: any;
950
+ regions?: any;
951
951
  states?: any;
952
952
  tests?: any;
953
953
  timezones?: any;
@@ -964,7 +964,6 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
964
964
  minHoursWeek: number | null;
965
965
  location?: any;
966
966
  group?: any;
967
- regions?: any;
968
967
  countries?: any;
969
968
  earnings?: any;
970
969
  groupRecno?: any;
@@ -972,6 +971,7 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
972
971
  localDescription?: any;
973
972
  localFlexibilityDescription?: any;
974
973
  onSiteType?: any;
974
+ regions?: any;
975
975
  states?: any;
976
976
  tests?: any;
977
977
  timezones?: any;
@@ -1103,7 +1103,6 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1103
1103
  minHoursWeek: number | null;
1104
1104
  location?: any;
1105
1105
  group?: any;
1106
- regions?: any;
1107
1106
  countries?: any;
1108
1107
  earnings?: any;
1109
1108
  groupRecno?: any;
@@ -1111,6 +1110,7 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1111
1110
  localDescription?: any;
1112
1111
  localFlexibilityDescription?: any;
1113
1112
  onSiteType?: any;
1113
+ regions?: any;
1114
1114
  states?: any;
1115
1115
  tests?: any;
1116
1116
  timezones?: any;
@@ -1121,7 +1121,6 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1121
1121
  deliverables: string | null;
1122
1122
  deadline: string | null;
1123
1123
  tools: any[];
1124
- premium?: boolean | null | undefined;
1125
1124
  publishedOn?: string | null | undefined;
1126
1125
  renewedOn?: string | null | undefined;
1127
1126
  engagement?: string | null | undefined;
@@ -1133,6 +1132,7 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1133
1132
  tierText?: string | null | undefined;
1134
1133
  isApplied?: boolean | null | undefined;
1135
1134
  proposalsTier?: string | null | undefined;
1135
+ premium?: boolean | null | undefined;
1136
1136
  attrs?: {
1137
1137
  uid: string;
1138
1138
  prefLabel: string;
@@ -1226,7 +1226,6 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1226
1226
  minHoursWeek: number | null;
1227
1227
  location?: any;
1228
1228
  group?: any;
1229
- regions?: any;
1230
1229
  countries?: any;
1231
1230
  earnings?: any;
1232
1231
  groupRecno?: any;
@@ -1234,6 +1233,7 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1234
1233
  localDescription?: any;
1235
1234
  localFlexibilityDescription?: any;
1236
1235
  onSiteType?: any;
1236
+ regions?: any;
1237
1237
  states?: any;
1238
1238
  tests?: any;
1239
1239
  timezones?: any;
@@ -1244,7 +1244,6 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1244
1244
  deliverables: string | null;
1245
1245
  deadline: string | null;
1246
1246
  tools: any[];
1247
- premium?: boolean | null | undefined;
1248
1247
  publishedOn?: string | null | undefined;
1249
1248
  renewedOn?: string | null | undefined;
1250
1249
  engagement?: string | null | undefined;
@@ -1256,6 +1255,7 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1256
1255
  tierText?: string | null | undefined;
1257
1256
  isApplied?: boolean | null | undefined;
1258
1257
  proposalsTier?: string | null | undefined;
1258
+ premium?: boolean | null | undefined;
1259
1259
  attrs?: {
1260
1260
  uid: string;
1261
1261
  prefLabel: string;
@@ -1700,7 +1700,6 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1700
1700
  isClient: boolean;
1701
1701
  isUpworkPlusBuyer: boolean;
1702
1702
  };
1703
- isPhoneVerified: boolean;
1704
1703
  cache: boolean;
1705
1704
  job: {
1706
1705
  type: number;
@@ -1778,7 +1777,6 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1778
1777
  minHoursWeek: number | null;
1779
1778
  location?: any;
1780
1779
  group?: any;
1781
- regions?: any;
1782
1780
  countries?: any;
1783
1781
  earnings?: any;
1784
1782
  groupRecno?: any;
@@ -1786,6 +1784,7 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1786
1784
  localDescription?: any;
1787
1785
  localFlexibilityDescription?: any;
1788
1786
  onSiteType?: any;
1787
+ regions?: any;
1789
1788
  states?: any;
1790
1789
  tests?: any;
1791
1790
  timezones?: any;
@@ -1796,7 +1795,6 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1796
1795
  deliverables: string | null;
1797
1796
  deadline: string | null;
1798
1797
  tools: any[];
1799
- premium?: boolean | null | undefined;
1800
1798
  publishedOn?: string | null | undefined;
1801
1799
  renewedOn?: string | null | undefined;
1802
1800
  engagement?: string | null | undefined;
@@ -1808,6 +1806,7 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1808
1806
  tierText?: string | null | undefined;
1809
1807
  isApplied?: boolean | null | undefined;
1810
1808
  proposalsTier?: string | null | undefined;
1809
+ premium?: boolean | null | undefined;
1811
1810
  attrs?: {
1812
1811
  uid: string;
1813
1812
  prefLabel: string;
@@ -1921,6 +1920,7 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1921
1920
  description: string;
1922
1921
  };
1923
1922
  isGroupOpportunity: boolean;
1923
+ isPhoneVerified: boolean;
1924
1924
  isApplyBlocked: boolean;
1925
1925
  hasAiInterview: boolean;
1926
1926
  aiInterviewLinkSent: boolean;
@@ -1948,7 +1948,6 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
1948
1948
  isClient: boolean;
1949
1949
  isUpworkPlusBuyer: boolean;
1950
1950
  };
1951
- isPhoneVerified: boolean;
1952
1951
  cache: boolean;
1953
1952
  job: {
1954
1953
  type: number;
@@ -2026,7 +2025,6 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
2026
2025
  minHoursWeek: number | null;
2027
2026
  location?: any;
2028
2027
  group?: any;
2029
- regions?: any;
2030
2028
  countries?: any;
2031
2029
  earnings?: any;
2032
2030
  groupRecno?: any;
@@ -2034,6 +2032,7 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
2034
2032
  localDescription?: any;
2035
2033
  localFlexibilityDescription?: any;
2036
2034
  onSiteType?: any;
2035
+ regions?: any;
2037
2036
  states?: any;
2038
2037
  tests?: any;
2039
2038
  timezones?: any;
@@ -2044,7 +2043,6 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
2044
2043
  deliverables: string | null;
2045
2044
  deadline: string | null;
2046
2045
  tools: any[];
2047
- premium?: boolean | null | undefined;
2048
2046
  publishedOn?: string | null | undefined;
2049
2047
  renewedOn?: string | null | undefined;
2050
2048
  engagement?: string | null | undefined;
@@ -2056,6 +2054,7 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
2056
2054
  tierText?: string | null | undefined;
2057
2055
  isApplied?: boolean | null | undefined;
2058
2056
  proposalsTier?: string | null | undefined;
2057
+ premium?: boolean | null | undefined;
2059
2058
  attrs?: {
2060
2059
  uid: string;
2061
2060
  prefLabel: string;
@@ -2169,6 +2168,7 @@ export declare const jobDetailsStateSchema: z.ZodObject<{
2169
2168
  description: string;
2170
2169
  };
2171
2170
  isGroupOpportunity: boolean;
2171
+ isPhoneVerified: boolean;
2172
2172
  isApplyBlocked: boolean;
2173
2173
  hasAiInterview: boolean;
2174
2174
  aiInterviewLinkSent: boolean;
@@ -2327,11 +2327,11 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2327
2327
  type: string | null;
2328
2328
  id: string | null;
2329
2329
  title: string | null;
2330
+ photoUrl: string | null;
2330
2331
  rid: string | null;
2331
2332
  legacyType: string | null;
2332
2333
  enterpriseType: string | null;
2333
2334
  typeTitle: string | null;
2334
- photoUrl: string | null;
2335
2335
  flag: {
2336
2336
  vendor: boolean | null;
2337
2337
  agency: boolean | null;
@@ -2343,11 +2343,11 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2343
2343
  type: string | null;
2344
2344
  id: string | null;
2345
2345
  title: string | null;
2346
+ photoUrl: string | null;
2346
2347
  rid: string | null;
2347
2348
  legacyType: string | null;
2348
2349
  enterpriseType: string | null;
2349
2350
  typeTitle: string | null;
2350
- photoUrl: string | null;
2351
2351
  flag: {
2352
2352
  vendor: boolean | null;
2353
2353
  agency: boolean | null;
@@ -2367,11 +2367,11 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2367
2367
  type: string | null;
2368
2368
  id: string | null;
2369
2369
  title: string | null;
2370
+ photoUrl: string | null;
2370
2371
  rid: string | null;
2371
2372
  legacyType: string | null;
2372
2373
  enterpriseType: string | null;
2373
2374
  typeTitle: string | null;
2374
- photoUrl: string | null;
2375
2375
  flag: {
2376
2376
  vendor: boolean | null;
2377
2377
  agency: boolean | null;
@@ -2388,11 +2388,11 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2388
2388
  type: string | null;
2389
2389
  id: string | null;
2390
2390
  title: string | null;
2391
+ photoUrl: string | null;
2391
2392
  rid: string | null;
2392
2393
  legacyType: string | null;
2393
2394
  enterpriseType: string | null;
2394
2395
  typeTitle: string | null;
2395
- photoUrl: string | null;
2396
2396
  flag: {
2397
2397
  vendor: boolean | null;
2398
2398
  agency: boolean | null;
@@ -2820,7 +2820,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2820
2820
  minHoursWeek: number | null;
2821
2821
  location?: any;
2822
2822
  group?: any;
2823
- regions?: any;
2824
2823
  countries?: any;
2825
2824
  earnings?: any;
2826
2825
  groupRecno?: any;
@@ -2828,6 +2827,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2828
2827
  localDescription?: any;
2829
2828
  localFlexibilityDescription?: any;
2830
2829
  onSiteType?: any;
2830
+ regions?: any;
2831
2831
  states?: any;
2832
2832
  tests?: any;
2833
2833
  timezones?: any;
@@ -2844,7 +2844,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2844
2844
  minHoursWeek: number | null;
2845
2845
  location?: any;
2846
2846
  group?: any;
2847
- regions?: any;
2848
2847
  countries?: any;
2849
2848
  earnings?: any;
2850
2849
  groupRecno?: any;
@@ -2852,6 +2851,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2852
2851
  localDescription?: any;
2853
2852
  localFlexibilityDescription?: any;
2854
2853
  onSiteType?: any;
2854
+ regions?: any;
2855
2855
  states?: any;
2856
2856
  tests?: any;
2857
2857
  timezones?: any;
@@ -2983,7 +2983,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2983
2983
  minHoursWeek: number | null;
2984
2984
  location?: any;
2985
2985
  group?: any;
2986
- regions?: any;
2987
2986
  countries?: any;
2988
2987
  earnings?: any;
2989
2988
  groupRecno?: any;
@@ -2991,6 +2990,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
2991
2990
  localDescription?: any;
2992
2991
  localFlexibilityDescription?: any;
2993
2992
  onSiteType?: any;
2993
+ regions?: any;
2994
2994
  states?: any;
2995
2995
  tests?: any;
2996
2996
  timezones?: any;
@@ -3001,7 +3001,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3001
3001
  deliverables: string | null;
3002
3002
  deadline: string | null;
3003
3003
  tools: any[];
3004
- premium?: boolean | null | undefined;
3005
3004
  publishedOn?: string | null | undefined;
3006
3005
  renewedOn?: string | null | undefined;
3007
3006
  engagement?: string | null | undefined;
@@ -3013,6 +3012,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3013
3012
  tierText?: string | null | undefined;
3014
3013
  isApplied?: boolean | null | undefined;
3015
3014
  proposalsTier?: string | null | undefined;
3015
+ premium?: boolean | null | undefined;
3016
3016
  attrs?: {
3017
3017
  uid: string;
3018
3018
  prefLabel: string;
@@ -3106,7 +3106,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3106
3106
  minHoursWeek: number | null;
3107
3107
  location?: any;
3108
3108
  group?: any;
3109
- regions?: any;
3110
3109
  countries?: any;
3111
3110
  earnings?: any;
3112
3111
  groupRecno?: any;
@@ -3114,6 +3113,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3114
3113
  localDescription?: any;
3115
3114
  localFlexibilityDescription?: any;
3116
3115
  onSiteType?: any;
3116
+ regions?: any;
3117
3117
  states?: any;
3118
3118
  tests?: any;
3119
3119
  timezones?: any;
@@ -3124,7 +3124,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3124
3124
  deliverables: string | null;
3125
3125
  deadline: string | null;
3126
3126
  tools: any[];
3127
- premium?: boolean | null | undefined;
3128
3127
  publishedOn?: string | null | undefined;
3129
3128
  renewedOn?: string | null | undefined;
3130
3129
  engagement?: string | null | undefined;
@@ -3136,6 +3135,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3136
3135
  tierText?: string | null | undefined;
3137
3136
  isApplied?: boolean | null | undefined;
3138
3137
  proposalsTier?: string | null | undefined;
3138
+ premium?: boolean | null | undefined;
3139
3139
  attrs?: {
3140
3140
  uid: string;
3141
3141
  prefLabel: string;
@@ -3580,7 +3580,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3580
3580
  isClient: boolean;
3581
3581
  isUpworkPlusBuyer: boolean;
3582
3582
  };
3583
- isPhoneVerified: boolean;
3584
3583
  cache: boolean;
3585
3584
  job: {
3586
3585
  type: number;
@@ -3658,7 +3657,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3658
3657
  minHoursWeek: number | null;
3659
3658
  location?: any;
3660
3659
  group?: any;
3661
- regions?: any;
3662
3660
  countries?: any;
3663
3661
  earnings?: any;
3664
3662
  groupRecno?: any;
@@ -3666,6 +3664,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3666
3664
  localDescription?: any;
3667
3665
  localFlexibilityDescription?: any;
3668
3666
  onSiteType?: any;
3667
+ regions?: any;
3669
3668
  states?: any;
3670
3669
  tests?: any;
3671
3670
  timezones?: any;
@@ -3676,7 +3675,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3676
3675
  deliverables: string | null;
3677
3676
  deadline: string | null;
3678
3677
  tools: any[];
3679
- premium?: boolean | null | undefined;
3680
3678
  publishedOn?: string | null | undefined;
3681
3679
  renewedOn?: string | null | undefined;
3682
3680
  engagement?: string | null | undefined;
@@ -3688,6 +3686,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3688
3686
  tierText?: string | null | undefined;
3689
3687
  isApplied?: boolean | null | undefined;
3690
3688
  proposalsTier?: string | null | undefined;
3689
+ premium?: boolean | null | undefined;
3691
3690
  attrs?: {
3692
3691
  uid: string;
3693
3692
  prefLabel: string;
@@ -3801,6 +3800,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3801
3800
  description: string;
3802
3801
  };
3803
3802
  isGroupOpportunity: boolean;
3803
+ isPhoneVerified: boolean;
3804
3804
  isApplyBlocked: boolean;
3805
3805
  hasAiInterview: boolean;
3806
3806
  aiInterviewLinkSent: boolean;
@@ -3828,7 +3828,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3828
3828
  isClient: boolean;
3829
3829
  isUpworkPlusBuyer: boolean;
3830
3830
  };
3831
- isPhoneVerified: boolean;
3832
3831
  cache: boolean;
3833
3832
  job: {
3834
3833
  type: number;
@@ -3906,7 +3905,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3906
3905
  minHoursWeek: number | null;
3907
3906
  location?: any;
3908
3907
  group?: any;
3909
- regions?: any;
3910
3908
  countries?: any;
3911
3909
  earnings?: any;
3912
3910
  groupRecno?: any;
@@ -3914,6 +3912,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3914
3912
  localDescription?: any;
3915
3913
  localFlexibilityDescription?: any;
3916
3914
  onSiteType?: any;
3915
+ regions?: any;
3917
3916
  states?: any;
3918
3917
  tests?: any;
3919
3918
  timezones?: any;
@@ -3924,7 +3923,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3924
3923
  deliverables: string | null;
3925
3924
  deadline: string | null;
3926
3925
  tools: any[];
3927
- premium?: boolean | null | undefined;
3928
3926
  publishedOn?: string | null | undefined;
3929
3927
  renewedOn?: string | null | undefined;
3930
3928
  engagement?: string | null | undefined;
@@ -3936,6 +3934,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
3936
3934
  tierText?: string | null | undefined;
3937
3935
  isApplied?: boolean | null | undefined;
3938
3936
  proposalsTier?: string | null | undefined;
3937
+ premium?: boolean | null | undefined;
3939
3938
  attrs?: {
3940
3939
  uid: string;
3941
3940
  prefLabel: string;
@@ -4049,6 +4048,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4049
4048
  description: string;
4050
4049
  };
4051
4050
  isGroupOpportunity: boolean;
4051
+ isPhoneVerified: boolean;
4052
4052
  isApplyBlocked: boolean;
4053
4053
  hasAiInterview: boolean;
4054
4054
  aiInterviewLinkSent: boolean;
@@ -4103,6 +4103,12 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4103
4103
  channel?: any;
4104
4104
  errorResponse?: any;
4105
4105
  };
4106
+ flags: {
4107
+ qt: Record<string, any>;
4108
+ qtAllocationType: Record<string, any>;
4109
+ ff: Record<string, boolean>;
4110
+ computedName: Record<string, any>;
4111
+ };
4106
4112
  qt: {
4107
4113
  isNewVisitorNavV1Enabled: boolean;
4108
4114
  };
@@ -4128,11 +4134,11 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4128
4134
  type: string | null;
4129
4135
  id: string | null;
4130
4136
  title: string | null;
4137
+ photoUrl: string | null;
4131
4138
  rid: string | null;
4132
4139
  legacyType: string | null;
4133
4140
  enterpriseType: string | null;
4134
4141
  typeTitle: string | null;
4135
- photoUrl: string | null;
4136
4142
  flag: {
4137
4143
  vendor: boolean | null;
4138
4144
  agency: boolean | null;
@@ -4159,12 +4165,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4159
4165
  loaded: boolean;
4160
4166
  isBot: boolean;
4161
4167
  };
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;
@@ -4221,7 +4221,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4221
4221
  isClient: boolean;
4222
4222
  isUpworkPlusBuyer: boolean;
4223
4223
  };
4224
- isPhoneVerified: boolean;
4225
4224
  cache: boolean;
4226
4225
  job: {
4227
4226
  type: number;
@@ -4299,7 +4298,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4299
4298
  minHoursWeek: number | null;
4300
4299
  location?: any;
4301
4300
  group?: any;
4302
- regions?: any;
4303
4301
  countries?: any;
4304
4302
  earnings?: any;
4305
4303
  groupRecno?: any;
@@ -4307,6 +4305,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4307
4305
  localDescription?: any;
4308
4306
  localFlexibilityDescription?: any;
4309
4307
  onSiteType?: any;
4308
+ regions?: any;
4310
4309
  states?: any;
4311
4310
  tests?: any;
4312
4311
  timezones?: any;
@@ -4317,7 +4316,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4317
4316
  deliverables: string | null;
4318
4317
  deadline: string | null;
4319
4318
  tools: any[];
4320
- premium?: boolean | null | undefined;
4321
4319
  publishedOn?: string | null | undefined;
4322
4320
  renewedOn?: string | null | undefined;
4323
4321
  engagement?: string | null | undefined;
@@ -4329,6 +4327,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4329
4327
  tierText?: string | null | undefined;
4330
4328
  isApplied?: boolean | null | undefined;
4331
4329
  proposalsTier?: string | null | undefined;
4330
+ premium?: boolean | null | undefined;
4332
4331
  attrs?: {
4333
4332
  uid: string;
4334
4333
  prefLabel: string;
@@ -4442,6 +4441,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4442
4441
  description: string;
4443
4442
  };
4444
4443
  isGroupOpportunity: boolean;
4444
+ isPhoneVerified: boolean;
4445
4445
  isApplyBlocked: boolean;
4446
4446
  hasAiInterview: boolean;
4447
4447
  aiInterviewLinkSent: boolean;
@@ -4490,6 +4490,12 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4490
4490
  channel?: any;
4491
4491
  errorResponse?: any;
4492
4492
  };
4493
+ flags: {
4494
+ qt: Record<string, any>;
4495
+ qtAllocationType: Record<string, any>;
4496
+ ff: Record<string, boolean>;
4497
+ computedName: Record<string, any>;
4498
+ };
4493
4499
  qt: {
4494
4500
  isNewVisitorNavV1Enabled: boolean;
4495
4501
  };
@@ -4515,11 +4521,11 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4515
4521
  type: string | null;
4516
4522
  id: string | null;
4517
4523
  title: string | null;
4524
+ photoUrl: string | null;
4518
4525
  rid: string | null;
4519
4526
  legacyType: string | null;
4520
4527
  enterpriseType: string | null;
4521
4528
  typeTitle: string | null;
4522
- photoUrl: string | null;
4523
4529
  flag: {
4524
4530
  vendor: boolean | null;
4525
4531
  agency: boolean | null;
@@ -4546,12 +4552,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4546
4552
  loaded: boolean;
4547
4553
  isBot: boolean;
4548
4554
  };
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;
@@ -4608,7 +4608,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4608
4608
  isClient: boolean;
4609
4609
  isUpworkPlusBuyer: boolean;
4610
4610
  };
4611
- isPhoneVerified: boolean;
4612
4611
  cache: boolean;
4613
4612
  job: {
4614
4613
  type: number;
@@ -4686,7 +4685,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4686
4685
  minHoursWeek: number | null;
4687
4686
  location?: any;
4688
4687
  group?: any;
4689
- regions?: any;
4690
4688
  countries?: any;
4691
4689
  earnings?: any;
4692
4690
  groupRecno?: any;
@@ -4694,6 +4692,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4694
4692
  localDescription?: any;
4695
4693
  localFlexibilityDescription?: any;
4696
4694
  onSiteType?: any;
4695
+ regions?: any;
4697
4696
  states?: any;
4698
4697
  tests?: any;
4699
4698
  timezones?: any;
@@ -4704,7 +4703,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4704
4703
  deliverables: string | null;
4705
4704
  deadline: string | null;
4706
4705
  tools: any[];
4707
- premium?: boolean | null | undefined;
4708
4706
  publishedOn?: string | null | undefined;
4709
4707
  renewedOn?: string | null | undefined;
4710
4708
  engagement?: string | null | undefined;
@@ -4716,6 +4714,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4716
4714
  tierText?: string | null | undefined;
4717
4715
  isApplied?: boolean | null | undefined;
4718
4716
  proposalsTier?: string | null | undefined;
4717
+ premium?: boolean | null | undefined;
4719
4718
  attrs?: {
4720
4719
  uid: string;
4721
4720
  prefLabel: string;
@@ -4829,6 +4828,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4829
4828
  description: string;
4830
4829
  };
4831
4830
  isGroupOpportunity: boolean;
4831
+ isPhoneVerified: boolean;
4832
4832
  isApplyBlocked: boolean;
4833
4833
  hasAiInterview: boolean;
4834
4834
  aiInterviewLinkSent: boolean;
@@ -4933,6 +4933,12 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4933
4933
  channel?: any;
4934
4934
  errorResponse?: any;
4935
4935
  };
4936
+ flags: {
4937
+ qt: Record<string, any>;
4938
+ qtAllocationType: Record<string, any>;
4939
+ ff: Record<string, boolean>;
4940
+ computedName: Record<string, any>;
4941
+ };
4936
4942
  qt: {
4937
4943
  isNewVisitorNavV1Enabled: boolean;
4938
4944
  };
@@ -4958,11 +4964,11 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4958
4964
  type: string | null;
4959
4965
  id: string | null;
4960
4966
  title: string | null;
4967
+ photoUrl: string | null;
4961
4968
  rid: string | null;
4962
4969
  legacyType: string | null;
4963
4970
  enterpriseType: string | null;
4964
4971
  typeTitle: string | null;
4965
- photoUrl: string | null;
4966
4972
  flag: {
4967
4973
  vendor: boolean | null;
4968
4974
  agency: boolean | null;
@@ -4989,12 +4995,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
4989
4995
  loaded: boolean;
4990
4996
  isBot: boolean;
4991
4997
  };
4992
- flags: {
4993
- qt: Record<string, any>;
4994
- qtAllocationType: Record<string, any>;
4995
- ff: Record<string, boolean>;
4996
- computedName: Record<string, any>;
4997
- };
4998
4998
  geo: {
4999
4999
  countryCode: string;
5000
5000
  promise?: any;
@@ -5051,7 +5051,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5051
5051
  isClient: boolean;
5052
5052
  isUpworkPlusBuyer: boolean;
5053
5053
  };
5054
- isPhoneVerified: boolean;
5055
5054
  cache: boolean;
5056
5055
  job: {
5057
5056
  type: number;
@@ -5129,7 +5128,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5129
5128
  minHoursWeek: number | null;
5130
5129
  location?: any;
5131
5130
  group?: any;
5132
- regions?: any;
5133
5131
  countries?: any;
5134
5132
  earnings?: any;
5135
5133
  groupRecno?: any;
@@ -5137,6 +5135,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5137
5135
  localDescription?: any;
5138
5136
  localFlexibilityDescription?: any;
5139
5137
  onSiteType?: any;
5138
+ regions?: any;
5140
5139
  states?: any;
5141
5140
  tests?: any;
5142
5141
  timezones?: any;
@@ -5147,7 +5146,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5147
5146
  deliverables: string | null;
5148
5147
  deadline: string | null;
5149
5148
  tools: any[];
5150
- premium?: boolean | null | undefined;
5151
5149
  publishedOn?: string | null | undefined;
5152
5150
  renewedOn?: string | null | undefined;
5153
5151
  engagement?: string | null | undefined;
@@ -5159,6 +5157,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5159
5157
  tierText?: string | null | undefined;
5160
5158
  isApplied?: boolean | null | undefined;
5161
5159
  proposalsTier?: string | null | undefined;
5160
+ premium?: boolean | null | undefined;
5162
5161
  attrs?: {
5163
5162
  uid: string;
5164
5163
  prefLabel: string;
@@ -5272,6 +5271,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5272
5271
  description: string;
5273
5272
  };
5274
5273
  isGroupOpportunity: boolean;
5274
+ isPhoneVerified: boolean;
5275
5275
  isApplyBlocked: boolean;
5276
5276
  hasAiInterview: boolean;
5277
5277
  aiInterviewLinkSent: boolean;
@@ -5345,6 +5345,12 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5345
5345
  channel?: any;
5346
5346
  errorResponse?: any;
5347
5347
  };
5348
+ flags: {
5349
+ qt: Record<string, any>;
5350
+ qtAllocationType: Record<string, any>;
5351
+ ff: Record<string, boolean>;
5352
+ computedName: Record<string, any>;
5353
+ };
5348
5354
  qt: {
5349
5355
  isNewVisitorNavV1Enabled: boolean;
5350
5356
  };
@@ -5370,11 +5376,11 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5370
5376
  type: string | null;
5371
5377
  id: string | null;
5372
5378
  title: string | null;
5379
+ photoUrl: string | null;
5373
5380
  rid: string | null;
5374
5381
  legacyType: string | null;
5375
5382
  enterpriseType: string | null;
5376
5383
  typeTitle: string | null;
5377
- photoUrl: string | null;
5378
5384
  flag: {
5379
5385
  vendor: boolean | null;
5380
5386
  agency: boolean | null;
@@ -5401,12 +5407,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5401
5407
  loaded: boolean;
5402
5408
  isBot: boolean;
5403
5409
  };
5404
- flags: {
5405
- qt: Record<string, any>;
5406
- qtAllocationType: Record<string, any>;
5407
- ff: Record<string, boolean>;
5408
- computedName: Record<string, any>;
5409
- };
5410
5410
  geo: {
5411
5411
  countryCode: string;
5412
5412
  promise?: any;
@@ -5463,7 +5463,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5463
5463
  isClient: boolean;
5464
5464
  isUpworkPlusBuyer: boolean;
5465
5465
  };
5466
- isPhoneVerified: boolean;
5467
5466
  cache: boolean;
5468
5467
  job: {
5469
5468
  type: number;
@@ -5541,7 +5540,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5541
5540
  minHoursWeek: number | null;
5542
5541
  location?: any;
5543
5542
  group?: any;
5544
- regions?: any;
5545
5543
  countries?: any;
5546
5544
  earnings?: any;
5547
5545
  groupRecno?: any;
@@ -5549,6 +5547,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5549
5547
  localDescription?: any;
5550
5548
  localFlexibilityDescription?: any;
5551
5549
  onSiteType?: any;
5550
+ regions?: any;
5552
5551
  states?: any;
5553
5552
  tests?: any;
5554
5553
  timezones?: any;
@@ -5559,7 +5558,6 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5559
5558
  deliverables: string | null;
5560
5559
  deadline: string | null;
5561
5560
  tools: any[];
5562
- premium?: boolean | null | undefined;
5563
5561
  publishedOn?: string | null | undefined;
5564
5562
  renewedOn?: string | null | undefined;
5565
5563
  engagement?: string | null | undefined;
@@ -5571,6 +5569,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5571
5569
  tierText?: string | null | undefined;
5572
5570
  isApplied?: boolean | null | undefined;
5573
5571
  proposalsTier?: string | null | undefined;
5572
+ premium?: boolean | null | undefined;
5574
5573
  attrs?: {
5575
5574
  uid: string;
5576
5575
  prefLabel: string;
@@ -5684,6 +5683,7 @@ export declare const nuxtStateJobDetailsSchema: z.ZodObject<{
5684
5683
  description: string;
5685
5684
  };
5686
5685
  isGroupOpportunity: boolean;
5686
+ isPhoneVerified: boolean;
5687
5687
  isApplyBlocked: boolean;
5688
5688
  hasAiInterview: boolean;
5689
5689
  aiInterviewLinkSent: boolean;